public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libgomp/65070] New: libgomp calls syscall instruction directly
@ 2015-02-15 11:23 nyh at math dot technion.ac.il
  2015-02-15 16:01 ` [Bug libgomp/65070] " jakub at gcc dot gnu.org
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: nyh at math dot technion.ac.il @ 2015-02-15 11:23 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65070

            Bug ID: 65070
           Summary: libgomp calls syscall instruction directly
           Product: gcc
           Version: 4.9.2
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: libgomp
          Assignee: unassigned at gcc dot gnu.org
          Reporter: nyh at math dot technion.ac.il
                CC: jakub at gcc dot gnu.org

The code in libgomp/config/linux/x86/futex.h is needlessly complicated: It
contains a definition of SYS_futex, and contains two variants (x86 and x86_64)
of the assembly code needed to run a system call. But unless I'm missing
something, all of this is quite redundant - glibc already has the
<sys/syscall.h> defining SYS_futex, and a syscall() function calling a system
call in the right way for both x86 and x86_64. 

Using the assembly code directly instead of calling the syscall() function is a
tiny bit faster, but since this code only use for fairly slow situations anyway
(a futex is only used when a context switch is necessary), the extra
function-call overhead should be, I think, negligible.

Finally, my ulterior motive for making this code call syscall() instead of
machine instructions directly is that the latter breaks on the OSv operating
system: https://github.com/cloudius-systems/osv/issues/590


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Bug libgomp/65070] libgomp calls syscall instruction directly
  2015-02-15 11:23 [Bug libgomp/65070] New: libgomp calls syscall instruction directly nyh at math dot technion.ac.il
@ 2015-02-15 16:01 ` jakub at gcc dot gnu.org
  2015-02-15 17:10 ` nyh at math dot technion.ac.il
  2016-08-07  6:21 ` nyh at math dot technion.ac.il
  2 siblings, 0 replies; 4+ messages in thread
From: jakub at gcc dot gnu.org @ 2015-02-15 16:01 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65070

--- Comment #1 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
It is intentionally written that way.
Why would you want to use linux specific code on an OS that isn't linux?


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Bug libgomp/65070] libgomp calls syscall instruction directly
  2015-02-15 11:23 [Bug libgomp/65070] New: libgomp calls syscall instruction directly nyh at math dot technion.ac.il
  2015-02-15 16:01 ` [Bug libgomp/65070] " jakub at gcc dot gnu.org
@ 2015-02-15 17:10 ` nyh at math dot technion.ac.il
  2016-08-07  6:21 ` nyh at math dot technion.ac.il
  2 siblings, 0 replies; 4+ messages in thread
From: nyh at math dot technion.ac.il @ 2015-02-15 17:10 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65070

--- Comment #2 from Nadav Har'El <nyh at math dot technion.ac.il> ---
Hi,

What was the intention behind this "intentionally"? As I mentioned above, I
believe the tiny performance saving of not calling the syscall() function are
minimal, because if I understand correctly it's only called in rare cases when
there is contention, and when the context-switch overhead would be large
anyway. And even if it's not rare, isn't the syscall overhead significantly
larger than the syscall() function's additional overhead (copying a couple of
registers, etc.)? Just using <sys/syscall.h> and syscall() would have made all
this code simpler, and avoid repeating code already in glibc. Unless I'm
missing something important here...

Regarding OSv (see http://osv.io/), the idea there is that it is able to run
unmodified Linux dynamically-linked binaries. Our C library is different (not
glibc), but other libraries and executables which call libc functions can run
unmodified, and libgomp should not be an exception. The plan is to take an
unmodified libgomp.so from some Linux distribution and just run it, without
recompiling. It's not impossible for us also to support the "syscall"
instruction, but I was just wondering why we want to: libgomp is the first
library we've seen to call the syscall instruction directly instead of just
calling the syscall() libc function, and I was wondering if there is good
justification for that.


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Bug libgomp/65070] libgomp calls syscall instruction directly
  2015-02-15 11:23 [Bug libgomp/65070] New: libgomp calls syscall instruction directly nyh at math dot technion.ac.il
  2015-02-15 16:01 ` [Bug libgomp/65070] " jakub at gcc dot gnu.org
  2015-02-15 17:10 ` nyh at math dot technion.ac.il
@ 2016-08-07  6:21 ` nyh at math dot technion.ac.il
  2 siblings, 0 replies; 4+ messages in thread
From: nyh at math dot technion.ac.il @ 2016-08-07  6:21 UTC (permalink / raw)
  To: gcc-bugs

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset="UTF-8", Size: 9810816 bytes --]

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65070

--- Comment #6 from Nadav Har'El <nyh at math dot technion.ac.il> ---
Andrew, the syscall instruction may indeed be the only ABI of the Linux kernel.
But I didn't create this issue on the Linux kernel mailing list, rather on the 
libgomp library's issue tracker. Looking a the libgomp it already uses the
"glibc" API (and therefore ABI), and not just the system call instruction. It
uses malloc() and friends (and not the sbrk() system call), stdio, pthread_*(),
and varios str* functions; So I was wondering why not use syscall() glibc
function instead of duplicating its definition.

I could understand a response which would say something like "We want libgomp
to be usable without glibc, so we try to avoid using glibc functions and use
x86 instructions directly". But unless I'm missing something, libgomp isn't
actually usable without glibc.
>From gcc-bugs-return-533540-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 07 06:27:51 2016
Return-Path: <gcc-bugs-return-533540-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 57494 invoked by alias); 7 Aug 2016 06:27:50 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 57420 invoked by uid 48); 7 Aug 2016 06:27:38 -0000
From: "trippels at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/72824] Signed floating point zero semantics broken at optimization level -O3 (tree-loop-distribute-patterns)
Date: Sun, 07 Aug 2016 06:27:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: major
X-Bugzilla-Who: trippels at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on cc short_desc everconfirmed
Message-ID: <bug-72824-4-y4hGraohDi@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72824-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72824-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00876.txt.bz2
Content-length: 1076

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72824

Markus Trippelsdorf <trippels at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |wrong-code
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-07
                 CC|                            |trippels at gcc dot gnu.org
            Summary|[7 Regression] Signed       |Signed floating point zero
                   |floating point zero         |semantics broken at
                   |semantics broken at         |optimization level -O3
                   |optimization level -O3      |(tree-loop-distribute-patte
                   |(tree-loop-distribute-patte |rns)
                   |rns)                        |
     Ever confirmed|0                           |1

--- Comment #1 from Markus Trippelsdorf <trippels at gcc dot gnu.org> ---
Not a regression.
All supported  versions are affected.
>From gcc-bugs-return-533541-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 07 06:54:49 2016
Return-Path: <gcc-bugs-return-533541-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 69407 invoked by alias); 7 Aug 2016 06:54:48 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 69320 invoked by uid 48); 7 Aug 2016 06:54:36 -0000
From: "trippels at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/72824] [5/6/7 Regression] Signed floating point zero semantics broken at optimization level -O3 (tree-loop-distribute-patterns)
Date: Sun, 07 Aug 2016 06:54:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: major
X-Bugzilla-Who: trippels at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cf_known_to_work short_desc cf_known_to_fail
Message-ID: <bug-72824-4-132vX9Tsx6@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72824-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72824-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00877.txt.bz2
Content-length: 886

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72824

Markus Trippelsdorf <trippels at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
      Known to work|                            |4.7.3
            Summary|Signed floating point zero  |[5/6/7 Regression] Signed
                   |semantics broken at         |floating point zero
                   |optimization level -O3      |semantics broken at
                   |(tree-loop-distribute-patte |optimization level -O3
                   |rns)                        |(tree-loop-distribute-patte
                   |                            |rns)
      Known to fail|                            |5.4.0, 6.1.0, 7.0

--- Comment #2 from Markus Trippelsdorf <trippels at gcc dot gnu.org> ---
Actually gcc-4.7 was fine.
>From gcc-bugs-return-533542-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 07 06:56:30 2016
Return-Path: <gcc-bugs-return-533542-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 71093 invoked by alias); 7 Aug 2016 06:56:30 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 71025 invoked by uid 48); 7 Aug 2016 06:56:22 -0000
From: "trippels at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/72824] [5/6/7 Regression] Signed floating point zero semantics broken at optimization level -O3 (tree-loop-distribute-patterns)
Date: Sun, 07 Aug 2016 06:56:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: trippels at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_severity
Message-ID: <bug-72824-4-Oo7ZJ8BBtV@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72824-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72824-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00878.txt.bz2
Content-length: 302

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72824

Markus Trippelsdorf <trippels at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|major                       |normal
>From gcc-bugs-return-533543-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 07 07:55:47 2016
Return-Path: <gcc-bugs-return-533543-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 42230 invoked by alias); 7 Aug 2016 07:55:46 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 42129 invoked by uid 48); 7 Aug 2016 07:55:34 -0000
From: "schwab@linux-m68k.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libgomp/65070] libgomp calls syscall instruction directly
Date: Sun, 07 Aug 2016 07:55:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libgomp
X-Bugzilla-Version: 4.9.2
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: schwab@linux-m68k.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-65070-4-BUmcOC4pLj@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-65070-4@http.gcc.gnu.org/bugzilla/>
References: <bug-65070-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00879.txt.bz2
Content-length: 163

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65070

--- Comment #7 from Andreas Schwab <schwab@linux-m68k.org> ---
syscall(2) is a standard Unix libc interface.
>From gcc-bugs-return-533544-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 07 08:08:46 2016
Return-Path: <gcc-bugs-return-533544-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 62534 invoked by alias); 7 Aug 2016 08:08:46 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 62435 invoked by uid 48); 7 Aug 2016 08:08:34 -0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libgomp/65070] libgomp calls syscall instruction directly
Date: Sun, 07 Aug 2016 08:08:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libgomp
X-Bugzilla-Version: 4.9.2
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-65070-4-OvuOEI8Fnl@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-65070-4@http.gcc.gnu.org/bugzilla/>
References: <bug-65070-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00880.txt.bz2
Content-length: 400

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65070

--- Comment #8 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
This file is compiling for gnu/Linux or musl/linux or uclibc/Linux which means
it is both the libc abi and Linux  (kernel) abi. So I don't see this as a bug
still.  If you have a target that is Linux kernel abi, your libgomp should not
use this file to use futex directly.
>From gcc-bugs-return-533545-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 07 08:46:56 2016
Return-Path: <gcc-bugs-return-533545-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 120551 invoked by alias); 7 Aug 2016 08:46:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 120440 invoked by uid 48); 7 Aug 2016 08:46:44 -0000
From: "malithyapa at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/71776] relocation truncated to fit: R_ARM_THM_JUMP11 against symbol `__gnu_h2f_internal'
Date: Sun, 07 Aug 2016 08:46:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 4.9.2
X-Bugzilla-Keywords: link-failure
X-Bugzilla-Severity: normal
X-Bugzilla-Who: malithyapa at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71776-4-eBXh1qKfYK@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71776-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71776-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00881.txt.bz2
Content-length: 144

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71776

--- Comment #3 from malithyapa at gmail dot com ---
Tried with 4.9.3 issue is still there
>From gcc-bugs-return-533546-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 07 08:48:24 2016
Return-Path: <gcc-bugs-return-533546-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 121809 invoked by alias); 7 Aug 2016 08:48:24 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 121686 invoked by uid 48); 7 Aug 2016 08:48:12 -0000
From: "malithyapa at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/71776] relocation truncated to fit: R_ARM_THM_JUMP11 against symbol `__gnu_h2f_internal'
Date: Sun, 07 Aug 2016 08:48:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 4.9.2
X-Bugzilla-Keywords: link-failure
X-Bugzilla-Severity: normal
X-Bugzilla-Who: malithyapa at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71776-4-WNaS1IEyyo@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71776-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71776-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00882.txt.bz2
Content-length: 1549

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71776

--- Comment #4 from malithyapa at gmail dot com ---
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/arm-linux-gnueabihf/4.9/lto-wrapper
Target: arm-linux-gnueabihf
Configured with: ../src/configure -v --with-pkgversion='Debian 4.9.3-14'
--with-bugurl=file:///usr/share/doc/gcc-4.9/README.Bugs
--enable-languages=c,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr
--program-suffix=-4.9 --enable-shared --enable-linker-build-id
--libexecdir=/usr/lib --without-included-gettext --enable-threads=posix
--with-gxx-include-dir=/usr/include/c++/4.9 --libdir=/usr/lib --enable-nls
--with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug
--enable-libstdcxx-time=yes --enable-gnu-unique-object --disable-libitm
--disable-libquadmath --enable-plugin --with-system-zlib
--disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo
--with-java-home=/usr/lib/jvm/java-1.5.0-gcj-4.9-armhf/jre --enable-java-home
--with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-4.9-armhf
--with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-4.9-armhf
--with-arch-directory=arm --with-ecj-jar=/usr/share/java/eclipse-ecj.jar
--enable-objc-gc --enable-multiarch --disable-sjlj-exceptions
--with-arch=armv7-a --with-fpu=vfpv3-d16 --with-float=hard --with-mode=thumb
--enable-checking=release --build=arm-linux-gnueabihf
--host=arm-linux-gnueabihf --target=arm-linux-gnueabihf
Thread model: posix
gcc version 4.9.3 (Debian 4.9.3-14)
>From gcc-bugs-return-533547-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 07 09:09:18 2016
Return-Path: <gcc-bugs-return-533547-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 59330 invoked by alias); 7 Aug 2016 09:09:18 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 59265 invoked by uid 48); 7 Aug 2016 09:09:06 -0000
From: "mikpelinux at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71083] [5/6/7 Regression] Unaligned bit-field address when predictive commoning
Date: Sun, 07 Aug 2016 09:09:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: major
X-Bugzilla-Who: mikpelinux at gmail dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-71083-4-9rTkoSFhJ5@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71083-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71083-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00883.txt.bz2
Content-length: 599

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71083

Mikael Pettersson <mikpelinux at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mikpelinux at gmail dot com

--- Comment #5 from Mikael Pettersson <mikpelinux at gmail dot com> ---
Just adding that this test case fails with a SIGBUS on SPARC, using a recent
trunk gcc:

foo:
        ld      [%o0+1], %g3

(Checked by adding a main() and calling foo() with a struct lock_chain array.)
>From gcc-bugs-return-533548-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 07 09:49:59 2016
Return-Path: <gcc-bugs-return-533548-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 19889 invoked by alias); 7 Aug 2016 09:49:59 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 18942 invoked by uid 55); 7 Aug 2016 09:49:47 -0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: =?UTF-8?B?W0J1ZyBjLzcyODE2XSBbNS82LzcgUmVncmVzc2lvbl0gSUNFIG9uIHg4Nl82?= =?UTF-8?B?NC1saW51eC1nbnUgKHRyZWUgY2hlY2s6IGV4cGVjdGVkIHRyZWUgdGhhdCBj?= =?UTF-8?B?b250YWlucyDigJhkZWNsIHdpdGggUlRM4oCZIHN0cnVjdHVyZSwgaGF2ZSA=?= =?UTF-8?B?4oCYZmllbGRfZGVjbOKAmSBpbiBzZXRfZGVjbF9ydGwsIGF0IGVtaXQtcnRs?= =?UTF-8?B?LmM6MTI4Mik=?Date: Sun, 07 Aug 2016 09:49:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72816-4-i8Iv1MAVJ6@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72816-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72816-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00884.txt.bz2
Content-length: 574

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72816

--- Comment #3 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Author: jakub
Date: Sun Aug  7 09:49:14 2016
New Revision: 239218

URL: https://gcc.gnu.org/viewcvs?rev=239218&root=gcc&view=rev
Log:
        PR c/72816
        * stor-layout.c (layout_decl): Fix up formatting.
        (relayout_decl): Allow DECL to be FIELD_DECL.

        * gcc.dg/pr72816.c: New test.

Added:
    trunk/gcc/testsuite/gcc.dg/pr72816.c
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/stor-layout.c
    trunk/gcc/testsuite/ChangeLog
>From gcc-bugs-return-533549-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 07 10:08:25 2016
Return-Path: <gcc-bugs-return-533549-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 83250 invoked by alias); 7 Aug 2016 10:08:25 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 83172 invoked by uid 48); 7 Aug 2016 10:08:13 -0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: =?UTF-8?B?W0J1ZyBjLzcyODE2XSBbNS82IFJlZ3Jlc3Npb25dIElDRSBvbiB4ODZfNjQt?= =?UTF-8?B?bGludXgtZ251ICh0cmVlIGNoZWNrOiBleHBlY3RlZCB0cmVlIHRoYXQgY29u?= =?UTF-8?B?dGFpbnMg4oCYZGVjbCB3aXRoIFJUTOKAmSBzdHJ1Y3R1cmUsIGhhdmUg4oCY?= =?UTF-8?B?ZmllbGRfZGVjbOKAmSBpbiBzZXRfZGVjbF9ydGwsIGF0IGVtaXQtcnRsLmM6?= =?UTF-8?B?MTI4Mik=?Date: Sun, 07 Aug 2016 10:08:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status assigned_to short_desc
Message-ID: <bug-72816-4-EhGmjxgeay@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72816-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72816-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00885.txt.bz2
Content-length: 1095

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72816

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED
           Assignee|unassigned at gcc dot gnu.org      |jakub at gcc dot gnu.org
            Summary|[5/6/7 Regression] ICE on   |[5/6 Regression] ICE on
                   |x86_64-linux-gnu (tree      |x86_64-linux-gnu (tree
                   |check: expected tree that   |check: expected tree that
                   |contains ‘decl with RTL’    |contains ‘decl with RTL’
                   |structure, have             |structure, have
                   |‘field_decl’ in             |‘field_decl’ in
                   |set_decl_rtl, at            |set_decl_rtl, at
                   |emit-rtl.c:1282)            |emit-rtl.c:1282)

--- Comment #4 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Fixed on the trunk so far.
>From gcc-bugs-return-533550-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 07 10:31:02 2016
Return-Path: <gcc-bugs-return-533550-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 103514 invoked by alias); 7 Aug 2016 10:31:01 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 103154 invoked by uid 48); 7 Aug 2016 10:30:49 -0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/72824] [5/6/7 Regression] Signed floating point zero semantics broken at optimization level -O3 (tree-loop-distribute-patterns)
Date: Sun, 07 Aug 2016 10:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cc assigned_to target_milestone
Message-ID: <bug-72824-4-xN0cvBnHqK@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72824-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72824-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00886.txt.bz2
Content-length: 869

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72824

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED
                 CC|                            |jakub at gcc dot gnu.org
           Assignee|unassigned at gcc dot gnu.org      |jakub at gcc dot gnu.org
   Target Milestone|---                         |5.5

--- Comment #3 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Most likely started with r187655.

static inline void
foo (float *x, float value)
{
  int i;
  for (i = 0; i < 32; ++i)
    x[i] = value;
}

int
main ()
{
  float x[32];
  foo (x, -0.f);
  if (__builtin_copysignf (1.0, x[3]) != -1.0f)
    __builtin_abort ();
  return 0;
}

I'll have a look.
>From gcc-bugs-return-533551-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 07 10:32:28 2016
Return-Path: <gcc-bugs-return-533551-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 104574 invoked by alias); 7 Aug 2016 10:32:28 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 104463 invoked by uid 48); 7 Aug 2016 10:32:16 -0000
From: "dilyan.palauzov at aegee dot org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug lto/70345] Installing liblto_plugin under $LIBDIR/bfd-plugins
Date: Sun, 07 Aug 2016 10:32:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: lto
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: dilyan.palauzov at aegee dot org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-70345-4-HiXxjAM3OF@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70345-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70345-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00887.txt.bz2
Content-length: 437

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70345

--- Comment #3 from Дилян Палаузов <dilyan.palauzov at aegee dot org> ---
Am I correct if I say, that the gcc plugin is backward compatible: the plugin
from the newest gcc can be used with any gcc but not vice versa?

How do nm and ar determine, if a plugin shall be used, for instance when `nm
test.o` is called?
>From gcc-bugs-return-533552-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 07 10:45:56 2016
Return-Path: <gcc-bugs-return-533552-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 2569 invoked by alias); 7 Aug 2016 10:45:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 2509 invoked by uid 48); 7 Aug 2016 10:45:44 -0000
From: "trippels at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug lto/70345] Installing liblto_plugin under $LIBDIR/bfd-plugins
Date: Sun, 07 Aug 2016 10:45:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: lto
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: trippels at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-70345-4-WKt1RxsEb9@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70345-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70345-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00888.txt.bz2
Content-length: 732

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70345

--- Comment #4 from Markus Trippelsdorf <trippels at gcc dot gnu.org> ---
(In reply to Дилян Палаузов from comment #3)
> Am I correct if I say, that the gcc plugin is backward compatible: the
> plugin from the newest gcc can be used with any gcc but not vice versa?

Right now the plugin from any gcc can be used with any gcc.
But this might change in the future.

> How do nm and ar determine, if a plugin shall be used, for instance when `nm
> test.o` is called?

They get tried in alphabetic order. The first plugin that claims the object in
question is used.
Mixed gcc/llvm archives are also supported.
>From gcc-bugs-return-533553-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 07 11:56:56 2016
Return-Path: <gcc-bugs-return-533553-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 78530 invoked by alias); 7 Aug 2016 11:56:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 78385 invoked by uid 48); 7 Aug 2016 11:56:43 -0000
From: "vehre at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/72698] [5/6/7 Regression] ICE in lhd_incomplete_type_error, at langhooks.c:205
Date: Sun, 07 Aug 2016 11:56:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: vehre at gcc dot gnu.org
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: vehre at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status
Message-ID: <bug-72698-4-jabAP08SBt@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72698-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72698-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00889.txt.bz2
Content-length: 423

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72698

vehre at gcc dot gnu.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |WAITING

--- Comment #6 from vehre at gcc dot gnu.org ---
Patch available at:

https://gcc.gnu.org/ml/fortran/2016-08/msg00020.html

Waiting for review.
>From gcc-bugs-return-533554-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 07 12:00:29 2016
Return-Path: <gcc-bugs-return-533554-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 81516 invoked by alias); 7 Aug 2016 12:00:29 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 81295 invoked by uid 48); 7 Aug 2016 12:00:17 -0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/72824] [5/6/7 Regression] Signed floating point zero semantics broken at optimization level -O3 (tree-loop-distribute-patterns)
Date: Sun, 07 Aug 2016 12:00:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: attachments.created
Message-ID: <bug-72824-4-TzpchDLx2S@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72824-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72824-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00890.txt.bz2
Content-length: 253

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72824

--- Comment #4 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Created attachment 39066
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39066&action=edit
gcc7-pr72824.patch

Untested fix.
>From gcc-bugs-return-533555-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 07 12:10:31 2016
Return-Path: <gcc-bugs-return-533555-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 85382 invoked by alias); 7 Aug 2016 12:10:31 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 85280 invoked by uid 48); 7 Aug 2016 12:10:18 -0000
From: "bernd.edlinger at hotmail dot de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71083] [5/6/7 Regression] Unaligned bit-field address when predictive commoning
Date: Sun, 07 Aug 2016 12:10:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: major
X-Bugzilla-Who: bernd.edlinger at hotmail dot de
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-71083-4-tPpzqujvce@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71083-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71083-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00891.txt.bz2
Content-length: 1259

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71083

Bernd Edlinger <bernd.edlinger at hotmail dot de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |bernd.edlinger at hotmail dot de

--- Comment #6 from Bernd Edlinger <bernd.edlinger at hotmail dot de> ---
just wanted to add that the patch in comment#2
does not fix this similar test case:

struct lock_chain {
  char x;
  unsigned short base;
} __attribute((packed));

struct lock_chain * foo (struct lock_chain *chain)
{
  int i;
  for (i = 0; i < 100; i++)
    {
      chain[i+1].base = chain[i].base;
    }
  return chain;
}

foo:
        @ Function supports interworking.
        @ args = 0, pretend = 0, frame = 0
        @ frame_needed = 0, uses_anonymous_args = 0
        @ link register save eliminated.
        ldrh    r2, [r0, #1] <- unaligned
        add     r1, r0, #300
        and     ip, r2, #255
        add     r1, r1, #3
        lsr     r2, r2, #8
        add     r3, r0, #3
.L2:
        strb    ip, [r3, #1]
        strb    r2, [r3, #2]
        add     r3, r3, #3
        cmp     r3, r1
        bne     .L2
        bx      lr
>From gcc-bugs-return-533556-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 07 13:25:21 2016
Return-Path: <gcc-bugs-return-533556-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 93140 invoked by alias); 7 Aug 2016 13:25:20 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 90339 invoked by uid 55); 7 Aug 2016 13:25:06 -0000
From: "tkoenig at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/71961] [7 Regression] 178.galgel in SPEC CPU 2000 is miscompiled
Date: Sun, 07 Aug 2016 13:25:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: tkoenig at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71961-4-GN54Jn40Pk@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71961-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71961-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00892.txt.bz2
Content-length: 494

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71961

--- Comment #16 from Thomas Koenig <tkoenig at gcc dot gnu.org> ---
Author: tkoenig
Date: Sun Aug  7 13:24:32 2016
New Revision: 239220

URL: https://gcc.gnu.org/viewcvs?rev=239220&root=gcc&view=rev
Log:
2016-08-07  Thomas Koenig  <tkoenig@gcc.gnu.org>

        PR fortran/71961
        * gfortran.dg/matmul_10.f90:  New testcase.


Added:
    trunk/gcc/testsuite/gfortran.dg/matmul_10.f90
Modified:
    trunk/gcc/testsuite/ChangeLog
>From gcc-bugs-return-533557-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 07 13:26:29 2016
Return-Path: <gcc-bugs-return-533557-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 112863 invoked by alias); 7 Aug 2016 13:26:29 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 112746 invoked by uid 48); 7 Aug 2016 13:26:16 -0000
From: "tkoenig at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/71961] [7 Regression] 178.galgel in SPEC CPU 2000 is miscompiled
Date: Sun, 07 Aug 2016 13:26:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: tkoenig at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-71961-4-MwrQ3ecz9F@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71961-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71961-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00893.txt.bz2
Content-length: 451

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71961

Thomas Koenig <tkoenig at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--- Comment #17 from Thomas Koenig <tkoenig at gcc dot gnu.org> ---
Test case committed, closing.
>From gcc-bugs-return-533558-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 07 13:32:48 2016
Return-Path: <gcc-bugs-return-533558-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 118098 invoked by alias); 7 Aug 2016 13:32:48 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 118019 invoked by uid 48); 7 Aug 2016 13:32:35 -0000
From: "vehre at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/71936] [6/7 Regression] ICE in wide_int_to_tree, at tree.c:1487
Date: Sun, 07 Aug 2016 13:32:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: vehre at gcc dot gnu.org
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: vehre at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status
Message-ID: <bug-71936-4-jEmuN0EgGR@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71936-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71936-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00894.txt.bz2
Content-length: 423

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71936

vehre at gcc dot gnu.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |WAITING

--- Comment #5 from vehre at gcc dot gnu.org ---
Patch available at:

https://gcc.gnu.org/ml/fortran/2016-08/msg00021.html

Waiting for review.
>From gcc-bugs-return-533559-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 07 15:16:32 2016
Return-Path: <gcc-bugs-return-533559-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 32413 invoked by alias); 7 Aug 2016 15:16:32 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 32337 invoked by uid 48); 7 Aug 2016 15:16:20 -0000
From: "doko at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72827] New: [7 Regression] gnat bootstrap broken on powerpc64le-linux-gnu
Date: Sun, 07 Aug 2016 15:16:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: doko at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-72827-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00895.txt.bz2
Content-length: 4350

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72827

            Bug ID: 72827
           Summary: [7 Regression] gnat bootstrap broken on
                    powerpc64le-linux-gnu
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: target
          Assignee: unassigned at gcc dot gnu.org
          Reporter: doko at gcc dot gnu.org
  Target Milestone: ---

seen with trunk 20160804 and 20160807:

make[5]: Entering directory
'/home/doko/gcc/gcc-snapshot-20160804/build/gcc/ada/tools'
../../gnatmake -j0 -c -b -I- -I../rts -I.
-I/home/doko/gcc/gcc-snapshot-20160804/src/gcc/ada \
  --GNATBIND="../../gnatbind" --GCC="../../xgcc -B../../ -g -O2 -W -Wall 
-gnatpg -gnata" \
  gnatchop gnatcmd gnatkr gnatls gnatprep gnatxref gnatfind gnatname \
  gnatclean -bargs -I- -I../rts -I.
-I/home/doko/gcc/gcc-snapshot-20160804/src/gcc/ada -static -x
../../gnatbind -I../rts -I. -I/home/doko/gcc/gcc-snapshot-20160804/src/gcc/ada
-I- -I../rts -I. -I/home/doko/gcc/gcc-
snapshot-20160804/src/gcc/ada -static -x -x
/home/doko/gcc/gcc-snapshot-20160804/build/gcc/ada/tools/gnatchop.ali
../../gnatbind -I../rts -I. -I/home/doko/gcc/gcc-snapshot-20160804/src/gcc/ada
-I- -I../rts -I. -I/home/doko/gcc/gcc-
snapshot-20160804/src/gcc/ada -static -x -x
/home/doko/gcc/gcc-snapshot-20160804/build/gcc/ada/tools/gnatcmd.ali
../../gnatbind -I../rts -I. -I/home/doko/gcc/gcc-snapshot-20160804/src/gcc/ada
-I- -I../rts -I. -I/home/doko/gcc/gcc-
snapshot-20160804/src/gcc/ada -static -x -x
/home/doko/gcc/gcc-snapshot-20160804/build/gcc/ada/tools/gnatkr.ali
../../gnatbind -I../rts -I. -I/home/doko/gcc/gcc-snapshot-20160804/src/gcc/ada
-I- -I../rts -I. -I/home/doko/gcc/gcc-snapshot-20160804/src/gcc/ada -static -x
-x /home/doko/gcc/gcc-snapshot-20160804/build/gcc/ada/tools/gnatls.ali
../../gnatbind -I../rts -I. -I/home/doko/gcc/gcc-snapshot-20160804/src/gcc/ada
-I- -I../rts -I. -I/home/doko/gcc/gcc-snapshot-20160804/src/gcc/ada -static -x
-x /home/doko/gcc/gcc-snapshot-20160804/build/gcc/ada/tools/gnatprep.ali
../../gnatbind -I../rts -I. -I/home/doko/gcc/gcc-snapshot-20160804/src/gcc/ada
-I- -I../rts -I. -I/home/doko/gcc/gcc-snapshot-20160804/src/gcc/ada -static -x
-x /home/doko/gcc/gcc-snapshot-20160804/build/gcc/ada/tools/gnatxref.ali
../../gnatbind -I../rts -I. -I/home/doko/gcc/gcc-snapshot-20160804/src/gcc/ada
-I- -I../rts -I. -I/home/doko/gcc/gcc-snapshot-20160804/src/gcc/ada -static -x
-x /home/doko/gcc/gcc-snapshot-20160804/build/gcc/ada/tools/gnatfind.ali
../../gnatbind -I../rts -I. -I/home/doko/gcc/gcc-snapshot-20160804/src/gcc/ada
-I- -I../rts -I. -I/home/doko/gcc/gcc-snapshot-20160804/src/gcc/ada -static -x
-x /home/doko/gcc/gcc-snapshot-20160804/build/gcc/ada/tools/gnatname.ali
../../gnatbind -I../rts -I. -I/home/doko/gcc/gcc-snapshot-20160804/src/gcc/ada
-I- -I../rts -I. -I/home/doko/gcc/gcc-snapshot-20160804/src/gcc/ada -static -x
-x /home/doko/gcc/gcc-snapshot-20160804/build/gcc/ada/tools/gnatclean.ali

raised STORAGE_ERROR : stack overflow or erroneous memory access
../gcc-interface/Makefile:2652: recipe for target 'common-tools' failed
make[5]: *** [common-tools] Error 1
make[5]: Leaving directory
'/home/doko/gcc/gcc-snapshot-20160804/build/gcc/ada/tools'
Makefile:194: recipe for target 'gnattools-native' failed
make[4]: *** [gnattools-native] Error 2

configured with

         --enable-languages=c,ada,c++,java,go,fortran,objc,obj-c++
         --prefix=/usr/lib/gcc-snapshot
         --enable-shared
         --enable-linker-build-id
         --disable-nls
         --with-sysroot=/
         --enable-clocale=gnu
         --enable-libstdcxx-debug
         --enable-libstdcxx-time=yes
         --with-default-libstdcxx-abi=new
         --enable-gnu-unique-object
         --disable-libquadmath
         --enable-plugin
         --enable-default-pie
         --with-system-zlib
         --enable-objc-gc
         --enable-secureplt
         --with-cpu=power8
         --enable-targets=powerpcle-linux
         --disable-multilib
         --enable-multiarch
         --disable-werror
         --with-long-double-128
         --enable-checking=yes
         --build=powerpc64le-linux-gnu
         --host=powerpc64le-linux-gnu
         --target=powerpc64le-linux-gnu
>From gcc-bugs-return-533560-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 07 15:26:40 2016
Return-Path: <gcc-bugs-return-533560-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 18635 invoked by alias); 7 Aug 2016 15:26:40 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 18481 invoked by uid 55); 7 Aug 2016 15:26:27 -0000
From: "tkoenig at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/71961] [7 Regression] 178.galgel in SPEC CPU 2000 is miscompiled
Date: Sun, 07 Aug 2016 15:26:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: tkoenig at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71961-4-SiEISwfYQt@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71961-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71961-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00896.txt.bz2
Content-length: 490

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71961

--- Comment #18 from Thomas Koenig <tkoenig at gcc dot gnu.org> ---
Author: tkoenig
Date: Sun Aug  7 15:25:56 2016
New Revision: 239221

URL: https://gcc.gnu.org/viewcvs?rev=239221&root=gcc&view=rev
Log:
2016-08-07  Thomas Koenig  <tkoenig@gcc.gnu.org>

        PR fortran/71961
        * gfortran.dg/pr70040.f90:  New testcase.


Added:
    trunk/gcc/testsuite/gfortran.dg/pr70040.f90
Modified:
    trunk/gcc/testsuite/ChangeLog
>From gcc-bugs-return-533561-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 07 15:28:03 2016
Return-Path: <gcc-bugs-return-533561-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 20310 invoked by alias); 7 Aug 2016 15:28:03 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 19559 invoked by uid 48); 7 Aug 2016 15:27:49 -0000
From: "tkoenig at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/70040] [6 Regression] ICE in gimplify.c with deferred-length strings
Date: Sun, 07 Aug 2016 15:28:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: tkoenig at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: short_desc
Message-ID: <bug-70040-4-5ukdg4VYMC@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70040-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70040-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00897.txt.bz2
Content-length: 591

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70040

Thomas Koenig <tkoenig at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|[6/7 Regression] ICE in     |[6 Regression] ICE in
                   |gimplify.c with             |gimplify.c with
                   |deferred-length strings     |deferred-length strings

--- Comment #8 from Thomas Koenig <tkoenig at gcc dot gnu.org> ---
Works on trunk at least, now.

Test case committed, will check for 6 next.
>From gcc-bugs-return-533562-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 07 15:41:27 2016
Return-Path: <gcc-bugs-return-533562-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 33599 invoked by alias); 7 Aug 2016 15:41:26 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 33395 invoked by uid 55); 7 Aug 2016 15:41:08 -0000
From: "tkoenig at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/70040] [6 Regression] ICE in gimplify.c with deferred-length strings
Date: Sun, 07 Aug 2016 15:41:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: tkoenig at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-70040-4-4YDokboGBR@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70040-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70040-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00898.txt.bz2
Content-length: 424

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70040

--- Comment #9 from Thomas Koenig <tkoenig at gcc dot gnu.org> ---
Author: tkoenig
Date: Sun Aug  7 15:40:34 2016
New Revision: 239222

URL: https://gcc.gnu.org/viewcvs?rev=239222&root=gcc&view=rev
Log:
2016-08-07  Thomas Koenig  <tkoenig@gcc.gnu.org>

        PR fortran/70040
        Corrected last ChangeLog entry.


Modified:
    trunk/gcc/testsuite/ChangeLog
>From gcc-bugs-return-533563-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 07 15:53:34 2016
Return-Path: <gcc-bugs-return-533563-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 56139 invoked by alias); 7 Aug 2016 15:53:33 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 55991 invoked by uid 48); 7 Aug 2016 15:53:20 -0000
From: "dominiq at lps dot ens.fr" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/70040] [6 Regression] ICE in gimplify.c with deferred-length strings
Date: Sun, 07 Aug 2016 15:53:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dominiq at lps dot ens.fr
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status
Message-ID: <bug-70040-4-wLASFiaJSD@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70040-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70040-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00899.txt.bz2
Content-length: 467

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70040

Dominique d'Humieres <dominiq at lps dot ens.fr> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |WAITING

--- Comment #10 from Dominique d'Humieres <dominiq at lps dot ens.fr> ---
Fixed by revision r238192, r238198, and r238225 for trunk, gcc-6, and gcc-5
respectively?
>From gcc-bugs-return-533564-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 07 15:57:10 2016
Return-Path: <gcc-bugs-return-533564-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 58684 invoked by alias); 7 Aug 2016 15:57:10 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 58590 invoked by uid 55); 7 Aug 2016 15:56:57 -0000
From: "tkoenig at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/70040] [6 Regression] ICE in gimplify.c with deferred-length strings
Date: Sun, 07 Aug 2016 15:57:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: tkoenig at gcc dot gnu.org
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-70040-4-elH9axKJQg@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70040-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70040-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00900.txt.bz2
Content-length: 550

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70040

--- Comment #11 from Thomas Koenig <tkoenig at gcc dot gnu.org> ---
Author: tkoenig
Date: Sun Aug  7 15:56:25 2016
New Revision: 239223

URL: https://gcc.gnu.org/viewcvs?rev=239223&root=gcc&view=rev
Log:
2016-08-07  Thomas Koenig  <tkoenig@gcc.gnu.org>

        PR fortran/70040
        Backport from trunk
        * gfortran.dg/pr70040.f90:  New testcase.


Added:
    branches/gcc-6-branch/gcc/testsuite/gfortran.dg/pr70040.f90
Modified:
    branches/gcc-6-branch/gcc/testsuite/ChangeLog
>From gcc-bugs-return-533565-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 07 16:02:44 2016
Return-Path: <gcc-bugs-return-533565-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 67149 invoked by alias); 7 Aug 2016 16:02:44 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 65294 invoked by uid 48); 7 Aug 2016 16:02:30 -0000
From: "tkoenig at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/70040] [5 Regression] ICE in gimplify.c with deferred-length strings
Date: Sun, 07 Aug 2016 16:02:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: tkoenig at gcc dot gnu.org
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: short_desc
Message-ID: <bug-70040-4-RL3NzieWy7@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70040-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70040-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00901.txt.bz2
Content-length: 887

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70040

Thomas Koenig <tkoenig at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|[6 Regression] ICE in       |[5 Regression] ICE in
                   |gimplify.c with             |gimplify.c with
                   |deferred-length strings     |deferred-length strings

--- Comment #12 from Thomas Koenig <tkoenig at gcc dot gnu.org> ---
(In reply to Dominique d'Humieres from comment #10)
> Fixed by revision r238192, r238198, and r238225 for trunk, gcc-6, and gcc-5
> respectively?

Probably.

I don't have a gcc 5 tree at the moment (and it will be a
couple of days until I can regenerate it).  So, if somebody
could check that this works, and can also commit the test case,
we can close this as FIXED.
>From gcc-bugs-return-533566-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 07 16:12:58 2016
Return-Path: <gcc-bugs-return-533566-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 76074 invoked by alias); 7 Aug 2016 16:12:57 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 75931 invoked by uid 48); 7 Aug 2016 16:12:45 -0000
From: "dominiq at lps dot ens.fr" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/70040] [5 Regression] ICE in gimplify.c with deferred-length strings
Date: Sun, 07 Aug 2016 16:12:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dominiq at lps dot ens.fr
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-70040-4-HD4sTPqNhC@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70040-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70040-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00902.txt.bz2
Content-length: 390

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70040

--- Comment #13 from Dominique d'Humieres <dominiq at lps dot ens.fr> ---
> I don't have a gcc 5 tree at the moment (and it will be a
> couple of days until I can regenerate it).  So, if somebody
> could check that this works, and can also commit the test case,
> we can close this as FIXED.

Works for me with 5.4.0 and 5.4.1 r238866.
>From gcc-bugs-return-533567-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 07 16:23:21 2016
Return-Path: <gcc-bugs-return-533567-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 84930 invoked by alias); 7 Aug 2016 16:23:21 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 82746 invoked by uid 48); 7 Aug 2016 16:23:08 -0000
From: "tkoenig at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/65677] Incomplete assignment on deferred-length character variable
Date: Sun, 07 Aug 2016 16:23:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 5.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: tkoenig at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-65677-4-pF17qyiWLX@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-65677-4@http.gcc.gnu.org/bugzilla/>
References: <bug-65677-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00903.txt.bz2
Content-length: 448

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65677

Thomas Koenig <tkoenig at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |tkoenig at gcc dot gnu.org

--- Comment #2 from Thomas Koenig <tkoenig at gcc dot gnu.org> ---
Yet another dependency error... I'll try to take a look at this.
>From gcc-bugs-return-533568-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 07 17:02:22 2016
Return-Path: <gcc-bugs-return-533568-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 121193 invoked by alias); 7 Aug 2016 17:02:22 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 121130 invoked by uid 55); 7 Aug 2016 17:02:11 -0000
From: "tkoenig at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/71795] [5/6/7 Regression] Two Bugs in array constructors (optimization)
Date: Sun, 07 Aug 2016 17:02:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 4.9.1
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: critical
X-Bugzilla-Who: tkoenig at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: tkoenig at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71795-4-I14weHq3KL@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71795-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71795-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00904.txt.bz2
Content-length: 912

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71795

--- Comment #10 from Thomas Koenig <tkoenig at gcc dot gnu.org> ---
Author: tkoenig
Date: Sun Aug  7 17:01:39 2016
New Revision: 239224

URL: https://gcc.gnu.org/viewcvs?rev=239224&root=gcc&view=rev
Log:
2016-08-07  Thomas Koenig  <tkoenig@gcc.gnu.org>

        PR fortran/71795
        Backport from trunk
        * frontend-passes.c (combine_array_constructor):  Don't
        do anything if the expression is inside an array iterator.

2016-08-07  Thomas Koenig  <tkoenig@gcc.gnu.org>

        PR fortran/71795
        Backport from trunk
        * gfortran.dg/array_constructor_50.f90:  New test.



Added:
    branches/gcc-6-branch/gcc/testsuite/gfortran.dg/array_constructor_50.f90
Modified:
    branches/gcc-6-branch/gcc/fortran/ChangeLog
    branches/gcc-6-branch/gcc/fortran/frontend-passes.c
    branches/gcc-6-branch/gcc/testsuite/ChangeLog
>From gcc-bugs-return-533569-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 07 17:04:47 2016
Return-Path: <gcc-bugs-return-533569-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 122928 invoked by alias); 7 Aug 2016 17:04:46 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 122848 invoked by uid 48); 7 Aug 2016 17:04:33 -0000
From: "tkoenig at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/71795] [5 Regression] Two Bugs in array constructors (optimization)
Date: Sun, 07 Aug 2016 17:04:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 4.9.1
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: critical
X-Bugzilla-Who: tkoenig at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: tkoenig at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: short_desc cf_known_to_fail
Message-ID: <bug-71795-4-a8nVvoq8vh@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71795-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71795-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00905.txt.bz2
Content-length: 585

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71795

Thomas Koenig <tkoenig at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|[5/6/7 Regression] Two Bugs |[5 Regression] Two Bugs in
                   |in array constructors       |array constructors
                   |(optimization)              |(optimization)
      Known to fail|6.1.0, 7.0                  |

--- Comment #11 from Thomas Koenig <tkoenig at gcc dot gnu.org> ---
Only 5 left do do.
>From gcc-bugs-return-533570-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 07 17:40:30 2016
Return-Path: <gcc-bugs-return-533570-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 27178 invoked by alias); 7 Aug 2016 17:40:29 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 26852 invoked by uid 48); 7 Aug 2016 17:40:16 -0000
From: "tkoenig at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/65677] Incomplete assignment on deferred-length character variable
Date: Sun, 07 Aug 2016 17:40:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 5.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: tkoenig at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-65677-4-9upoiIX8gd@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-65677-4@http.gcc.gnu.org/bugzilla/>
References: <bug-65677-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00906.txt.bz2
Content-length: 2174

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65677

--- Comment #3 from Thomas Koenig <tkoenig at gcc dot gnu.org> ---
ig25@linux-fd1f:~/Krempel/Ass> cat a.f90
program main
  character(:), allocatable :: text

  text = 'asdf'
  text = adjustl(text(2:))
  print *,text
end program main
ig25@linux-fd1f:~/Krempel/Ass> gfortran a.f90
ig25@linux-fd1f:~/Krempel/Ass> ./a.out
 sd 

Should be 'sdf'.

Hmm... the rather obvious-looking patch

Index: frontend-passes.c
===================================================================
--- frontend-passes.c   (Revision 239218)
+++ frontend-passes.c   (Arbeitskopie)
@@ -174,7 +174,7 @@
     return 0;

   expr2 = gfc_discard_nops (co->expr2);
-  if (expr2->expr_type != EXPR_VARIABLE)
+  if (expr2->expr_type != EXPR_VARIABLE && expr2->expr_type != EXPR_FUNCTION)
     return 0;

   if (!gfc_check_dependency (expr1, expr2, true))

fails rather spectacularly with

a.f90:5:0:

   text = adjustl(text(2:))

internal compiler error: in fold_binary_loc, bei fold-const.c:9105
0x9297f9 fold_binary_loc(unsigned int, tree_code, tree_node*, tree_node*,
tree_node*)
        ../../trunk/gcc/fold-const.c:9102
0x93225a fold_build2_stat_loc(unsigned int, tree_code, tree_node*, tree_node*,
tree_node*)
        ../../trunk/gcc/fold-const.c:12287
0x7522d3 alloc_scalar_allocatable_for_assignment
        ../../trunk/gcc/fortran/trans-expr.c:9051
0x7522d3 gfc_trans_assignment_1
        ../../trunk/gcc/fortran/trans-expr.c:9440
0x70b4c5 trans_code
        ../../trunk/gcc/fortran/trans.c:1678
0x78cc58 gfc_trans_block_construct(gfc_code*)
        ../../trunk/gcc/fortran/trans-stmt.c:1799
0x70b287 trans_code
        ../../trunk/gcc/fortran/trans.c:1783
0x73a048 gfc_generate_function_code(gfc_namespace*)
        ../../trunk/gcc/fortran/trans-decl.c:6207
0x6c5106 translate_all_program_units
        ../../trunk/gcc/fortran/parse.c:5916
0x6c5106 gfc_parse_file()
        ../../trunk/gcc/fortran/parse.c:6122
0x707382 gfc_be_parse_file
        ../../trunk/gcc/fortran/f95-lang.c:198
>From gcc-bugs-return-533571-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 07 18:02:47 2016
Return-Path: <gcc-bugs-return-533571-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 110292 invoked by alias); 7 Aug 2016 18:02:46 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 110208 invoked by uid 48); 7 Aug 2016 18:02:33 -0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/58706] ICE with lambda in OpenMP for-loop
Date: Sun, 07 Aug 2016 18:02:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords: ice-on-valid-code, openmp
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed cf_known_to_fail
Message-ID: <bug-58706-4-EyLAI0VFUY@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-58706-4@http.gcc.gnu.org/bugzilla/>
References: <bug-58706-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00907.txt.bz2
Content-length: 1714

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58706

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-07
     Ever confirmed|0                           |1
      Known to fail|                            |6.1.0

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Confirmed:
t88.cc: In instantiation of 'void foo() [with T = int]':
t88.cc:10:12:   required from here
t88.cc:3:9: internal compiler error: in tsubst_copy, at cp/pt.c:14042
 #pragma omp for
         ^~~
0x5d0f73 tsubst_copy
        ../../gcc/gcc/cp/pt.c:14040
0x5d16b3 tsubst_copy_and_build(tree_node*, tree_node*, int, tree_node*, bool,
bool)
        ../../gcc/gcc/cp/pt.c:16992
0x5cbcd3 tsubst_expr(tree_node*, tree_node*, int, tree_node*, bool)
        ../../gcc/gcc/cp/pt.c:15801
0x5ccc6f tsubst_omp_for_iterator
        ../../gcc/gcc/cp/pt.c:14880
0x5ccc6f tsubst_expr(tree_node*, tree_node*, int, tree_node*, bool)
        ../../gcc/gcc/cp/pt.c:15524
0x5cc44f tsubst_expr(tree_node*, tree_node*, int, tree_node*, bool)
        ../../gcc/gcc/cp/pt.c:15289
0x5e6987 instantiate_decl(tree_node*, int, bool)
        ../../gcc/gcc/cp/pt.c:22013
0x5e875f instantiate_pending_templates(int)
        ../../gcc/gcc/cp/pt.c:22130
0x607d1b c_parse_final_cleanups()
        ../../gcc/gcc/cp/decl2.c:4599
Please submit a full bug report,
with preprocessed source if appropriate.
Please include the complete backtrace with any bug report.
See <http://gcc.gnu.org/bugs.html> for instructions.
>From gcc-bugs-return-533572-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 07 18:11:12 2016
Return-Path: <gcc-bugs-return-533572-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 30109 invoked by alias); 7 Aug 2016 18:11:12 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 30009 invoked by uid 48); 7 Aug 2016 18:10:57 -0000
From: "ott at fb dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug debug/72828] New: ICE in clone_tree_partial when compiling with -fdebug-types-section
Date: Sun, 07 Aug 2016 18:11:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: debug
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ott at fb dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-72828-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00908.txt.bz2
Content-length: 1893

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72828

            Bug ID: 72828
           Summary: ICE in clone_tree_partial when compiling with
                    -fdebug-types-section
           Product: gcc
           Version: 6.1.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: debug
          Assignee: unassigned at gcc dot gnu.org
          Reporter: ott at fb dot com
  Target Milestone: ---

Created attachment 39067
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39067&action=edit
Repro for GCC 6.1.0

Trying to compile HHVM with -fdebug-types-section, it fails with an ICE in
clone_tree_partial. The attached repro was obtained with creduce. 
Note that while the original file ICEs with all the GCC versions I tested (4.9,
5.1, and 6.1), the attached repro only crashes with 6.1, probably the bug is
very dependent on code generation decisions (note that it doesn't crash without
--param=early-inlining-insns=200).

> g++ debug_types_ice_6.cpp -c -o /dev/null -std=c++11 -fdebug-types-section -O3  -g2 --param=early-inlining-insns=200 -w
debug_types_ice_6.cpp:237:1: internal compiler error: in clone_tree_partial, at
dwarf2out.c:7916
 }
 ^
0x7d2a20 clone_tree_partial
        ../../gcc/dwarf2out.c:7916
0x7d2b9f copy_decls_walk
        ../../gcc/dwarf2out.c:7981
0x7d2aef copy_decls_walk
        ../../gcc/dwarf2out.c:8021
0x7d2aef copy_decls_walk
        ../../gcc/dwarf2out.c:8021
0x7d2aef copy_decls_walk
        ../../gcc/dwarf2out.c:8021
0x7d2c74 copy_decls_walk
        ../../gcc/dwarf2out.c:8015
0x7d2aef copy_decls_walk
        ../../gcc/dwarf2out.c:8021
0x7d2aef copy_decls_walk
        ../../gcc/dwarf2out.c:8021
0x7dceee copy_decls_for_unworthy_types
        ../../gcc/dwarf2out.c:8035
0x7f759a dwarf2out_finish
        ../../gcc/dwarf2out.c:27406

>  g++ --version
g++ (GCC) 6.1.0
>From gcc-bugs-return-533573-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 07 18:18:31 2016
Return-Path: <gcc-bugs-return-533573-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 34895 invoked by alias); 7 Aug 2016 18:18:31 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 34809 invoked by uid 48); 7 Aug 2016 18:18:20 -0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ipa/68331] [meta-bug] fipa-pta issues
Date: Sun, 07 Aug 2016 18:18:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ipa
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: meta-bug
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-68331-4-NHDF7QgLzF@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68331-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68331-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00909.txt.bz2
Content-length: 534

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68331

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |meta-bug
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-07
     Ever confirmed|0                           |1

--- Comment #14 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
.
>From gcc-bugs-return-533574-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 07 18:18:56 2016
Return-Path: <gcc-bugs-return-533574-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 35759 invoked by alias); 7 Aug 2016 18:18:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 35588 invoked by uid 48); 7 Aug 2016 18:18:43 -0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/38939] MULLW on often faster than SLWI ADD SLWI ADD..
Date: Sun, 07 Aug 2016 18:18:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 4.3.2
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_severity
Message-ID: <bug-38939-4-rzyeIMegbZ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-38939-4@http.gcc.gnu.org/bugzilla/>
References: <bug-38939-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00910.txt.bz2
Content-length: 300

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=38939

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|normal                      |enhancement
>From gcc-bugs-return-533576-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 07 18:57:55 2016
Return-Path: <gcc-bugs-return-533576-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 117386 invoked by alias); 7 Aug 2016 18:57:55 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 117217 invoked by uid 48); 7 Aug 2016 18:57:51 -0000
From: "eric at efcs dot ca" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/71376] __cpp_noexcept_function_type feature test macro not defined.
Date: Sun, 07 Aug 2016 18:57:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: eric at efcs dot ca
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71376-4-a31Zc03uzf@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71376-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71376-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00912.txt.bz2
Content-length: 232

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71376

--- Comment #2 from Eric Fiselier <eric at efcs dot ca> ---
I was wrong about the "GCC has recently implemented "noexcept as part of the
type system"" part.  Closing as invalid.
>From gcc-bugs-return-533575-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 07 18:57:54 2016
Return-Path: <gcc-bugs-return-533575-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 117245 invoked by alias); 7 Aug 2016 18:57:54 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 117182 invoked by uid 48); 7 Aug 2016 18:57:41 -0000
From: "eric at efcs dot ca" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/71376] __cpp_noexcept_function_type feature test macro not defined.
Date: Sun, 07 Aug 2016 18:57:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: eric at efcs dot ca
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-71376-4-dfJruqmDBE@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71376-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71376-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00911.txt.bz2
Content-length: 526

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71376

Eric Fiselier <eric at efcs dot ca> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |INVALID

--- Comment #1 from Eric Fiselier <eric at efcs dot ca> ---
I was wrong about the "GCC has recently implemented "noexcept as part of the
type system"" part.  Closing as invalid.
>From gcc-bugs-return-533577-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 07 19:52:14 2016
Return-Path: <gcc-bugs-return-533577-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 20134 invoked by alias); 7 Aug 2016 19:52:13 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 20097 invoked by uid 48); 7 Aug 2016 19:52:06 -0000
From: "bernd.edlinger at hotmail dot de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71083] [5/6/7 Regression] Unaligned bit-field address when predictive commoning
Date: Sun, 07 Aug 2016 19:52:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: major
X-Bugzilla-Who: bernd.edlinger at hotmail dot de
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: attachments.created
Message-ID: <bug-71083-4-1pC43Ly6zf@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71083-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71083-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00913.txt.bz2
Content-length: 243

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71083

--- Comment #7 from Bernd Edlinger <bernd.edlinger at hotmail dot de> ---
Created attachment 39068
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39068&action=edit
proposed patch
>From gcc-bugs-return-533578-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 07 22:29:46 2016
Return-Path: <gcc-bugs-return-533578-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 12397 invoked by alias); 7 Aug 2016 22:29:46 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 12370 invoked by uid 48); 7 Aug 2016 22:29:33 -0000
From: "eric at efcs dot ca" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/69523] -Wliteral-suffix should not warn within namespace std
Date: Sun, 07 Aug 2016 22:29:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.2.1
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: eric at efcs dot ca
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: attachments.created
Message-ID: <bug-69523-4-pxNK7rcEyt@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69523-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69523-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00914.txt.bz2
Content-length: 358

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69523

--- Comment #8 from Eric Fiselier <eric at efcs dot ca> ---
Created attachment 39069
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39069&action=edit
fix.patch

Add a suggested fix with make -Wno-literal-suffix suppress the reserved
identifier warnings.

@Jonathan Could you help me land this?
>From gcc-bugs-return-533579-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 07 23:37:31 2016
Return-Path: <gcc-bugs-return-533579-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 104838 invoked by alias); 7 Aug 2016 23:37:31 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 104693 invoked by uid 48); 7 Aug 2016 23:37:19 -0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/69022] attribute vector_size ignored with dependent bytes
Date: Sun, 07 Aug 2016 23:37:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: rejects-valid
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: msebor at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: blocked target_milestone
Message-ID: <bug-69022-4-kQtZttvB6M@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69022-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69022-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00915.txt.bz2
Content-length: 614

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69022

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Blocks|                            |68703
   Target Milestone|---                         |6.0

--- Comment #5 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
This does not fully handle vector_size, see bug #68703.


Referenced Bugs:

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68703
[Bug 68703] __attribute__((vector_size(N))) template member confusion
>From gcc-bugs-return-533580-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 00:29:40 2016
Return-Path: <gcc-bugs-return-533580-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 45159 invoked by alias); 8 Aug 2016 00:29:39 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 45053 invoked by uid 48); 8 Aug 2016 00:29:27 -0000
From: "amodra at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/72771] [6/7 Regression] powerpc64le ICE with -mcpu=power9
Date: Mon, 08 Aug 2016 00:29:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: amodra at gmail dot com
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: amodra at gmail dot com
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc component
Message-ID: <bug-72771-4-zgbgDlxIzg@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72771-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72771-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00916.txt.bz2
Content-length: 680

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72771

Alan Modra <amodra at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|amodra at gcc dot gnu.org,         |
                   |amodra at gmail dot com            |
          Component|target                      |rtl-optimization

--- Comment #6 from Alan Modra <amodra at gmail dot com> ---
> but since legitimize_reload_address has said it has fixed the mem, reload
> decides nothing more needs doing.

This is a reload bug in dealing with subregs.  Not target specific, so
adjusting component.
>From gcc-bugs-return-533581-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 04:05:06 2016
Return-Path: <gcc-bugs-return-533581-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 118976 invoked by alias); 8 Aug 2016 04:05:05 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 118869 invoked by uid 48); 8 Aug 2016 04:04:52 -0000
From: "asolokha at gmx dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/72829] New: [7 Regression] ICE in extract_constrain_insn, at recog.c:2211 (error: insn does not satisfy its constraints) on 32-bit BE powerpc
Date: Mon, 08 Aug 2016 04:05:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: build, ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: asolokha at gmx dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status keywords bug_severity priority component assigned_to reporter target_milestone cf_gcctarget
Message-ID: <bug-72829-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00917.txt.bz2
Content-length: 1850

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72829

            Bug ID: 72829
           Summary: [7 Regression] ICE in extract_constrain_insn, at
                    recog.c:2211 (error: insn does not satisfy its
                    constraints) on 32-bit BE powerpc
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Keywords: build, ice-on-valid-code
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: asolokha at gmx dot com
  Target Milestone: ---
            Target: powerpc-e500v2-linux-gnuspe

gcc-7.0.0_alpha20160807 snapshot fails to bootstrap when building libsanitizer:

cross-powerpc-e500v2-linux-gnuspe/gcc-7.0.0_alpha20160807/work/gcc-7-20160807/libsanitizer/sanitizer_common/sanitizer_libc.cc:191:1:
error: insn does not satisfy its constraints:
 }
 ^
(insn 116 65 149 13 (parallel [
            (set (reg:CC 75 7 [181])
                (compare:CC (reg/v:SI 5 5 [orig:169 n ] [169])
                    (const_int 0 [0])))
            (set (reg:SI 66 ctr [179])
                (reg/v:SI 5 5 [orig:169 n ] [169]))
        ]) 459 {*movsi_internal2}
     (nil))
/var/tmp/portage/cross-powerpc-e500v2-linux-gnuspe/gcc-7.0.0_alpha20160807/work/gcc-7-20160807/libsanitizer/sanitizer_common/sanitizer_libc.cc:191:1:
internal compiler error: in extract_constrain_insn, at recog.c:2211

Reduced testcase minimized from sanitizer_libc.cc:

char volatile *t;

void
internal_memset (unsigned int n)
{
  for (unsigned int i = 0; i < n; ++i)
    *t = '\0';
}

void
internal_strncpy (char *src, unsigned int n)
{
  unsigned int i = 0;
  while (n && src[i])
    ++i;
  internal_memset(n - i);
}

I believe this could be either a fallout after PR69847, or a result of turning
LRA on by default.
>From gcc-bugs-return-533582-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 06:01:09 2016
Return-Path: <gcc-bugs-return-533582-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 25763 invoked by alias); 8 Aug 2016 06:01:08 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 25622 invoked by uid 48); 8 Aug 2016 06:00:55 -0000
From: "gilles.gouaillardet at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/67097] gcov-tool merge (can) crash when dir2 contains files not in dir1
Date: Mon, 08 Aug 2016 06:01:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 5.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: gilles.gouaillardet at gmail dot com
X-Bugzilla-Status: REOPENED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-67097-4-IBSjURjaF2@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67097-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67097-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00918.txt.bz2
Content-length: 566

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67097

Gilles Gouaillardet <gilles.gouaillardet at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
         Resolution|FIXED                       |---

--- Comment #5 from Gilles Gouaillardet <gilles.gouaillardet at gmail dot com> ---
i was able to reproduce the issue with snapshot gcc-7-20160731, and was able to
fix it with the very same patch
>From gcc-bugs-return-533583-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 06:30:04 2016
Return-Path: <gcc-bugs-return-533583-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 96092 invoked by alias); 8 Aug 2016 06:30:03 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 95825 invoked by uid 48); 8 Aug 2016 06:29:49 -0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/69390] dynamic_cast on rvalue fails
Date: Mon, 08 Aug 2016 06:30:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: rejects-valid
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-69390-4-0lHCPdPoh7@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69390-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69390-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00919.txt.bz2
Content-length: 143

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69390

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Related to bug 69060.
>From gcc-bugs-return-533584-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 06:30:20 2016
Return-Path: <gcc-bugs-return-533584-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 96130 invoked by alias); 8 Aug 2016 06:30:04 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 95867 invoked by uid 55); 8 Aug 2016 06:29:53 -0000
From: "tkoenig at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/70040] [5 Regression] ICE in gimplify.c with deferred-length strings
Date: Mon, 08 Aug 2016 06:30:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: tkoenig at gcc dot gnu.org
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-70040-4-2UdYUsj18W@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70040-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70040-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00920.txt.bz2
Content-length: 551

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70040

--- Comment #14 from Thomas Koenig <tkoenig at gcc dot gnu.org> ---
Author: tkoenig
Date: Mon Aug  8 06:29:16 2016
New Revision: 239229

URL: https://gcc.gnu.org/viewcvs?rev=239229&root=gcc&view=rev
Log:
2016-08-08  Thomas Koenig  <tkoenig@gcc.gnu.org>

        PR fortran/70040
        Backport from trunk
        * gfortran.dg/pr70040.f90:  New testcase.



Added:
    branches/gcc-5-branch/gcc/testsuite/gfortran.dg/pr70040.f90
Modified:
    branches/gcc-5-branch/gcc/testsuite/ChangeLog
>From gcc-bugs-return-533585-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 06:31:05 2016
Return-Path: <gcc-bugs-return-533585-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 98375 invoked by alias); 8 Aug 2016 06:31:04 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 97754 invoked by uid 48); 8 Aug 2016 06:30:52 -0000
From: "tkoenig at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/68241] [meta-bug] Deferred-length character
Date: Mon, 08 Aug 2016 06:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: dep_changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: tkoenig at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-68241-4-qOPqFjIKf0@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68241-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68241-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00921.txt.bz2
Content-length: 489

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68241
Bug 68241 depends on bug 70040, which changed state.

Bug 70040 Summary: [5 Regression] ICE in gimplify.c with deferred-length strings
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70040

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |RESOLVED
         Resolution|---                         |FIXED
>From gcc-bugs-return-533586-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 06:31:05 2016
Return-Path: <gcc-bugs-return-533586-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 98409 invoked by alias); 8 Aug 2016 06:31:05 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 97722 invoked by uid 48); 8 Aug 2016 06:30:51 -0000
From: "tkoenig at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/70040] [5 Regression] ICE in gimplify.c with deferred-length strings
Date: Mon, 08 Aug 2016 06:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: tkoenig at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-70040-4-iNT7Yk86vQ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70040-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70040-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00922.txt.bz2
Content-length: 476

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70040

Thomas Koenig <tkoenig at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |RESOLVED
         Resolution|---                         |FIXED

--- Comment #15 from Thomas Koenig <tkoenig at gcc dot gnu.org> ---
Test case committed to all affected branches, closing.
>From gcc-bugs-return-533587-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 06:34:14 2016
Return-Path: <gcc-bugs-return-533587-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 101552 invoked by alias); 8 Aug 2016 06:34:14 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 101266 invoked by uid 48); 8 Aug 2016 06:34:02 -0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/65412] missing control flow optimisation
Date: Mon, 08 Aug 2016 06:34:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 4.9.2
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc bug_severity
Message-ID: <bug-65412-4-Sedlja2Zv5@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-65412-4@http.gcc.gnu.org/bugzilla/>
References: <bug-65412-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00923.txt.bz2
Content-length: 376

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65412

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |pinskia at gcc dot gnu.org
           Severity|normal                      |enhancement
>From gcc-bugs-return-533588-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 07:02:29 2016
Return-Path: <gcc-bugs-return-533588-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 52594 invoked by alias); 8 Aug 2016 07:02:29 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 52524 invoked by uid 48); 8 Aug 2016 07:02:16 -0000
From: "alexhenrie24 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/72830] New: istream::seekg should not reset eofbit if -std=c++98
Date: Mon, 08 Aug 2016 07:02:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 4.6.3
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: alexhenrie24 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-72830-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00924.txt.bz2
Content-length: 2000

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72830

            Bug ID: 72830
           Summary: istream::seekg should not reset eofbit if -std=c++98
           Product: gcc
           Version: 4.6.3
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: libstdc++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: alexhenrie24 at gmail dot com
  Target Milestone: ---

Created attachment 39070
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39070&action=edit
Test program that demonstrates the problem

According to N3168 [1], as recently as 2010 the C++ standards did not permit
istream::seekg to reset istream::eof. When the change to the standard was
approved, libstdc++ started using the new behavior, even for programs compiled
with -std=c++98. This caused the bioinformatics program GERMLINE [2] to break.
In PEDIndividualsExtractor.cpp [3] we see:

void PEDIndividualsExtractor::loadInput()
{
    ...

        while (!stream.eof() )
        {
                getIndividuals();
                stream.seekg(numberOfMarkers*4 + 1,ios::cur);
        }

    ...
}

void PEDIndividualsExtractor::getIndividuals()
{
        string discard, ID, famID;
        stream >> famID >> ID >> discard >> discard >> discard >> discard;
        if(!stream.good()) return;

        ...
}

This code stopped working sometime between GCC 4.4.5 / libstdc++ 6.0.13 and GCC
4.6.3 / libstdc++ 6.0.16. With the change to libstdc++, stream.eof() is always
false, so loadInput() goes into an infinite loop. A simple test program is
attached.

I realize that I could petition the GERMLINE authors to change the loop
condition (and I eventually will), but the fact that you can't get the old
behavior even with -std=c++98 is a bug in GCC.

[1] http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2010/n3168.htm
[2] http://www.cs.columbia.edu/~gusev/germline/
[3] http://www.cs.columbia.edu/~gusev/germline/germline-1-5-1.tar.gz
>From gcc-bugs-return-533589-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 07:58:58 2016
Return-Path: <gcc-bugs-return-533589-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 114620 invoked by alias); 8 Aug 2016 07:58:58 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 114538 invoked by uid 48); 8 Aug 2016 07:58:45 -0000
From: "trippels at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/72831] New: [7 Regression] Conditional jump or move depends on uninitialised value: regno_in_use_p (lra-spills.c:701)
Date: Mon, 08 Aug 2016 07:58:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: trippels at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter cc target_milestone
Message-ID: <bug-72831-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00925.txt.bz2
Content-length: 2017

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72831

            Bug ID: 72831
           Summary: [7 Regression] Conditional jump or move depends on
                    uninitialised value: regno_in_use_p (lra-spills.c:701)
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: rtl-optimization
          Assignee: unassigned at gcc dot gnu.org
          Reporter: trippels at gcc dot gnu.org
                CC: vmakarov at gcc dot gnu.org
  Target Milestone: ---

--enable-checking=valgrind on pcc64le shows:

==25092== Conditional jump or move depends on uninitialised value(s)
==25092==    at 0x1054EDCC: regno_in_use_p (lra-spills.c:701)
==25092==    by 0x1054EDCC: lra_final_code_change() (lra-spills.c:769)
==25092==    by 0x10525CFF: lra(_IO_FILE*) (lra.c:2482)
==25092==    by 0x104D159F: do_reload (ira.c:5384)
==25092==    by 0x104D159F: (anonymous
namespace)::pass_reload::execute(function*) (ira.c:5568)
==25092==    by 0x105D5E6B: execute_one_pass(opt_pass*) (passes.c:2344)
==25092==    by 0x105D64B7: execute_pass_list_1(opt_pass*) (passes.c:2428)
==25092==    by 0x105D64CF: execute_pass_list_1(opt_pass*) (passes.c:2429)
==25092==    by 0x105D657B: execute_pass_list(function*, opt_pass*)
(passes.c:2439)
==25092==    by 0x102A5453: cgraph_node::expand() (cgraphunit.c:1985)
==25092==    by 0x102A7057: expand_all_functions (cgraphunit.c:2121)
==25092==    by 0x102A7057: symbol_table::compile() (cgraphunit.c:2479)
==25092==    by 0x102A8F2B: symbol_table::finalize_compilation_unit()
(cgraphunit.c:2569)
==25092==    by 0x106C18D7: compile_file() (toplev.c:490)
==25092==    by 0x1012E99F: do_compile (toplev.c:1998)
==25092==    by 0x1012E99F: toplev::main(int, char**) (toplev.c:2132)
==25092==

It happens a lot when building libgcc.
>From gcc-bugs-return-533590-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 08:12:18 2016
Return-Path: <gcc-bugs-return-533590-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 21582 invoked by alias); 8 Aug 2016 08:12:18 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 21519 invoked by uid 55); 8 Aug 2016 08:12:05 -0000
From: "vehre at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/70524] [5/6/7 Regression] ICE when using  -frepack-arrays -Warray-temporaries
Date: Mon, 08 Aug 2016 08:12:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: vehre at gcc dot gnu.org
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: vehre at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-70524-4-ITPDAnpTxd@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70524-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70524-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00926.txt.bz2
Content-length: 931

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70524

--- Comment #9 from vehre at gcc dot gnu.org ---
Author: vehre
Date: Mon Aug  8 08:11:29 2016
New Revision: 239230

URL: https://gcc.gnu.org/viewcvs?rev=239230&root=gcc&view=rev
Log:
gcc/testsuite/ChangeLog:

2016-08-08  Andre Vehreschild  <vehre@gcc.gnu.org>

        PR fortran/70524
        * gfortran.dg/dependency_48.f90: New test.


gcc/fortran/ChangeLog:

2016-08-08  Andre Vehreschild  <vehre@gcc.gnu.org>

        PR fortran/70524
        * trans-array.c (gfc_trans_dummy_array_bias): Ensure that the
        location information is correctly set.
        * trans-decl.c (gfc_trans_deferred_vars): Set the locus of the
        current construct early.


Added:
    trunk/gcc/testsuite/gfortran.dg/dependency_48.f90
Modified:
    trunk/gcc/fortran/ChangeLog
    trunk/gcc/fortran/trans-array.c
    trunk/gcc/fortran/trans-decl.c
    trunk/gcc/testsuite/ChangeLog
>From gcc-bugs-return-533591-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 08:13:29 2016
Return-Path: <gcc-bugs-return-533591-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 22654 invoked by alias); 8 Aug 2016 08:13:29 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 22564 invoked by uid 48); 8 Aug 2016 08:13:16 -0000
From: "saaadhu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/71151] [avr] -fmerge-constants and -fdata-sections/-ffunction-sections results in string constants in .progmem.gcc_sw section
Date: Mon, 08 Aug 2016 08:13:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: saaadhu at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc everconfirmed
Message-ID: <bug-71151-4-DP47mvv0ws@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71151-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71151-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00927.txt.bz2
Content-length: 493

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71151

Senthil Kumar Selvaraj <saaadhu at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |ASSIGNED
   Last reconfirmed|                            |2016-08-08
                 CC|                            |saaadhu at gcc dot gnu.org
     Ever confirmed|0                           |1
>From gcc-bugs-return-533592-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 08:15:20 2016
Return-Path: <gcc-bugs-return-533592-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 23946 invoked by alias); 8 Aug 2016 08:15:20 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 23659 invoked by uid 48); 8 Aug 2016 08:14:55 -0000
From: "saaadhu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/71151] [avr] -fmerge-constants and -fdata-sections/-ffunction-sections results in string constants in .progmem.gcc_sw section
Date: Mon, 08 Aug 2016 08:15:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: saaadhu at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-71151-4-xxuY2b8JtG@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71151-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71151-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00928.txt.bz2
Content-length: 472

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71151

Senthil Kumar Selvaraj <saaadhu at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #16 from Senthil Kumar Selvaraj <saaadhu at gcc dot gnu.org> ---
Fixed in trunk and gcc-6 branch.
>From gcc-bugs-return-533593-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 08:18:55 2016
Return-Path: <gcc-bugs-return-533593-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 31098 invoked by alias); 8 Aug 2016 08:18:55 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 31009 invoked by uid 48); 8 Aug 2016 08:18:42 -0000
From: "daanvanvugt at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/72832] New: [OOP] ALLOCATE with SOURCE fails to allocate requested dimensions
Date: Mon, 08 Aug 2016 08:18:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: daanvanvugt at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-72832-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00929.txt.bz2
Content-length: 930

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72832

            Bug ID: 72832
           Summary: [OOP] ALLOCATE with SOURCE fails to allocate requested
                    dimensions
           Product: gcc
           Version: 6.1.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: fortran
          Assignee: unassigned at gcc dot gnu.org
          Reporter: daanvanvugt at gmail dot com
  Target Milestone: ---

If I try to allocate a polymorphic variable with a specific dimension I do not
get the expected result. See this example:

program allocate_source
  type :: t
  end type t
  type, extends(t) :: tt
  end type tt

  class(t), allocatable, dimension(:) :: a, b
  allocate(tt::a(1:2))
  write(*,*) size(a,1)

  allocate(b(1:4), source=a)
  write(*,*) size(b,1)
end program allocate_source

Which produces as output
2
2

While I expect the second line to be 4.
>From gcc-bugs-return-533594-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 08:20:52 2016
Return-Path: <gcc-bugs-return-533594-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 77352 invoked by alias); 8 Aug 2016 08:20:51 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 77259 invoked by uid 55); 8 Aug 2016 08:20:39 -0000
From: "vehre at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/70524] [5/6/7 Regression] ICE when using  -frepack-arrays -Warray-temporaries
Date: Mon, 08 Aug 2016 08:20:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: vehre at gcc dot gnu.org
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: vehre at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-70524-4-xMOxk3qe6d@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70524-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70524-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00930.txt.bz2
Content-length: 1070

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70524

--- Comment #10 from vehre at gcc dot gnu.org ---
Author: vehre
Date: Mon Aug  8 08:20:07 2016
New Revision: 239231

URL: https://gcc.gnu.org/viewcvs?rev=239231&root=gcc&view=rev
Log:
gcc/testsuite/ChangeLog:

2016-08-08  Andre Vehreschild  <vehre@gcc.gnu.org>

        Backport from trunk:
        PR fortran/70524
        * gfortran.dg/dependency_48.f90: New test.


gcc/fortran/ChangeLog:

2016-08-08  Andre Vehreschild  <vehre@gcc.gnu.org>

        Backport from trunk:
        PR fortran/70524
        * trans-array.c (gfc_trans_dummy_array_bias): Ensure that the
        location information is correctly set.
        * trans-decl.c (gfc_trans_deferred_vars): Set the locus of the
        current construct early.


Added:
    branches/gcc-6-branch/gcc/testsuite/gfortran.dg/dependency_48.f90
Modified:
    branches/gcc-6-branch/gcc/fortran/ChangeLog
    branches/gcc-6-branch/gcc/fortran/trans-array.c
    branches/gcc-6-branch/gcc/fortran/trans-decl.c
    branches/gcc-6-branch/gcc/testsuite/ChangeLog
>From gcc-bugs-return-533595-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 08:25:15 2016
Return-Path: <gcc-bugs-return-533595-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 20760 invoked by alias); 8 Aug 2016 08:25:15 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 12091 invoked by uid 55); 8 Aug 2016 08:25:00 -0000
From: "vehre at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/70524] [5/6/7 Regression] ICE when using  -frepack-arrays -Warray-temporaries
Date: Mon, 08 Aug 2016 08:25:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: vehre at gcc dot gnu.org
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: vehre at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-70524-4-YLsSSMdTQO@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70524-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70524-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00931.txt.bz2
Content-length: 1070

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70524

--- Comment #11 from vehre at gcc dot gnu.org ---
Author: vehre
Date: Mon Aug  8 08:24:22 2016
New Revision: 239232

URL: https://gcc.gnu.org/viewcvs?rev=239232&root=gcc&view=rev
Log:
gcc/testsuite/ChangeLog:

2016-08-08  Andre Vehreschild  <vehre@gcc.gnu.org>

        Backport from trunk:
        PR fortran/70524
        * gfortran.dg/dependency_48.f90: New test.


gcc/fortran/ChangeLog:

2016-08-08  Andre Vehreschild  <vehre@gcc.gnu.org>

        Backport from trunk:
        PR fortran/70524
        * trans-array.c (gfc_trans_dummy_array_bias): Ensure that the
        location information is correctly set.
        * trans-decl.c (gfc_trans_deferred_vars): Set the locus of the
        current construct early.


Added:
    branches/gcc-5-branch/gcc/testsuite/gfortran.dg/dependency_48.f90
Modified:
    branches/gcc-5-branch/gcc/fortran/ChangeLog
    branches/gcc-5-branch/gcc/fortran/trans-array.c
    branches/gcc-5-branch/gcc/fortran/trans-decl.c
    branches/gcc-5-branch/gcc/testsuite/ChangeLog
>From gcc-bugs-return-533596-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 08:34:56 2016
Return-Path: <gcc-bugs-return-533596-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 58020 invoked by alias); 8 Aug 2016 08:34:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 57957 invoked by uid 48); 8 Aug 2016 08:34:43 -0000
From: "dominiq at lps dot ens.fr" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/72832] [OOP] ALLOCATE with SOURCE fails to allocate requested dimensions
Date: Mon, 08 Aug 2016 08:34:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dominiq at lps dot ens.fr
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-72832-4-8ksgCDY1JH@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72832-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72832-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00932.txt.bz2
Content-length: 655

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72832

Dominique d'Humieres <dominiq at lps dot ens.fr> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |WAITING
   Last reconfirmed|                            |2016-08-08
     Ever confirmed|0                           |1

--- Comment #1 from Dominique d'Humieres <dominiq at lps dot ens.fr> ---
> While I expect the second line to be 4.

From the standard

"If SOURCE= appears, source-expr shall be conformable with allocation."

I think the code is invalid.
>From gcc-bugs-return-533597-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 08:49:12 2016
Return-Path: <gcc-bugs-return-533597-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 78846 invoked by alias); 8 Aug 2016 08:49:12 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 78732 invoked by uid 48); 8 Aug 2016 08:48:59 -0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/71910] ICE on valid OpenMP code
Date: Mon, 08 Aug 2016 08:49:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords: ice-on-valid-code, openmp
X-Bugzilla-Severity: minor
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on assigned_to everconfirmed attachments.created
Message-ID: <bug-71910-4-9K99gKCLun@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71910-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71910-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00933.txt.bz2
Content-length: 689

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71910

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |ASSIGNED
   Last reconfirmed|                            |2016-08-08
           Assignee|unassigned at gcc dot gnu.org      |jakub at gcc dot gnu.org
     Ever confirmed|0                           |1

--- Comment #5 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Created attachment 39071
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39071&action=edit
gcc7-pr71910.patch

Untested fix.
>From gcc-bugs-return-533598-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 09:06:02 2016
Return-Path: <gcc-bugs-return-533598-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 107392 invoked by alias); 8 Aug 2016 09:06:02 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 107247 invoked by uid 55); 8 Aug 2016 09:05:49 -0000
From: "amodra at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72802] powerpc64le: -mcpu=power9 emits lxssp instruction with offset that isn't a multiple of 4
Date: Mon, 08 Aug 2016 09:06:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: amodra at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: amodra at gmail dot com
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72802-4-G3C561nraD@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72802-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72802-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00934.txt.bz2
Content-length: 1709

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72802

--- Comment #5 from Alan Modra <amodra at gcc dot gnu.org> ---
Author: amodra
Date: Mon Aug  8 09:05:16 2016
New Revision: 239233

URL: https://gcc.gnu.org/viewcvs?rev=239233&root=gcc&view=rev
Log:
[RS6000] PR72802 part 1, fix constraints for lxssp/stxssp

We can't use "o" constraint for lsxxp/stxssp since those insns have a
DS-form offset field, ie. the bottom two bits of the offset must be 0.
So use "wY" instead, but that leads to finding another problem.

mem_operand_gpr is only suitable for gpr loads/stores since it does
not enforce multiple-of-4 offsets when -m32.  So "wY" can't use
mem_operand_gpr, and the vsx tests in mem_operand_gpr are bogus.

I've deleted offsettable_mem_14bit_operand because it wasn't used
anywhere but in the wY constraint.  Note also that the new wY
constraint doesn't use memory_operand because that is redundant in a
constraint, having already been tested in the predicate.

        PR target/72802
        * config/rs6000/rs6000.c (mem_operand_gpr): Remove vsx dform test.
        (mem_operand_ds_form): New predicate.
        * config/rs6000/rs6000-protos.h (mem_operand_ds_form): Declare.
        * config/rs6000/constraints.md (wY): Use mem_operand_df_form.
        * config/rs6000/predicates.md (offsettable_mem_14bit_operand): Delete.
        * config/rs6000/rs6000.md (f32_lm2, f32_sm2): Use wY for SF.
        (extendsfdf2_fpr): Replace o constraint with wY.

Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/config/rs6000/constraints.md
    trunk/gcc/config/rs6000/predicates.md
    trunk/gcc/config/rs6000/rs6000-protos.h
    trunk/gcc/config/rs6000/rs6000.c
    trunk/gcc/config/rs6000/rs6000.md
>From gcc-bugs-return-533599-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 09:07:37 2016
Return-Path: <gcc-bugs-return-533599-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 52351 invoked by alias); 8 Aug 2016 09:07:37 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 52187 invoked by uid 55); 8 Aug 2016 09:07:23 -0000
From: "amodra at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72802] powerpc64le: -mcpu=power9 emits lxssp instruction with offset that isn't a multiple of 4
Date: Mon, 08 Aug 2016 09:07:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: amodra at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: amodra at gmail dot com
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72802-4-e2srMm5TGu@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72802-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72802-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00935.txt.bz2
Content-length: 1726

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72802

--- Comment #6 from Alan Modra <amodra at gcc dot gnu.org> ---
Author: amodra
Date: Mon Aug  8 09:06:49 2016
New Revision: 239234

URL: https://gcc.gnu.org/viewcvs?rev=239234&root=gcc&view=rev
Log:
[RS6000] PR72802 part 2, reload ICE

After fixing the constraint problem, we hit an "insn does not satisfy
its constraints" with -mno-lra on the following insn, a vector load
from mem which has an invalid offset:
(insn 631 630 1122 12 (set (reg:SF 108 31 [orig:260 pretmp_44 ] [260])
        (mem:SF (plus:DI (reg:DI 30 30 [orig:338 ivtmp.141 ] [338])
                (const_int 2 [0x2])) [5 MEM[base: _1, offset: 2B]+0 S4 A32]))
470 {movsf_hardfloat}
     (nil))

Here are the reload costs for the various alternatives of
movsf_hardfloat:
"=!r, !r,  m,  f, ww, ww, !r,  f, wb,  m, wY, wu,  Z,?wn, ?r,*c*l, !r, *h"
  "r,  m,  r,  f, ww,  j,  j,  m, wY,  f, wb,  Z, wu,  r, wn,   r, *h,  0"
 617 609  17  17   8   8 617   9   8  17  17   8  17  23  23   17 617  17

Notice that the cost for a vector<-vector move (ww,ww) is the same as
the cost for a vector<-mem move (wb,wY or wu,Z).  Since the
vector<-vector move comes first, it is chosen and the mem part of the
insn reloaded.  That just gives another copy of insn 631.

        PR target/72802
        * config/rs6000/rs6000.md (mov<mode>_hardfloat): Sort
        alternatives.  Put loads first, then stores, and reg/reg moves
        within same class later.  Delete attr length.
testsuite/
        * gcc.c-torture/compile/pr72802.c: New.

Added:
    trunk/gcc/testsuite/gcc.c-torture/compile/pr72802.c
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/config/rs6000/rs6000.md
    trunk/gcc/testsuite/ChangeLog
>From gcc-bugs-return-533600-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 09:08:33 2016
Return-Path: <gcc-bugs-return-533600-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 53449 invoked by alias); 8 Aug 2016 09:08:33 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 53334 invoked by uid 48); 8 Aug 2016 09:08:19 -0000
From: "trippels at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/72831] [7 Regression] Conditional jump or move depends on uninitialised value: regno_in_use_p (lra-spills.c:701)
Date: Mon, 08 Aug 2016 09:08:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: trippels at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72831-4-CRI4vi6HHY@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72831-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72831-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00936.txt.bz2
Content-length: 2974

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72831

--- Comment #1 from Markus Trippelsdorf <trippels at gcc dot gnu.org> ---
With --track-origins=yes (compiling tramp3d-v4.cpp with -O3 on x86_64):

==30059== Conditional jump or move depends on uninitialised value(s)
==30059==    at 0xC216B0: regno_in_use_p (lra-spills.c:701)
==30059==    by 0xC216B0: lra_final_code_change() (lra-spills.c:769)
==30059==    by 0xBFF8B9: lra(_IO_FILE*) (lra.c:2482)
==30059==    by 0xBB762F: do_reload (ira.c:5384)
==30059==    by 0xBB762F: (anonymous
namespace)::pass_reload::execute(function*) (ira.c:5568)
==30059==    by 0xCA18B2: execute_one_pass(opt_pass*) (passes.c:2344)
==30059==    by 0xCA1EA7: execute_pass_list_1(opt_pass*) (passes.c:2428)
==30059==    by 0xCA1EB9: execute_pass_list_1(opt_pass*) (passes.c:2429)
==30059==    by 0xCA1F04: execute_pass_list(function*, opt_pass*)
(passes.c:2439)
==30059==    by 0x98F553: cgraph_node::expand() (cgraphunit.c:1985)
==30059==    by 0x990EB6: expand_all_functions (cgraphunit.c:2121)
==30059==    by 0x990EB6: symbol_table::compile() [clone .part.47]
(cgraphunit.c:2479)
==30059==    by 0x9932F2: compile (cgraphunit.c:2543)
==30059==    by 0x9932F2: symbol_table::finalize_compilation_unit()
(cgraphunit.c:2569)
==30059==    by 0xD70B67: compile_file() (toplev.c:490)
==30059==    by 0x631003: do_compile (toplev.c:1998)
==30059==    by 0x631003: toplev::main(int, char**) (toplev.c:2132)
==30059==  Uninitialised value was created by a client request
==30059==    at 0x909CA5: ggc_internal_alloc(unsigned long, void (*)(void*),
unsigned long, unsigned long) (ggc-page.c:1400)
==30059==    by 0xD06110: ggc_internal_alloc (ggc.h:134)
==30059==    by 0xD06110: ggc_alloc_rtx_def_stat (ggc.h:280)
==30059==    by 0xD06110: rtx_alloc_stat_v(rtx_code, int) (rtl.c:203)
==30059==    by 0xA2CAA2: emit_barrier_after(rtx_def*) (emit-rtl.c:4583)
==30059==    by 0x9720F4: emit_barrier_after_bb(basic_block_def*)
(cfgrtl.c:1447)
==30059==    by 0x972530: force_nonfallthru_and_redirect(edge_def*,
basic_block_def*, rtx_def*) (cfgrtl.c:1704)
==30059==    by 0x974E7F: fixup_reorder_chain (cfgrtl.c:3866)
==30059==    by 0x974E7F: cfg_layout_finalize() (cfgrtl.c:4308)
==30059==    by 0x975901: (anonymous
namespace)::pass_outof_cfg_layout_mode::execute(function*) (cfgrtl.c:3571)
==30059==    by 0xCA18B2: execute_one_pass(opt_pass*) (passes.c:2344)
==30059==    by 0xCA1EA7: execute_pass_list_1(opt_pass*) (passes.c:2428)
==30059==    by 0xCA1EB9: execute_pass_list_1(opt_pass*) (passes.c:2429)
==30059==    by 0xCA1F04: execute_pass_list(function*, opt_pass*)
(passes.c:2439)
==30059==    by 0x98F553: cgraph_node::expand() (cgraphunit.c:1985)
>From gcc-bugs-return-533601-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 09:10:43 2016
Return-Path: <gcc-bugs-return-533601-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 57569 invoked by alias); 8 Aug 2016 09:10:42 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 57428 invoked by uid 48); 8 Aug 2016 09:10:27 -0000
From: "ro at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/72833] New: [7 regression] error in fortran/parse.c (unexpected_eof) on Mac OS X 10.7
Date: Mon, 08 Aug 2016 09:10:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ro at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter cc target_milestone cf_gcchost cf_gcctarget cf_gccbuild
Message-ID: <bug-72833-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00937.txt.bz2
Content-length: 1952

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72833

            Bug ID: 72833
           Summary: [7 regression] error in fortran/parse.c
                    (unexpected_eof) on Mac OS X 10.7
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: ro at gcc dot gnu.org
                CC: edlinger at gcc dot gnu.org
  Target Milestone: ---
              Host: x86_64-apple-darwin11.4.2
            Target: x86_64-apple-darwin11.4.2
             Build: x86_64-apple-darwin11.4.2

Between 20160729 and 20160805, Mac OS X 10.7 bootstrap got broken:

/vol/gcc/src/hg/trunk/local/gcc/fortran/parse.c: In function 'void
unexpected_eof()':
/vol/gcc/src/hg/trunk/local/gcc/fortran/parse.c:2618:1: error: 'noreturn'
function does return [-Werror]
 }
 ^

Unlike Solaris, Linux, and e.g. macOS 10.12, the Mac OS 10.7 <setjmp.h> (or
<i386/setjmp.h>, to be exact) doesn't declare longjmp noreturn, as can be seen
in the following example:

$ cat lj-nr.c 
#include <setjmp.h>

static jmp_buf eof_buf;

void unexpected_eof (void) __attribute__((__noreturn__));

void
unexpected_eof (void)
{
  longjmp (eof_buf, 1);
}

gcc 6.1 compiles it without error, while

$ ./trunk/10.7-gcc/build/prev-gcc/xgcc -B ./trunk/10.7-gcc/build/prev-gcc/ -c
~/lj-nr.c
/homes/ro/lj-nr.c: In function 'unexpected_eof':
/homes/ro/lj-nr.c:11:1: warning: 'noreturn' function does return
 }
 ^

This is obviously caused by

2016-08-03  Bernd Edlinger  <bernd.edlinger@hotmail.de>

        PR middle-end/71876
        * calls.c (special_function_p): Remove special handling of
        "setjmp_syscall", "qsetjmp", "longjmp", "siglongjmp" and the
        prefix "__x".  Recognize "savectx", "vfork" and "getcontext" only
        without prefix.  Remove potentially unsafe ECF_LEAF and ECF_NORETURN.

  Rainer
>From gcc-bugs-return-533602-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 09:11:15 2016
Return-Path: <gcc-bugs-return-533602-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 59872 invoked by alias); 8 Aug 2016 09:11:10 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 58316 invoked by uid 48); 8 Aug 2016 09:10:56 -0000
From: "ro at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/72833] [7 regression] error in fortran/parse.c (unexpected_eof) on Mac OS X 10.7
Date: Mon, 08 Aug 2016 09:11:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ro at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-72833-4-O0tLtd1DxU@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72833-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72833-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00938.txt.bz2
Content-length: 285

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72833

Rainer Orth <ro at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |7.0
>From gcc-bugs-return-533603-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 09:21:02 2016
Return-Path: <gcc-bugs-return-533603-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 121582 invoked by alias); 8 Aug 2016 09:21:01 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 115454 invoked by uid 48); 8 Aug 2016 09:20:57 -0000
From: "gilles.gouaillardet at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/67097] gcov-tool merge (can) crash when dir2 contains files not in dir1
Date: Mon, 08 Aug 2016 09:21:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 5.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: gilles.gouaillardet at gmail dot com
X-Bugzilla-Status: REOPENED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-67097-4-kbfpDFCED0@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67097-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67097-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00939.txt.bz2
Content-length: 555

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67097

--- Comment #6 from Gilles Gouaillardet <gilles.gouaillardet at gmail dot com> ---
as a side note, would you be interested in me providing a patch so
gcov-tool merge
can merge n directories (currently, we are limited to n=2) ?

i would implement that via a binary tree, so under the hood, that would require
o(log(n)) elementary merge of two directories.

for extreme merge, i can also add an option that specifies the temporary
directory to be used (e.g. something different that /tmp/$TMPDIR)
>From gcc-bugs-return-533604-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 09:41:13 2016
Return-Path: <gcc-bugs-return-533604-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 31027 invoked by alias); 8 Aug 2016 09:41:13 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 30845 invoked by uid 55); 8 Aug 2016 09:40:56 -0000
From: "paolo at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: =?UTF-8?B?W0J1ZyBjKysvNzI4MDBdIFs1LzYgUmVncmVzc2lvbl0gSUNFIG9uIGludmFs?= =?UTF-8?B?aWQgQysrMTQgY29kZSB3aXRoIGluaXRpYWxpemVkIGxhbWJkYSBjYXB0dXJl?= =?UTF-8?B?OiB0cmVlIGNoZWNrOiBleHBlY3RlZCBjbGFzcyDigJh0eXBl4oCZLCBoYXZl?= =?UTF-8?B?IOKAmGV4Y2VwdGlvbmFs4oCZIChlcnJvcl9tYXJrKSBpbiBhZGRfY2FwdHVy?= =?UTF-8?B?ZSwgYXQgY3AvbGFtYmRhLmM6NTA1?Date: Mon, 08 Aug 2016 09:41:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: error-recovery, ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: paolo at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: paolo.carlini at oracle dot com
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72800-4-b5hxySL8CY@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72800-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72800-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00940.txt.bz2
Content-length: 809

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72800

--- Comment #6 from paolo at gcc dot gnu.org <paolo at gcc dot gnu.org> ---
Author: paolo
Date: Mon Aug  8 09:40:17 2016
New Revision: 239235

URL: https://gcc.gnu.org/viewcvs?rev=239235&root=gcc&view=rev
Log:
/cp
2016-08-08  Paolo Carlini  <paolo.carlini@oracle.com>

        PR c++/72800
        * lambda.c (add_capture): Check lambda_capture_field_type return
        value for error_mark_node.

/testsuite
2016-08-08  Paolo Carlini  <paolo.carlini@oracle.com>

        PR c++/72800
        * g++.dg/cpp1y/lambda-ice1.C: New.

Added:
    branches/gcc-6-branch/gcc/testsuite/g++.dg/cpp1y/lambda-ice1.C
Modified:
    branches/gcc-6-branch/gcc/cp/ChangeLog
    branches/gcc-6-branch/gcc/cp/lambda.c
    branches/gcc-6-branch/gcc/testsuite/ChangeLog
>From gcc-bugs-return-533606-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 09:43:00 2016
Return-Path: <gcc-bugs-return-533606-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 56034 invoked by alias); 8 Aug 2016 09:42:59 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 55951 invoked by uid 48); 8 Aug 2016 09:42:47 -0000
From: "vehre at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/70524] [5/6/7 Regression] ICE when using  -frepack-arrays -Warray-temporaries
Date: Mon, 08 Aug 2016 09:42:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: vehre at gcc dot gnu.org
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: vehre at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-70524-4-sE9KlP5lU4@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70524-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70524-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00942.txt.bz2
Content-length: 153

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70524

--- Comment #12 from vehre at gcc dot gnu.org ---
Waiting one week for regressions before closing.
>From gcc-bugs-return-533605-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 09:42:13 2016
Return-Path: <gcc-bugs-return-533605-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 55091 invoked by alias); 8 Aug 2016 09:42:13 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 54948 invoked by uid 48); 8 Aug 2016 09:41:58 -0000
From: "paolo.carlini at oracle dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: =?UTF-8?B?W0J1ZyBjKysvNzI4MDBdIFs1LzYgUmVncmVzc2lvbl0gSUNFIG9uIGludmFs?= =?UTF-8?B?aWQgQysrMTQgY29kZSB3aXRoIGluaXRpYWxpemVkIGxhbWJkYSBjYXB0dXJl?= =?UTF-8?B?OiB0cmVlIGNoZWNrOiBleHBlY3RlZCBjbGFzcyDigJh0eXBl4oCZLCBoYXZl?= =?UTF-8?B?IOKAmGV4Y2VwdGlvbmFs4oCZIChlcnJvcl9tYXJrKSBpbiBhZGRfY2FwdHVy?= =?UTF-8?B?ZSwgYXQgY3AvbGFtYmRhLmM6NTA1?Date: Mon, 08 Aug 2016 09:42:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: error-recovery, ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: paolo.carlini at oracle dot com
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: paolo.carlini at oracle dot com
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution target_milestone
Message-ID: <bug-72800-4-c1E77onmVI@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72800-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72800-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00941.txt.bz2
Content-length: 508

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72800

Paolo Carlini <paolo.carlini at oracle dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED
   Target Milestone|5.5                         |6.2

--- Comment #7 from Paolo Carlini <paolo.carlini at oracle dot com> ---
Fixed for gcc-6.2.0 too.
>From gcc-bugs-return-533607-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 09:46:56 2016
Return-Path: <gcc-bugs-return-533607-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 130708 invoked by alias); 8 Aug 2016 09:46:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 110600 invoked by uid 48); 8 Aug 2016 09:46:43 -0000
From: "mpolacek at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72825] ICE on invalid C++ code on x86_64-linux-gnu (internal compiler error: tree check: expected array_type, have error_mark in array_ref_low_bound, at tree.c:13013)
Date: Mon, 08 Aug 2016 09:46:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: error-recovery, ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mpolacek at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc everconfirmed
Message-ID: <bug-72825-4-2qW6p7kOAj@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72825-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72825-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00943.txt.bz2
Content-length: 608

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72825

Marek Polacek <mpolacek at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-08
                 CC|                            |mpolacek at gcc dot gnu.org
     Ever confirmed|0                           |1

--- Comment #1 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
Confirmed.  Started sometime between r149350 and r150013.
>From gcc-bugs-return-533608-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 09:49:41 2016
Return-Path: <gcc-bugs-return-533608-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 18923 invoked by alias); 8 Aug 2016 09:49:40 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 18494 invoked by uid 48); 8 Aug 2016 09:49:28 -0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/68762] link error for inline function decorated with OpenMP declare simd
Date: Mon, 08 Aug 2016 09:49:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 5.3.0
X-Bugzilla-Keywords: openmp
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on assigned_to everconfirmed attachments.created
Message-ID: <bug-68762-4-QM8hBD9j8U@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68762-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68762-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00944.txt.bz2
Content-length: 855

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68762

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |ASSIGNED
   Last reconfirmed|                            |2016-08-08
           Assignee|unassigned at gcc dot gnu.org      |jakub at gcc dot gnu.org
     Ever confirmed|0                           |1

--- Comment #4 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Created attachment 39072
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39072&action=edit
gcc7-pr68762.patch

Untested fix.  That said, using #pragma omp declare simd is usually quite
pointless on inline functions, those are usually inlined and then there is no
point in the declaration.
>From gcc-bugs-return-533609-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 09:50:23 2016
Return-Path: <gcc-bugs-return-533609-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 21332 invoked by alias); 8 Aug 2016 09:50:23 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 20119 invoked by uid 55); 8 Aug 2016 09:50:09 -0000
From: "vehre at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/72698] [5/6/7 Regression] ICE in lhd_incomplete_type_error, at langhooks.c:205
Date: Mon, 08 Aug 2016 09:50:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: vehre at gcc dot gnu.org
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: vehre at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72698-4-5efEZ6Pxt7@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72698-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72698-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00945.txt.bz2
Content-length: 821

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72698

--- Comment #7 from vehre at gcc dot gnu.org ---
Author: vehre
Date: Mon Aug  8 09:49:37 2016
New Revision: 239236

URL: https://gcc.gnu.org/viewcvs?rev=239236&root=gcc&view=rev
Log:
gcc/testsuite/ChangeLog:

2016-08-08  Andre Vehreschild  <vehre@gcc.gnu.org>

        PR fortran/72698
        * gfortran.dg/allocate_with_source_20.f03: New test.


gcc/fortran/ChangeLog:

2016-08-08  Andre Vehreschild  <vehre@gcc.gnu.org>

        PR fortran/72698
        * trans-stmt.c (gfc_trans_allocate): Prevent generating code for
        copy of zero sized string and with it an ICE.


Added:
    trunk/gcc/testsuite/gfortran.dg/allocate_with_source_20.f03
Modified:
    trunk/gcc/fortran/ChangeLog
    trunk/gcc/fortran/trans-stmt.c
    trunk/gcc/testsuite/ChangeLog
>From gcc-bugs-return-533610-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 09:51:13 2016
Return-Path: <gcc-bugs-return-533610-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 22991 invoked by alias); 8 Aug 2016 09:51:13 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 22912 invoked by uid 48); 8 Aug 2016 09:51:00 -0000
From: "mikpelinux at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/60585] Virtual function related memory access errors with multiple virtual inheritance
Date: Mon, 08 Aug 2016 09:51:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mikpelinux at gmail dot com
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-60585-4-gUOgVz8yvF@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-60585-4@http.gcc.gnu.org/bugzilla/>
References: <bug-60585-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00946.txt.bz2
Content-length: 179

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60585

--- Comment #4 from Mikael Pettersson <mikpelinux at gmail dot com> ---
This was fixed for gcc-5.0 by r218091, i.e. PR61190.
>From gcc-bugs-return-533611-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 09:59:08 2016
Return-Path: <gcc-bugs-return-533611-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 63768 invoked by alias); 8 Aug 2016 09:59:07 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 50446 invoked by uid 55); 8 Aug 2016 09:58:54 -0000
From: "vehre at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/71936] [6/7 Regression] ICE in wide_int_to_tree, at tree.c:1487
Date: Mon, 08 Aug 2016 09:59:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: vehre at gcc dot gnu.org
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: vehre at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71936-4-LOKQgoxSkA@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71936-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71936-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00947.txt.bz2
Content-length: 824

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71936

--- Comment #6 from vehre at gcc dot gnu.org ---
Author: vehre
Date: Mon Aug  8 09:58:21 2016
New Revision: 239237

URL: https://gcc.gnu.org/viewcvs?rev=239237&root=gcc&view=rev
Log:
gcc/fortran/ChangeLog:

2016-08-08  Andre Vehreschild  <vehre@gcc.gnu.org>

        PR fortran/71936
        * trans-array.c (gfc_array_allocate): When SOURCE= is a function
        stick with the ref of the object to allocate.

gcc/testsuite/ChangeLog:

2016-08-08  Andre Vehreschild  <vehre@gcc.gnu.org>

        PR fortran/71936
        * gfortran.dg/allocate_with_source_21.f03: New test.



Added:
    trunk/gcc/testsuite/gfortran.dg/allocate_with_source_21.f03
Modified:
    trunk/gcc/fortran/ChangeLog
    trunk/gcc/fortran/trans-array.c
    trunk/gcc/testsuite/ChangeLog
>From gcc-bugs-return-533612-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 10:00:00 2016
Return-Path: <gcc-bugs-return-533612-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 128856 invoked by alias); 8 Aug 2016 10:00:00 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 76648 invoked by uid 48); 8 Aug 2016 09:59:46 -0000
From: "vehre at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/71936] [6/7 Regression] ICE in wide_int_to_tree, at tree.c:1487
Date: Mon, 08 Aug 2016 10:00:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: vehre at gcc dot gnu.org
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: vehre at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71936-4-kj0NND5moJ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71936-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71936-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00948.txt.bz2
Content-length: 175

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71936

--- Comment #7 from vehre at gcc dot gnu.org ---
Waiting one week for regressions to occur before backporting to gcc-6 .
>From gcc-bugs-return-533613-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 10:01:00 2016
Return-Path: <gcc-bugs-return-533613-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 29599 invoked by alias); 8 Aug 2016 10:01:00 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 29478 invoked by uid 48); 8 Aug 2016 10:00:46 -0000
From: "vehre at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/72698] [5/6/7 Regression] ICE in lhd_incomplete_type_error, at langhooks.c:205
Date: Mon, 08 Aug 2016 10:01:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: vehre at gcc dot gnu.org
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: vehre at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72698-4-Z5RI49zChI@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72698-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72698-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00949.txt.bz2
Content-length: 176

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72698

--- Comment #8 from vehre at gcc dot gnu.org ---
Waiting one week for regressions to occur before backporting to gcc-5/6.
>From gcc-bugs-return-533614-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 10:07:01 2016
Return-Path: <gcc-bugs-return-533614-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 43383 invoked by alias); 8 Aug 2016 10:07:01 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 43177 invoked by uid 55); 8 Aug 2016 10:06:47 -0000
From: "gjl at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/71976] insn-combiner deletes a live 64-bit shift
Date: Mon, 08 Aug 2016 10:07:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: gjl at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71976-4-Dl1pQkNS2C@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71976-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71976-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00950.txt.bz2
Content-length: 578

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71976

--- Comment #9 from Georg-Johann Lay <gjl at gcc dot gnu.org> ---
Author: gjl
Date: Mon Aug  8 10:06:15 2016
New Revision: 239238

URL: https://gcc.gnu.org/viewcvs?rev=239238&root=gcc&view=rev
Log:
        Backport from 2016-07-29 trunk r238863.
        PR rtl-optimization/71976
        * combine.c (get_last_value): Return 0 if the argument for which
        the function is called has a wider mode than the recorded value.


Modified:
    branches/gcc-6-branch/gcc/ChangeLog
    branches/gcc-6-branch/gcc/combine.c
>From gcc-bugs-return-533615-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 10:14:40 2016
Return-Path: <gcc-bugs-return-533615-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 54843 invoked by alias); 8 Aug 2016 10:14:39 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 54773 invoked by uid 55); 8 Aug 2016 10:14:26 -0000
From: "gjl at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/71976] insn-combiner deletes a live 64-bit shift
Date: Mon, 08 Aug 2016 10:14:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: gjl at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71976-4-B4pkhfoXL3@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71976-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71976-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00951.txt.bz2
Content-length: 579

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71976

--- Comment #10 from Georg-Johann Lay <gjl at gcc dot gnu.org> ---
Author: gjl
Date: Mon Aug  8 10:13:54 2016
New Revision: 239239

URL: https://gcc.gnu.org/viewcvs?rev=239239&root=gcc&view=rev
Log:
        Backport from 2016-07-29 trunk r238863.
        PR rtl-optimization/71976
        * combine.c (get_last_value): Return 0 if the argument for which
        the function is called has a wider mode than the recorded value.


Modified:
    branches/gcc-5-branch/gcc/ChangeLog
    branches/gcc-5-branch/gcc/combine.c
>From gcc-bugs-return-533616-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 10:21:56 2016
Return-Path: <gcc-bugs-return-533616-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 66777 invoked by alias); 8 Aug 2016 10:21:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 66678 invoked by uid 48); 8 Aug 2016 10:21:43 -0000
From: "gjl at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/71151] [avr] -fmerge-constants and -fdata-sections/-ffunction-sections results in string constants in .progmem.gcc_sw section
Date: Mon, 08 Aug 2016 10:21:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: gjl at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71151-4-CGXxQOA5hs@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71151-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71151-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00952.txt.bz2
Content-length: 297

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71151

--- Comment #17 from Georg-Johann Lay <gjl at gcc dot gnu.org> ---
What about the performance issue re. crossing the jump table with a branch?

An easy fix would be to emit ".subsection 1" before the jump table; you think
we should do this?
>From gcc-bugs-return-533617-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 11:15:52 2016
Return-Path: <gcc-bugs-return-533617-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 88066 invoked by alias); 8 Aug 2016 11:15:52 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 87990 invoked by uid 48); 8 Aug 2016 11:15:37 -0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug debug/72828] [5/6/7 Regression] ICE in clone_tree_partial when compiling with -fdebug-types-section
Date: Mon, 08 Aug 2016 11:15:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: debug
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on cc target_milestone short_desc everconfirmed
Message-ID: <bug-72828-4-bUFBqgCcgp@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72828-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72828-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00953.txt.bz2
Content-length: 966

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72828

Martin Liška <marxin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |ice-on-valid-code
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-08
                 CC|                            |marxin at gcc dot gnu.org
   Target Milestone|---                         |5.5
            Summary|ICE in clone_tree_partial   |[5/6/7 Regression] ICE in
                   |when compiling with         |clone_tree_partial when
                   |-fdebug-types-section       |compiling with
                   |                            |-fdebug-types-section
     Ever confirmed|0                           |1

--- Comment #1 from Martin Liška <marxin at gcc dot gnu.org> ---
Confirmed.
>From gcc-bugs-return-533618-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 11:37:20 2016
Return-Path: <gcc-bugs-return-533618-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 46039 invoked by alias); 8 Aug 2016 11:37:19 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 45690 invoked by uid 48); 8 Aug 2016 11:37:06 -0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug sanitizer/71042] libtsan requires __pointer_chk_guard@GLIBC_PRIVATE (6)
Date: Mon, 08 Aug 2016 11:37:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: sanitizer
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-71042-4-x0mdplOrhJ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71042-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71042-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00954.txt.bz2
Content-length: 590

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71042

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |adhemerval.zanella at linaro dot o
                   |                            |rg

--- Comment #6 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
An ugly hack that could work would be to dlsym or dlvsym the symbol somewhere
during the initialization and use what it points to in the assembly.
>From gcc-bugs-return-533619-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 12:05:58 2016
Return-Path: <gcc-bugs-return-533619-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 63235 invoked by alias); 8 Aug 2016 12:05:58 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 63141 invoked by uid 55); 8 Aug 2016 12:05:46 -0000
From: "amodra at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/72771] [6/7 Regression] powerpc64le ICE with -mcpu=power9
Date: Mon, 08 Aug 2016 12:05:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: amodra at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: amodra at gmail dot com
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72771-4-YodHNsu5Uv@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72771-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72771-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00955.txt.bz2
Content-length: 678

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72771

--- Comment #7 from Alan Modra <amodra at gcc dot gnu.org> ---
Author: amodra
Date: Mon Aug  8 12:05:11 2016
New Revision: 239240

URL: https://gcc.gnu.org/viewcvs?rev=239240&root=gcc&view=rev
Log:
[RS6000] TOC refs generated during reload

The generic reload fix for pr72771 exposed a problem with recognizing
-mcmodel=medium/large TOC references generated during reload.

        PR target/72771
        * config/rs6000/rs6000.c (toc_relative_expr_p): Allow (lo_sum (high))
        toc refs created during reload.  Update function comment.

Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/config/rs6000/rs6000.c
>From gcc-bugs-return-533620-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 12:42:39 2016
Return-Path: <gcc-bugs-return-533620-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 102242 invoked by alias); 8 Aug 2016 12:42:38 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 100578 invoked by uid 48); 8 Aug 2016 12:42:24 -0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/72781] -Wuninitialized false positives in OpenMP code
Date: Mon, 08 Aug 2016 12:42:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords: diagnostic, openmp
X-Bugzilla-Severity: minor
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on assigned_to everconfirmed attachments.created
Message-ID: <bug-72781-4-YgyZHMK3sd@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72781-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72781-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00956.txt.bz2
Content-length: 689

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72781

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |ASSIGNED
   Last reconfirmed|                            |2016-08-08
           Assignee|unassigned at gcc dot gnu.org      |jakub at gcc dot gnu.org
     Ever confirmed|0                           |1

--- Comment #1 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Created attachment 39073
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39073&action=edit
gcc7-pr72781.patch

Untested fix.
>From gcc-bugs-return-533621-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 12:48:27 2016
Return-Path: <gcc-bugs-return-533621-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 53336 invoked by alias); 8 Aug 2016 12:48:27 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 53253 invoked by uid 48); 8 Aug 2016 12:48:13 -0000
From: "edlinger at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/72833] [7 regression] error in fortran/parse.c (unexpected_eof) on Mac OS X 10.7
Date: Mon, 08 Aug 2016 12:48:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: edlinger at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-72833-4-OufINDkRib@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72833-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72833-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00957.txt.bz2
Content-length: 635

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72833

Bernd Edlinger <edlinger at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-08
     Ever confirmed|0                           |1

--- Comment #1 from Bernd Edlinger <edlinger at gcc dot gnu.org> ---
Oops, sorry for the breakage...

I think this should obviously be fixed by a fixincludes rule.

Will try to figure out, what has to be done for that to happen.
>From gcc-bugs-return-533622-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 12:54:23 2016
Return-Path: <gcc-bugs-return-533622-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 61322 invoked by alias); 8 Aug 2016 12:54:23 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 61092 invoked by uid 48); 8 Aug 2016 12:54:10 -0000
From: "doko at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libgcj/72834] New: [5/6/7 Regression] the gij interpreter seems to be broken on linux 64bit big endian targets
Date: Mon, 08 Aug 2016 12:54:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libgcj
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: doko at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-72834-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00958.txt.bz2
Content-length: 1600

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72834

            Bug ID: 72834
           Summary: [5/6/7 Regression] the gij interpreter seems to be
                    broken on linux 64bit big endian targets
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: libgcj
          Assignee: unassigned at gcc dot gnu.org
          Reporter: doko at gcc dot gnu.org
  Target Milestone: ---

this used to work with GCC 5, now is broken on the branch, and it doesn't work
on the GCC 6 branch and trunk.

seen on s390x, ppc64 and sparc64, seems to work on 32bit big endian targets
like powerpc and mips.

the symptom is that the libgcj tools like gcjh fail like:

gcjh -force --classpath="/usr/share/java/libgcj.jar:/«PKGBUILDDIR»/java:."
pdftk/com/lowagie/text/pdf/PdfStream
Exception in thread "main" java.io.IOException: can't find class file
pdftk/com/lowagie/text/pdf/PdfStream.class in
java.net.URLClassLoader{urls=[file:/usr/share/java/libgcj.jar,file:/«PKGBUILDDIR»/java/,file:/«PKGBUILDDIR»/java/./,file:/usr/lib/jvm/java-1.5.0-gcj-6-ppc64/jre/lib/rt.jar],
parent=gnu.gcj.runtime.SystemClassLoader{urls=[file:./],
parent=gnu.gcj.runtime.ExtensionClassLoader{urls=[], parent=null}}}
   at gnu.classpath.tools.javah.Main.getClass(libgcj-tools.so.17)
   at gnu.classpath.tools.javah.Main.parseClasses(libgcj-tools.so.17)
   at gnu.classpath.tools.javah.Main.run(libgcj-tools.so.17)
   at gnu.classpath.tools.javah.GcjhMain.main(libgcj-tools.so.17)
>From gcc-bugs-return-533623-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 13:02:36 2016
Return-Path: <gcc-bugs-return-533623-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 18539 invoked by alias); 8 Aug 2016 13:02:35 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 12973 invoked by uid 48); 8 Aug 2016 13:02:22 -0000
From: "schwab@linux-m68k.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libgcj/72834] [5/6/7 Regression] the gij interpreter seems to be broken on linux 64bit big endian targets
Date: Mon, 08 Aug 2016 13:02:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libgcj
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: schwab@linux-m68k.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72834-4-61nKdJbtvS@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72834-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72834-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00959.txt.bz2
Content-length: 231

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72834

--- Comment #1 from Andreas Schwab <schwab@linux-m68k.org> ---
Looks ok here:

https://build.opensuse.org/package/live_build_log/openSUSE:Factory:PowerPC/pdftk/standard/ppc64
>From gcc-bugs-return-533624-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 13:05:01 2016
Return-Path: <gcc-bugs-return-533624-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 19975 invoked by alias); 8 Aug 2016 13:05:00 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 19860 invoked by uid 48); 8 Aug 2016 13:04:47 -0000
From: "bernd.edlinger at hotmail dot de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/72833] [7 regression] error in fortran/parse.c (unexpected_eof) on Mac OS X 10.7
Date: Mon, 08 Aug 2016 13:05:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: bernd.edlinger at hotmail dot de
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-72833-4-z7xob3kqYN@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72833-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72833-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00960.txt.bz2
Content-length: 700

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72833

Bernd Edlinger <bernd.edlinger at hotmail dot de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |bernd.edlinger at hotmail dot de

--- Comment #2 from Bernd Edlinger <bernd.edlinger at hotmail dot de> ---
Rainer,


I have never done that before, but...

I see we had previously a solaris_longjmp_noreturn
fixinclude rule, maybe that would be a starting point.


Could you please attach a faulty setjmp.h and a good setjmp.h

from your MAC OS X?
And by the way what is the canonical target name here?
>From gcc-bugs-return-533625-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 13:07:46 2016
Return-Path: <gcc-bugs-return-533625-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 21933 invoked by alias); 8 Aug 2016 13:07:45 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 21609 invoked by uid 48); 8 Aug 2016 13:07:33 -0000
From: "schwab@linux-m68k.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libgcj/72834] [5/6/7 Regression] the gij interpreter seems to be broken on linux 64bit big endian targets
Date: Mon, 08 Aug 2016 13:07:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libgcj
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: schwab@linux-m68k.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72834-4-shGiurloWj@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72834-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72834-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00961.txt.bz2
Content-length: 227

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72834

--- Comment #2 from Andreas Schwab <schwab@linux-m68k.org> ---
And here:

https://build.opensuse.org/package/live_build_log/openSUSE:Factory:zSystems/pdftk/standard/s390x
>From gcc-bugs-return-533626-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 13:29:15 2016
Return-Path: <gcc-bugs-return-533626-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 111947 invoked by alias); 8 Aug 2016 13:29:15 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 111889 invoked by uid 48); 8 Aug 2016 13:29:03 -0000
From: "babokin at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/72835] New: [Regression 7] Incorrect arithmetic optimization involving bitfield arguments
Date: Mon, 08 Aug 2016 13:29:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: babokin at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-72835-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00962.txt.bz2
Content-length: 1126

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72835

            Bug ID: 72835
           Summary: [Regression 7] Incorrect arithmetic optimization
                    involving bitfield arguments
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: tree-optimization
          Assignee: unassigned at gcc dot gnu.org
          Reporter: babokin at gmail dot com
  Target Milestone: ---

Created attachment 39074
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39074&action=edit
reproducer

-O0 and -O2 produce different results, while the test doesn't contain undefined
behavior.

> g++ -O0 bit_field_math.cpp ; ./a.out
4098873984
> g++ -O2 bit_field_math.cpp ; ./a.out
0
> g++ --version
gcc (Revision=238966/svn-rev:238969/) 7.0.0 20160801 (experimental)

GCC version 6 works correctly.

The test case is attached.

One thing that might look suspicious in the test is negation of unsigned int.
But it's well defined in the standard (same bit pattern as if it's signed, but
the result is treated as unsigned).
>From gcc-bugs-return-533627-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 13:42:52 2016
Return-Path: <gcc-bugs-return-533627-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 39237 invoked by alias); 8 Aug 2016 13:42:52 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 16978 invoked by uid 48); 8 Aug 2016 13:42:39 -0000
From: "riad93 at mail dot ru" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72836] New: global variable read clashes with reading from cin with sync_stdio(false)
Date: Mon, 08 Aug 2016 13:42:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: riad93 at mail dot ru
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-72836-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00963.txt.bz2
Content-length: 6179

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72836

            Bug ID: 72836
           Summary: global variable read clashes with reading from cin
                    with sync_stdio(false)
           Product: gcc
           Version: 6.1.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: riad93 at mail dot ru
  Target Milestone: ---

code


#include <iostream>

using namespace std;

int read;

int main(){
    ios_base::sync_with_stdio(0);

    int n;
    cin >> n;
    return n;
}

Compilation string

[g++] a.cpp -fsanitize=address && ./a.out

Result:

ASAN:DEADLYSIGNAL
=================================================================
==21772==ERROR: AddressSanitizer: SEGV on unknown address 0x000000602320 (pc
0x000000602320 bp 0x000000001fff sp 0x7fff016a5268 T0)
    #0 0x60231f  (/home/alexeyd/test/a.out+0x60231f)

AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV (/home/alexeyd/test/a.out+0x60231f)
==21772==ABORTING


When changing read to xread works as expected

Affected versions: 4.9.3, 5.3.0, 6.1.1:



➜  test  g++-6 -v               
Using built-in specs.
COLLECT_GCC=g++-6
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/6/lto-wrapper
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu
6.1.1-3ubuntu11~14.04.1' --with-bugurl=file:///usr/share/doc/gcc-6/README.Bugs
--enable-languages=c,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr
--program-suffix=-6 --enable-shared --enable-linker-build-id
--libexecdir=/usr/lib --without-included-gettext --enable-threads=posix
--libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu
--enable-libstdcxx-debug --enable-libstdcxx-time=yes
--with-default-libstdcxx-abi=gcc4-compatible --disable-libstdcxx-dual-abi
--enable-gnu-unique-object --disable-vtable-verify --enable-libmpx
--enable-plugin --with-system-zlib --disable-browser-plugin
--enable-java-awt=gtk --enable-gtk-cairo
--with-java-home=/usr/lib/jvm/java-1.5.0-gcj-6-amd64/jre --enable-java-home
--with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-6-amd64
--with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-6-amd64
--with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar
--enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686
--with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib
--with-tune=generic --enable-checking=release --build=x86_64-linux-gnu
--host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 6.1.1 20160511 (Ubuntu 6.1.1-3ubuntu11~14.04.1)
➜  test  g++-5 -v          
Using built-in specs.
COLLECT_GCC=g++-5
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu
5.3.0-3ubuntu1~14.04' --with-bugurl=file:///usr/share/doc/gcc-5/README.Bugs
--enable-languages=c,ada,c++,java,go,fortran,objc,obj-c++ --prefix=/usr
--program-suffix=-5 --enable-shared --enable-linker-build-id
--libexecdir=/usr/lib --without-included-gettext --enable-threads=posix
--libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu
--enable-libstdcxx-debug --enable-libstdcxx-time=yes
--with-default-libstdcxx-abi=gcc4-compatible --disable-libstdcxx-dual-abi
--enable-gnu-unique-object --disable-vtable-verify --enable-libmpx
--enable-plugin --with-system-zlib --disable-browser-plugin
--enable-java-awt=gtk --enable-gtk-cairo
--with-java-home=/usr/lib/jvm/java-1.5.0-gcj-5-amd64/jre --enable-java-home
--with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-5-amd64
--with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-5-amd64
--with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar
--enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686
--with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib
--with-tune=generic --enable-checking=release --build=x86_64-linux-gnu
--host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 5.3.0 20151204 (Ubuntu 5.3.0-3ubuntu1~14.04)
➜  test  g++ -v                                                                 
Using built-in specs.
COLLECT_GCC=g++
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.9/lto-wrapper
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu
4.9.3-8ubuntu2~14.04' --with-bugurl=file:///usr/share/doc/gcc-4.9/README.Bugs
--enable-languages=c,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr
--program-suffix=-4.9 --enable-shared --enable-linker-build-id
--libexecdir=/usr/lib --without-included-gettext --enable-threads=posix
--with-gxx-include-dir=/usr/include/c++/4.9 --libdir=/usr/lib --enable-nls
--with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug
--enable-libstdcxx-time=yes --enable-gnu-unique-object --disable-vtable-verify
--enable-plugin --with-system-zlib --disable-browser-plugin
--enable-java-awt=gtk --enable-gtk-cairo
--with-java-home=/usr/lib/jvm/java-1.5.0-gcj-4.9-amd64/jre --enable-java-home
--with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-4.9-amd64
--with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-4.9-amd64
--with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar
--enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686
--with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib
--with-tune=generic --enable-checking=release --build=x86_64-linux-gnu
--host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 4.9.3 (Ubuntu 4.9.3-8ubuntu2~14.04)
>From gcc-bugs-return-533629-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 13:56:55 2016
Return-Path: <gcc-bugs-return-533629-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 60365 invoked by alias); 8 Aug 2016 13:56:55 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 60180 invoked by uid 48); 8 Aug 2016 13:56:48 -0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/72716] [5/6/7 Regression] ICE in gfc_resolve_omp_declare_simd, at fortran/openmp.c:5156
Date: Mon, 08 Aug 2016 13:56:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status assigned_to attachments.created
Message-ID: <bug-72716-4-byaBv7so6x@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72716-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72716-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00965.txt.bz2
Content-length: 578

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72716

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED
           Assignee|unassigned at gcc dot gnu.org      |jakub at gcc dot gnu.org

--- Comment #2 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Created attachment 39075
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39075&action=edit
gcc7-pr72716.patch

Untested fix.
>From gcc-bugs-return-533628-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 13:56:55 2016
Return-Path: <gcc-bugs-return-533628-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 60351 invoked by alias); 8 Aug 2016 13:56:55 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 60127 invoked by uid 48); 8 Aug 2016 13:56:41 -0000
From: "jmgjdubois at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/71937] out of memory on very large function
Date: Mon, 08 Aug 2016 13:56:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords: memory-hog
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jmgjdubois at gmail dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71937-4-s9vcUZhCrn@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71937-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71937-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00964.txt.bz2
Content-length: 277

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71937

--- Comment #15 from Jean-Michel Dubois <jmgjdubois at gmail dot com> ---
I am back. I built gcc 6.1 with the --enable-decimal-float I need. I can now
compile successfully in about 2'30 with gcc -O2.

Thanks for your help.
>From gcc-bugs-return-533630-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 13:59:32 2016
Return-Path: <gcc-bugs-return-533630-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 85768 invoked by alias); 8 Aug 2016 13:59:32 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 84858 invoked by uid 55); 8 Aug 2016 13:59:19 -0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/72821] [7 regression] RTL check: expected elt 2 type 'B', have '0' (rtx barrier) in BLOCK_FOR_INSN, at rtl.h:1424
Date: Mon, 08 Aug 2016 13:59:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72821-4-mCm2cqlSKI@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72821-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72821-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00966.txt.bz2
Content-length: 472

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72821

--- Comment #3 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Author: jakub
Date: Mon Aug  8 13:58:46 2016
New Revision: 239241

URL: https://gcc.gnu.org/viewcvs?rev=239241&root=gcc&view=rev
Log:
        PR rtl-optimization/72821
        * lra-spills.c (regno_in_use_p): Don't use BLOCK_FOR_INSN on barriers,
        just return false for them.

Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/lra-spills.c
>From gcc-bugs-return-533631-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 14:00:39 2016
Return-Path: <gcc-bugs-return-533631-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 88786 invoked by alias); 8 Aug 2016 14:00:36 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 87146 invoked by uid 48); 8 Aug 2016 14:00:09 -0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/58306] Broken profiling for unrar sources: error: corrupted value profile: value profile counter (X out of Y) inconsistent with basic-block count
Date: Mon, 08 Aug 2016 14:00:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-58306-4-Putk03XlEt@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-58306-4@http.gcc.gnu.org/bugzilla/>
References: <bug-58306-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00967.txt.bz2
Content-length: 266

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58306

--- Comment #18 from Martin Liška <marxin at gcc dot gnu.org> ---
Ok, problem is that various value profilers are not updated atomically, fixed
in:
https://gcc.gnu.org/ml/gcc-patches/2016-08/msg00600.html
>From gcc-bugs-return-533632-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 14:06:06 2016
Return-Path: <gcc-bugs-return-533632-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 128720 invoked by alias); 8 Aug 2016 14:06:05 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 128607 invoked by uid 48); 8 Aug 2016 14:05:52 -0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/67097] gcov-tool merge (can) crash when dir2 contains files not in dir1
Date: Mon, 08 Aug 2016 14:06:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 5.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status
Message-ID: <bug-67097-4-YdVQBT18gZ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67097-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67097-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00968.txt.bz2
Content-length: 396

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67097

Martin Liška <marxin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|REOPENED                    |NEW

--- Comment #7 from Martin Liška <marxin at gcc dot gnu.org> ---
Confirmed with current trunk.
>From gcc-bugs-return-533633-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 14:15:12 2016
Return-Path: <gcc-bugs-return-533633-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 58329 invoked by alias); 8 Aug 2016 14:15:10 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 58027 invoked by uid 48); 8 Aug 2016 14:14:55 -0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/72817] [7 Regression] wrong code at -O3 on x86_64-linux-gnu (in both 32-bit and 64-bit modes)
Date: Mon, 08 Aug 2016 14:15:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone short_desc
Message-ID: <bug-72817-4-kiaDV54oFU@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72817-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72817-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00969.txt.bz2
Content-length: 573

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72817

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |7.0
            Summary|wrong code at -O3 on        |[7 Regression] wrong code
                   |x86_64-linux-gnu (in both   |at -O3 on x86_64-linux-gnu
                   |32-bit and 64-bit modes)    |(in both 32-bit and 64-bit
                   |                            |modes)
>From gcc-bugs-return-533634-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 14:16:35 2016
Return-Path: <gcc-bugs-return-533634-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 83122 invoked by alias); 8 Aug 2016 14:16:35 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 83008 invoked by uid 48); 8 Aug 2016 14:16:22 -0000
From: "TrevorJamesHickey at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72837] New: -Wundef is not being ignored with pragma
Date: Mon, 08 Aug 2016 14:16:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: TrevorJamesHickey at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-72837-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00970.txt.bz2
Content-length: 1591

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72837

            Bug ID: 72837
           Summary: -Wundef is not being ignored with pragma
           Product: gcc
           Version: 5.1.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: TrevorJamesHickey at gmail dot com
  Target Milestone: ---

Given the following code:  

    #if MACRO_WITHOUT_A_VALUE
    int var;
    #endif

    int main(){}
When compiled with, `g++ -std=c++1z -Wundef -o main main.cpp`,  
it produces the following warning:  

    main.cpp:1:5: warning: "MACRO_WITHOUT_A_VALUE" is not defined [-Wundef]
     #if MACRO_WITHOUT_A_VALUE
         ^
I'd like to keep the warning flag enabled, but suppress this particular
instance.  
I apply the following:

    #ifdef __GNUC__
    #pragma GCC diagnostic ignored "-Wundef"
    #pragma GCC diagnostic push
    #endif

    #if MACRO_WITHOUT_A_VALUE
    int var;
    #endif

    #ifdef __GNUC__
    #pragma GCC diagnostic pop
    #endif

    int main(){}
This only solves the problem in `clang++`.  

The command `clang++ -std=c++1z -Wundef -o main main.cpp` builds without
warnings.  
The command `g++ -std=c++1z -Wundef -o main main.cpp` builds with the same
`[-Wundef]` warning as before.

**How can I suppress `-Wundef` warnings in `g++`?**  

    g++ (Ubuntu 5.1.0-0ubuntu11~14.04.1) 5.1.0
    clang version 3.8.0

http://stackoverflow.com/questions/38831058/wundef-is-not-being-ignored-with-pragma-in-g
>From gcc-bugs-return-533635-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 14:17:43 2016
Return-Path: <gcc-bugs-return-533635-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 85439 invoked by alias); 8 Aug 2016 14:17:43 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 85370 invoked by uid 48); 8 Aug 2016 14:17:36 -0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/67097] gcov-tool merge (can) crash when dir2 contains files not in dir1
Date: Mon, 08 Aug 2016 14:17:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 5.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-67097-4-HUsKIfwxAv@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67097-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67097-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00971.txt.bz2
Content-length: 675

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67097

--- Comment #8 from Martin Liška <marxin at gcc dot gnu.org> ---
(In reply to Gilles Gouaillardet from comment #6)
> as a side note, would you be interested in me providing a patch so
> gcov-tool merge
> can merge n directories (currently, we are limited to n=2) ?
> 
> i would implement that via a binary tree, so under the hood, that would
> require o(log(n)) elementary merge of two directories.
> 
> for extreme merge, i can also add an option that specifies the temporary
> directory to be used (e.g. something different that /tmp/$TMPDIR)

If you have a use-case where it would be beneficial, why not ;)
>From gcc-bugs-return-533636-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 14:26:57 2016
Return-Path: <gcc-bugs-return-533636-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 6579 invoked by alias); 8 Aug 2016 14:26:57 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 118257 invoked by uid 48); 8 Aug 2016 14:26:44 -0000
From: "amker at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/72817] [7 Regression] wrong code at -O3 on x86_64-linux-gnu (in both 32-bit and 64-bit modes)
Date: Mon, 08 Aug 2016 14:26:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: amker at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: amker at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: assigned_to
Message-ID: <bug-72817-4-P1FDkBZ3ML@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72817-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72817-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00972.txt.bz2
Content-length: 360

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72817

amker at gcc dot gnu.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Assignee|unassigned at gcc dot gnu.org      |amker at gcc dot gnu.org

--- Comment #2 from amker at gcc dot gnu.org ---
mine.
>From gcc-bugs-return-533637-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 14:42:57 2016
Return-Path: <gcc-bugs-return-533637-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 78304 invoked by alias); 8 Aug 2016 14:42:57 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 78198 invoked by uid 48); 8 Aug 2016 14:42:45 -0000
From: "t.artem at mailcity dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/58306] Broken profiling for unrar sources: error: corrupted value profile: value profile counter (X out of Y) inconsistent with basic-block count
Date: Mon, 08 Aug 2016 14:42:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: t.artem at mailcity dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-58306-4-nU1ebElDq2@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-58306-4@http.gcc.gnu.org/bugzilla/>
References: <bug-58306-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00973.txt.bz2
Content-length: 457

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58306

--- Comment #19 from Artem S. Tashkinov <t.artem at mailcity dot com> ---
(In reply to Martin Liška from comment #18)
> Ok, problem is that various value profilers are not updated atomically,
> fixed in:
> https://gcc.gnu.org/ml/gcc-patches/2016-08/msg00600.html

Thank you!

Do I understand the patch correctly that it requires "-fprofile-update=atomic"
option in order to eliminate this bug?
>From gcc-bugs-return-533638-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 14:47:45 2016
Return-Path: <gcc-bugs-return-533638-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 93136 invoked by alias); 8 Aug 2016 14:47:44 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 90119 invoked by uid 48); 8 Aug 2016 14:47:30 -0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/58306] Broken profiling for unrar sources: error: corrupted value profile: value profile counter (X out of Y) inconsistent with basic-block count
Date: Mon, 08 Aug 2016 14:47:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-58306-4-NSdc9o1kpb@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-58306-4@http.gcc.gnu.org/bugzilla/>
References: <bug-58306-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00974.txt.bz2
Content-length: 606

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58306

--- Comment #20 from Martin Liška <marxin at gcc dot gnu.org> ---
(In reply to Artem S. Tashkinov from comment #19)
> (In reply to Martin Liška from comment #18)
> > Ok, problem is that various value profilers are not updated atomically,
> > fixed in:
> > https://gcc.gnu.org/ml/gcc-patches/2016-08/msg00600.html
> 
> Thank you!
> 
> Do I understand the patch correctly that it requires
> "-fprofile-update=atomic" option in order to eliminate this bug?

Exactly, I hope I'll be able to merge the whole patchset (5) to mainline soon.
>From gcc-bugs-return-533639-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 14:49:58 2016
Return-Path: <gcc-bugs-return-533639-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 97644 invoked by alias); 8 Aug 2016 14:49:58 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 97559 invoked by uid 48); 8 Aug 2016 14:49:45 -0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/58706] ICE with lambda in OpenMP for-loop
Date: Mon, 08 Aug 2016 14:49:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords: ice-on-valid-code, openmp
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-58706-4-m7Pb2oZvfq@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-58706-4@http.gcc.gnu.org/bugzilla/>
References: <bug-58706-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00975.txt.bz2
Content-length: 563

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58706

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jakub at gcc dot gnu.org

--- Comment #2 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
This isn't valid code, as OpenMP doesn't support C++11 and later, so in order
to stay in the well defined territory, you shouldn't use C++11 and later
constructs in OpenMP constructs.
>From gcc-bugs-return-533640-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 14:56:58 2016
Return-Path: <gcc-bugs-return-533640-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 9285 invoked by alias); 8 Aug 2016 14:56:58 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 9142 invoked by uid 48); 8 Aug 2016 14:56:45 -0000
From: "thopre01 at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug testsuite/72838] New: FAIL: g++.dg/cpp0x/constexpr-cast.C
Date: Mon, 08 Aug 2016 14:56:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: testsuite
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: thopre01 at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter cc target_milestone cf_gcctarget
Message-ID: <bug-72838-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00976.txt.bz2
Content-length: 877

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72838

            Bug ID: 72838
           Summary: FAIL: g++.dg/cpp0x/constexpr-cast.C
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: testsuite
          Assignee: unassigned at gcc dot gnu.org
          Reporter: thopre01 at gcc dot gnu.org
                CC: msebor at gcc dot gnu.org
  Target Milestone: ---
            Target: arm-none-eabi

Hi,

g++.dg/cpp0x/constexpr-cast.C fails on arm-none-eabi on the dg-error at line 8:

NA->FAIL: g++.dg/cpp0x/constexpr-cast.C  -std=c++11 bug c++/49171 (test for
errors, line 8)
NA->FAIL: g++.dg/cpp0x/constexpr-cast.C  -std=c++14 bug c++/49171 (test for
errors, line 8)

I believe this is due to the target triplet which is *-*-*-* rather than *-*-*.

Best regards.
>From gcc-bugs-return-533641-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 14:59:52 2016
Return-Path: <gcc-bugs-return-533641-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 13368 invoked by alias); 8 Aug 2016 14:59:52 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 13278 invoked by uid 48); 8 Aug 2016 14:59:39 -0000
From: "thopre01 at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug testsuite/72838] FAIL: g++.dg/cpp0x/constexpr-cast.C
Date: Mon, 08 Aug 2016 14:59:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: testsuite
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: thopre01 at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72838-4-Tr1EQUhgUE@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72838-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72838-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00977.txt.bz2
Content-length: 1220

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72838

--- Comment #1 from Thomas Preud'homme <thopre01 at gcc dot gnu.org> ---
Note, the same error happens in:

PASS->NA: g++.dg/warn/overflow-warn-3.C  -std=gnu++11 const (test for errors,
line 67)
PASS->FAIL: g++.dg/warn/overflow-warn-3.C  -std=gnu++11 (test for excess
errors)
PASS->NA: g++.dg/warn/overflow-warn-3.C  -std=gnu++14 const (test for errors,
line 67)
PASS->FAIL: g++.dg/warn/overflow-warn-3.C  -std=gnu++14 (test for excess
errors)
PASS->NA: g++.dg/warn/overflow-warn-3.C  -std=gnu++98 const (test for errors,
line 67)
PASS->FAIL: g++.dg/warn/overflow-warn-3.C  -std=gnu++98 (test for excess
errors)
PASS->NA: g++.dg/warn/overflow-warn-4.C  -std=gnu++11 const (test for errors,
line 70)
PASS->FAIL: g++.dg/warn/overflow-warn-4.C  -std=gnu++11 (test for excess
errors)
PASS->NA: g++.dg/warn/overflow-warn-4.C  -std=gnu++14 const (test for errors,
line 70)
PASS->FAIL: g++.dg/warn/overflow-warn-4.C  -std=gnu++14 (test for excess
errors)
PASS->NA: g++.dg/warn/overflow-warn-4.C  -std=gnu++98 const (test for errors,
line 70)
PASS->FAIL: g++.dg/warn/overflow-warn-4.C  -std=gnu++98 (test for excess
errors)

Best regards.
>From gcc-bugs-return-533642-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 15:09:32 2016
Return-Path: <gcc-bugs-return-533642-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 58581 invoked by alias); 8 Aug 2016 15:09:32 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 58458 invoked by uid 48); 8 Aug 2016 15:09:19 -0000
From: "amodra at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72802] powerpc64le: -mcpu=power9 emits lxssp instruction with offset that isn't a multiple of 4
Date: Mon, 08 Aug 2016 15:09:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: amodra at gmail dot com
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: amodra at gmail dot com
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-72802-4-Kby7TPsTmC@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72802-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72802-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00978.txt.bz2
Content-length: 610

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72802

Alan Modra <amodra at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|amodra at gmail dot com            |

--- Comment #7 from Alan Modra <amodra at gmail dot com> ---
Fixed on trunk.  The problem exists on gcc-6 since we have wrong "o"
constraints on lsxxp/stxssp there.  Triggered by:

float foo (void *p)
{
  register float f __asm__ ("v0");
  f = *(float *)((char *) p + 2);
  __asm__ ("#%0" : "+wa" (f));
  return f;
}
>From gcc-bugs-return-533643-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 15:12:49 2016
Return-Path: <gcc-bugs-return-533643-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 64375 invoked by alias); 8 Aug 2016 15:12:49 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 64259 invoked by uid 55); 8 Aug 2016 15:12:35 -0000
From: "ro at CeBiTec dot Uni-Bielefeld.DE" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/72833] [7 regression] error in fortran/parse.c (unexpected_eof) on Mac OS X 10.7
Date: Mon, 08 Aug 2016 15:12:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ro at CeBiTec dot Uni-Bielefeld.DE
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72833-4-nQsxJCOyZO@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72833-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72833-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00979.txt.bz2
Content-length: 833

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72833

--- Comment #3 from ro at CeBiTec dot Uni-Bielefeld.DE <ro at CeBiTec dot Uni-Bielefeld.DE> ---
> --- Comment #2 from Bernd Edlinger <bernd.edlinger at hotmail dot de> ---
[...]
> I see we had previously a solaris_longjmp_noreturn
> fixinclude rule, maybe that would be a starting point.

Certainly: up to Solaris 9, there was the same issue.

> Could you please attach a faulty setjmp.h and a good setjmp.h

I'm attaching the Mac OS X 10.7 one (i386/setjmp.h).  Need to get home
first for the 10.12 one and the annotation they use for noreturn
functions.

> from your MAC OS X?
> And by the way what is the canonical target name here?

I'd just use *-*-darwin* here, and bypass on the noreturn annotation,
similar to what the solaris_longjmp_noreturn fix did.

        Rainer
>From gcc-bugs-return-533644-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 15:13:21 2016
Return-Path: <gcc-bugs-return-533644-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 65391 invoked by alias); 8 Aug 2016 15:13:21 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 65339 invoked by uid 48); 8 Aug 2016 15:13:17 -0000
From: "ro at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/72833] [7 regression] error in fortran/parse.c (unexpected_eof) on Mac OS X 10.7
Date: Mon, 08 Aug 2016 15:13:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ro at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: attachments.created
Message-ID: <bug-72833-4-xfiapEaXmk@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72833-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72833-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00980.txt.bz2
Content-length: 244

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72833

--- Comment #4 from Rainer Orth <ro at gcc dot gnu.org> ---
Created attachment 39076
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39076&action=edit
Mac OS X 10.7 <i386/setjmp.h>
>From gcc-bugs-return-533645-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 15:18:56 2016
Return-Path: <gcc-bugs-return-533645-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 71641 invoked by alias); 8 Aug 2016 15:18:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 71507 invoked by uid 48); 8 Aug 2016 15:18:43 -0000
From: "msebor at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug testsuite/72838] FAIL: g++.dg/cpp0x/constexpr-cast.C
Date: Mon, 08 Aug 2016 15:18:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: testsuite
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: msebor at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: msebor at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on assigned_to everconfirmed
Message-ID: <bug-72838-4-BZRiqYpdN1@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72838-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72838-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00981.txt.bz2
Content-length: 601

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72838

Martin Sebor <msebor at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |ASSIGNED
   Last reconfirmed|                            |2016-08-08
           Assignee|unassigned at gcc dot gnu.org      |msebor at gcc dot gnu.org
     Ever confirmed|0                           |1

--- Comment #2 from Martin Sebor <msebor at gcc dot gnu.org> ---
Thanks.  Let me correct the target selector.
>From gcc-bugs-return-533646-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 15:25:01 2016
Return-Path: <gcc-bugs-return-533646-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 112720 invoked by alias); 8 Aug 2016 15:25:01 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 112645 invoked by uid 48); 8 Aug 2016 15:24:48 -0000
From: "hjl.tools at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72839] New: MOVE_RATIO is too small for Lakemont
Date: Mon, 08 Aug 2016 15:25:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: hjl.tools at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter cc target_milestone cf_gcchost
Message-ID: <bug-72839-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00982.txt.bz2
Content-length: 2503

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72839

            Bug ID: 72839
           Summary: MOVE_RATIO is too small for Lakemont
           Product: gcc
           Version: 6.1.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: target
          Assignee: unassigned at gcc dot gnu.org
          Reporter: hjl.tools at gmail dot com
                CC: ubizjak at gmail dot com
  Target Milestone: ---
              Host: i386

[hjl@gnu-6 stringops-1]$ cat x.i
extern char *strcpy (char *, const char *);

void
foo (char *s)
{
  strcpy (s,
          "12345678123456781234567812345678123456781234567812345678"
          "1234567");
}
[hjl@gnu-6 stringops-1]$ gcc -O2 -mtune=lakemont -m32 -S x.i
[hjl@gnu-6 stringops-1]$ cat x.s
        .file   "x.i"
        .section        .rodata.str1.4,"aMS",@progbits,1
        .align 4
.LC0:
        .string
"123456781234567812345678123456781234567812345678123456781234567"
        .text
        .p2align 4,,15
        .globl  foo
        .type   foo, @function
foo:
.LFB0:
        .cfi_startproc
        pushl   %edi
        .cfi_def_cfa_offset 8
        .cfi_offset 7, -8
        pushl   %esi
        .cfi_def_cfa_offset 12
        .cfi_offset 6, -12
        movl    12(%esp), %edi
        movl    $.LC0, %esi
        movl    $64, %eax
        testl   $1, %edi
        jne     .L21
        testl   $2, %edi
        jne     .L22
.L3:
        movl    %eax, %ecx
        xorl    %edx, %edx
        shrl    $2, %ecx
        testb   $2, %al
        rep movsl
        je      .L4
        movw    (%esi), %dx
        movw    %dx, (%edi)
        movl    $2, %edx
.L4:
        testb   $1, %al
        je      .L1
        movb    (%esi,%edx), %al
        movb    %al, (%edi,%edx)
.L1:
        popl    %esi
        .cfi_remember_state
        .cfi_restore 6
        .cfi_def_cfa_offset 8
        popl    %edi
        .cfi_restore 7
        .cfi_def_cfa_offset 4
        ret
        .p2align 4,,7
        .p2align 3
.L21:
        .cfi_restore_state
        movb    .LC0, %al
        incl    %edi
        movb    %al, -1(%edi)
        movl    $.LC0+1, %esi
        movl    $63, %eax
        testl   $2, %edi
        je      .L3
        .p2align 4,,7
        .p2align 3
.L22:
        movw    (%esi), %dx
        addl    $2, %edi
        movw    %dx, -2(%edi)
        addl    $2, %esi
        subl    $2, %eax
        jmp     .L3
        .cfi_endproc
.LFE0:
        .size   foo, .-foo

The code is bigger and slower.
>From gcc-bugs-return-533647-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 15:32:57 2016
Return-Path: <gcc-bugs-return-533647-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 19579 invoked by alias); 8 Aug 2016 15:32:57 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 19519 invoked by uid 55); 8 Aug 2016 15:32:48 -0000
From: "msebor at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug testsuite/72838] FAIL: g++.dg/cpp0x/constexpr-cast.C
Date: Mon, 08 Aug 2016 15:32:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: testsuite
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: msebor at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: msebor at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72838-4-U4edSS7G8h@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72838-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72838-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00983.txt.bz2
Content-length: 754

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72838

--- Comment #3 from Martin Sebor <msebor at gcc dot gnu.org> ---
Author: msebor
Date: Mon Aug  8 15:32:16 2016
New Revision: 239242

URL: https://gcc.gnu.org/viewcvs?rev=239242&root=gcc&view=rev
Log:
PR testsuite/72838 - FAIL: g++.dg/cpp0x/constexpr-cast.C

gcc/testsuite/ChangeLog:
        * gcc/testsuite/g++.dg/cpp0x/constexpr-cast.C: Correct target selector.
        * gcc/testsuite/g++.dg/warn/overflow-warn-3.C: Same.
        * gcc/testsuite/g++.dg/warn/overflow-warn-4.C: Same.

Modified:
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/testsuite/g++.dg/cpp0x/constexpr-cast.C
    trunk/gcc/testsuite/g++.dg/warn/overflow-warn-3.C
    trunk/gcc/testsuite/g++.dg/warn/overflow-warn-4.C
>From gcc-bugs-return-533648-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 15:33:16 2016
Return-Path: <gcc-bugs-return-533648-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 20463 invoked by alias); 8 Aug 2016 15:33:16 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 20306 invoked by uid 48); 8 Aug 2016 15:33:03 -0000
From: "msebor at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug testsuite/72838] FAIL: g++.dg/cpp0x/constexpr-cast.C
Date: Mon, 08 Aug 2016 15:33:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: testsuite
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: msebor at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: msebor at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-72838-4-1zPupknJuA@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72838-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72838-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00984.txt.bz2
Content-length: 443

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72838

Martin Sebor <msebor at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #4 from Martin Sebor <msebor at gcc dot gnu.org> ---
Tests adjusted in r239242.
>From gcc-bugs-return-533649-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 15:38:55 2016
Return-Path: <gcc-bugs-return-533649-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 42886 invoked by alias); 8 Aug 2016 15:38:55 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 42802 invoked by uid 48); 8 Aug 2016 15:38:42 -0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/46266] gcov generates data for non-existing file <built-in>
Date: Mon, 08 Aug 2016 15:38:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 4.4.3
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-46266-4-a6ysr9WpzA@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-46266-4@http.gcc.gnu.org/bugzilla/>
References: <bug-46266-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00985.txt.bz2
Content-length: 505

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=46266

Martin Liška <marxin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-08
     Ever confirmed|0                           |1

--- Comment #3 from Martin Liška <marxin at gcc dot gnu.org> ---
Confirmed on current trunk.
>From gcc-bugs-return-533650-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 15:42:50 2016
Return-Path: <gcc-bugs-return-533650-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 89062 invoked by alias); 8 Aug 2016 15:42:50 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 78960 invoked by uid 48); 8 Aug 2016 15:42:37 -0000
From: "gjl at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/71976] insn-combiner deletes a live 64-bit shift
Date: Mon, 08 Aug 2016 15:42:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: gjl at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-71976-4-eKX50fCgcL@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71976-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71976-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00986.txt.bz2
Content-length: 442

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71976

Georg-Johann Lay <gjl at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--- Comment #11 from Georg-Johann Lay <gjl at gcc dot gnu.org> ---
Fixed in 5.5 and 6.2+.
>From gcc-bugs-return-533651-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 16:01:39 2016
Return-Path: <gcc-bugs-return-533651-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 12774 invoked by alias); 8 Aug 2016 16:01:38 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 12685 invoked by uid 48); 8 Aug 2016 16:01:26 -0000
From: "thopre01 at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug testsuite/72840] New: PASS->NA: 20_util/ratio/cons/cons_overflow_neg.cc
Date: Mon, 08 Aug 2016 16:01:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: testsuite
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: thopre01 at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter cc target_milestone
Message-ID: <bug-72840-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00987.txt.bz2
Content-length: 879

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72840

            Bug ID: 72840
           Summary: PASS->NA: 20_util/ratio/cons/cons_overflow_neg.cc
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: testsuite
          Assignee: unassigned at gcc dot gnu.org
          Reporter: thopre01 at gcc dot gnu.org
                CC: redi at gcc dot gnu.org
  Target Milestone: ---

Hi,

2 error checks have stopped being run in
20_util/ratio/cons/cons_overflow_neg.cc due to syntax error on the dg-error
line.

Indeed, the dg-error directives at lines 40 and 46 are missing the closing
curly braces:

l40
  std::ratio<1, INTMAX_MIN> r1 __attribute__((unused)); // { dg-error "required
from here"

l46
  std::ratio<1,0> r1 __attribute__((unused)); // { dg-error "required from
here"
>From gcc-bugs-return-533652-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 16:05:56 2016
Return-Path: <gcc-bugs-return-533652-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 37220 invoked by alias); 8 Aug 2016 16:05:55 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 37140 invoked by uid 48); 8 Aug 2016 16:05:43 -0000
From: "thopre01 at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug testsuite/72841] New: PASS->NA: 20_util/tuple/cons/66338.cc execution test
Date: Mon, 08 Aug 2016 16:05:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: testsuite
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: thopre01 at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter cc target_milestone cf_gcctarget
Message-ID: <bug-72841-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00988.txt.bz2
Content-length: 1004

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72841

            Bug ID: 72841
           Summary: PASS->NA: 20_util/tuple/cons/66338.cc execution test
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: testsuite
          Assignee: unassigned at gcc dot gnu.org
          Reporter: thopre01 at gcc dot gnu.org
                CC: redi at gcc dot gnu.org
  Target Milestone: ---
            Target: arm-none-eabi

Hi,

r238945 has changed the following two tests from runtime tests to compile test
only:

PASS->NA: 20_util/tuple/cons/66338.cc execution test
PASS->NA: 20_util/tuple/cons/element_accepts_anything_byval.cc execution test

I believe this was not intended because the commit message reads (emphasis is
mine):

Limit std::tuple tests to *run* for C++11 and later


If I made a mistake and this was indeed intended, please accept my apologize
and discard this bug report.

Best regards.
>From gcc-bugs-return-533653-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 16:06:27 2016
Return-Path: <gcc-bugs-return-533653-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 38033 invoked by alias); 8 Aug 2016 16:06:26 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 37999 invoked by uid 48); 8 Aug 2016 16:06:22 -0000
From: "bernd.edlinger at hotmail dot de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71083] [5/6/7 Regression] Unaligned bit-field address when predictive commoning
Date: Mon, 08 Aug 2016 16:06:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: major
X-Bugzilla-Who: bernd.edlinger at hotmail dot de
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: attachments.isobsolete attachments.created
Message-ID: <bug-71083-4-1X1viPnnQ4@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71083-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71083-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00989.txt.bz2
Content-length: 685

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71083

Bernd Edlinger <bernd.edlinger at hotmail dot de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
  Attachment #39068|0                           |1
        is obsolete|                            |

--- Comment #8 from Bernd Edlinger <bernd.edlinger at hotmail dot de> ---
Created attachment 39077
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39077&action=edit
proposed patch

the previous version hit an assertion,
because it can happen that inner == NULL and coff != 0 ...

fixed assertion and survives reg-testing.
>From gcc-bugs-return-533654-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 16:46:05 2016
Return-Path: <gcc-bugs-return-533654-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 70094 invoked by alias); 8 Aug 2016 16:46:05 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 69984 invoked by uid 48); 8 Aug 2016 16:45:51 -0000
From: "t.artem at mailcity dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/58306] Broken profiling for unrar sources: error: corrupted value profile: value profile counter (X out of Y) inconsistent with basic-block count
Date: Mon, 08 Aug 2016 16:46:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: t.artem at mailcity dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-58306-4-X2uxWMlMc8@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-58306-4@http.gcc.gnu.org/bugzilla/>
References: <bug-58306-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00990.txt.bz2
Content-length: 590

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58306

--- Comment #21 from Artem S. Tashkinov <t.artem at mailcity dot com> ---
(In reply to Martin Liška from comment #20)
> > Do I understand the patch correctly that it requires
> > "-fprofile-update=atomic" option in order to eliminate this bug?
> 
> Exactly, I hope I'll be able to merge the whole patchset (5) to mainline
> soon.

What's the rationale behind this decision? This looks a bit counter intuitive
and counter productive. People just enable profiling and don't think twice
about extra requirements it might ensue.
>From gcc-bugs-return-533655-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 16:49:26 2016
Return-Path: <gcc-bugs-return-533655-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 75824 invoked by alias); 8 Aug 2016 16:49:26 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 75479 invoked by uid 55); 8 Aug 2016 16:49:13 -0000
From: "ro at CeBiTec dot Uni-Bielefeld.DE" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/72833] [7 regression] error in fortran/parse.c (unexpected_eof) on Mac OS X 10.7
Date: Mon, 08 Aug 2016 16:49:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ro at CeBiTec dot Uni-Bielefeld.DE
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72833-4-0454gI2VOI@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72833-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72833-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00991.txt.bz2
Content-length: 844

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72833

--- Comment #5 from ro at CeBiTec dot Uni-Bielefeld.DE <ro at CeBiTec dot Uni-Bielefeld.DE> ---
> --- Comment #3 from ro at CeBiTec dot Uni-Bielefeld.DE <ro at CeBiTec dot
> Uni-Bielefeld.DE> ---
>> Could you please attach a faulty setjmp.h and a good setjmp.h
>
> I'm attaching the Mac OS X 10.7 one (i386/setjmp.h).  Need to get home
> first for the 10.12 one and the annotation they use for noreturn
> functions.

I've just checked: on Mac OS X 10.11 and macOS 10.12, there simply is no
<i386/setjmp.h>.  Instead, longjmp is declared directly in <setjmp.h>
with a __dead2 annotation (which expands to __attribute__((noreturn))).
No idea if there were any intermediate versions with the declaration in
<i386/setjmp.h> but some annotation (__dead2 or otherwise) present.

        Rainer
>From gcc-bugs-return-533657-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 17:12:47 2016
Return-Path: <gcc-bugs-return-533657-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 31562 invoked by alias); 8 Aug 2016 17:12:47 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 29964 invoked by uid 48); 8 Aug 2016 17:12:34 -0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/58306] Broken profiling for unrar sources: error: corrupted value profile: value profile counter (X out of Y) inconsistent with basic-block count
Date: Mon, 08 Aug 2016 17:12:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-58306-4-DeMOSAcCHs@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-58306-4@http.gcc.gnu.org/bugzilla/>
References: <bug-58306-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00993.txt.bz2
Content-length: 757

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58306

--- Comment #22 from Martin Liška <marxin at gcc dot gnu.org> ---
(In reply to Artem S. Tashkinov from comment #21)
> (In reply to Martin Liška from comment #20)
> > > Do I understand the patch correctly that it requires
> > > "-fprofile-update=atomic" option in order to eliminate this bug?
> > 
> > Exactly, I hope I'll be able to merge the whole patchset (5) to mainline
> > soon.
> 
> What's the rationale behind this decision? This looks a bit counter
> intuitive and counter productive. People just enable profiling and don't
> think twice about extra requirements it might ensue.

Sure, as Nathan suggested, we'll select the proper default value according to
-pthread argument.
>From gcc-bugs-return-533656-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 17:12:34 2016
Return-Path: <gcc-bugs-return-533656-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 29824 invoked by alias); 8 Aug 2016 17:12:34 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 29739 invoked by uid 48); 8 Aug 2016 17:12:21 -0000
From: "bernd.edlinger at hotmail dot de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/72833] [7 regression] error in fortran/parse.c (unexpected_eof) on Mac OS X 10.7
Date: Mon, 08 Aug 2016 17:12:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: bernd.edlinger at hotmail dot de
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: attachments.created
Message-ID: <bug-72833-4-z5kWfmSbNc@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72833-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72833-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00992.txt.bz2
Content-length: 405

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72833

--- Comment #6 from Bernd Edlinger <bernd.edlinger at hotmail dot de> ---
Created attachment 39078
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39078&action=edit
untested patch

Completely untested patch.

Based on the gcc-4.9 solaris patch:
just s/solaris/darwin/
and s/__NORETURN/__dead2/


Could you try a boot-strap with it?


Thanks.
>From gcc-bugs-return-533658-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 17:20:12 2016
Return-Path: <gcc-bugs-return-533658-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 81658 invoked by alias); 8 Aug 2016 17:20:12 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 78843 invoked by uid 48); 8 Aug 2016 17:19:57 -0000
From: "t.artem at mailcity dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/58306] Broken profiling for unrar sources: error: corrupted value profile: value profile counter (X out of Y) inconsistent with basic-block count
Date: Mon, 08 Aug 2016 17:20:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: t.artem at mailcity dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-58306-4-zIs0RulL2i@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-58306-4@http.gcc.gnu.org/bugzilla/>
References: <bug-58306-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00994.txt.bz2
Content-length: 354

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58306

--- Comment #23 from Artem S. Tashkinov <t.artem at mailcity dot com> ---
(In reply to Martin Liška from comment #22)
> Sure, as Nathan suggested, we'll select the proper default value according
> to -pthread argument.

Wonderful! What are the chances of this patch being merged with GCC 4.9.x?
>From gcc-bugs-return-533659-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 17:31:24 2016
Return-Path: <gcc-bugs-return-533659-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 98637 invoked by alias); 8 Aug 2016 17:31:23 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 98537 invoked by uid 48); 8 Aug 2016 17:31:10 -0000
From: "ott at fb dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug debug/72828] [5/6/7 Regression] ICE in clone_tree_partial when compiling with -fdebug-types-section
Date: Mon, 08 Aug 2016 17:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: debug
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ott at fb dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72828-4-KS6vEV5mLc@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72828-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72828-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00995.txt.bz2
Content-length: 383

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72828

--- Comment #2 from Giuseppe Ottaviano <ott at fb dot com> ---
Martin, I noticed you marked this as "[5/6/7 Regression]", but to be clear the
bug is present since at least 4.9 (the oldest version I tested).
It's only the attached reduction that is sensitive to compiler version. I can
provide repros for 4.9 and 5.1 as well.
>From gcc-bugs-return-533660-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 17:32:26 2016
Return-Path: <gcc-bugs-return-533660-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 100721 invoked by alias); 8 Aug 2016 17:32:26 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 99547 invoked by uid 48); 8 Aug 2016 17:32:13 -0000
From: "adhemerval.zanella at linaro dot org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug sanitizer/71042] libtsan requires __pointer_chk_guard@GLIBC_PRIVATE (6)
Date: Mon, 08 Aug 2016 17:32:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: sanitizer
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: adhemerval.zanella at linaro dot org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71042-4-NZ8ohZrwoN@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71042-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71042-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00996.txt.bz2
Content-length: 579

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71042

--- Comment #7 from Adhemerval Zanella <adhemerval.zanella at linaro dot org> ---
I do have a better solution to fix it, since for aarch64 glibc port, the stack
guard is a global variable (different than x86_64 where it in tcbhead
accessible through thread pointer).

We can just disable the jump fuction interposing for aarch64 and set it as
unavailable, but I would prefer to use if there is no alternative.

Jakub's solution can work and I will check it, but could you describe the issue
with RPM with more details?
>From gcc-bugs-return-533661-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 17:41:03 2016
Return-Path: <gcc-bugs-return-533661-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 27080 invoked by alias); 8 Aug 2016 17:41:03 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 26882 invoked by uid 48); 8 Aug 2016 17:40:51 -0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug sanitizer/71042] libtsan requires __pointer_chk_guard@GLIBC_PRIVATE (6)
Date: Mon, 08 Aug 2016 17:41:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: sanitizer
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-71042-4-znMxgr5CQp@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71042-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71042-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00997.txt.bz2
Content-length: 1194

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71042

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |law at gcc dot gnu.org

--- Comment #8 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
rpm tracks symbol versioning dependencies of binaries/libraries, and filters
out GLIBC_PRIVATE symbols to make sure apps don't use the private symbols (the
only exception is that glibc libraries/binaries can use those symbols
themselves).
The GLIBC_PRIVATE stands for symbols that aren't part of the exported glibc
ABI, can be changed at any time.  So dlsym would be only ugly cheating here.

In theory you could get the pointer mangling value for the current thread e.g.
by calling the original libc setjmp function or some other function where glibc
performs pointer mangling, and if you know which field glibc mangles and the
expected unmangled value there, you should be able to recover the
__pointer_chk_guard value from the pair of mangled and unmangled pointers,
because the mangling is just xor + rotate.
>From gcc-bugs-return-533662-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 17:41:04 2016
Return-Path: <gcc-bugs-return-533662-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 27091 invoked by alias); 8 Aug 2016 17:41:03 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 26988 invoked by uid 48); 8 Aug 2016 17:40:56 -0000
From: "ian at airs dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug go/72814] reflect FAILs on 32-bit Solaris/SPARC: SIGILL
Date: Mon, 08 Aug 2016 17:41:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: go
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ian at airs dot com
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: ian at airs dot com
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-72814-4-EExHcD1olf@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72814-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72814-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00998.txt.bz2
Content-length: 1292

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72814

Ian Lance Taylor <ian at airs dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |ASSIGNED
   Last reconfirmed|                            |2016-08-08
     Ever confirmed|0                           |1

--- Comment #1 from Ian Lance Taylor <ian at airs dot com> ---
The failing test is a function that returns a zero-sized struct.  The libffi
library does not support a zero-sized struct, so libgo and libffi togther wind
up treating the return type as a struct whose size is 1 byte.  On 32-bit SPARC,
a call to a function that returns a struct whose size is larger than 0 is
followed by an unimp instruction.  The function is compiled to skip the unimp
instruction when it returns.  See the handling of %) in sparc_print_operand in
gcc/config/sparc/sparc.c.  So libffi, thinking that the function returns a
non-empty struct, provides an unimp instruction to be skipped.  But the actual
function returns an empty struct, and therefore does not expect the unimp
instruction, and therefore does not skip it.  The result is an attempt to
execute the instruction, causing the SIGILL.
>From gcc-bugs-return-533663-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 17:44:28 2016
Return-Path: <gcc-bugs-return-533663-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 30530 invoked by alias); 8 Aug 2016 17:44:27 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 30423 invoked by uid 48); 8 Aug 2016 17:44:14 -0000
From: "bernd.edlinger at hotmail dot de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/72833] [7 regression] error in fortran/parse.c (unexpected_eof) on Mac OS X 10.7
Date: Mon, 08 Aug 2016 17:44:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: bernd.edlinger at hotmail dot de
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: attachments.isobsolete attachments.created
Message-ID: <bug-72833-4-UEQy71JLNX@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72833-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72833-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg00999.txt.bz2
Content-length: 688

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72833

Bernd Edlinger <bernd.edlinger at hotmail dot de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
  Attachment #39078|0                           |1
        is obsolete|                            |

--- Comment #7 from Bernd Edlinger <bernd.edlinger at hotmail dot de> ---
Created attachment 39079
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39079&action=edit
updated patch

Hi,

my autogen 5.18 (ubuntu 14.04)
did not work right, and messed up the comment.
So it won't compile.

That should (hopefully) be fixed now.

Sorry.
>From gcc-bugs-return-533664-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 17:55:30 2016
Return-Path: <gcc-bugs-return-533664-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 103202 invoked by alias); 8 Aug 2016 17:55:30 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 97895 invoked by uid 48); 8 Aug 2016 17:55:17 -0000
From: "barry.revzin at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72842] New: non-type template-parameter of type void
Date: Mon, 08 Aug 2016 17:55:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: barry.revzin at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-72842-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01000.txt.bz2
Content-length: 629

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72842

            Bug ID: 72842
           Summary: non-type template-parameter of type void
           Product: gcc
           Version: 5.2.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: barry.revzin at gmail dot com
  Target Milestone: ---

The following compiles on gcc (and clang), across all versions I've tried:

template <class T, T...>
void foo() { }

int main() {
    foo<void>();
}

But void isn't a valid non-type template parameter type.
>From gcc-bugs-return-533665-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 18:05:31 2016
Return-Path: <gcc-bugs-return-533665-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 129130 invoked by alias); 8 Aug 2016 18:05:31 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 129027 invoked by uid 48); 8 Aug 2016 18:05:17 -0000
From: "msebor at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/68703] __attribute__((vector_size(N))) template member confusion
Date: Mon, 08 Aug 2016 18:05:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.2.1
X-Bugzilla-Keywords: rejects-valid
X-Bugzilla-Severity: normal
X-Bugzilla-Who: msebor at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-68703-4-FNDyVkdTkh@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68703-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68703-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01001.txt.bz2
Content-length: 2550

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68703

Martin Sebor <msebor at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |msebor at gcc dot gnu.org

--- Comment #3 from Martin Sebor <msebor at gcc dot gnu.org> ---
This problem isn't limited to attribute vector_size but affects attribute
aligned as well, to an even greater extent:  While G++ makes it possible to
overload functions on the former, it rejects overloads on the latter (it seems
to "lose" the attribute from a type).  The manual doesn't make it clear which
is intended, leading to confusion such as in bug 71463 where users don't know
whether to expect an attribute to affect the type of an object or in what
contexts (__typeof__, decltype, template parameters, etc.)

$ (cat y.C && set -x && for a in aligned vector_size; do
/build/gcc-trunk-svn/gcc/xgcc -B /build/gcc-trunk-svn/gcc -DX=$a -S -Wall
-Wextra y.C; done)
typedef int X16 __attribute__ ((X (16)));
typedef int X32 __attribute__ ((X (32)));

int f (X16*);
void f (X32*);

int g16 ()
{
  X16 x; 
  return f (&x);
}

void g32 ()
{
  X32 x;
  return f (&x);
}

template <int N>
auto h ()
{
  int x __attribute__ ((X (N)));
  return f (&x);
}

+ for a in aligned vector_size
+ /home/msebor/build/gcc-trunk-svn/gcc/xgcc -B
/home/msebor/build/gcc-trunk-svn/gcc -DX=aligned -S -Wall -Wextra y.C
y.C:5:6: error: ambiguating new declaration of ‘void f(X32*)’
 void f (X32*);
      ^
y.C:4:5: note: old declaration ‘int f(X16*)’
 int f (X16*);
     ^
y.C: In function ‘void g32()’:
y.C:16:15: error: return-statement with a value, in function returning 'void'
[-fpermissive]
   return f (&x);
               ^
+ for a in aligned vector_size
+ /home/msebor/build/gcc-trunk-svn/gcc/xgcc -B
/home/msebor/build/gcc-trunk-svn/gcc -DX=vector_size -S -Wall -Wextra y.C
y.C: In function ‘auto h()’:
y.C:23:15: error: no matching function for call to ‘f(int*)’
   return f (&x);
               ^
y.C:4:5: note: candidate: int f(X16*)
 int f (X16*);
     ^
y.C:4:5: note:   no known conversion for argument 1 from ‘int*’ to ‘X16* {aka
__vector(4) int*}’
y.C:5:6: note: candidate: void f(X32*)
 void f (X32*);
      ^
y.C:5:6: note:   no known conversion for argument 1 from ‘int*’ to ‘X32* {aka
__vector(8) int*}’
>From gcc-bugs-return-533666-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 18:13:12 2016
Return-Path: <gcc-bugs-return-533666-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 117517 invoked by alias); 8 Aug 2016 18:13:12 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 117426 invoked by uid 48); 8 Aug 2016 18:12:58 -0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/68703] __attribute__((vector_size(N))) template member confusion
Date: Mon, 08 Aug 2016 18:13:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.2.1
X-Bugzilla-Keywords: rejects-valid
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-68703-4-QLB7V0zMOE@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68703-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68703-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01002.txt.bz2
Content-length: 2851

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68703

--- Comment #4 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Not really sure if this is about dependent type or not, because the following
fails too:
template <typename V>
struct D {
  V v;
  int f1 () { return this->v[N-1]; }
  int f2 () { return v[N-1]; }
};

int
main ()
{
  typedef int V1 __attribute__((vector_size (4 * sizeof (int))));
  typedef int V2 __attribute__((vector_size (8 * sizeof (int))));
  D<V1> a = { { 0, 1, 2, 3 } };
  D<V2> b = { { 0, 1, 2, 3, 4, 5, 6, 7 } };
  if (a.f1 () != 3 || a.f2 () != 3
      || b.f1 () != 7 || b.f2 () != 7)
    __builtin_abort ();
}

I've tried:
--- pt.c.jj4    2016-08-06 12:11:45.000000000 +0200
+++ pt.c (TREE_C2016-08-08 20:03:33.217898449 +0200
@@ -22687,6 +22687,11 @@ dependent_type_p_r (tree type)D (expression, 0));
      if       (INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (scope)))))
     return true;_CODE (expression) == OFFSET_REF)
        {
+  /* Types with dependent vector_size attribute are dependent.  */, 0)))
+  tree a = lookup_attribute ("vector_size", TYPE_ATTRIBUTES (type));
+  if (a && ATTR_IS_DEPENDENT (a))D (expression, 1);
+    return true;ntifier_p (expression))
+           return false;
   /* Other types are non-dependent.  */
   return false;EF with non-null TREE_TYPE is always non-dependent.  */
 }
@@ -23166,6 +23171,18 @@ type_dependent_expression_p (tree expres
   if (TREE_CODE (expression) == EXPR_PACK_EXPANSION)
     return true;

+  /* Decls where the type is going to have dependent vector_size attribute
+     are dependent.  */
+  if (VAR_P (expression)
+      || TREE_CODE (expression) == PARM_DECL
+      || TREE_CODE (expression) == RESULT_DECL
+      || TREE_CODE (expression) == FIELD_DECL)
+    {
+      tree a = lookup_attribute ("vector_size", DECL_ATTRIBUTES (expression));
+      if (a && ATTR_IS_DEPENDENT (a))
+       return true;
+    }
+
   if (TREE_TYPE (expression) == unknown_type_node)
     {
       if (TREE_CODE (expression) == ADDR_EXPR)

so far but it didn't make any difference, neither on
template <int N>
struct D {
  int v __attribute__((vector_size (N * sizeof (int))));
  int f1 () { return this->v[N-1]; }
  int f2 () { return v[N-1]; }
};

int
main ()
{
  D<4> a = { { 0, 1, 2, 3 } };
  D<8> b = { { 0, 1, 2, 3, 4, 5, 6, 7 } };
  if (a.f1 () != 3 || a.f2 () != 3
      || b.f1 () != 7 || b.f2 () != 7)
    __builtin_abort ();
}

nor on
template <int N>
struct D {
  typedef int V __attribute__((vector_size (N * sizeof (int))));
  V v;
  int f1 () { return this->v[N-1]; }
  int f2 () { return v[N-1]; }
};

int
main ()
{
  D<4> a = { { 0, 1, 2, 3 } };
  D<8> b = { { 0, 1, 2, 3, 4, 5, 6, 7 } };
  if (a.f1 () != 3 || a.f2 () != 3
      || b.f1 () != 7 || b.f2 () != 7)
    __builtin_abort ();
}
>From gcc-bugs-return-533667-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 18:16:00 2016
Return-Path: <gcc-bugs-return-533667-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 120652 invoked by alias); 8 Aug 2016 18:16:00 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 120536 invoked by uid 48); 8 Aug 2016 18:15:48 -0000
From: "hjl.tools at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/72843] New: [7 Regression] internal compiler error: in lra_set_insn_recog_data, at lra.c:964
Date: Mon, 08 Aug 2016 18:16:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: hjl.tools at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter cc target_milestone
Message-ID: <bug-72843-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01003.txt.bz2
Content-length: 2316

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72843

            Bug ID: 72843
           Summary: [7 Regression] internal compiler error: in
                    lra_set_insn_recog_data, at lra.c:964
           Product: gcc
           Version: 6.1.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: rtl-optimization
          Assignee: unassigned at gcc dot gnu.org
          Reporter: hjl.tools at gmail dot com
                CC: vmakarov at redhat dot com
  Target Milestone: ---

On Linux/x86, when compiled with

-mtune=slm -O2 -march=i686 -msse2 -mfpmath=sse -m32

r239180 caused:

/export/gnu/import/git/gcc-regression/gcc/libquadmath/math/asinq.c: In function
‘asinq’:
/export/gnu/import/git/gcc-regression/gcc/libquadmath/math/asinq.c:254:1:
internal compiler error: in lra_set_insn_recog_data, at lra.c:964
 }
 ^
0x87ea563 lra_set_insn_recog_data(rtx_insn*)
        /export/gnu/import/git/gcc-regression/gcc/gcc/lra.c:962
0x87e8913 lra_get_insn_recog_data
        /export/gnu/import/git/gcc-regression/gcc/gcc/lra-int.h:487
0x87ebc17 lra_update_insn_regno_info(rtx_insn*)
        /export/gnu/import/git/gcc-regression/gcc/gcc/lra.c:1584
0x87ec0c0 lra_push_insn_1
        /export/gnu/import/git/gcc-regression/gcc/gcc/lra.c:1735
0x87ec0ef lra_push_insn(rtx_insn*)
        /export/gnu/import/git/gcc-regression/gcc/gcc/lra.c:1743
0x87ec1e4 push_insns
        /export/gnu/import/git/gcc-regression/gcc/gcc/lra.c:1786
0x87ec47b lra_process_new_insns(rtx_insn*, rtx_insn*, rtx_insn*, char const*)
        /export/gnu/import/git/gcc-regression/gcc/gcc/lra.c:1844
0x8804827 remove_inheritance_pseudos
        /export/gnu/import/git/gcc-regression/gcc/gcc/lra-constraints.c:6352
0x880578b lra_undo_inheritance()
        /export/gnu/import/git/gcc-regression/gcc/gcc/lra-constraints.c:6672
0x87ed6bf lra(_IO_FILE*)
        /export/gnu/import/git/gcc-regression/gcc/gcc/lra.c:2423
0x87a3db0 do_reload
        /export/gnu/import/git/gcc-regression/gcc/gcc/ira.c:5384
0x87a4200 execute
        /export/gnu/import/git/gcc-regression/gcc/gcc/ira.c:5568
Please submit a full bug report,
with preprocessed source if appropriate.
Please include the complete backtrace with any bug report.
See <http://gcc.gnu.org/bugs.html> for instructions.
>From gcc-bugs-return-533668-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 18:21:10 2016
Return-Path: <gcc-bugs-return-533668-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 37428 invoked by alias); 8 Aug 2016 18:21:09 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 37345 invoked by uid 48); 8 Aug 2016 18:21:00 -0000
From: "daniel.kruegler at googlemail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72842] non-type template-parameter of type void
Date: Mon, 08 Aug 2016 18:21:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: daniel.kruegler at googlemail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72842-4-oZUdOxQjTR@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72842-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72842-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01004.txt.bz2
Content-length: 410

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72842

--- Comment #1 from Daniel Krügler <daniel.kruegler at googlemail dot com> ---
I don't see anything wrong with that code, since the parameter pack is empty,
so there is never any attempt to declare void as non-type template parameter
type. The standard has this restriction only for a non-type parameter type, but
there is none in your example.
>From gcc-bugs-return-533669-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 18:24:33 2016
Return-Path: <gcc-bugs-return-533669-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 58586 invoked by alias); 8 Aug 2016 18:24:33 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 58440 invoked by uid 55); 8 Aug 2016 18:24:17 -0000
From: "ro at CeBiTec dot Uni-Bielefeld.DE" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/72833] [7 regression] error in fortran/parse.c (unexpected_eof) on Mac OS X 10.7
Date: Mon, 08 Aug 2016 18:24:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ro at CeBiTec dot Uni-Bielefeld.DE
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72833-4-78Vor7J1E7@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72833-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72833-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01005.txt.bz2
Content-length: 1353

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72833

--- Comment #8 from ro at CeBiTec dot Uni-Bielefeld.DE <ro at CeBiTec dot Uni-Bielefeld.DE> ---
> --- Comment #6 from Bernd Edlinger <bernd.edlinger at hotmail dot de> ---
[...]
> Completely untested patch.
>
> Based on the gcc-4.9 solaris patch:
> just s/solaris/darwin/
> and s/__NORETURN/__dead2/
>
>
> Could you try a boot-strap with it?

In progress.  Two comments:

* Why the fixincl.tpl change?  Is this necessary with upstream autogen
  or only due to some Ubuntu-local change?  Bruce will probably know
  when he reviews the patch, though.

* Your comment

 /*
  *  Before Mac OS X 10.7 <i386/setjmp.h> doesn't mark longjump noreturn.
  */

  is wrong, however: even the 10.7 <i386/setjmp.h> does lack the
  annotation, and in 10.8 (as I'd seen in 10.11 and 10.12) the
  declaration has moved to <setjmp.h> and is properly annotated.  I
  suspect the bypass can just go, even if it does no harm.

  You can find the 10.8 <setjmp.h> at

        http://opensource.apple.com/source/Libc/Libc-825.24/include/setjmp.h

  while the 10.7.5 one (the latest 10.7 update) is at

        http://opensource.apple.com/source/Libc/Libc-763.13/include/setjmp.h

  and the corresponding <i386/setjmp.h> at

        http://opensource.apple.com/source/xnu/xnu-1699.32.7/bsd/i386/setjmp.h

        Rainer
>From gcc-bugs-return-533671-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 18:27:39 2016
Return-Path: <gcc-bugs-return-533671-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 66389 invoked by alias); 8 Aug 2016 18:27:39 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 66301 invoked by uid 48); 8 Aug 2016 18:27:26 -0000
From: "hjl.tools at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/72843] [7 Regression] internal compiler error: in lra_set_insn_recog_data, at lra.c:964
Date: Mon, 08 Aug 2016 18:27:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: hjl.tools at gmail dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on target_milestone everconfirmed
Message-ID: <bug-72843-4-MM6LsSEqGj@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72843-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72843-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01007.txt.bz2
Content-length: 450

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72843

H.J. Lu <hjl.tools at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-08
   Target Milestone|---                         |7.0
     Ever confirmed|0                           |1
>From gcc-bugs-return-533670-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 18:27:21 2016
Return-Path: <gcc-bugs-return-533670-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 65644 invoked by alias); 8 Aug 2016 18:27:21 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 65595 invoked by uid 48); 8 Aug 2016 18:27:14 -0000
From: "hjl.tools at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/72843] [7 Regression] internal compiler error: in lra_set_insn_recog_data, at lra.c:964
Date: Mon, 08 Aug 2016 18:27:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: hjl.tools at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: attachments.created
Message-ID: <bug-72843-4-b1GnzH8C3t@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72843-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72843-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01006.txt.bz2
Content-length: 226

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72843

--- Comment #1 from H.J. Lu <hjl.tools at gmail dot com> ---
Created attachment 39080
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39080&action=edit
A testcase
>From gcc-bugs-return-533672-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 18:30:43 2016
Return-Path: <gcc-bugs-return-533672-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 71770 invoked by alias); 8 Aug 2016 18:30:43 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 71551 invoked by uid 48); 8 Aug 2016 18:30:26 -0000
From: "kargl at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/72844] New: Revision 293175 breaks gcc on FreeBSD
Date: Mon, 08 Aug 2016 18:30:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: blocker
X-Bugzilla-Who: kargl at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-72844-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01008.txt.bz2
Content-length: 994

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72844

            Bug ID: 72844
           Summary: Revision 293175 breaks gcc on FreeBSD
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: blocker
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: kargl at gcc dot gnu.org
  Target Milestone: ---

% cd gcc7
% svn update
% cd ../obj7
% ../gcc7/configure  --prefix=$HOME/work/7 --with-isl=/usr/local \
--enable-languages=c,fortran,c++ --disable-libmudflap --disable-nls
% gmake bootstrap

../../gcc7/gcc/input.c: In function 'void
selftest::test_lexer_string_locations_ebcdic(const
selftest::line_table_case&)':
../../gcc7/gcc/input.c:2137:8: error: 'HAVE_ICONV' was not declared in this
scope
   if (!HAVE_ICONV)
        ^~~~~~~~~~
../../gcc7/gcc/input.c:2137:8: note: suggested alternative: 'HAVE_ICONV_H'
   if (!HAVE_ICONV)
        ^~~~~~~~~~
        HAVE_ICONV_H
>From gcc-bugs-return-533673-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 18:40:54 2016
Return-Path: <gcc-bugs-return-533673-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 4473 invoked by alias); 8 Aug 2016 18:40:53 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 4410 invoked by uid 48); 8 Aug 2016 18:40:40 -0000
From: "hjl.tools at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/72843] [7 Regression] internal compiler error: in lra_set_insn_recog_data, at lra.c:964
Date: Mon, 08 Aug 2016 18:40:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: hjl.tools at gmail dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-72843-4-Ary7diSRpj@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72843-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72843-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01009.txt.bz2
Content-length: 1207

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72843

H.J. Lu <hjl.tools at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ubizjak at gmail dot com

--- Comment #2 from H.J. Lu <hjl.tools at gmail dot com> ---
LRA ICEs on

(insn 1932 1931 1791 22 (set (reg/v:TF 1001 [orig:161 t ] [161])
        (const_double:TF 0.0 [0x0.0p+0])) /tmp/x.c:85 -1
     (nil))

due to

(define_insn "*movtf_internal"
  [(set (match_operand:TF 0 "nonimmediate_operand" "=v,v ,m,?*r ,!o") 
        (match_operand:TF 1 "general_operand"      "C ,vm,v,*roF,*rC"))]
  "(TARGET_64BIT || TARGET_SSE)
   && !(MEM_P (operands[0]) && MEM_P (operands[1]))
   && (!can_create_pseudo_p ()
       || !CONST_DOUBLE_P (operands[1])
       || ((optimize_function_for_size_p (cfun)
            || (ix86_cmodel == CM_LARGE || ix86_cmodel == CM_LARGE_PIC))
           && standard_sse_constant_p (operands[1], TFmode) == 1
           && !memory_operand (operands[0], TFmode))
       || (!TARGET_MEMORY_MISMATCH_STALL
           && memory_operand (operands[0], TFmode)))"
>From gcc-bugs-return-533674-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 18:41:55 2016
Return-Path: <gcc-bugs-return-533674-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 6463 invoked by alias); 8 Aug 2016 18:41:54 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 5805 invoked by uid 48); 8 Aug 2016 18:41:42 -0000
From: "bernd.edlinger at hotmail dot de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/72833] [7 regression] error in fortran/parse.c (unexpected_eof) on Mac OS X 10.7
Date: Mon, 08 Aug 2016 18:41:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: bernd.edlinger at hotmail dot de
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72833-4-sdpsrgrYmc@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72833-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72833-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01010.txt.bz2
Content-length: 2093

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72833

--- Comment #9 from Bernd Edlinger <bernd.edlinger at hotmail dot de> ---
(In reply to ro@CeBiTec.Uni-Bielefeld.DE from comment #8)
> > --- Comment #6 from Bernd Edlinger <bernd.edlinger at hotmail dot de> ---
> [...]
> > Completely untested patch.
> >
> > Based on the gcc-4.9 solaris patch:
> > just s/solaris/darwin/
> > and s/__NORETURN/__dead2/
> >
> >
> > Could you try a boot-strap with it?
> 
> In progress.  Two comments:
> 
> * Why the fixincl.tpl change?  Is this necessary with upstream autogen
>   or only due to some Ubuntu-local change?  Bruce will probably know
>   when he reviews the patch, though.
> 

Don't know, all I know from autogen is that it is not easy to build locally.

So far I never encountered any difficulties with it under linux.

I tried different settings, and it looks like the code that is
enabled for autogen >= 5.18, but apparently the 5.18 behaves
like the old version, so this is probably not a back-port of a
new feature.  My guess is that simply the version should be
checked for autogen >= 5.18.1 ?

> * Your comment
> 
>  /*
>   *  Before Mac OS X 10.7 <i386/setjmp.h> doesn't mark longjump noreturn.
>   */
> 
>   is wrong, however: even the 10.7 <i386/setjmp.h> does lack the
>   annotation, and in 10.8 (as I'd seen in 10.11 and 10.12) the
>   declaration has moved to <setjmp.h> and is properly annotated.  I
>   suspect the bypass can just go, even if it does no harm.
> 

Then I change it to "Before Mac OS X 10.8"

>   You can find the 10.8 <setjmp.h> at
> 
> 	http://opensource.apple.com/source/Libc/Libc-825.24/include/setjmp.h
> 
>   while the 10.7.5 one (the latest 10.7 update) is at
> 
> 	http://opensource.apple.com/source/Libc/Libc-763.13/include/setjmp.h
> 
>   and the corresponding <i386/setjmp.h> at
> 
> 	http://opensource.apple.com/source/xnu/xnu-1699.32.7/bsd/i386/setjmp.h
> 
> 	Rainer


BTW: I noticed that the fix-rule misses the siglongjmp,
because the parameter is sigjmp_buf.

Do you want an updated patch with these changes?


Bernd.
>From gcc-bugs-return-533675-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 18:45:56 2016
Return-Path: <gcc-bugs-return-533675-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 13892 invoked by alias); 8 Aug 2016 18:45:55 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 13555 invoked by uid 55); 8 Aug 2016 18:45:42 -0000
From: "sgk at troutmask dot apl.washington.edu" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/72844] Revision 293175 breaks gcc on FreeBSD
Date: Mon, 08 Aug 2016 18:45:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: blocker
X-Bugzilla-Who: sgk at troutmask dot apl.washington.edu
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72844-4-v8PmbFTwaQ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72844-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72844-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01011.txt.bz2
Content-length: 3009

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72844

--- Comment #1 from Steve Kargl <sgk at troutmask dot apl.washington.edu> ---
On Mon, Aug 08, 2016 at 06:30:17PM +0000, kargl at gcc dot gnu.org wrote:
> https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72844
> 
>             Bug ID: 72844
>            Summary: Revision 293175 breaks gcc on FreeBSD
>            Product: gcc
>            Version: 7.0
>             Status: UNCONFIRMED
>           Severity: blocker
>           Priority: P3
>          Component: bootstrap
>           Assignee: unassigned at gcc dot gnu.org
>           Reporter: kargl at gcc dot gnu.org
>   Target Milestone: ---
> 
> % cd gcc7
> % svn update
> % cd ../obj7
> % ../gcc7/configure  --prefix=$HOME/work/7 --with-isl=/usr/local \
> --enable-languages=c,fortran,c++ --disable-libmudflap --disable-nls
> % gmake bootstrap
> 
> ../../gcc7/gcc/input.c: In function 'void
> selftest::test_lexer_string_locations_ebcdic(const
> selftest::line_table_case&)':
> ../../gcc7/gcc/input.c:2137:8: error: 'HAVE_ICONV' was not declared in this
> scope
>    if (!HAVE_ICONV)
>         ^~~~~~~~~~
> ../../gcc7/gcc/input.c:2137:8: note: suggested alternative: 'HAVE_ICONV_H'
>    if (!HAVE_ICONV)
>         ^~~~~~~~~~
>         HAVE_ICONV_H
> 

The obvious patch (as inferred from the suggested alternative)
does not work.

/mnt/sgk/gcc/obj7/./prev-gcc/xg++ -B/mnt/sgk/gcc/obj7/./prev-gcc/
-B/mnt/sgk/work/7/x86_64-unknown-freebsd12.0/bin/ -nostdinc++
-B/mnt/sgk/gcc/obj7/prev-x86_64-unknown-freebsd12.0/libstdc++-v3/src/.libs
-B/mnt/sgk/gcc/obj7/prev-x86_64-unknown-freebsd12.0/libstdc++-v3/libsupc++/.libs

-I/mnt/sgk/gcc/obj7/prev-x86_64-unknown-freebsd12.0/libstdc++-v3/include/x86_64-unknown-freebsd12.0
 -I/mnt/sgk/gcc/obj7/prev-x86_64-unknown-freebsd12.0/libstdc++-v3/include 
-I/mnt/sgk/gcc/gcc7/libstdc++-v3/libsupc++
-L/mnt/sgk/gcc/obj7/prev-x86_64-unknown-freebsd12.0/libstdc++-v3/src/.libs
-L/mnt/sgk/gcc/obj7/prev-x86_64-unknown-freebsd12.0/libstdc++-v3/libsupc++/.libs
-no-pie   -g -O2 -gtoggle -DIN_GCC     -fno-exceptions -fno-rtti
-fasynchronous-unwind-tables -W -Wall -Wno-narrowing -Wwrite-strings
-Wcast-qual -Wmissing-format-attribute -Woverloaded-virtual -pedantic
-Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -Werror -fno-common
 -DHAVE_CONFIG_H -static-libstdc++ -static-libgcc  -o lto1 \
        lto/lto-lang.o lto/lto.o lto/lto-object.o attribs.o lto/lto-partition.o
lto/lto-symtab.o libbackend.a main.o libcommon-target.a libcommon.a
../libcpp/libcpp.a ../libdecnumber/libdecnumber.a -L/usr/local/lib -lisl
-L/usr/local/lib -lmpc -lmpfr -lgmp -rdynamic  -L./../zlib -lz libcommon.a
../libcpp/libcpp.a   ../libbacktrace/.libs/libbacktrace.a
../libiberty/libiberty.a ../libdecnumber/libdecnumber.a 
/mnt/sgk/gcc/obj7/./gcc/xgcc -B/mnt/sgk/gcc/obj7/./gcc/ -xc -S -c /dev/null
-fself-test
cc1: internal compiler error: in on_error, at input.c:1894
Please submit a full bug report,
with preprocessed source if appropriate.
>From gcc-bugs-return-533676-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 18:56:27 2016
Return-Path: <gcc-bugs-return-533676-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 33531 invoked by alias); 8 Aug 2016 18:56:27 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 33429 invoked by uid 55); 8 Aug 2016 18:56:14 -0000
From: "ro at CeBiTec dot Uni-Bielefeld.DE" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/72833] [7 regression] error in fortran/parse.c (unexpected_eof) on Mac OS X 10.7
Date: Mon, 08 Aug 2016 18:56:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ro at CeBiTec dot Uni-Bielefeld.DE
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72833-4-mBJmv3i0MB@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72833-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72833-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01012.txt.bz2
Content-length: 2310

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72833

--- Comment #10 from ro at CeBiTec dot Uni-Bielefeld.DE <ro at CeBiTec dot Uni-Bielefeld.DE> ---
> --- Comment #9 from Bernd Edlinger <bernd.edlinger at hotmail dot de> ---
>> In progress.  Two comments:
>> 
>> * Why the fixincl.tpl change?  Is this necessary with upstream autogen
>>   or only due to some Ubuntu-local change?  Bruce will probably know
>>   when he reviews the patch, though.
>> 
>
> Don't know, all I know from autogen is that it is not easy to build locally.
>
> So far I never encountered any difficulties with it under linux.
>
> I tried different settings, and it looks like the code that is
> enabled for autogen >= 5.18, but apparently the 5.18 behaves
> like the old version, so this is probably not a back-port of a
> new feature.  My guess is that simply the version should be
> checked for autogen >= 5.18.1 ?

Just leave it as it for Bruce to decide.

>> * Your comment
>> 
>>  /*
>>   *  Before Mac OS X 10.7 <i386/setjmp.h> doesn't mark longjump noreturn.
>>   */
>> 
>>   is wrong, however: even the 10.7 <i386/setjmp.h> does lack the
>>   annotation, and in 10.8 (as I'd seen in 10.11 and 10.12) the
>>   declaration has moved to <setjmp.h> and is properly annotated.  I
>>   suspect the bypass can just go, even if it does no harm.
>> 
>
> Then I change it to "Before Mac OS X 10.8"

Not fully right either: there is no <i386/setjmp.h> in 10.8+ ;-)

>>   You can find the 10.8 <setjmp.h> at
>> 
>> 	http://opensource.apple.com/source/Libc/Libc-825.24/include/setjmp.h
>> 
>>   while the 10.7.5 one (the latest 10.7 update) is at
>> 
>> 	http://opensource.apple.com/source/Libc/Libc-763.13/include/setjmp.h
>> 
>>   and the corresponding <i386/setjmp.h> at
>> 
>> 	http://opensource.apple.com/source/xnu/xnu-1699.32.7/bsd/i386/setjmp.h
>> 
>> 	Rainer
>
>
> BTW: I noticed that the fix-rule misses the siglongjmp,
> because the parameter is sigjmp_buf.

True: the Solaris fix missed this, probably because the issue never came
up.  The Mac OS X 10.8+ <setjmp.h> has the annotation, so it's probably
best to fix both while you're at it.

> Do you want an updated patch with these changes?

Can't hurt: I'll also run a i686-apple-darwin11 bootstrap which I can
use to verify it.

        Rainer
>From gcc-bugs-return-533677-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 19:02:02 2016
Return-Path: <gcc-bugs-return-533677-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 101150 invoked by alias); 8 Aug 2016 19:02:02 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 101024 invoked by uid 48); 8 Aug 2016 19:01:53 -0000
From: "adhemerval.zanella at linaro dot org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug sanitizer/71042] libtsan requires __pointer_chk_guard@GLIBC_PRIVATE (6)
Date: Mon, 08 Aug 2016 19:02:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: sanitizer
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: adhemerval.zanella at linaro dot org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71042-4-xhaxmlpimm@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71042-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71042-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01013.txt.bz2
Content-length: 565

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71042

--- Comment #9 from Adhemerval Zanella <adhemerval.zanella at linaro dot org> ---
Right, I wasn't aware of this RPM symbol handling.  I see that guard pointer
can be obtained on aarch64 by:

uintptr_t get_guard_ptr (void)
{ 
  jmp_buf jb;
  uintptr_t expected, mangled;

  setjmp (jb);
  asm volatile ("adr %0, ." : "=r" (expected));
  mangled = ((uintptr_t*)jb)[11];
  return expected ^ mangled;
}

So I think we can add a local variable to hold its value and set
tsan_rtl_aarch64.S to use it instead.
>From gcc-bugs-return-533678-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 19:06:57 2016
Return-Path: <gcc-bugs-return-533678-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 105043 invoked by alias); 8 Aug 2016 19:06:57 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 104976 invoked by uid 48); 8 Aug 2016 19:06:44 -0000
From: "dmalcolm at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/72844] Revision 293175 breaks gcc on FreeBSD
Date: Mon, 08 Aug 2016 19:06:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: blocker
X-Bugzilla-Who: dmalcolm at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: dmalcolm at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc assigned_to everconfirmed
Message-ID: <bug-72844-4-F5WMBNM9Vr@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72844-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72844-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01014.txt.bz2
Content-length: 682

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72844

David Malcolm <dmalcolm at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |ASSIGNED
   Last reconfirmed|                            |2016-08-08
                 CC|                            |dmalcolm at gcc dot gnu.org
           Assignee|unassigned at gcc dot gnu.org      |dmalcolm at gcc dot gnu.org
     Ever confirmed|0                           |1

--- Comment #2 from David Malcolm <dmalcolm at gcc dot gnu.org> ---
Sorry about this.  I'm working on a fix.
>From gcc-bugs-return-533679-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 19:07:17 2016
Return-Path: <gcc-bugs-return-533679-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 105823 invoked by alias); 8 Aug 2016 19:07:17 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 105786 invoked by uid 48); 8 Aug 2016 19:07:12 -0000
From: "barry.revzin at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72842] non-type template-parameter of type void
Date: Mon, 08 Aug 2016 19:07:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: barry.revzin at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72842-4-qn8iEJqCBq@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72842-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72842-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01015.txt.bz2
Content-length: 396

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72842

--- Comment #2 from Barry Revzin <barry.revzin at gmail dot com> ---
This non-dependent version:

template <void...> void bar() { }

fails to compile, even if we never call bar(), even if we wanted to call it
with an empty pack.

foo<void> in the original example is this same thing with an extra template
type parameter. Why the difference?
>From gcc-bugs-return-533680-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 19:13:14 2016
Return-Path: <gcc-bugs-return-533680-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 33714 invoked by alias); 8 Aug 2016 19:13:14 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 33659 invoked by uid 48); 8 Aug 2016 19:13:01 -0000
From: "dmalcolm at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/72844] Revision 293175 breaks gcc on FreeBSD
Date: Mon, 08 Aug 2016 19:13:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: blocker
X-Bugzilla-Who: dmalcolm at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: dmalcolm at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: attachments.created
Message-ID: <bug-72844-4-13WOYc8PFm@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72844-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72844-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01016.txt.bz2
Content-length: 272

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72844

--- Comment #3 from David Malcolm <dmalcolm at gcc dot gnu.org> ---
Created attachment 39081
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39081&action=edit
Ensure that HAVE_ICONV is usable as a conditional
>From gcc-bugs-return-533681-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 19:14:14 2016
Return-Path: <gcc-bugs-return-533681-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 39019 invoked by alias); 8 Aug 2016 19:14:11 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 38802 invoked by uid 48); 8 Aug 2016 19:13:57 -0000
From: "dmalcolm at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/72844] Revision 293175 breaks gcc on FreeBSD
Date: Mon, 08 Aug 2016 19:14:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: blocker
X-Bugzilla-Who: dmalcolm at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: dmalcolm at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72844-4-HtxnQWuwBk@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72844-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72844-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01017.txt.bz2
Content-length: 360

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72844

--- Comment #4 from David Malcolm <dmalcolm at gcc dot gnu.org> ---
(In reply to David Malcolm from comment #3)
> Created attachment 39081 [details]
> Ensure that HAVE_ICONV is usable as a conditional

Steve: this fixes the problem for me on a Linux box with iconv hacked out. 
Does it fix it for you?
>From gcc-bugs-return-533683-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 19:19:41 2016
Return-Path: <gcc-bugs-return-533683-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 48332 invoked by alias); 8 Aug 2016 19:19:41 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 44260 invoked by uid 48); 8 Aug 2016 19:19:28 -0000
From: "dimhen at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/72821] [7 regression] RTL check: expected elt 2 type 'B', have '0' (rtx barrier) in BLOCK_FOR_INSN, at rtl.h:1424
Date: Mon, 08 Aug 2016 19:19:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dimhen at gmail dot com
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-72821-4-XmsR600rQO@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72821-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72821-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01019.txt.bz2
Content-length: 451

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72821

Dmitry G. Dyachenko <dimhen at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #4 from Dmitry G. Dyachenko <dimhen at gmail dot com> ---
r239241 PASS

Thank you!
>From gcc-bugs-return-533682-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 19:19:14 2016
Return-Path: <gcc-bugs-return-533682-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 43562 invoked by alias); 8 Aug 2016 19:19:14 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 43511 invoked by uid 48); 8 Aug 2016 19:19:06 -0000
From: "bernd.edlinger at hotmail dot de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/72833] [7 regression] error in fortran/parse.c (unexpected_eof) on Mac OS X 10.7
Date: Mon, 08 Aug 2016 19:19:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: bernd.edlinger at hotmail dot de
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: attachments.isobsolete attachments.created
Message-ID: <bug-72833-4-xrEmJlRVEe@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72833-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72833-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01018.txt.bz2
Content-length: 616

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72833

Bernd Edlinger <bernd.edlinger at hotmail dot de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
  Attachment #39079|0                           |1
        is obsolete|                            |

--- Comment #11 from Bernd Edlinger <bernd.edlinger at hotmail dot de> ---
Created attachment 39082
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39082&action=edit
updated patch

patch both variants of longjmp.
this time make check-fixincludes should pass.
>From gcc-bugs-return-533684-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 19:25:11 2016
Return-Path: <gcc-bugs-return-533684-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 60813 invoked by alias); 8 Aug 2016 19:25:10 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 60284 invoked by uid 48); 8 Aug 2016 19:24:57 -0000
From: "bernd.edlinger at hotmail dot de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/72833] [7 regression] error in fortran/parse.c (unexpected_eof) on Mac OS X 10.7
Date: Mon, 08 Aug 2016 19:25:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: bernd.edlinger at hotmail dot de
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72833-4-7HMOE2XEJf@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72833-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72833-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01020.txt.bz2
Content-length: 561

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72833

--- Comment #12 from Bernd Edlinger <bernd.edlinger at hotmail dot de> ---
(In reply to ro@CeBiTec.Uni-Bielefeld.DE from comment #10)

> True: the Solaris fix missed this, probably because the issue never came
> up.  The Mac OS X 10.8+ <setjmp.h> has the annotation, so it's probably
> best to fix both while you're at it.
> 

That's clear: before my clean-up of special_function_p
*anything* with the name longjmp and siglongjmp was implicitly
noreturn, even if the header file said something different.
>From gcc-bugs-return-533685-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 19:25:42 2016
Return-Path: <gcc-bugs-return-533685-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 61595 invoked by alias); 8 Aug 2016 19:25:37 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 61545 invoked by uid 48); 8 Aug 2016 19:25:29 -0000
From: "daniel.kruegler at googlemail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72842] non-type template-parameter of type void
Date: Mon, 08 Aug 2016 19:25:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: daniel.kruegler at googlemail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72842-4-q7yGjEfOhV@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72842-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72842-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01021.txt.bz2
Content-length: 329

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72842

--- Comment #3 from Daniel Krügler <daniel.kruegler at googlemail dot com> ---
Since this is not a newsgroup, let me ask differently: Can you please elaborate
what you consider as a concrete compiler defect, violating the existing
standard? I fail to see the point.
>From gcc-bugs-return-533687-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 19:26:07 2016
Return-Path: <gcc-bugs-return-533687-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 64098 invoked by alias); 8 Aug 2016 19:26:07 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 62485 invoked by uid 48); 8 Aug 2016 19:25:53 -0000
From: "manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72837] -Wundef is not being ignored with pragma
Date: Mon, 08 Aug 2016 19:26:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: manu at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: DUPLICATE
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cc resolution
Message-ID: <bug-72837-4-FgXSvPPnwD@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72837-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72837-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01023.txt.bz2
Content-length: 727

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72837

Manuel López-Ibáñez <manu at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
                 CC|                            |manu at gcc dot gnu.org
         Resolution|---                         |DUPLICATE

--- Comment #1 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
(In reply to Trevor Hickey from comment #0)
> **How can I suppress `-Wundef` warnings in `g++`?**  

You can't using #pragma.

*** This bug has been marked as a duplicate of bug 53431 ***
>From gcc-bugs-return-533686-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 19:26:07 2016
Return-Path: <gcc-bugs-return-533686-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 64059 invoked by alias); 8 Aug 2016 19:26:07 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 62857 invoked by uid 48); 8 Aug 2016 19:25:56 -0000
From: "manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/53431] C++ preprocessor ignores #pragma GCC diagnostic
Date: Mon, 08 Aug 2016 19:26:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 4.7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: minor
X-Bugzilla-Who: manu at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-53431-4-7pS8MfyXDD@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-53431-4@http.gcc.gnu.org/bugzilla/>
References: <bug-53431-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01022.txt.bz2
Content-length: 494

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53431

Manuel López-Ibáñez <manu at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |TrevorJamesHickey at gmail dot com

--- Comment #28 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
*** Bug 72837 has been marked as a duplicate of this bug. ***
>From gcc-bugs-return-533688-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 19:31:04 2016
Return-Path: <gcc-bugs-return-533688-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 75686 invoked by alias); 8 Aug 2016 19:31:04 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 75555 invoked by uid 55); 8 Aug 2016 19:30:51 -0000
From: "barry.revzin at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72842] non-type template-parameter of type void
Date: Mon, 08 Aug 2016 19:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: barry.revzin at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72842-4-YNcvffXt7h@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72842-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72842-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01024.txt.bz2
Content-length: 1089

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72842

--- Comment #4 from Barry Revzin <barry.revzin at gmail dot com> ---
I'll just email. Instantiating foo<void> creates a function template with a
non-type template parameter of type void. That's not an allowed type of a
non-type template parameter, so I think it should be ill-formed.

This would arise when doing something like "enable_if_t<something>..." for
SFINAE purposes, I just wanted a more minimal example.

If that's not the case, what allows a void non-type template parameter to
be used for parameter packs?

On Mon, Aug 8, 2016, 2:25 PM daniel.kruegler at googlemail dot com <
gcc-bugzilla@gcc.gnu.org> wrote:

> https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72842
>
> --- Comment #3 from Daniel Krügler <daniel.kruegler at googlemail dot com>
> ---
> Since this is not a newsgroup, let me ask differently: Can you please
> elaborate
> what you consider as a concrete compiler defect, violating the existing
> standard? I fail to see the point.
>
> --
> You are receiving this mail because:
> You reported the bug.
>From gcc-bugs-return-533689-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 19:31:59 2016
Return-Path: <gcc-bugs-return-533689-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 76889 invoked by alias); 8 Aug 2016 19:31:59 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 76847 invoked by uid 48); 8 Aug 2016 19:31:53 -0000
From: "beck.ct at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72845] New: gcc crashes (ICE) when compiling program with complex noexcept declaration
Date: Mon, 08 Aug 2016 19:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: beck.ct at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-72845-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01025.txt.bz2
Content-length: 6351

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72845

            Bug ID: 72845
           Summary: gcc crashes (ICE) when compiling program with complex
                    noexcept declaration
           Product: gcc
           Version: 6.1.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: beck.ct at gmail dot com
  Target Milestone: ---

Created attachment 39083
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39083&action=edit
variant.cpp compiling at C++11 causes ICE in versions 5+ of gcc that I tested

* Exact version of gcc:

  I reproduced this bug against 

    gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.1)

  and

    gcc version 6.1.1 20160510 (Ubuntu 6.1.1-2ubuntu12~16.04)

  I don't get an ICE with gcc 4.9.

* System type is Ubuntu linux:

  DISTRIB_DESCRIPTION="Ubuntu 16.04.1 LTS"


* Configuration options used to build gcc:

  My `gcc-6 -v` reports this:

  $ gcc-6 -v
  Using built-in specs.
  COLLECT_GCC=gcc-6
  COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/6/lto-wrapper
  Target: x86_64-linux-gnu
  Configured with: ../src/configure -v --with-pkgversion='Ubuntu
6.1.1-2ubuntu12~16.04' --with-bugurl=file:///usr/share/doc/gcc-6/README.Bugs
--enable-languages=c,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr
--program-suffix=-6 --enable-shared --enable-linker-build-id
--libexecdir=/usr/lib --without-included-gettext --enable-threads=posix
--libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu
--enable-libstdcxx-debug --enable-libstdcxx-time=yes
--with-default-libstdcxx-abi=new --enable-gnu-unique-object
--disable-vtable-verify --enable-libmpx --enable-plugin --with-system-zlib
--disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo
--with-java-home=/usr/lib/jvm/java-1.5.0-gcj-6-amd64/jre --enable-java-home
--with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-6-amd64
--with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-6-amd64
--with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar
--enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686
--with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib
--with-tune=generic --enable-checking=release --build=x86_64-linux-gnu
--host=x86_64-linux-gnu --target=x86_64-linux-gnu
  Thread model: posix
  gcc version 6.1.1 20160510 (Ubuntu 6.1.1-2ubuntu12~16.04) 

* Complete command line that triggers the crash:

  $(CXX) -std=c++11 variant.cpp

* the compiler output (error messages, warnings, etc.):

  $ gcc-5 -std=c++11 variant.cpp
variant.cpp: In instantiation of ‘template<class Visitor, class Visitable>
decltype
(declval<Visitable>().get_visitor_dispatch()(declval<Visitable>().which(),
forward<Visitable>(declval<Visitable>()).storage(),
forward<Visitor>(declval<Visitor>()))) strict_variant::apply_visitor(Visitor&&,
Visitable&&)’:
variant.cpp:578:15:   required from ‘class strict_variant::variant<int, float>’
variant.cpp:637:89:   required from here
variant.cpp:578:15: internal compiler error: in push_access_scope, at
cp/pt.c:232
   friend auto apply_visitor(Visitor &&, Visitable &&)
noexcept(APPLY_VISITOR_UNEVALUATED_EXPR)
               ^
Please submit a full bug report,
with preprocessed source if appropriate.
See <file:///usr/share/doc/gcc-5/README.Bugs> for instructions.

  $ gcc-6 -std=c++11 variant.cpp
variant.cpp: In instantiation of ‘template<class Visitor, class Visitable>
decltype
(declval<Visitable>().get_visitor_dispatch()(declval<Visitable>().which(),
forward<Visitable>(declval<Visitable>()).storage(),
forward<Visitor>(declval<Visitor>()))) strict_variant::apply_visitor(Visitor&&,
Visitable&&)’:
variant.cpp:578:15:   required from ‘class strict_variant::variant<int, float>’
variant.cpp:637:89:   required from here
variant.cpp:578:15: internal compiler error: in push_access_scope, at
cp/pt.c:229
   friend auto apply_visitor(Visitor &&, Visitable &&)
noexcept(APPLY_VISITOR_UNEVALUATED_EXPR)
               ^~~~~~~~~~~~~
0x5fb0bb push_access_scope
        ../../src/gcc/cp/pt.c:228
0x62122f maybe_instantiate_noexcept(tree_node*)
        ../../src/gcc/cp/pt.c:21603
0x5dce98 check_redeclaration_exception_specification
        ../../src/gcc/cp/decl.c:1221
0x5eb12d duplicate_decls(tree_node*, tree_node*, bool)
        ../../src/gcc/cp/decl.c:2022
0x6e020f push_overloaded_decl_1
        ../../src/gcc/cp/name-lookup.c:2396
0x6e020f push_overloaded_decl
        ../../src/gcc/cp/name-lookup.c:2491
0x6e2d12 pushdecl_maybe_friend_1
        ../../src/gcc/cp/name-lookup.c:915
0x6e2d12 pushdecl_maybe_friend(tree_node*, bool)
        ../../src/gcc/cp/name-lookup.c:1298
0x6e3e43 pushdecl_with_scope_1
        ../../src/gcc/cp/name-lookup.c:2295
0x6e3f2c pushdecl_with_scope(tree_node*, cp_binding_level*, bool)
        ../../src/gcc/cp/name-lookup.c:2309
0x6e3fa8 pushdecl_namespace_level(tree_node*, bool)
        ../../src/gcc/cp/name-lookup.c:3915
0x6223ae tsubst_friend_function
        ../../src/gcc/cp/pt.c:9265
0x6223ae instantiate_class_template_1
        ../../src/gcc/cp/pt.c:10261
0x6223ae instantiate_class_template(tree_node*)
        ../../src/gcc/cp/pt.c:10360
0x6813ad complete_type(tree_node*)
        ../../src/gcc/cp/typeck.c:131
0x6e138e arg_assoc_class_only
        ../../src/gcc/cp/name-lookup.c:5419
0x6e14aa arg_assoc_class_only
        ../../src/gcc/cp/name-lookup.c:5412
0x6e14aa arg_assoc_bases
        ../../src/gcc/cp/name-lookup.c:5452
0x6e1a06 arg_assoc_class
        ../../src/gcc/cp/name-lookup.c:5505
0x6e1a06 arg_assoc_type
        ../../src/gcc/cp/name-lookup.c:5557
Please submit a full bug report,
with preprocessed source if appropriate.
Please include the complete backtrace with any bug report.
See <file:///usr/share/doc/gcc-6/README.Bugs> for instructions.

* The complete preprocessed source:

  I reduced it to the following (please find attached). Still 500 lines, sorry,
  but self-contained.

  This also triggers on ICE on all versions of clang that I tested,
  however for clang it seems to be a parser error, and removing the outer
namespace fixes the ICE. So I stopped trying to reduce after that.
>From gcc-bugs-return-533690-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 19:45:46 2016
Return-Path: <gcc-bugs-return-533690-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 104094 invoked by alias); 8 Aug 2016 19:45:46 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 102718 invoked by uid 48); 8 Aug 2016 19:45:33 -0000
From: "daniel.kruegler at googlemail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72842] non-type template-parameter of type void
Date: Mon, 08 Aug 2016 19:45:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: daniel.kruegler at googlemail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72842-4-KEWz35s2fj@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72842-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72842-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01026.txt.bz2
Content-length: 903

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72842

--- Comment #5 from Daniel Krügler <daniel.kruegler at googlemail dot com> ---
(In reply to Barry Revzin from comment #4)
> I'll just email. Instantiating foo<void> creates a function template with a
> non-type template parameter of type void. That's not an allowed type of a
> non-type template parameter, so I think it should be ill-formed.

It truely is ill-formed, but the question is whether an implementation is
required to diagnose it. For the non-depending case the diagnostics is a hard
requirement. But for the dependent case we have [temp.res] p8:

"The program is ill-formed, no diagnostic required, if:
[..]
— every valid specialization of a variadic template requires an empty template
parameter pack, or [..]"

My argument is that this is the case we are entering here: Ill-formed, but no
diagnostics required.
>From gcc-bugs-return-533691-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 19:46:39 2016
Return-Path: <gcc-bugs-return-533691-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 105569 invoked by alias); 8 Aug 2016 19:46:38 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 105193 invoked by uid 55); 8 Aug 2016 19:46:26 -0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/68762] link error for inline function decorated with OpenMP declare simd
Date: Mon, 08 Aug 2016 19:46:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 5.3.0
X-Bugzilla-Keywords: openmp
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-68762-4-zLyUHGsWbB@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68762-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68762-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01027.txt.bz2
Content-length: 988

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68762

--- Comment #5 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Author: jakub
Date: Mon Aug  8 19:45:53 2016
New Revision: 239248

URL: https://gcc.gnu.org/viewcvs?rev=239248&root=gcc&view=rev
Log:
        PR middle-end/68762
        * omp-simd-clone.c: Include varasm.h.
        (simd_clone_create): Copy over DECL_COMDAT, DECL_WEAK, DECL_EXTERNAL,
        DECL_VISIBILITY, DECL_VISIBILITY_SPECIFIED, DECL_DLLIMPORT_P and for
        DECL_ONE_ONLY call make_decl_one_only.  Fix up spelling in comment and
        update function name.

        * g++.dg/vect/pr68762-1.cc: New test.
        * g++.dg/vect/pr68762-2.cc: New test.
        * g++.dg/vect/pr68762.h: New file.

Added:
    trunk/gcc/testsuite/g++.dg/vect/pr68762-1.cc
    trunk/gcc/testsuite/g++.dg/vect/pr68762-2.cc
    trunk/gcc/testsuite/g++.dg/vect/pr68762.h
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/omp-simd-clone.c
    trunk/gcc/testsuite/ChangeLog
>From gcc-bugs-return-533692-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 19:47:12 2016
Return-Path: <gcc-bugs-return-533692-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 106459 invoked by alias); 8 Aug 2016 19:47:12 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 106409 invoked by uid 55); 8 Aug 2016 19:47:08 -0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/72781] -Wuninitialized false positives in OpenMP code
Date: Mon, 08 Aug 2016 19:47:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords: diagnostic, openmp
X-Bugzilla-Severity: minor
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72781-4-Q4FOKhw04a@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72781-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72781-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01028.txt.bz2
Content-length: 615

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72781

--- Comment #2 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Author: jakub
Date: Mon Aug  8 19:46:36 2016
New Revision: 239249

URL: https://gcc.gnu.org/viewcvs?rev=239249&root=gcc&view=rev
Log:
        PR middle-end/72781
        * omp-low.c (lower_lastprivate_clauses): Set TREE_NO_WARNING on the
        private vars for lastprivate and for linear iterator.

        * gcc.dg/gomp/pr72781.c: New test.

Added:
    trunk/gcc/testsuite/gcc.dg/gomp/pr72781.c
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/omp-low.c
    trunk/gcc/testsuite/ChangeLog
>From gcc-bugs-return-533693-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 19:49:29 2016
Return-Path: <gcc-bugs-return-533693-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 112080 invoked by alias); 8 Aug 2016 19:49:29 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 111705 invoked by uid 55); 8 Aug 2016 19:49:20 -0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/72716] [5/6/7 Regression] ICE in gfc_resolve_omp_declare_simd, at fortran/openmp.c:5156
Date: Mon, 08 Aug 2016 19:49:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72716-4-Isf5SQtBiK@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72716-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72716-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01029.txt.bz2
Content-length: 628

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72716

--- Comment #3 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Author: jakub
Date: Mon Aug  8 19:48:48 2016
New Revision: 239250

URL: https://gcc.gnu.org/viewcvs?rev=239250&root=gcc&view=rev
Log:
        PR fortran/72716
        * openmp.c (gfc_match_omp_declare_simd): Don't stick anything into
        BLOCK DATA ns, it will be rejected later.

        * gfortran.dg/gomp/pr72716.f90: New test.

Added:
    trunk/gcc/testsuite/gfortran.dg/gomp/pr72716.f90
Modified:
    trunk/gcc/fortran/ChangeLog
    trunk/gcc/fortran/openmp.c
    trunk/gcc/testsuite/ChangeLog
>From gcc-bugs-return-533694-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 19:51:15 2016
Return-Path: <gcc-bugs-return-533694-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 115102 invoked by alias); 8 Aug 2016 19:51:15 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 114996 invoked by uid 55); 8 Aug 2016 19:51:02 -0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/58706] ICE with lambda in OpenMP for-loop
Date: Mon, 08 Aug 2016 19:51:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords: ice-on-valid-code, openmp
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-58706-4-9z28HcuUEq@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-58706-4@http.gcc.gnu.org/bugzilla/>
References: <bug-58706-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01030.txt.bz2
Content-length: 709

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58706

--- Comment #3 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Author: jakub
Date: Mon Aug  8 19:50:29 2016
New Revision: 239251

URL: https://gcc.gnu.org/viewcvs?rev=239251&root=gcc&view=rev
Log:
        PR c++/58706
        * parser.c: Include tree-iterator.h.
        (cp_parser_omp_for_loop_init): Move lambda DECL_EXPRs from init
        to FOR_BLOCK.
        (cp_parser_omp_for_loop): Handle non-STATEMENT_LIST FOR_BLOCK
        entries.

        * testsuite/libgomp.c++/pr58706.C: New test.

Added:
    trunk/libgomp/testsuite/libgomp.c++/pr58706.C
Modified:
    trunk/gcc/cp/ChangeLog
    trunk/gcc/cp/parser.c
    trunk/libgomp/ChangeLog
>From gcc-bugs-return-533695-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 19:52:23 2016
Return-Path: <gcc-bugs-return-533695-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 117430 invoked by alias); 8 Aug 2016 19:52:23 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 116990 invoked by uid 48); 8 Aug 2016 19:52:09 -0000
From: "daniel.kruegler at googlemail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72842] non-type template-parameter of type void
Date: Mon, 08 Aug 2016 19:52:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: daniel.kruegler at googlemail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72842-4-vwXhCMP56S@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72842-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72842-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01031.txt.bz2
Content-length: 1231

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72842

--- Comment #6 from Daniel Krügler <daniel.kruegler at googlemail dot com> ---
(In reply to Daniel Krügler from comment #5)
> (In reply to Barry Revzin from comment #4)
> > I'll just email. Instantiating foo<void> creates a function template with a
> > non-type template parameter of type void. That's not an allowed type of a
> > non-type template parameter, so I think it should be ill-formed.
> 
> It truely is ill-formed, but the question is whether an implementation is
> required to diagnose it. For the non-depending case the diagnostics is a
> hard requirement. But for the dependent case we have [temp.res] p8:
> 
> "The program is ill-formed, no diagnostic required, if:
> [..]
> — every valid specialization of a variadic template requires an empty
> template parameter pack, or [..]"
> 
> My argument is that this is the case we are entering here: Ill-formed, but
> no diagnostics required.

Having said that, it might be worth to point out that there are at least two
core issues involving this area:

http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#1785
http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#2067
>From gcc-bugs-return-533696-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 19:54:29 2016
Return-Path: <gcc-bugs-return-533696-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 126466 invoked by alias); 8 Aug 2016 19:54:29 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 124281 invoked by uid 55); 8 Aug 2016 19:54:16 -0000
From: "ian at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug go/72814] reflect FAILs on 32-bit Solaris/SPARC: SIGILL
Date: Mon, 08 Aug 2016 19:54:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: go
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ian at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: ian at airs dot com
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72814-4-7Mfhh43trZ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72814-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72814-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01032.txt.bz2
Content-length: 1678

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72814

--- Comment #2 from ian at gcc dot gnu.org <ian at gcc dot gnu.org> ---
Author: ian
Date: Mon Aug  8 19:53:44 2016
New Revision: 239252

URL: https://gcc.gnu.org/viewcvs?rev=239252&root=gcc&view=rev
Log:
        PR go/72814

    runtime: treat zero-sized result value as void

    Change the FFI interface to treat a call to a function that returns a
    zero-sized result as a call to a function that returns void.

    This is part of the fix for https://gcc.gnu.org/PR72814.  On 32-bit
    SPARC systems, a call to a function that returns a non-zero-sized struct
    is followed by an unimp instruction that describes the size of the
    struct.  The function returns to the address after the unimp
    instruction.  The libffi library can not represent a zero-sized struct,
    so we wind up treating it as a 1-byte struct.  Thus in that case libffi
    calls the function with an unimp instruction, but the function does not
    adjust the return address.  The result is that the program attempts to
    execute the unimp instruction, causing a crash.

    This is part of a change that fixes the crash by treating all functions
    that return zero bytes as functions that return void.

    Reviewed-on: https://go-review.googlesource.com/25585

        * go-gcc.cc (Gcc_backend::function_type): If the return type is
        zero bytes, treat the function as returning void.
        (return_statement): If the return type is zero bytes, don't
        actually return any values.

Modified:
    trunk/gcc/go/ChangeLog
    trunk/gcc/go/go-gcc.cc
    trunk/gcc/go/gofrontend/MERGE
    trunk/libgo/runtime/go-ffi.c
>From gcc-bugs-return-533697-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 19:55:29 2016
Return-Path: <gcc-bugs-return-533697-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 128039 invoked by alias); 8 Aug 2016 19:55:29 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 127872 invoked by uid 48); 8 Aug 2016 19:55:16 -0000
From: "ian at airs dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug go/72814] reflect FAILs on 32-bit Solaris/SPARC: SIGILL
Date: Mon, 08 Aug 2016 19:55:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: go
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ian at airs dot com
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: ian at airs dot com
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-72814-4-Wzx1x9fqP4@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72814-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72814-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01033.txt.bz2
Content-length: 419

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72814

Ian Lance Taylor <ian at airs dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #3 from Ian Lance Taylor <ian at airs dot com> ---
Fixed.
>From gcc-bugs-return-533698-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 20:11:12 2016
Return-Path: <gcc-bugs-return-533698-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 28125 invoked by alias); 8 Aug 2016 20:11:10 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 27922 invoked by uid 55); 8 Aug 2016 20:10:55 -0000
From: "dmalcolm at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/52952] Wformat location info is bad (wrong column number)
Date: Mon, 08 Aug 2016 20:11:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dmalcolm at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: dmalcolm at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-52952-4-5TRH3vaBWm@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-52952-4@http.gcc.gnu.org/bugzilla/>
References: <bug-52952-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01034.txt.bz2
Content-length: 3377

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=52952

--- Comment #45 from David Malcolm <dmalcolm at gcc dot gnu.org> ---
Author: dmalcolm
Date: Mon Aug  8 20:10:19 2016
New Revision: 239253

URL: https://gcc.gnu.org/viewcvs?rev=239253&root=gcc&view=rev
Log:
Use class substring_loc in c-format.c (PR c/52952)

gcc/c-family/ChangeLog:
        PR c/52952
        * c-format.c: Include "diagnostic.h".
        (location_column_from_byte_offset): Delete.
        (location_from_offset): Delete.
        (format_warning_va): New function.
        (format_warning_at_substring): New function.
        (format_warning_at_char): New function.
        (check_format_arg): Capture location of format_tree and pass to
        check_format_info_main.
        (argument_parser): Add fields "start_of_this_format" and
        "format_string_cst".
        (flag_chars_t::validate): Add param "format_string_cst".  Convert
        warning_at call using location_from_offset to call to
        format_warning_at_char.
        (argument_parser::argument_parser): Add param "format_string_cst_"
        and use use it to initialize field "format_string_cst".
        Initialize new field "start_of_this_format".
        (argument_parser::read_format_flags): Convert warning_at call
        using location_from_offset to a call to format_warning_at_char.
        (argument_parser::read_any_format_left_precision): Likewise.
        (argument_parser::read_any_format_precision): Likewise.
        (argument_parser::read_any_other_modifier): Likewise.
        (argument_parser::find_format_char_info): Likewise, in three places.
        (argument_parser::parse_any_scan_set): Likewise, in one place.
        (argument_parser::handle_conversions): Likewise, in two places.
        (argument_parser::check_argument_type): Add param "fmt_param_loc"
        and use it to make a substring_loc.  Pass the latter to
        check_format_types.
        (check_format_info_main): Add params "fmt_param_loc" and
        "format_string_cst".  Convert warning_at calls using
        location_from_offset to calls to format_warning_at_char.  Pass the
        new params to the arg_parser ctor.  Pass "format_string_cst" to
        flag_chars.validate.  Pass "fmt_param_loc" to
        arg_parser.check_argument_type.
        (check_format_types): Convert first param from a location_t
        to a const substring_loc & and rename to "fmt_loc".  Attempt
        to extract the range of the relevant parameter and pass it
        to format_type_warning.
        (format_type_warning): Convert first param from a location_t
        to a const substring_loc & and rename to "fmt_loc".  Add
        params "param_range" and "type".  Replace calls to warning_at
        with calls to format_warning_at_substring.

gcc/testsuite/ChangeLog:
        PR c/52952
        * gcc.dg/cpp/pr66415-1.c: Likewise.
        * gcc.dg/format/asm_fprintf-1.c: Update column numbers.
        * gcc.dg/format/c90-printf-1.c: Likewise.
        * gcc.dg/format/diagnostic-ranges.c: New test case.


Added:
    trunk/gcc/testsuite/gcc.dg/format/diagnostic-ranges.c
Modified:
    trunk/gcc/c-family/ChangeLog
    trunk/gcc/c-family/c-format.c
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/testsuite/gcc.dg/cpp/pr66415-1.c
    trunk/gcc/testsuite/gcc.dg/format/asm_fprintf-1.c
    trunk/gcc/testsuite/gcc.dg/format/c90-printf-1.c
>From gcc-bugs-return-533699-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 20:15:43 2016
Return-Path: <gcc-bugs-return-533699-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 31986 invoked by alias); 8 Aug 2016 20:15:42 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 31918 invoked by uid 48); 8 Aug 2016 20:15:28 -0000
From: "gerald at pfeifer dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/72846] New: [7 regression]
Date: Mon, 08 Aug 2016 20:15:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: gerald at pfeifer dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: dmalcolm at redhat dot com
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-72846-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01035.txt.bz2
Content-length: 916

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72846

            Bug ID: 72846
           Summary: [7 regression]
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: dmalcolm at redhat dot com
          Reporter: gerald at pfeifer dot com
  Target Milestone: ---

r239175 | dmalcolm | 2016-08-05 18:08:33 +0000 (Fri, 05 Aug 2016) | 124 line
introduced a bootstrap failure on an automated tester I have running on
FreeBSD 9/amd64:

/scratch/tmp/gerald/gcc-HEAD/gcc/input.c:2137: error: 'HAVE_ICONV' was not
decla
red in this scope

The code in question is the following:

    test_lexer_string_locations_ebcdic (const line_table_case &case_) 
    {
      /* EBCDIC support requires iconv.  */
      if (!HAVE_ICONV)
        return;

HAVE_ICONV is not defined when iconv is not present.
>From gcc-bugs-return-533700-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 20:17:16 2016
Return-Path: <gcc-bugs-return-533700-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 53282 invoked by alias); 8 Aug 2016 20:17:15 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 53238 invoked by uid 48); 8 Aug 2016 20:17:11 -0000
From: "dyp-cpp at gmx dot net" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/72847] New: vector<bool> copy-assignment basic exception safety
Date: Mon, 08 Aug 2016 20:17:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dyp-cpp at gmx dot net
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-72847-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01036.txt.bz2
Content-length: 914

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72847

            Bug ID: 72847
           Summary: vector<bool> copy-assignment basic exception safety
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: libstdc++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: dyp-cpp at gmx dot net
  Target Milestone: ---

vector<bool>'s copy-assignment operator uses a very simple algorithm if
resizing is required: first, free the current allocation, then create a new
allocation. The pointer data member that holds the allocation is not touched by
the first step, then assigned-to by the second step. Therefore, if the second
step (the allocation) fails via exception, that pointer (_M_end_of_storage -
size()) is dangling. Destruction of a vector<bool> in such a state leads to a
double deletion.
>From gcc-bugs-return-533701-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 20:19:37 2016
Return-Path: <gcc-bugs-return-533701-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 57651 invoked by alias); 8 Aug 2016 20:19:37 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 56867 invoked by uid 48); 8 Aug 2016 20:19:24 -0000
From: "dmalcolm at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/72846] [7 regression]
Date: Mon, 08 Aug 2016 20:19:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dmalcolm at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: DUPLICATE
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: dmalcolm at redhat dot com
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cc resolution
Message-ID: <bug-72846-4-3bthyN5FjD@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72846-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72846-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01037.txt.bz2
Content-length: 583

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72846

David Malcolm <dmalcolm at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
                 CC|                            |dmalcolm at gcc dot gnu.org
         Resolution|---                         |DUPLICATE

--- Comment #1 from David Malcolm <dmalcolm at gcc dot gnu.org> ---
Sorry about this.

*** This bug has been marked as a duplicate of bug 72844 ***
>From gcc-bugs-return-533702-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 20:19:40 2016
Return-Path: <gcc-bugs-return-533702-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 57659 invoked by alias); 8 Aug 2016 20:19:37 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 56885 invoked by uid 48); 8 Aug 2016 20:19:25 -0000
From: "dmalcolm at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/72844] Revision 293175 breaks gcc on FreeBSD
Date: Mon, 08 Aug 2016 20:19:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: blocker
X-Bugzilla-Who: dmalcolm at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: dmalcolm at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-72844-4-kghPzLtsa2@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72844-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72844-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01038.txt.bz2
Content-length: 446

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72844

David Malcolm <dmalcolm at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |gerald at pfeifer dot com

--- Comment #5 from David Malcolm <dmalcolm at gcc dot gnu.org> ---
*** Bug 72846 has been marked as a duplicate of this bug. ***
>From gcc-bugs-return-533703-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 20:27:29 2016
Return-Path: <gcc-bugs-return-533703-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 86251 invoked by alias); 8 Aug 2016 20:27:28 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 86176 invoked by uid 55); 8 Aug 2016 20:27:16 -0000
From: "sgk at troutmask dot apl.washington.edu" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/72844] Revision 293175 breaks gcc on FreeBSD
Date: Mon, 08 Aug 2016 20:27:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: blocker
X-Bugzilla-Who: sgk at troutmask dot apl.washington.edu
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: dmalcolm at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72844-4-cuWWcJ5lPW@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72844-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72844-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01039.txt.bz2
Content-length: 652

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72844

--- Comment #6 from Steve Kargl <sgk at troutmask dot apl.washington.edu> ---
On Mon, Aug 08, 2016 at 07:13:56PM +0000, dmalcolm at gcc dot gnu.org wrote:
> https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72844
> 
> --- Comment #4 from David Malcolm <dmalcolm at gcc dot gnu.org> ---
> (In reply to David Malcolm from comment #3)
> > Created attachment 39081 [details]
> > Ensure that HAVE_ICONV is usable as a conditional
> 
> Steve: this fixes the problem for me on a Linux box with iconv hacked out. 
> Does it fix it for you?
> 

Bootstrap just completed.  Thanks for the quick fix.
>From gcc-bugs-return-533704-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 20:39:49 2016
Return-Path: <gcc-bugs-return-533704-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 5002 invoked by alias); 8 Aug 2016 20:39:48 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 4939 invoked by uid 48); 8 Aug 2016 20:39:36 -0000
From: "mikulas at artax dot karlin.mff.cuni.cz" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/72848] New: profiledbootstrap: internal compiler error: in streamer_write_gcov_count_stream, at data-streamer-out.c:366
Date: Mon, 08 Aug 2016 20:39:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mikulas at artax dot karlin.mff.cuni.cz
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone cf_gcchost cf_gcctarget cf_gccbuild
Message-ID: <bug-72848-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01040.txt.bz2
Content-length: 4644

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72848

            Bug ID: 72848
           Summary: profiledbootstrap: internal compiler error: in
                    streamer_write_gcov_count_stream, at
                    data-streamer-out.c:366
           Product: gcc
           Version: 5.4.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: mikulas at artax dot karlin.mff.cuni.cz
  Target Milestone: ---
              Host: sparc64-unknown-linux-gnu
            Target: sparc64-unknown-linux-gnu
             Build: sparc64-unknown-linux-gnu

Gcc profiledbootstrap fails on sparc.

The system is Debian Squeeze Sparc. Gcc is compiled as a 32-bit sparc
application. Gcc is compiled with this script:

#!/bin/sh
set -e
CFLAGS="-O3 -mcpu=ultrasparc"
export CFLAGS
CXXFLAGS="$CFLAGS"
export CXXFLAGS
../gcc-5.4.0/configure                                                  \
        --prefix=/usr/local/gcc/                                        \
        --enable-lto                                                    \
        --with-system-zlib                                              \
        --enable-languages=c                                            \
        --enable-multilib                                               \
        --with-multilib-list=m32,m64                                    \
        --with-build-config=bootstrap-lto                               \
        &&
nice -n 20 make BOOT_CFLAGS="$CFLAGS" profiledbootstrap

The failing command is:
make[3]: Entering directory `/usr/src/gcc-5.4.0-build/libcpp'
/usr/src/gcc-5.4.0-build/./prev-gcc/xg++ -B/usr/src/gcc-5.4.0-build/./prev-gcc/
-B/usr/local/gcc/sparc64-unknown-linux-gnu/bin/ -nostd
inc++
-B/usr/src/gcc-5.4.0-build/prev-sparc64-unknown-linux-gnu/libstdc++-v3/src/.libs
-B/usr/src/gcc-5.4.0-build/prev-sparc64-unknown
-linux-gnu/libstdc++-v3/libsupc++/.libs 
-I/usr/src/gcc-5.4.0-build/prev-sparc64-unknown-linux-gnu/libstdc++-v3/include/sparc64-unknown-linux-gnu
 -I/usr/src/gcc-5.4.0-build/prev-sparc64-unknown-linux-gnu/libstdc++-v3/include
 -I/usr/src/gcc-5.4.0/libstdc++-v3/libsupc++
-L/usr/src/gcc-5.4.0-build/prev-sparc64-unknown-linux-gnu/libstdc++-v3/src/.libs
-L/usr/src/gcc-5.4.0-build/prev-sparc64-unknown-linux-gnu/libstdc++-v3/libsupc++/.libs
 -I../../gcc-5.4.0/libcpp -I. -I../../gcc-5.4.0/libcpp/../include
-I../../gcc-5.4.0/libcpp/include  -O3 -mcpu=ultrasparc -flto=jobserver
-frandom-seed=1 -fprofile-use -W -Wall -Wno-narrowing -Wwrite-strings
-Wmissing-format-attribute -pedantic -Wno-long-long  -fno-exceptions -fno-rtti
-I../../gcc-5.4.0/libcpp -I. -I../../gcc-5.4.0/libcpp/../include
-I../../gcc-5.4.0/libcpp/include   -c -o charset.o -MT charset.o -MMD -MP -MF
.deps/charset.Tpo ../../gcc-5.4.0/libcpp/charset.c
/usr/src/gcc-5.4.0-build/./prev-gcc/xg++ -B/usr/src/gcc-5.4.0-build/./prev-gcc/
-B/usr/local/gcc/sparc64-unknown-linux-gnu/bin/ -nostdinc++
-B/usr/src/gcc-5.4.0-build/prev-sparc64-unknown-linux-gnu/libstdc++-v3/src/.libs
-B/usr/src/gcc-5.4.0-build/prev-sparc64-unknown-linux-gnu/libstdc++-v3/libsupc++/.libs

-I/usr/src/gcc-5.4.0-build/prev-sparc64-unknown-linux-gnu/libstdc++-v3/include/sparc64-unknown-linux-gnu
 -I/usr/src/gcc-5.4.0-build/prev-sparc64-unknown-linux-gnu/libstdc++-v3/include
 -I/usr/src/gcc-5.4.0/libstdc++-v3/libsupc++
-L/usr/src/gcc-5.4.0-build/prev-sparc64-unknown-linux-gnu/libstdc++-v3/src/.libs
-L/usr/src/gcc-5.4.0-build/prev-sparc64-unknown-linux-gnu/libstdc++-v3/libsupc++/.libs
 -I../../gcc-5.4.0/libcpp -I. -I../../gcc-5.4.0/libcpp/../include
-I../../gcc-5.4.0/libcpp/include  -O3 -mcpu=ultrasparc -flto=jobserver
-frandom-seed=1 -fprofile-use -W -Wall -Wno-narrowing -Wwrite-strings
-Wmissing-format-attribute -pedantic -Wno-long-long  -fno-exceptions -fno-rtti
-I../../gcc-5.4.0/libcpp -I. -I../../gcc-5.4.0/libcpp/../include
-I../../gcc-5.4.0/libcpp/include   -c -o directives.o -MT directives.o -MMD -MP
-MF .deps/directives.Tpo ../../gcc-5.4.0/libcpp/directives.c
../../gcc-5.4.0/libcpp/directives.c: In function 'do_assert(cpp_reader*)':
../../gcc-5.4.0/libcpp/directives.c:2631:1: internal compiler error: in
streamer_write_gcov_count_stream, at data-streamer-out.c:366
 }
 ^
Please submit a full bug report,
with preprocessed source if appropriate.
See <http://gcc.gnu.org/bugs.html> for instructions.
make[3]: *** [directives.o] Error 1

The bug is caused by -fprofile-use. When I remove -fprofile-use from the
commandline and re-execute the command manually, it works.
>From gcc-bugs-return-533705-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 20:45:39 2016
Return-Path: <gcc-bugs-return-533705-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 18065 invoked by alias); 8 Aug 2016 20:45:39 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 17955 invoked by uid 48); 8 Aug 2016 20:45:25 -0000
From: "ubizjak at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/72843] [7 Regression] internal compiler error: in lra_set_insn_recog_data, at lra.c:964
Date: Mon, 08 Aug 2016 20:45:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ubizjak at gmail dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: attachments.created
Message-ID: <bug-72843-4-ueAeBAUXD9@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72843-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72843-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01041.txt.bz2
Content-length: 274

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72843

--- Comment #3 from Uroš Bizjak <ubizjak at gmail dot com> ---
Created attachment 39084
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39084&action=edit
Proposed patch

HJ, can you please test this patch?
>From gcc-bugs-return-533706-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 20:47:05 2016
Return-Path: <gcc-bugs-return-533706-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 23400 invoked by alias); 8 Aug 2016 20:47:05 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 19463 invoked by uid 55); 8 Aug 2016 20:46:52 -0000
From: "dmalcolm at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/72844] Revision 293175 breaks gcc on FreeBSD
Date: Mon, 08 Aug 2016 20:47:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: blocker
X-Bugzilla-Who: dmalcolm at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: dmalcolm at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72844-4-6I6wUgNDs8@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72844-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72844-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01042.txt.bz2
Content-length: 973

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72844

--- Comment #7 from David Malcolm <dmalcolm at gcc dot gnu.org> ---
Author: dmalcolm
Date: Mon Aug  8 20:46:19 2016
New Revision: 239257

URL: https://gcc.gnu.org/viewcvs?rev=239257&root=gcc&view=rev
Log:
Fix selftest::test_lexer_string_locations_ebcdic for systems without iconv (PR
bootstrap/72844)

selftest::test_lexer_string_locations_ebcdic has this clause:

  /* EBCDIC support requires iconv.  */
  if (!HAVE_ICONV)
    return;

leading to a build failure on systems without iconv.  This conditional
works in libcpp due to this in libcpp/internal.h:

  #if HAVE_ICONV
  #include <iconv.h>
  #else
  #define HAVE_ICONV 0
  typedef int iconv_t;  /* dummy */
  #endif

Fix the problem by ensuring that HAVE_ICONV is always defined within
gcc/input.c.

gcc/ChangeLog:
        PR bootstrap/72844
        * input.c: Ensure that HAVE_ICONV is defined.


Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/input.c
>From gcc-bugs-return-533707-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 20:51:38 2016
Return-Path: <gcc-bugs-return-533707-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 28520 invoked by alias); 8 Aug 2016 20:51:38 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 28400 invoked by uid 48); 8 Aug 2016 20:51:26 -0000
From: "dmalcolm at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/72844] Revision 293175 breaks gcc on FreeBSD
Date: Mon, 08 Aug 2016 20:51:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: blocker
X-Bugzilla-Who: dmalcolm at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: dmalcolm at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-72844-4-PhgA730bSj@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72844-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72844-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01043.txt.bz2
Content-length: 503

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72844

David Malcolm <dmalcolm at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #8 from David Malcolm <dmalcolm at gcc dot gnu.org> ---
Should be fixed now.  Thanks for testing it, and sorry again about the
breakage.
>From gcc-bugs-return-533708-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 21:24:10 2016
Return-Path: <gcc-bugs-return-533708-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 122317 invoked by alias); 8 Aug 2016 21:24:10 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 121841 invoked by uid 48); 8 Aug 2016 21:23:56 -0000
From: "daniel.kruegler at googlemail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72842] non-type template-parameter of type void
Date: Mon, 08 Aug 2016 21:24:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: daniel.kruegler at googlemail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72842-4-FMsrAWdfG8@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72842-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72842-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01044.txt.bz2
Content-length: 1814

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72842

--- Comment #7 from Daniel Krügler <daniel.kruegler at googlemail dot com> ---
(In reply to Daniel Krügler from comment #5)
> (In reply to Barry Revzin from comment #4)
> > I'll just email. Instantiating foo<void> creates a function template with a
> > non-type template parameter of type void. That's not an allowed type of a
> > non-type template parameter, so I think it should be ill-formed.
> 
> It truely is ill-formed, but the question is whether an implementation is
> required to diagnose it. For the non-depending case the diagnostics is a
> hard requirement. But for the dependent case we have [temp.res] p8:
> 
> "The program is ill-formed, no diagnostic required, if:
> [..]
> — every valid specialization of a variadic template requires an empty
> template parameter pack, or [..]"
> 
> My argument is that this is the case we are entering here: Ill-formed, but
> no diagnostics required.

After a second look at your original foo template I need to correct myself a
bit, so let me be more precise:

1) Your second bar() example is ill-formed, no diagnostics required, as
explained above. But it is nonetheless diagnosed here (because the case is
simple).

2) Your original foo example is simply valid, because the pack is empty and so
there is no non-type template parameter of type void, as I described in my very
first response. For this example my [temp.res] quote doesn't hold, because one
can produce several other valid specializations of that template without an
empty parameter pack (e.g. when selecting T=int). Of-course it would still not
be valid to attempt to generate a non-empty pack expansion of the second
parameter using void or other types that are not valid as non-type parameters.
>From gcc-bugs-return-533709-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 21:32:30 2016
Return-Path: <gcc-bugs-return-533709-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 130108 invoked by alias); 8 Aug 2016 21:32:29 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 130049 invoked by uid 48); 8 Aug 2016 21:32:17 -0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/58306] Broken profiling for unrar sources: error: corrupted value profile: value profile counter (X out of Y) inconsistent with basic-block count
Date: Mon, 08 Aug 2016 21:32:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-58306-4-Xr8B5OoidO@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-58306-4@http.gcc.gnu.org/bugzilla/>
References: <bug-58306-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01045.txt.bz2
Content-length: 357

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58306

--- Comment #24 from Martin Liška <marxin at gcc dot gnu.org> ---
> Wonderful! What are the chances of this patch being merged with GCC 4.9.x?

Any, because 4.9 was closed last week and there's not going to be any release.
If you are interested, I can back-port patches to both 5 and 6 branches?
>From gcc-bugs-return-533710-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 21:33:31 2016
Return-Path: <gcc-bugs-return-533710-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 2543 invoked by alias); 8 Aug 2016 21:33:31 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 344 invoked by uid 48); 8 Aug 2016 21:33:18 -0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug debug/72828] [5/6/7 Regression] ICE in clone_tree_partial when compiling with -fdebug-types-section
Date: Mon, 08 Aug 2016 21:33:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: debug
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72828-4-P5lEvbvJsy@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72828-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72828-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01046.txt.bz2
Content-length: 547

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72828

--- Comment #3 from Martin Liška <marxin at gcc dot gnu.org> ---
(In reply to Giuseppe Ottaviano from comment #2)
> Martin, I noticed you marked this as "[5/6/7 Regression]", but to be clear
> the bug is present since at least 4.9 (the oldest version I tested).
> It's only the attached reduction that is sensitive to compiler version. I
> can provide repros for 4.9 and 5.1 as well.

Ah, OK. However as 4.9 branch is already closed, we create Regression prefix
just for active branches.
>From gcc-bugs-return-533711-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 21:35:05 2016
Return-Path: <gcc-bugs-return-533711-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 3836 invoked by alias); 8 Aug 2016 21:35:05 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 3696 invoked by uid 48); 8 Aug 2016 21:34:53 -0000
From: "ott at fb dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug debug/72828] [5/6/7 Regression] ICE in clone_tree_partial when compiling with -fdebug-types-section
Date: Mon, 08 Aug 2016 21:35:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: debug
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ott at fb dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72828-4-iE1QsmiYRM@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72828-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72828-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01047.txt.bz2
Content-length: 205

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72828

--- Comment #4 from Giuseppe Ottaviano <ott at fb dot com> ---
Thanks, I just wanted to clarify that this is not a regression, as far as I can
tell.
>From gcc-bugs-return-533712-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 22:01:23 2016
Return-Path: <gcc-bugs-return-533712-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 49731 invoked by alias); 8 Aug 2016 22:01:23 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 49640 invoked by uid 55); 8 Aug 2016 22:01:10 -0000
From: "tkoenig at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/60526] [5 Regression] Accepts-invalid: Variable name same as type name
Date: Mon, 08 Aug 2016 22:01:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords: accepts-invalid
X-Bugzilla-Severity: normal
X-Bugzilla-Who: tkoenig at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: tkoenig at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-60526-4-ba0fFMpa7o@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-60526-4@http.gcc.gnu.org/bugzilla/>
References: <bug-60526-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01048.txt.bz2
Content-length: 1001

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60526

--- Comment #17 from Thomas Koenig <tkoenig at gcc dot gnu.org> ---
Author: tkoenig
Date: Mon Aug  8 22:00:37 2016
New Revision: 239259

URL: https://gcc.gnu.org/viewcvs?rev=239259&root=gcc&view=rev
Log:
2016-08-08  Thomas Koenig  <tkoenig@gcc.gnu.org>

        Backport from trunk
        PR fortran/60526
        * decl.c (build_sym):  If the name has already been defined as a
        type, it has a symtree with an upper case letter at the beginning.
        If such a symtree exists, issue an error and exit.  Don't do
        this if there is no corresponding upper case letter.

2016-08-08  Thomas Koenig  <tkoenig@gcc.gnu.org>

        PR fortran/60526
        * gfortran.dg/type_decl_4.f90:  New test.


Added:
    branches/gcc-5-branch/gcc/testsuite/gfortran.dg/type_decl_4.f90
Modified:
    branches/gcc-5-branch/gcc/fortran/ChangeLog
    branches/gcc-5-branch/gcc/fortran/decl.c
    branches/gcc-5-branch/gcc/testsuite/ChangeLog
>From gcc-bugs-return-533713-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 22:03:45 2016
Return-Path: <gcc-bugs-return-533713-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 51639 invoked by alias); 8 Aug 2016 22:03:45 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 51567 invoked by uid 48); 8 Aug 2016 22:03:32 -0000
From: "tkoenig at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/60526] [5 Regression] Accepts-invalid: Variable name same as type name
Date: Mon, 08 Aug 2016 22:03:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords: accepts-invalid
X-Bugzilla-Severity: normal
X-Bugzilla-Who: tkoenig at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: tkoenig at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-60526-4-ivpT2q5IWi@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-60526-4@http.gcc.gnu.org/bugzilla/>
References: <bug-60526-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01049.txt.bz2
Content-length: 477

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60526

Thomas Koenig <tkoenig at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #18 from Thomas Koenig <tkoenig at gcc dot gnu.org> ---
Fixed on all affected and still-open branches, closing.
>From gcc-bugs-return-533714-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 22:51:33 2016
Return-Path: <gcc-bugs-return-533714-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 4544 invoked by alias); 8 Aug 2016 22:51:33 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 4452 invoked by uid 55); 8 Aug 2016 22:51:19 -0000
From: "dmalcolm at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/64955] RFE: have -Wformat suggest the correct format string to use
Date: Mon, 08 Aug 2016 22:51:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 5.0
X-Bugzilla-Keywords: diagnostic, easyhack
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: dmalcolm at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: dmalcolm at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-64955-4-0iicqyVC11@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-64955-4@http.gcc.gnu.org/bugzilla/>
References: <bug-64955-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01050.txt.bz2
Content-length: 3193

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64955

--- Comment #6 from David Malcolm <dmalcolm at gcc dot gnu.org> ---
Author: dmalcolm
Date: Mon Aug  8 22:50:47 2016
New Revision: 239260

URL: https://gcc.gnu.org/viewcvs?rev=239260&root=gcc&view=rev
Log:
c-format.c: suggest the correct format string to use (PR c/64955)

This adds fix-it hints to c-format.c so that it can (sometimes) suggest
the format string the user should have used.

The patch adds selftests for the new code in c-format.c.  These
selftests are thus lang-specific.  This is the first time we've had
lang-specific selftests, and hence the patch also adds a langhook for
running them.  (Note that currently the Makefile only invokes the
selftests for cc1).

gcc/c-family/ChangeLog:
        PR c/64955
        * c-common.h (selftest::c_format_c_tests): New declaration.
        (selftest::run_c_tests): New declaration.
        * c-format.c: Include "selftest.h.
        (format_warning_va): Add param "corrected_substring" and use
        it to add a replacement fix-it hint.
        (format_warning_at_substring): Likewise.
        (format_warning_at_char): Update for new param of
        format_warning_va.
        (argument_parser::check_argument_type): Pass "fki" to
        check_format_types.
        (check_format_types): Add param "fki" and pass it to
        format_type_warning.
        (deref_n_times): New function.
        (get_modifier_for_format_len): New function.
        (selftest::test_get_modifier_for_format_len): New function.
        (get_format_for_type): New function.
        (format_type_warning): Add param "fki" and use it to attempt
        to provide hints for argument types when calling
        format_warning_at_substring.
        (selftest::get_info): New function.
        (selftest::assert_format_for_type_streq): New function.
        (ASSERT_FORMAT_FOR_TYPE_STREQ): New macro.
        (selftest::test_get_format_for_type_printf): New function.
        (selftest::test_get_format_for_type_scanf): New function.
        (selftest::c_format_c_tests): New function.

gcc/c/ChangeLog:
        PR c/64955
        * c-lang.c (LANG_HOOKS_RUN_LANG_SELFTESTS): If CHECKING_P, wire
        this up to selftest::run_c_tests.
        (selftest::run_c_tests): New function.

gcc/ChangeLog:
        PR c/64955
        * langhooks-def.h (LANG_HOOKS_RUN_LANG_SELFTESTS): New default
        do-nothing langhook.
        (LANG_HOOKS_INITIALIZER): Add LANG_HOOKS_RUN_LANG_SELFTESTS.
        * langhooks.h (struct lang_hooks): Add run_lang_selftests.
        * selftest-run-tests.c: Include "tree.h" and "langhooks.h".
        (selftest::run_tests): Call lang_hooks.run_lang_selftests.

gcc/testsuite/ChangeLog:
        PR c/64955
        * gcc.dg/format/diagnostic-ranges.c: Add fix-it hints to expected
        output.


Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/c-family/ChangeLog
    trunk/gcc/c-family/c-common.h
    trunk/gcc/c-family/c-format.c
    trunk/gcc/c/ChangeLog
    trunk/gcc/c/c-lang.c
    trunk/gcc/langhooks-def.h
    trunk/gcc/langhooks.h
    trunk/gcc/selftest-run-tests.c
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/testsuite/gcc.dg/format/diagnostic-ranges.c
>From gcc-bugs-return-533715-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 22:52:07 2016
Return-Path: <gcc-bugs-return-533715-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 5617 invoked by alias); 8 Aug 2016 22:52:07 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 5569 invoked by uid 48); 8 Aug 2016 22:52:02 -0000
From: "dmalcolm at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/64955] RFE: have -Wformat suggest the correct format string to use
Date: Mon, 08 Aug 2016 22:52:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 5.0
X-Bugzilla-Keywords: diagnostic, easyhack
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: dmalcolm at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: dmalcolm at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-64955-4-5jCNHJqSiE@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-64955-4@http.gcc.gnu.org/bugzilla/>
References: <bug-64955-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01051.txt.bz2
Content-length: 443

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64955

David Malcolm <dmalcolm at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #7 from David Malcolm <dmalcolm at gcc dot gnu.org> ---
Marking as resolved.
>From gcc-bugs-return-533716-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 23:21:06 2016
Return-Path: <gcc-bugs-return-533716-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 48754 invoked by alias); 8 Aug 2016 23:21:06 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 48686 invoked by uid 48); 8 Aug 2016 23:20:52 -0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72836] global variable read clashes with reading from cin with sync_stdio(false)
Date: Mon, 08 Aug 2016 23:21:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-72836-4-pIhPZZ2axl@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72836-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72836-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01052.txt.bz2
Content-length: 595

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72836

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |INVALID

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
read is a standard ISO C/C++ function.  This is an ODR violation which is not
required be diagnosed.

Basically you re-declared read as a variable rather than a function.
>From gcc-bugs-return-533717-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 08 23:37:23 2016
Return-Path: <gcc-bugs-return-533717-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 62242 invoked by alias); 8 Aug 2016 23:37:23 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 62206 invoked by uid 48); 8 Aug 2016 23:37:19 -0000
From: "tulipawn at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/58306] Broken profiling for unrar sources: error: corrupted value profile: value profile counter (X out of Y) inconsistent with basic-block count
Date: Mon, 08 Aug 2016 23:37:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: tulipawn at gmail dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-58306-4-uUiSSv0L9g@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-58306-4@http.gcc.gnu.org/bugzilla/>
References: <bug-58306-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01053.txt.bz2
Content-length: 259

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58306

--- Comment #25 from PeteVine <tulipawn at gmail dot com> ---
Great news, thanks! What about backporting to 4.9? There's not going to be
another official release but manual patching could still be useful.
>From gcc-bugs-return-533718-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 01:47:30 2016
Return-Path: <gcc-bugs-return-533718-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 121748 invoked by alias); 9 Aug 2016 01:47:30 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 121675 invoked by uid 48); 9 Aug 2016 01:47:17 -0000
From: "wschmidt at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71815] SLSR misses several PHI candidate cases
Date: Tue, 09 Aug 2016 01:47:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wschmidt at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: wschmidt at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: attachments.created
Message-ID: <bug-71815-4-eK3S8qPKQf@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71815-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71815-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01054.txt.bz2
Content-length: 567

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71815

--- Comment #8 from Bill Schmidt <wschmidt at gcc dot gnu.org> ---
Created attachment 39085
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39085&action=edit
Patch under test

Attaching a patch that passes regstrap.  I want to do a little benchmarking
before submitting it upstream, and invite other targets to try it out also.  I
expect overall mildly positive to neutral results, but since it will cause us
to optimize more cases that are right on the cost bubble, it's worth checking
out first.
>From gcc-bugs-return-533719-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 03:37:00 2016
Return-Path: <gcc-bugs-return-533719-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 24918 invoked by alias); 9 Aug 2016 03:37:00 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 24794 invoked by uid 48); 9 Aug 2016 03:36:42 -0000
From: "amodra at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/71724] [5/6/7 Regression] ICE: Segmentation fault, deep recursion between combine_simplify_rtx and subst
Date: Tue, 09 Aug 2016 03:37:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 5.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: amodra at gmail dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc everconfirmed
Message-ID: <bug-71724-4-DoF3Btlh4d@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71724-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71724-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01055.txt.bz2
Content-length: 1079

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71724

Alan Modra <amodra at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-09
                 CC|                            |amodra at gmail dot com
     Ever confirmed|0                           |1

--- Comment #1 from Alan Modra <amodra at gmail dot com> ---
combine goes into infinite recursion inside this call:
 newpat = subst (newpat, i0dest, i0src, 0, 0, 0);

The args of the failing subst are:
x:
(parallel [
        (set (reg:SI 181)
            (plus:SI (ltu:SI (plus:SI (reg:SI 165)
                        (reg:SI 174 [ t9.0_1+4 ]))
                    (reg:SI 165))
                (reg:SI 173 [ t9.0_1 ])))
        (clobber (reg:SI 76 ca))
    ])
from:
(reg:SI 174 [ t9.0_1+4 ])
to:
(if_then_else:SI (eq (reg:CC 185)
        (const_int 0 [0]))
    (reg:SI 165)
    (reg:SI 174 [ t9.0_1+4 ]))
>From gcc-bugs-return-533720-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 04:34:30 2016
Return-Path: <gcc-bugs-return-533720-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 89661 invoked by alias); 9 Aug 2016 04:34:29 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 89514 invoked by uid 55); 9 Aug 2016 04:34:16 -0000
From: "jason at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/67131] [6 Regression] ICE: Segmentation fault
Date: Tue, 09 Aug 2016 04:34:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jason at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-67131-4-7O3qtJPUyG@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67131-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67131-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01056.txt.bz2
Content-length: 826

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67131

--- Comment #7 from Jason Merrill <jason at gcc dot gnu.org> ---
Author: jason
Date: Tue Aug  9 04:33:42 2016
New Revision: 239267

URL: https://gcc.gnu.org/viewcvs?rev=239267&root=gcc&view=rev
Log:
        Fix empty class parameters with constexpr.

        PR c++/67131
        * class.c (is_really_empty_class): Call complete_type.
        * constexpr.c (cxx_eval_constant_expression): Check
        is_really_empty_class.
        (potential_constant_expression_1): Likewise.  Check for error type.

Added:
    trunk/gcc/testsuite/g++.dg/cpp0x/constexpr-empty12.C
    trunk/gcc/testsuite/g++.dg/cpp0x/constexpr-empty13.C
Modified:
    trunk/gcc/cp/ChangeLog
    trunk/gcc/cp/class.c
    trunk/gcc/cp/constexpr.c
    trunk/gcc/testsuite/g++.dg/cpp1y/var-templ42.C
>From gcc-bugs-return-533721-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 05:47:07 2016
Return-Path: <gcc-bugs-return-533721-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 61978 invoked by alias); 9 Aug 2016 05:47:06 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 57796 invoked by uid 55); 9 Aug 2016 05:44:07 -0000
From: "amodra at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72802] powerpc64le: -mcpu=power9 emits lxssp instruction with offset that isn't a multiple of 4
Date: Tue, 09 Aug 2016 05:47:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: amodra at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: amodra at gmail dot com
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72802-4-hPHLibR8dg@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72802-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72802-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01057.txt.bz2
Content-length: 998

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72802

--- Comment #8 from Alan Modra <amodra at gcc dot gnu.org> ---
Author: amodra
Date: Tue Aug  9 05:43:29 2016
New Revision: 239269

URL: https://gcc.gnu.org/viewcvs?rev=239269&root=gcc&view=rev
Log:
[RS6000] PR72802 part 1, fix constraints for lxssp/stxssp

        PR target/72802
        * config/rs6000/rs6000.c (mem_operand_gpr): Remove vsx dform test.
        (mem_operand_ds_form): New predicate.
        * config/rs6000/rs6000-protos.h (mem_operand_ds_form): Declare.
        * config/rs6000/constraints.md (wY): New constraint.
        * config/rs6000/rs6000.md (f32_lm2, f32_sm2): Use wY for SF.
        (extendsfdf2_fpr): Replace o constraint with wY.

Modified:
    branches/gcc-6-branch/gcc/ChangeLog
    branches/gcc-6-branch/gcc/config/rs6000/constraints.md
    branches/gcc-6-branch/gcc/config/rs6000/rs6000-protos.h
    branches/gcc-6-branch/gcc/config/rs6000/rs6000.c
    branches/gcc-6-branch/gcc/config/rs6000/rs6000.md
>From gcc-bugs-return-533723-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 05:47:46 2016
Return-Path: <gcc-bugs-return-533723-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 77244 invoked by alias); 9 Aug 2016 05:47:45 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 77193 invoked by uid 48); 9 Aug 2016 05:47:37 -0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/66872] fold a & ((1 << b) - 1) to a & ~(-1 << b)
Date: Tue, 09 Aug 2016 05:47:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 5.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords cc bug_severity
Message-ID: <bug-66872-4-EJPZndbl6g@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-66872-4@http.gcc.gnu.org/bugzilla/>
References: <bug-66872-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01059.txt.bz2
Content-length: 445

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66872

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |missed-optimization
                 CC|                            |pinskia at gcc dot gnu.org
           Severity|normal                      |enhancement
>From gcc-bugs-return-533722-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 05:47:07 2016
Return-Path: <gcc-bugs-return-533722-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 63140 invoked by alias); 9 Aug 2016 05:47:07 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 58879 invoked by uid 55); 9 Aug 2016 05:45:22 -0000
From: "amodra at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72802] powerpc64le: -mcpu=power9 emits lxssp instruction with offset that isn't a multiple of 4
Date: Tue, 09 Aug 2016 05:47:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: amodra at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: amodra at gmail dot com
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72802-4-XVcRGKAXaS@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72802-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72802-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01058.txt.bz2
Content-length: 799

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72802

--- Comment #9 from Alan Modra <amodra at gcc dot gnu.org> ---
Author: amodra
Date: Tue Aug  9 05:44:39 2016
New Revision: 239270

URL: https://gcc.gnu.org/viewcvs?rev=239270&root=gcc&view=rev
Log:
[RS6000] PR72802 part 2, reload ICE

        PR target/72802
        * config/rs6000/rs6000.md (mov<mode>_hardfloat): Sort
        alternatives.  Put loads first, then stores, and reg/reg moves
        within same class later.  Delete attr length.
testsuite/
        * gcc.c-torture/compile/pr72802.c: New.

Added:
    branches/gcc-6-branch/gcc/testsuite/gcc.c-torture/compile/pr72802.c
Modified:
    branches/gcc-6-branch/gcc/ChangeLog
    branches/gcc-6-branch/gcc/config/rs6000/rs6000.md
    branches/gcc-6-branch/gcc/testsuite/ChangeLog
>From gcc-bugs-return-533724-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 05:50:49 2016
Return-Path: <gcc-bugs-return-533724-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 58859 invoked by alias); 9 Aug 2016 05:50:49 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 57498 invoked by uid 48); 9 Aug 2016 05:50:34 -0000
From: "amodra at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72802] powerpc64le: -mcpu=power9 emits lxssp instruction with offset that isn't a multiple of 4
Date: Tue, 09 Aug 2016 05:50:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: amodra at gmail dot com
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: amodra at gmail dot com
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution target_milestone
Message-ID: <bug-72802-4-68opfrT3iC@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72802-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72802-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01060.txt.bz2
Content-length: 468

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72802

Alan Modra <amodra at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED
   Target Milestone|---                         |6.2

--- Comment #10 from Alan Modra <amodra at gmail dot com> ---
Fixed
>From gcc-bugs-return-533727-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 05:54:27 2016
Return-Path: <gcc-bugs-return-533727-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 62383 invoked by alias); 9 Aug 2016 05:54:27 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 61261 invoked by uid 48); 9 Aug 2016 05:54:13 -0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/68855] PAREN_EXPR not "ignored" where possible
Date: Tue, 09 Aug 2016 05:54:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_severity
Message-ID: <bug-68855-4-z4j4ZDkcQo@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68855-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68855-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01063.txt.bz2
Content-length: 300

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68855

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|normal                      |enhancement
>From gcc-bugs-return-533726-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 05:54:13 2016
Return-Path: <gcc-bugs-return-533726-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 61045 invoked by alias); 9 Aug 2016 05:54:12 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 60969 invoked by uid 48); 9 Aug 2016 05:54:05 -0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/68855] PAREN_EXPR not "ignored" where possible
Date: Tue, 09 Aug 2016 05:54:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-68855-4-SRFvu6RrK7@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68855-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68855-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01062.txt.bz2
Content-length: 403

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68855

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-09
     Ever confirmed|0                           |1
>From gcc-bugs-return-533725-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 05:54:12 2016
Return-Path: <gcc-bugs-return-533725-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 61037 invoked by alias); 9 Aug 2016 05:54:12 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 60845 invoked by uid 48); 9 Aug 2016 05:53:59 -0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/68855] PAREN_EXPR not "ignored" where possible
Date: Tue, 09 Aug 2016 05:54:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-68855-4-rJrqCvI7dg@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68855-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68855-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01061.txt.bz2
Content-length: 182

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68855

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Confirmed, it might be easy to do this now on with match.pd.
>From gcc-bugs-return-533728-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 06:26:17 2016
Return-Path: <gcc-bugs-return-533728-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 32360 invoked by alias); 9 Aug 2016 06:26:16 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 32265 invoked by uid 48); 9 Aug 2016 06:26:03 -0000
From: "trippels at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72845] gcc crashes (ICE) when compiling program with complex noexcept declaration
Date: Tue, 09 Aug 2016 06:26:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: trippels at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc everconfirmed cf_known_to_fail
Message-ID: <bug-72845-4-vPZlvprOsK@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72845-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72845-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01064.txt.bz2
Content-length: 1091

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72845

Markus Trippelsdorf <trippels at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-09
                 CC|                            |trippels at gcc dot gnu.org
     Ever confirmed|0                           |1
      Known to fail|                            |5.4.0, 6.1.0, 7.0

--- Comment #1 from Markus Trippelsdorf <trippels at gcc dot gnu.org> ---
template <typename> struct g { static const int h = 0; };
template <typename i> void declval() { static_assert(!g<i>::h,""); }
template <typename> struct a {
  template <typename d, typename c>
  friend auto f(d &&, c &&) noexcept(declval<c>) -> decltype(declval<c>);
};
template <typename d, typename c> auto f(d &&, c &&) -> decltype(declval<c>);
struct e {};
static_assert((e{}, declval<a<int>>),"");

Clang accepts the code. Might be related to PR71784.
>From gcc-bugs-return-533729-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 06:29:45 2016
Return-Path: <gcc-bugs-return-533729-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 41734 invoked by alias); 9 Aug 2016 06:29:44 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 41680 invoked by uid 55); 9 Aug 2016 06:29:32 -0000
From: "tkoenig at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/69742] [5 Regression] ICE with -O3 and ASSOCIATE containing repeated expression
Date: Tue, 09 Aug 2016 06:29:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: tkoenig at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: tkoenig at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-69742-4-kH9Ccj2aW1@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69742-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69742-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01065.txt.bz2
Content-length: 847

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69742

--- Comment #9 from Thomas Koenig <tkoenig at gcc dot gnu.org> ---
Author: tkoenig
Date: Tue Aug  9 06:28:57 2016
New Revision: 239271

URL: https://gcc.gnu.org/viewcvs?rev=239271&root=gcc&view=rev
Log:
2016-08-09  Thomas Koenig  <tkoenig@gcc.gnu.org>

        Backport from trunk
        PR fortran/69742
        * frontend-passes.c (cfe-expr_0):  Don't register functions
        from within an ASSOCIATE statement.

2016-08-09  Thomas Koenig  <tkoenig@gcc.gnu.org>

        PR fortran/69742
        * gfortran.dg/associate_21.f90:  New test.


Added:
    branches/gcc-5-branch/gcc/testsuite/gfortran.dg/associate_21.f90
Modified:
    branches/gcc-5-branch/gcc/fortran/ChangeLog
    branches/gcc-5-branch/gcc/fortran/frontend-passes.c
    branches/gcc-5-branch/gcc/testsuite/ChangeLog
>From gcc-bugs-return-533730-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 06:30:32 2016
Return-Path: <gcc-bugs-return-533730-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 42765 invoked by alias); 9 Aug 2016 06:30:31 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 42683 invoked by uid 48); 9 Aug 2016 06:30:17 -0000
From: "tkoenig at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/69742] [5 Regression] ICE with -O3 and ASSOCIATE containing repeated expression
Date: Tue, 09 Aug 2016 06:30:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: tkoenig at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: tkoenig at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-69742-4-x3CVWJpSTO@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69742-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69742-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01066.txt.bz2
Content-length: 462

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69742

Thomas Koenig <tkoenig at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #10 from Thomas Koenig <tkoenig at gcc dot gnu.org> ---
Fixed on the final open branch, closing.
>From gcc-bugs-return-533731-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 06:32:44 2016
Return-Path: <gcc-bugs-return-533731-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 47543 invoked by alias); 9 Aug 2016 06:32:44 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 47460 invoked by uid 48); 9 Aug 2016 06:32:31 -0000
From: "tkoenig at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/71902] [5/6/7 Regression] Unneeded temporary on reallocatable character assignment
Date: Tue, 09 Aug 2016 06:32:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: tkoenig at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: tkoenig at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: short_desc
Message-ID: <bug-71902-4-CHTb2iPrIx@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71902-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71902-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01067.txt.bz2
Content-length: 576

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71902

Thomas Koenig <tkoenig at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|[5/6 Regression] Unneeded   |[5/6/7 Regression] Unneeded
                   |temporary on reallocatable  |temporary on reallocatable
                   |character assignment        |character assignment

--- Comment #7 from Thomas Koenig <tkoenig at gcc dot gnu.org> ---
After the revert, it is again a 7 regression.
>From gcc-bugs-return-533732-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 06:42:38 2016
Return-Path: <gcc-bugs-return-533732-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 4189 invoked by alias); 9 Aug 2016 06:42:37 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 4128 invoked by uid 48); 9 Aug 2016 06:42:30 -0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/67815] Optimize const1 * copysign (const2, y) into copysign (const1 * const2, y) if const1 > 0 or -copysign (const1 * const2, y) if const1 < 0
Date: Tue, 09 Aug 2016 06:42:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 5.2.1
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: mpolacek at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_severity
Message-ID: <bug-67815-4-uAM7Uj78A2@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67815-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67815-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01068.txt.bz2
Content-length: 369

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67815

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |missed-optimization
           Severity|normal                      |enhancement
>From gcc-bugs-return-533733-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 06:51:54 2016
Return-Path: <gcc-bugs-return-533733-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 23236 invoked by alias); 9 Aug 2016 06:51:54 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 22299 invoked by uid 55); 9 Aug 2016 06:51:41 -0000
From: "ro at CeBiTec dot Uni-Bielefeld.DE" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/72833] [7 regression] error in fortran/parse.c (unexpected_eof) on Mac OS X 10.7
Date: Tue, 09 Aug 2016 06:51:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ro at CeBiTec dot Uni-Bielefeld.DE
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72833-4-6BgxowGfCs@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72833-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72833-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01069.txt.bz2
Content-length: 813

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72833

--- Comment #13 from ro at CeBiTec dot Uni-Bielefeld.DE <ro at CeBiTec dot Uni-Bielefeld.DE> ---
> --- Comment #11 from Bernd Edlinger <bernd.edlinger at hotmail dot de> ---
> Created attachment 39082
>   --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39082&action=edit
> updated patch
>
> patch both variants of longjmp.
> this time make check-fixincludes should pass.

The x86_64-apple-darwin11 bootstrap with the previous version of the
patch went fine (but stopped building libjava for unrelated reasons),
and the i686-apple-darwin11 one with the current version is well into
stage3, the fixed i386/setjmp.h differing only by the additional fix for
additional fix for siglongjmp.

So from my POV the patch is good to go.

Thanks.
        Rainer
>From gcc-bugs-return-533734-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 07:01:32 2016
Return-Path: <gcc-bugs-return-533734-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 83879 invoked by alias); 9 Aug 2016 07:01:32 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 83746 invoked by uid 48); 9 Aug 2016 07:01:19 -0000
From: "asolokha at gmx dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/71680] [7 Regression] ICE: Max. number of generated reload insns per insn is achieved (90) w/ -Os -mlra
Date: Tue, 09 Aug 2016 07:01:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: patch, ra
X-Bugzilla-Severity: normal
X-Bugzilla-Who: asolokha at gmx dot com
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: amodra at gmail dot com
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71680-4-TpL3zzLDqA@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71680-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71680-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01070.txt.bz2
Content-length: 455

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71680

--- Comment #15 from Arseny Solokha <asolokha at gmx dot com> ---
(In reply to Alan Modra from comment #14)
> Arseny, you might like to try this.  I don't have the means at the moment to
> properly test e500 support (ie. run the gcc testsuite) without building a
> whole lot of infrastructure.

This patch fixed the original issue and survived regression testing w/o
introducing any new regression.
>From gcc-bugs-return-533735-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 07:24:36 2016
Return-Path: <gcc-bugs-return-533735-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 94618 invoked by alias); 9 Aug 2016 07:24:35 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 94547 invoked by uid 55); 9 Aug 2016 07:24:23 -0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72809] ICE on x86_64-linux-gnu (Segmentation fault, tree_check)
Date: Tue, 09 Aug 2016 07:24:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72809-4-ADmtxH4VOT@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72809-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72809-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01071.txt.bz2
Content-length: 586

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72809

--- Comment #1 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Author: jakub
Date: Tue Aug  9 07:23:47 2016
New Revision: 239272

URL: https://gcc.gnu.org/viewcvs?rev=239272&root=gcc&view=rev
Log:
        PR c++/72809
        * rtti.c (get_pseudo_ti_index): Return TK_CLASS_TYPE for
        builtin aggregate types without TYPE_BINFO.

        * g++.dg/eh/stdarg1.C: New test.

Added:
    trunk/gcc/testsuite/g++.dg/eh/stdarg1.C
Modified:
    trunk/gcc/cp/ChangeLog
    trunk/gcc/cp/rtti.c
    trunk/gcc/testsuite/ChangeLog
>From gcc-bugs-return-533736-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 07:32:40 2016
Return-Path: <gcc-bugs-return-533736-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 26905 invoked by alias); 9 Aug 2016 07:32:40 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 26813 invoked by uid 48); 9 Aug 2016 07:32:26 -0000
From: "asolokha at gmx dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/72829] [7 Regression] ICE in extract_constrain_insn, at recog.c:2211 (error: insn does not satisfy its constraints) on 32-bit BE powerpc
Date: Tue, 09 Aug 2016 07:32:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: build, ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: asolokha at gmx dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: see_also
Message-ID: <bug-72829-4-Sznc8pnZcf@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72829-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72829-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01072.txt.bz2
Content-length: 1153

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72829

Arseny Solokha <asolokha at gmx dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           See Also|https://gcc.gnu.org/bugzill |
                   |a/show_bug.cgi?id=69847     |

--- Comment #1 from Arseny Solokha <asolokha at gmx dot com> ---
(In reply to Arseny Solokha from comment #0)
> I believe this could be either a fallout after PR69847, or a result of
> turning LRA on by default.

The latter:

% powerpc-e500v2-linux-gnuspe-gcc-7.0.0-alpha20160731 -c -O2 -mlra -o tt tt.c 
tt.c: In function 'internal_strncpy':
tt.c:17:1: error: insn does not satisfy its constraints:
 }
 ^
(insn 101 97 118 7 (parallel [
            (set (reg:CC 75 7 [209])
                (compare:CC (reg/v:SI 4 4 [orig:194 n ] [194])
                    (const_int 0 [0])))
            (set (reg:SI 66 ctr [orig:208 n ] [208])
                (reg/v:SI 4 4 [orig:194 n ] [194]))
        ]) 453 {*movsi_internal2}
     (nil))
tt.c:17:1: internal compiler error: in extract_constrain_insn, at recog.c:2211
>From gcc-bugs-return-533737-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 07:39:03 2016
Return-Path: <gcc-bugs-return-533737-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 43204 invoked by alias); 9 Aug 2016 07:39:02 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 43069 invoked by uid 55); 9 Aug 2016 07:38:51 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/68273] [5/6/7 Regression] Wrong code on mips/mipsel due to (invalid?) peeking at alignments in function_arg.
Date: Tue, 09 Aug 2016 07:39:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 5.2.1
X-Bugzilla-Keywords: ABI, wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-68273-4-3MM6Q8E56J@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68273-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68273-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01073.txt.bz2
Content-length: 541

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68273

--- Comment #38 from Richard Biener <rguenth at gcc dot gnu.org> ---
Author: rguenth
Date: Tue Aug  9 07:38:13 2016
New Revision: 239273

URL: https://gcc.gnu.org/viewcvs?rev=239273&root=gcc&view=rev
Log:
2016-08-09  Richard Biener  <rguenther@suse.de>

        PR ipa/68273
        * ipa-prop.c (ipa_modify_formal_parameters): Build
        parameter types with natural alignment also for the
        over-aligned case.

Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/ipa-prop.c
>From gcc-bugs-return-533738-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 07:41:37 2016
Return-Path: <gcc-bugs-return-533738-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 45143 invoked by alias); 9 Aug 2016 07:41:36 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 44919 invoked by uid 55); 9 Aug 2016 07:41:22 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71802] [7 Regression] gcc ICE at -O3 on valid code on x86_64-linux-gnu in expand_LOOP_VECTORIZED
Date: Tue, 09 Aug 2016 07:41:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71802-4-85FrykBupO@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71802-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71802-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01074.txt.bz2
Content-length: 680

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71802

--- Comment #5 from Richard Biener <rguenth at gcc dot gnu.org> ---
Author: rguenth
Date: Tue Aug  9 07:40:50 2016
New Revision: 239274

URL: https://gcc.gnu.org/viewcvs?rev=239274&root=gcc&view=rev
Log:
2016-08-09  Richard Biener  <rguenther@suse.de>

        PR tree-optimization/71802
        * tree-cfgcleanup.c (cleanup_tree_cfg_bb): Make sure to catch
        all merge opportunities with the predecessor.

        * gcc.dg/torture/pr71802.c: New testcase.

Added:
    trunk/gcc/testsuite/gcc.dg/torture/pr71802.c
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/tree-cfgcleanup.c
>From gcc-bugs-return-533739-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 07:50:00 2016
Return-Path: <gcc-bugs-return-533739-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 66900 invoked by alias); 9 Aug 2016 07:50:00 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 64020 invoked by uid 55); 9 Aug 2016 07:49:46 -0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/72824] [5/6/7 Regression] Signed floating point zero semantics broken at optimization level -O3 (tree-loop-distribute-patterns)
Date: Tue, 09 Aug 2016 07:50:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72824-4-otUaohShN2@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72824-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72824-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01075.txt.bz2
Content-length: 636

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72824

--- Comment #5 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Author: jakub
Date: Tue Aug  9 07:49:14 2016
New Revision: 239275

URL: https://gcc.gnu.org/viewcvs?rev=239275&root=gcc&view=rev
Log:
        PR tree-optimization/72824
        * tree-loop-distribution.c (const_with_all_bytes_same): Verify
        real_zerop is not negative.

        * gcc.c-torture/execute/ieee/pr72824.c: New test.

Added:
    trunk/gcc/testsuite/gcc.c-torture/execute/ieee/pr72824.c
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/tree-loop-distribution.c
>From gcc-bugs-return-533741-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 07:50:59 2016
Return-Path: <gcc-bugs-return-533741-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 69016 invoked by alias); 9 Aug 2016 07:50:58 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 68951 invoked by uid 48); 9 Aug 2016 07:50:52 -0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/72824] [5/6 Regression] Signed floating point zero semantics broken at optimization level -O3 (tree-loop-distribute-patterns)
Date: Tue, 09 Aug 2016 07:50:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cf_known_to_work short_desc cf_known_to_fail
Message-ID: <bug-72824-4-HoJqNSatGh@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72824-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72824-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01077.txt.bz2
Content-length: 847

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72824

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
      Known to work|                            |7.0
            Summary|[5/6/7 Regression] Signed   |[5/6 Regression] Signed
                   |floating point zero         |floating point zero
                   |semantics broken at         |semantics broken at
                   |optimization level -O3      |optimization level -O3
                   |(tree-loop-distribute-patte |(tree-loop-distribute-patte
                   |rns)                        |rns)
      Known to fail|7.0                         |

--- Comment #6 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Fixed on the trunk so far.
>From gcc-bugs-return-533740-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 07:50:35 2016
Return-Path: <gcc-bugs-return-533740-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 68148 invoked by alias); 9 Aug 2016 07:50:34 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 67897 invoked by uid 48); 9 Aug 2016 07:50:22 -0000
From: "trippels at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72849] New: [7 Regression] r239267 causes Firefox build failure
Date: Tue, 09 Aug 2016 07:50:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: trippels at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-72849-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01076.txt.bz2
Content-length: 2769

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72849

            Bug ID: 72849
           Summary: [7 Regression] r239267 causes Firefox build failure
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: trippels at gcc dot gnu.org
  Target Milestone: ---

trippels@gcc2-power8 thebes % /home/trippels/gcc_test/usr/local/bin/c++ -w -c
Unified_cpp_gfx_thebes0.ii
In file included from
/home/trippels/gecko-dev/gfx/thebes/gfxBaseSharedMemorySurface.cpp:1:0,
                 from
/home/trippels/moz-build-dir/gfx/thebes/Unified_cpp_gfx_thebes0.cpp:29:
/home/trippels/gecko-dev/gfx/thebes/gfxBaseSharedMemorySurface.h: In static
member function ‘static bool gfxBaseSharedMemorySurface<Base,
Sub>::IsSharedImage(gfxASurface*)’:
/home/trippels/gecko-dev/gfx/thebes/gfxBaseSharedMemorySurface.h:96:39:
internal compiler error: Segmentation fault
                  const gfxIntSize& aSize,
                                       ^~~    
0x10b014d3 crash_signal
        ../../gcc/gcc/toplev.c:335
0x102a9114 tree_check
        ../../gcc/gcc/tree.h:3022
0x102a9114 is_really_empty_class(tree_node*)
        ../../gcc/gcc/cp/class.c:8426
0x1047aad3 cxx_eval_constant_expression
        ../../gcc/gcc/cp/constexpr.c:3702
0x1047331f cxx_eval_outermost_constant_expr
        ../../gcc/gcc/cp/constexpr.c:4383
0x10483a03 fold_non_dependent_expr(tree_node*)
        ../../gcc/gcc/cp/constexpr.c:4662
0x1020d997 build_non_dependent_expr(tree_node*)
        ../../gcc/gcc/cp/pt.c:23802
0x1035b9cb build_x_unary_op(unsigned int, tree_code, cp_expr, int)
        ../../gcc/gcc/cp/typeck.c:5353
0x1030b287 cp_parser_unary_expression
        ../../gcc/gcc/cp/parser.c:7966
0x10317bcf cp_parser_cast_expression
        ../../gcc/gcc/cp/parser.c:8693
0x10318357 cp_parser_binary_expression
        ../../gcc/gcc/cp/parser.c:8795
0x10318e93 cp_parser_assignment_expression
        ../../gcc/gcc/cp/parser.c:9083
0x1031b30f cp_parser_parenthesized_expression_list
        ../../gcc/gcc/cp/parser.c:7487
0x1030d7e3 cp_parser_postfix_expression
        ../../gcc/gcc/cp/parser.c:6795
0x1030b06f cp_parser_unary_expression
        ../../gcc/gcc/cp/parser.c:8016
0x10317bcf cp_parser_cast_expression
        ../../gcc/gcc/cp/parser.c:8693
0x1031872f cp_parser_simple_cast_expression
        ../../gcc/gcc/cp/parser.c:26014
0x1031872f cp_parser_binary_expression
        ../../gcc/gcc/cp/parser.c:8858
0x10318e93 cp_parser_assignment_expression
        ../../gcc/gcc/cp/parser.c:9083
0x1031c667 cp_parser_expression
        ../../gcc/gcc/cp/parser.c:9250
Please submit a full bug report,

Reducing...
>From gcc-bugs-return-533742-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 07:51:27 2016
Return-Path: <gcc-bugs-return-533742-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 69805 invoked by alias); 9 Aug 2016 07:51:27 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 69762 invoked by uid 48); 9 Aug 2016 07:51:23 -0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72809] ICE on x86_64-linux-gnu (Segmentation fault, tree_check)
Date: Tue, 09 Aug 2016 07:51:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cc resolution
Message-ID: <bug-72809-4-cnskhIQLYl@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72809-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72809-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01078.txt.bz2
Content-length: 497

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72809

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
                 CC|                            |jakub at gcc dot gnu.org
         Resolution|---                         |FIXED

--- Comment #2 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Fixed.
>From gcc-bugs-return-533743-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 07:52:12 2016
Return-Path: <gcc-bugs-return-533743-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 72100 invoked by alias); 9 Aug 2016 07:52:11 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 72042 invoked by uid 48); 9 Aug 2016 07:52:05 -0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/72716] [5/6 Regression] ICE in gfc_resolve_omp_declare_simd, at fortran/openmp.c:5156
Date: Tue, 09 Aug 2016 07:52:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone short_desc
Message-ID: <bug-72716-4-WlBfxI2Qs1@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72716-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72716-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01079.txt.bz2
Content-length: 610

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72716

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |5.5
            Summary|[5/6/7 Regression] ICE in   |[5/6 Regression] ICE in
                   |gfc_resolve_omp_declare_sim |gfc_resolve_omp_declare_sim
                   |d, at fortran/openmp.c:5156 |d, at fortran/openmp.c:5156

--- Comment #4 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Fixed on the trunk so far.
>From gcc-bugs-return-533744-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 07:53:08 2016
Return-Path: <gcc-bugs-return-533744-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 73075 invoked by alias); 9 Aug 2016 07:53:08 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 72870 invoked by uid 48); 9 Aug 2016 07:52:55 -0000
From: "t.artem at mailcity dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/58306] Broken profiling for unrar sources: error: corrupted value profile: value profile counter (X out of Y) inconsistent with basic-block count
Date: Tue, 09 Aug 2016 07:53:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: t.artem at mailcity dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-58306-4-1FxxDx542c@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-58306-4@http.gcc.gnu.org/bugzilla/>
References: <bug-58306-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01080.txt.bz2
Content-length: 680

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58306

--- Comment #26 from Artem S. Tashkinov <t.artem at mailcity dot com> ---
(In reply to Martin Liška from comment #24)
> > Wonderful! What are the chances of this patch being merged with GCC 4.9.x?
> 
> Any, because 4.9 was closed last week and there's not going to be any
> release.
> If you are interested, I can back-port patches to both 5 and 6 branches?

Only if it's relatively straightforward and fast for you. Since you're such a
prolific bug solver, the project will benefit a lot more if you keep on solving
new unresolved bugs, instead of backporting them. So, suit yourself. And thank
you very much!
>From gcc-bugs-return-533745-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 08:07:16 2016
Return-Path: <gcc-bugs-return-533745-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 115999 invoked by alias); 9 Aug 2016 08:07:15 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 115900 invoked by uid 48); 9 Aug 2016 08:07:03 -0000
From: "asolokha at gmx dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/71629] [7 Regression] ICE in lra_set_insn_recog_data, at lra.c:964 w/ -O2 -mlra
Date: Tue, 09 Aug 2016 08:07:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code, ra
X-Bugzilla-Severity: normal
X-Bugzilla-Who: asolokha at gmx dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71629-4-Otb3wwPipe@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71629-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71629-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01081.txt.bz2
Content-length: 190

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71629

--- Comment #1 from Arseny Solokha <asolokha at gmx dot com> ---
-fstack-protector -fPIC are also necessary here, just like in PR71680.
>From gcc-bugs-return-533746-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 08:27:45 2016
Return-Path: <gcc-bugs-return-533746-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 20598 invoked by alias); 9 Aug 2016 08:27:45 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 20371 invoked by uid 48); 9 Aug 2016 08:27:32 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/38401] TreeSSA-PRE load after store missed optimization
Date: Tue, 09 Aug 2016 08:27:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 4.4.0
X-Bugzilla-Keywords: missed-optimization, TREE
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-38401-4-APWn2JV8c0@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-38401-4@http.gcc.gnu.org/bugzilla/>
References: <bug-38401-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01082.txt.bz2
Content-length: 214

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=38401

--- Comment #27 from Richard Biener <rguenth at gcc dot gnu.org> ---
I'm testing my original patch now and have thrown it on one of our SPEC testers
as well.
>From gcc-bugs-return-533747-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 08:28:15 2016
Return-Path: <gcc-bugs-return-533747-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 22129 invoked by alias); 9 Aug 2016 08:28:14 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 21986 invoked by uid 48); 9 Aug 2016 08:28:02 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71802] [7 Regression] gcc ICE at -O3 on valid code on x86_64-linux-gnu in expand_LOOP_VECTORIZED
Date: Tue, 09 Aug 2016 08:28:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-71802-4-dwRn6fp03k@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71802-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71802-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01083.txt.bz2
Content-length: 429

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71802

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #6 from Richard Biener <rguenth at gcc dot gnu.org> ---
Fixed.
>From gcc-bugs-return-533748-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 08:31:48 2016
Return-Path: <gcc-bugs-return-533748-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 26276 invoked by alias); 9 Aug 2016 08:31:48 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 26168 invoked by uid 48); 9 Aug 2016 08:31:34 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/43817] Runtime endian-ness check is not optimized on the tree level
Date: Tue, 09 Aug 2016 08:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 4.6.0
X-Bugzilla-Keywords: missed-optimization, TREE
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 4.7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_known_to_work resolution target_milestone cf_known_to_fail
Message-ID: <bug-43817-4-kVhJr81TwW@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-43817-4@http.gcc.gnu.org/bugzilla/>
References: <bug-43817-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01084.txt.bz2
Content-length: 601

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=43817

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
      Known to work|                            |4.7.0
         Resolution|---                         |FIXED
   Target Milestone|---                         |4.7.0
      Known to fail|                            |4.6.4

--- Comment #3 from Richard Biener <rguenth at gcc dot gnu.org> ---
4.7 actually.
>From gcc-bugs-return-533749-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 08:43:02 2016
Return-Path: <gcc-bugs-return-533749-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 68571 invoked by alias); 9 Aug 2016 08:43:02 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 38260 invoked by uid 48); 9 Aug 2016 08:42:49 -0000
From: "trippels at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72849] [7 Regression] r239267 causes Firefox build failure
Date: Tue, 09 Aug 2016 08:43:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: trippels at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc everconfirmed
Message-ID: <bug-72849-4-BEQz2jWV7u@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72849-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72849-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01085.txt.bz2
Content-length: 618

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72849

Markus Trippelsdorf <trippels at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-09
                 CC|                            |jason at gcc dot gnu.org
     Ever confirmed|0                           |1

--- Comment #1 from Markus Trippelsdorf <trippels at gcc dot gnu.org> ---
extern struct Foo a;
template <typename> void fn1() { a; }
>From gcc-bugs-return-533750-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 08:54:36 2016
Return-Path: <gcc-bugs-return-533750-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 6138 invoked by alias); 9 Aug 2016 08:54:35 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 130546 invoked by uid 48); 9 Aug 2016 08:54:21 -0000
From: "thopre01 at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/71078] x/abs(x) -> sign(1.0,x)
Date: Tue, 09 Aug 2016 08:54:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: thopre01 at gcc dot gnu.org
X-Bugzilla-Status: REOPENED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cc resolution
Message-ID: <bug-71078-4-piLN99scXb@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71078-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71078-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01086.txt.bz2
Content-length: 1529

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71078

Thomas Preud'homme <thopre01 at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
                 CC|                            |thopre01 at gcc dot gnu.org
         Resolution|FIXED                       |---

--- Comment #10 from Thomas Preud'homme <thopre01 at gcc dot gnu.org> ---
Hi,

The following tests are still failing for me on arm-none-eabi targets:

FAIL: gcc.dg/tree-ssa/pr71078-1.c scan-tree-dump forwprop1
"__builtin_copysignf"
FAIL: gcc.dg/tree-ssa/pr71078-1-double.c scan-tree-dump forwprop1
"__builtin_copysign"
FAIL: gcc.dg/tree-ssa/pr71078-2.c scan-tree-dump forwprop1
"__builtin_copysignf"
FAIL: gcc.dg/tree-ssa/pr71078-2-double.c scan-tree-dump forwprop1
"__builtin_copysign"
FAIL: gcc.dg/tree-ssa/pr71078-3.c scan-tree-dump forwprop1 "__builtin_copysign"


My investigation for pr71078-1.c led me to the first if block in
gimple_fold_stmt_to_constant_1. if gimple_simplify returns true as it does when
matching the x / abs(x) -> copysign (1.0, x) match.pd pattern. However
gimple_simplified_result_is_gimple_val is false because copysign is a builtin
and mprts_hook is NULL at this point.

The switch that follows goes in GIMPLE_BINARY_RHS case to return NULL_TREE
because it does not recognize an operation it knows about.

I suspect the same happens for the other testcases.
>From gcc-bugs-return-533751-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 09:01:47 2016
Return-Path: <gcc-bugs-return-533751-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 67886 invoked by alias); 9 Aug 2016 09:01:47 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 67774 invoked by uid 48); 9 Aug 2016 09:01:34 -0000
From: "prathamesh3492 at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/71078] x/abs(x) -> sign(1.0,x)
Date: Tue, 09 Aug 2016 09:01:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: prathamesh3492 at gcc dot gnu.org
X-Bugzilla-Status: REOPENED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71078-4-L7vaxOKEmq@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71078-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71078-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01087.txt.bz2
Content-length: 1462

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71078

--- Comment #11 from prathamesh3492 at gcc dot gnu.org ---
(In reply to Thomas Preud'homme from comment #10)
> Hi,
> 
> The following tests are still failing for me on arm-none-eabi targets:
> 
> FAIL: gcc.dg/tree-ssa/pr71078-1.c scan-tree-dump forwprop1
> "__builtin_copysignf"
> FAIL: gcc.dg/tree-ssa/pr71078-1-double.c scan-tree-dump forwprop1
> "__builtin_copysign"
> FAIL: gcc.dg/tree-ssa/pr71078-2.c scan-tree-dump forwprop1
> "__builtin_copysignf"
> FAIL: gcc.dg/tree-ssa/pr71078-2-double.c scan-tree-dump forwprop1
> "__builtin_copysign"
> FAIL: gcc.dg/tree-ssa/pr71078-3.c scan-tree-dump forwprop1
> "__builtin_copysign"
> 
> 
> My investigation for pr71078-1.c led me to the first if block in
> gimple_fold_stmt_to_constant_1. if gimple_simplify returns true as it does
> when matching the x / abs(x) -> copysign (1.0, x) match.pd pattern. However
> gimple_simplified_result_is_gimple_val is false because copysign is a
> builtin and mprts_hook is NULL at this point.
> 
> The switch that follows goes in GIMPLE_BINARY_RHS case to return NULL_TREE
> because it does not recognize an operation it knows about.
> 
> I suspect the same happens for the other testcases.
Hi,
I committed r239255, which restricts the test-cases to c99_runtime
because they were failing on bare-metal arm and aarch64 targets,
The commit worked for me.
Could you please try with r239255 ?

Thanks,
Prathamesh
>From gcc-bugs-return-533752-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 09:03:55 2016
Return-Path: <gcc-bugs-return-533752-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 74922 invoked by alias); 9 Aug 2016 09:03:54 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 74600 invoked by uid 55); 9 Aug 2016 09:03:42 -0000
From: "rguenther at suse dot de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/71078] x/abs(x) -> sign(1.0,x)
Date: Tue, 09 Aug 2016 09:03:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenther at suse dot de
X-Bugzilla-Status: REOPENED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71078-4-CKkG16wN38@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71078-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71078-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01088.txt.bz2
Content-length: 2125

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71078

--- Comment #12 from rguenther at suse dot de <rguenther at suse dot de> ---
On Tue, 9 Aug 2016, thopre01 at gcc dot gnu.org wrote:

> https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71078
> 
> Thomas Preud'homme <thopre01 at gcc dot gnu.org> changed:
> 
>            What    |Removed                     |Added
> ----------------------------------------------------------------------------
>              Status|RESOLVED                    |REOPENED
>                  CC|                            |thopre01 at gcc dot gnu.org
>          Resolution|FIXED                       |---
> 
> --- Comment #10 from Thomas Preud'homme <thopre01 at gcc dot gnu.org> ---
> Hi,
> 
> The following tests are still failing for me on arm-none-eabi targets:
> 
> FAIL: gcc.dg/tree-ssa/pr71078-1.c scan-tree-dump forwprop1
> "__builtin_copysignf"
> FAIL: gcc.dg/tree-ssa/pr71078-1-double.c scan-tree-dump forwprop1
> "__builtin_copysign"
> FAIL: gcc.dg/tree-ssa/pr71078-2.c scan-tree-dump forwprop1
> "__builtin_copysignf"
> FAIL: gcc.dg/tree-ssa/pr71078-2-double.c scan-tree-dump forwprop1
> "__builtin_copysign"
> FAIL: gcc.dg/tree-ssa/pr71078-3.c scan-tree-dump forwprop1 "__builtin_copysign"
> 
> 
> My investigation for pr71078-1.c led me to the first if block in
> gimple_fold_stmt_to_constant_1. if gimple_simplify returns true as it does when
> matching the x / abs(x) -> copysign (1.0, x) match.pd pattern. However
> gimple_simplified_result_is_gimple_val is false because copysign is a builtin
> and mprts_hook is NULL at this point.
> 
> The switch that follows goes in GIMPLE_BINARY_RHS case to return NULL_TREE
> because it does not recognize an operation it knows about.
> 
> I suspect the same happens for the other testcases.

forwprop uses fold_stmt, not gimple_fold_stmt_to_constant.  The relevant
condition is in replace_stmt_with_simplification / maybe_push_res_to_seq:

          /* Find the function we want to call.  */
          tree decl = builtin_decl_implicit (as_builtin_fn (fn));
          if (!decl)
            return NULL;
>From gcc-bugs-return-533753-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 09:11:13 2016
Return-Path: <gcc-bugs-return-533753-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 115849 invoked by alias); 9 Aug 2016 09:11:13 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 115734 invoked by uid 48); 9 Aug 2016 09:11:00 -0000
From: "thopre01 at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/71078] x/abs(x) -> sign(1.0,x)
Date: Tue, 09 Aug 2016 09:11:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: thopre01 at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-71078-4-H3B0Aa4yrX@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71078-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71078-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01089.txt.bz2
Content-length: 1978

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71078

Thomas Preud'homme <thopre01 at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|REOPENED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #13 from Thomas Preud'homme <thopre01 at gcc dot gnu.org> ---
(In reply to prathamesh3492 from comment #11)
> (In reply to Thomas Preud'homme from comment #10)
> > Hi,
> > 
> > The following tests are still failing for me on arm-none-eabi targets:
> > 
> > FAIL: gcc.dg/tree-ssa/pr71078-1.c scan-tree-dump forwprop1
> > "__builtin_copysignf"
> > FAIL: gcc.dg/tree-ssa/pr71078-1-double.c scan-tree-dump forwprop1
> > "__builtin_copysign"
> > FAIL: gcc.dg/tree-ssa/pr71078-2.c scan-tree-dump forwprop1
> > "__builtin_copysignf"
> > FAIL: gcc.dg/tree-ssa/pr71078-2-double.c scan-tree-dump forwprop1
> > "__builtin_copysign"
> > FAIL: gcc.dg/tree-ssa/pr71078-3.c scan-tree-dump forwprop1
> > "__builtin_copysign"
> > 
> > 
> > My investigation for pr71078-1.c led me to the first if block in
> > gimple_fold_stmt_to_constant_1. if gimple_simplify returns true as it does
> > when matching the x / abs(x) -> copysign (1.0, x) match.pd pattern. However
> > gimple_simplified_result_is_gimple_val is false because copysign is a
> > builtin and mprts_hook is NULL at this point.
> > 
> > The switch that follows goes in GIMPLE_BINARY_RHS case to return NULL_TREE
> > because it does not recognize an operation it knows about.
> > 
> > I suspect the same happens for the other testcases.
> Hi,
> I committed r239255, which restricts the test-cases to c99_runtime
> because they were failing on bare-metal arm and aarch64 targets,
> The commit worked for me.
> Could you please try with r239255 ?

Sorry for the fuss, it is indeed fixed. The build was from few hours before.

Thanks!

Best regards.
>From gcc-bugs-return-533754-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 10:01:16 2016
Return-Path: <gcc-bugs-return-533754-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 94825 invoked by alias); 9 Aug 2016 10:01:15 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 94672 invoked by uid 48); 9 Aug 2016 10:01:03 -0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72811] ICE on invalid C++ code on x86_64-linux-gnu (internal compiler error: in instantiate_type, perform_implicit_conversion_flags)
Date: Tue, 09 Aug 2016 10:01:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on cc target_milestone everconfirmed
Message-ID: <bug-72811-4-SIcNe86lKv@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72811-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72811-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01090.txt.bz2
Content-length: 721

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72811

Martin Liška <marxin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |ice-on-invalid-code
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-09
                 CC|                            |marxin at gcc dot gnu.org
   Target Milestone|---                         |5.5
     Ever confirmed|0                           |1

--- Comment #1 from Martin Liška <marxin at gcc dot gnu.org> ---
Confirmed, ICEs for revisions I have (4.5.0+).
>From gcc-bugs-return-533755-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 10:14:40 2016
Return-Path: <gcc-bugs-return-533755-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 2357 invoked by alias); 9 Aug 2016 10:14:40 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 2321 invoked by uid 48); 9 Aug 2016 10:14:27 -0000
From: "thopre01 at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug testsuite/72850] New: FAIL: gcc.dg/tree-ssa/pr69270-3.c scan-tree-dump-times uncprop1 ", 1" 4
Date: Tue, 09 Aug 2016 10:14:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: testsuite
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: thopre01 at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter cc target_milestone cf_gcctarget attachments.created
Message-ID: <bug-72850-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01091.txt.bz2
Content-length: 1078

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72850

            Bug ID: 72850
           Summary: FAIL: gcc.dg/tree-ssa/pr69270-3.c scan-tree-dump-times
                    uncprop1 ", 1" 4
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: testsuite
          Assignee: unassigned at gcc dot gnu.org
          Reporter: thopre01 at gcc dot gnu.org
                CC: hubicka at gcc dot gnu.org
  Target Milestone: ---
            Target: arm-none-eabi

Created attachment 39086
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39086&action=edit
uncprop1, thread1, thread2, thread3 and thread4 dump before and after

Hi,

As of r239219, gcc.dg/tree-ssa/pr69270-3.c started to FAIL on arm-none-eabi
targets for its scan-tree-dump-times uncprop1 ", 1" 4 check. Attached to this
bug report are the dumps for uncprop1 and threads passes before and after that
commit. The FAIL happens at least for Cortex-M0, Cortex-M3, Cortex-M4 and
Cortex-M7 ARM CPUs.

Best regards.
>From gcc-bugs-return-533756-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 10:18:40 2016
Return-Path: <gcc-bugs-return-533756-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 5777 invoked by alias); 9 Aug 2016 10:18:39 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 5394 invoked by uid 48); 9 Aug 2016 10:18:26 -0000
From: "schwab@linux-m68k.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/66415] [6 Regression] ice in location_column_from_byte_offset
Date: Tue, 09 Aug 2016 10:18:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: schwab@linux-m68k.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: mpolacek at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-66415-4-2SdyPVk6Sp@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-66415-4@http.gcc.gnu.org/bugzilla/>
References: <bug-66415-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01092.txt.bz2
Content-length: 885

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66415

--- Comment #11 from Andreas Schwab <schwab@linux-m68k.org> ---
FAIL: gcc.dg/cpp/pr66415-1.c expected multiline pattern lines 11-12 not found:
"\s*__builtin_printf                               
\("xxxxxxxxxxxxxxxxx%dxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"\);.*\n
                                                                     ~\^\n"
FAIL: gcc.dg/cpp/pr66415-1.c (test for excess errors)
Excess errors:
 __builtin_printf                               
("xxxxxxxxxxxxxxxxx%dxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx");
/* { dg-warning "71:format" } */
                                                                    ~^

There are only 68 spaces before '~'.
>From gcc-bugs-return-533757-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 10:21:18 2016
Return-Path: <gcc-bugs-return-533757-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 10266 invoked by alias); 9 Aug 2016 10:21:17 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 10180 invoked by uid 48); 9 Aug 2016 10:21:05 -0000
From: "schwab@linux-m68k.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug testsuite/72850] FAIL: gcc.dg/tree-ssa/pr69270-3.c scan-tree-dump-times uncprop1 ", 1" 4
Date: Tue, 09 Aug 2016 10:21:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: testsuite
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: schwab@linux-m68k.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cf_gcctarget
Message-ID: <bug-72850-4-iqjbjXBl04@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72850-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72850-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01093.txt.bz2
Content-length: 370

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72850

Andreas Schwab <schwab@linux-m68k.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Target|arm-none-eabi               |

--- Comment #1 from Andreas Schwab <schwab@linux-m68k.org> ---
If fails everywhere.
>From gcc-bugs-return-533758-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 10:39:53 2016
Return-Path: <gcc-bugs-return-533758-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 86780 invoked by alias); 9 Aug 2016 10:39:53 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 83603 invoked by uid 48); 9 Aug 2016 10:39:40 -0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/72835] [Regression 7] Incorrect arithmetic optimization involving bitfield arguments
Date: Tue, 09 Aug 2016 10:39:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc everconfirmed
Message-ID: <bug-72835-4-kP1857Geck@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72835-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72835-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01094.txt.bz2
Content-length: 734

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72835

Martin Liška <marxin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-09
                 CC|                            |kuganv at linaro dot org,
                   |                            |marxin at gcc dot gnu.org
     Ever confirmed|0                           |1

--- Comment #1 from Martin Liška <marxin at gcc dot gnu.org> ---
Confirmed, it's caused by tree-reassoc pass:

$ g++ pr72835.cpp -O2 -fno-tree-reassoc ; ./a.out
4098873984
>From gcc-bugs-return-533760-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 10:50:27 2016
Return-Path: <gcc-bugs-return-533760-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 101734 invoked by alias); 9 Aug 2016 10:50:26 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 101457 invoked by uid 55); 9 Aug 2016 10:50:12 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71881] [6 Regression] ICE on valid code at -O3 with -g enabled on x86_64-linux-gnu: cannot update SSA form
Date: Tue, 09 Aug 2016 10:50:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71881-4-qbyzZrEhCY@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71881-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71881-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01096.txt.bz2
Content-length: 1113

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71881

--- Comment #10 from Richard Biener <rguenth at gcc dot gnu.org> ---
Author: rguenth
Date: Tue Aug  9 10:49:36 2016
New Revision: 239277

URL: https://gcc.gnu.org/viewcvs?rev=239277&root=gcc&view=rev
Log:
2016-08-09  Richard Biener  <rguenther@suse.de>

        Backport from mainline
        2016-08-09  Richard Biener  <rguenther@suse.de>

        PR ipa/68273
        * ipa-prop.c (ipa_modify_formal_parameters): Build
        parameter types with natural alignment also for the
        over-aligned case.

        2016-07-15  Richard Biener  <rguenther@suse.de>

        PR tree-optimization/71881
        * tree-loop-distribution.c (destroy_loop): Remove blocks in
        reverse DOM order to make debug temp generation happy.

        * gcc.dg/torture/pr71881.c: New testcase.

Added:
    branches/gcc-6-branch/gcc/testsuite/gcc.dg/torture/pr71881.c
Modified:
    branches/gcc-6-branch/gcc/ChangeLog
    branches/gcc-6-branch/gcc/ipa-prop.c
    branches/gcc-6-branch/gcc/testsuite/ChangeLog
    branches/gcc-6-branch/gcc/tree-loop-distribution.c
>From gcc-bugs-return-533759-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 10:50:26 2016
Return-Path: <gcc-bugs-return-533759-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 101724 invoked by alias); 9 Aug 2016 10:50:26 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 101566 invoked by uid 55); 9 Aug 2016 10:50:14 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/68273] [5/6/7 Regression] Wrong code on mips/mipsel due to (invalid?) peeking at alignments in function_arg.
Date: Tue, 09 Aug 2016 10:50:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 5.2.1
X-Bugzilla-Keywords: ABI, wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-68273-4-jnwso4qLY4@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68273-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68273-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01095.txt.bz2
Content-length: 1113

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68273

--- Comment #39 from Richard Biener <rguenth at gcc dot gnu.org> ---
Author: rguenth
Date: Tue Aug  9 10:49:36 2016
New Revision: 239277

URL: https://gcc.gnu.org/viewcvs?rev=239277&root=gcc&view=rev
Log:
2016-08-09  Richard Biener  <rguenther@suse.de>

        Backport from mainline
        2016-08-09  Richard Biener  <rguenther@suse.de>

        PR ipa/68273
        * ipa-prop.c (ipa_modify_formal_parameters): Build
        parameter types with natural alignment also for the
        over-aligned case.

        2016-07-15  Richard Biener  <rguenther@suse.de>

        PR tree-optimization/71881
        * tree-loop-distribution.c (destroy_loop): Remove blocks in
        reverse DOM order to make debug temp generation happy.

        * gcc.dg/torture/pr71881.c: New testcase.

Added:
    branches/gcc-6-branch/gcc/testsuite/gcc.dg/torture/pr71881.c
Modified:
    branches/gcc-6-branch/gcc/ChangeLog
    branches/gcc-6-branch/gcc/ipa-prop.c
    branches/gcc-6-branch/gcc/testsuite/ChangeLog
    branches/gcc-6-branch/gcc/tree-loop-distribution.c
>From gcc-bugs-return-533761-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 10:56:04 2016
Return-Path: <gcc-bugs-return-533761-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 33099 invoked by alias); 9 Aug 2016 10:56:04 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 33012 invoked by uid 48); 9 Aug 2016 10:55:54 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/68273] [5 Regression] Wrong code on mips/mipsel due to (invalid?) peeking at alignments in function_arg.
Date: Tue, 09 Aug 2016 10:56:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 5.2.1
X-Bugzilla-Keywords: ABI, wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cf_known_to_work short_desc cf_known_to_fail
Message-ID: <bug-68273-4-9xH1QVLK3p@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68273-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68273-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01097.txt.bz2
Content-length: 787

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68273

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
      Known to work|                            |6.2.0, 7.0
            Summary|[5/6/7 Regression] Wrong    |[5 Regression] Wrong code
                   |code on mips/mipsel due to  |on mips/mipsel due to
                   |(invalid?) peeking at       |(invalid?) peeking at
                   |alignments in function_arg. |alignments in function_arg.
      Known to fail|                            |6.1.0

--- Comment #40 from Richard Biener <rguenth at gcc dot gnu.org> ---
Mitigated on trunk and the GCC 6 branch (correct me if I am wrong).
>From gcc-bugs-return-533762-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 10:56:38 2016
Return-Path: <gcc-bugs-return-533762-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 33996 invoked by alias); 9 Aug 2016 10:56:38 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 33883 invoked by uid 48); 9 Aug 2016 10:56:25 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71881] [6 Regression] ICE on valid code at -O3 with -g enabled on x86_64-linux-gnu: cannot update SSA form
Date: Tue, 09 Aug 2016 10:56:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_known_to_work resolution cf_known_to_fail
Message-ID: <bug-71881-4-1LTzvojf4E@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71881-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71881-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01098.txt.bz2
Content-length: 540

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71881

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
      Known to work|                            |6.2.0
         Resolution|---                         |FIXED
      Known to fail|                            |6.1.0

--- Comment #11 from Richard Biener <rguenth at gcc dot gnu.org> ---
Fixed.
>From gcc-bugs-return-533763-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 11:03:01 2016
Return-Path: <gcc-bugs-return-533763-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 42043 invoked by alias); 9 Aug 2016 11:03:01 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 41921 invoked by uid 48); 9 Aug 2016 11:02:48 -0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug driver/72765] Dynamic stack buffer overflow in GCC driver with -save-temps switch.
Date: Tue, 09 Aug 2016 11:03:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: driver
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc assigned_to everconfirmed
Message-ID: <bug-72765-4-u4EhTIgzok@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72765-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72765-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01099.txt.bz2
Content-length: 692

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72765

Martin Liška <marxin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-09
                 CC|                            |marxin at gcc dot gnu.org
           Assignee|unassigned at gcc dot gnu.org      |marxin at gcc dot gnu.org
     Ever confirmed|0                           |1

--- Comment #1 from Martin Liška <marxin at gcc dot gnu.org> ---
Confirmed, I've got a patch which I'll send to ML soon.
>From gcc-bugs-return-533766-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 11:10:56 2016
Return-Path: <gcc-bugs-return-533766-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 56801 invoked by alias); 9 Aug 2016 11:10:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 56616 invoked by uid 48); 9 Aug 2016 11:10:43 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug testsuite/72850] [7 Regression] FAIL: gcc.dg/tree-ssa/pr69270-3.c scan-tree-dump-times uncprop1 ", 1" 4
Date: Tue, 09 Aug 2016 11:10:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: testsuite
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on target_milestone short_desc everconfirmed
Message-ID: <bug-72850-4-J3kIcYiGIR@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72850-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72850-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01102.txt.bz2
Content-length: 820

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72850

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-09
   Target Milestone|---                         |7.0
            Summary|FAIL:                       |[7 Regression] FAIL:
                   |gcc.dg/tree-ssa/pr69270-3.c |gcc.dg/tree-ssa/pr69270-3.c
                   |scan-tree-dump-times        |scan-tree-dump-times
                   |uncprop1 ", 1" 4            |uncprop1 ", 1" 4
     Ever confirmed|0                           |1

--- Comment #2 from Richard Biener <rguenth at gcc dot gnu.org> ---
Confirmed.
>From gcc-bugs-return-533765-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 11:10:25 2016
Return-Path: <gcc-bugs-return-533765-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 55836 invoked by alias); 9 Aug 2016 11:10:25 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 55357 invoked by uid 48); 9 Aug 2016 11:10:18 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72849] [7 Regression] r239267 causes Firefox build failure
Date: Tue, 09 Aug 2016 11:10:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-72849-4-j5K77pxOjh@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72849-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72849-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01101.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72849

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |7.0
>From gcc-bugs-return-533764-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 11:10:15 2016
Return-Path: <gcc-bugs-return-533764-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 55081 invoked by alias); 9 Aug 2016 11:10:15 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 54721 invoked by uid 48); 9 Aug 2016 11:10:01 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/72848] profiledbootstrap: internal compiler error: in streamer_write_gcov_count_stream, at data-streamer-out.c:366
Date: Tue, 09 Aug 2016 11:10:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords: build, ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72848-4-6s67VvhmgL@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72848-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72848-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01100.txt.bz2
Content-length: 222

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72848

--- Comment #1 from Richard Biener <rguenth at gcc dot gnu.org> ---
I wonder whether HWI is 32bits in your case.  You'll hit the assert when a
counter overflow occurs.
>From gcc-bugs-return-533767-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 11:15:36 2016
Return-Path: <gcc-bugs-return-533767-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 126054 invoked by alias); 9 Aug 2016 11:15:36 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 125970 invoked by uid 48); 9 Aug 2016 11:15:22 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug debug/72828] ICE in clone_tree_partial when compiling with -fdebug-types-section
Date: Tue, 09 Aug 2016 11:15:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: debug
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone short_desc cf_known_to_fail
Message-ID: <bug-72828-4-TqjQTflMGc@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72828-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72828-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01103.txt.bz2
Content-length: 842

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72828

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|5.5                         |---
            Summary|[5/6/7 Regression] ICE in   |ICE in clone_tree_partial
                   |clone_tree_partial when     |when compiling with
                   |compiling with              |-fdebug-types-section
                   |-fdebug-types-section       |
      Known to fail|                            |5.4.0, 6.1.0, 7.0

--- Comment #5 from Richard Biener <rguenth at gcc dot gnu.org> ---
The testcase doesn't compile with 4.9 or earlier.  Not a regression.  Please
always have a known-to-work version when marking things as regression.
>From gcc-bugs-return-533768-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 11:15:51 2016
Return-Path: <gcc-bugs-return-533768-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 126789 invoked by alias); 9 Aug 2016 11:15:51 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 126262 invoked by uid 48); 9 Aug 2016 11:15:38 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/72829] [7 Regression] ICE in extract_constrain_insn, at recog.c:2211 (error: insn does not satisfy its constraints) on 32-bit BE powerpc
Date: Tue, 09 Aug 2016 11:15:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: build, ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-72829-4-2ZK3E6zEJ8@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72829-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72829-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01104.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72829

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |7.0
>From gcc-bugs-return-533770-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 11:16:34 2016
Return-Path: <gcc-bugs-return-533770-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 128343 invoked by alias); 9 Aug 2016 11:16:34 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 127600 invoked by uid 48); 9 Aug 2016 11:16:21 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/72831] [7 Regression] Conditional jump or move depends on uninitialised value: regno_in_use_p (lra-spills.c:701)
Date: Tue, 09 Aug 2016 11:16:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-72831-4-msiQy4rSJa@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72831-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72831-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01106.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72831

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |7.0
>From gcc-bugs-return-533769-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 11:16:22 2016
Return-Path: <gcc-bugs-return-533769-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 127639 invoked by alias); 9 Aug 2016 11:16:22 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 127532 invoked by uid 48); 9 Aug 2016 11:16:09 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/72830] istream::seekg should not reset eofbit if -std=c++98
Date: Tue, 09 Aug 2016 11:16:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 4.6.3
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72830-4-6pL6kHXh4o@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72830-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72830-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01105.txt.bz2
Content-length: 182

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72830

--- Comment #1 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 4.6 is no longer maintained, please try GCC 5 or newer.
>From gcc-bugs-return-533771-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 11:17:55 2016
Return-Path: <gcc-bugs-return-533771-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 8299 invoked by alias); 9 Aug 2016 11:17:55 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 7979 invoked by uid 48); 9 Aug 2016 11:17:43 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libgcj/72834] [5/6/7 Regression] the gij interpreter seems to be broken on linux 64bit big endian targets
Date: Tue, 09 Aug 2016 11:17:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libgcj
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-72834-4-b1UcweH0Ti@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72834-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72834-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01107.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72834

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |5.5
>From gcc-bugs-return-533772-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 11:22:00 2016
Return-Path: <gcc-bugs-return-533772-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 24954 invoked by alias); 9 Aug 2016 11:22:00 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 24576 invoked by uid 48); 9 Aug 2016 11:21:47 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/72835] [7 Regression] Incorrect arithmetic optimization involving bitfield arguments
Date: Tue, 09 Aug 2016 11:22:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cf_known_to_work target_milestone short_desc
Message-ID: <bug-72835-4-cYndfTJgCD@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72835-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72835-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01108.txt.bz2
Content-length: 1237

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72835

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
      Known to work|                            |6.1.0
   Target Milestone|---                         |7.0
            Summary|[Regression 7] Incorrect    |[7 Regression] Incorrect
                   |arithmetic optimization     |arithmetic optimization
                   |involving bitfield          |involving bitfield
                   |arguments                   |arguments

--- Comment #2 from Richard Biener <rguenth at gcc dot gnu.org> ---
C testcase:

struct struct_1 {
    unsigned int m1 : 6 ;
    unsigned int m2 : 24 ;
    unsigned int m3 : 6 ;
};

unsigned short var_32 = 0x2d10;

struct struct_1 s1;

void init () {
    s1.m1 = 4;
    s1.m2 = 0x7ca4b8;
    s1.m3 = 24;
}

void foo () {
  unsigned int c =
   // 0x7ca4b8 * -(24)
   ((unsigned int) s1.m2) * (-((unsigned int) s1.m3))
   +
   // 0x2d10 * -(4) = 0xb440
   (var_32) * (-((unsigned int) (s1.m1)));

  if (c != 4098873984)
    __builtin_abort ();
}

int main () {
    init ();
    foo ();
    return 0;
}
>From gcc-bugs-return-533773-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 11:24:42 2016
Return-Path: <gcc-bugs-return-533773-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 33712 invoked by alias); 9 Aug 2016 11:24:39 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 33554 invoked by uid 48); 9 Aug 2016 11:24:24 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/72823] [7 Regression] r239175 causes build failure
Date: Tue, 09 Aug 2016 11:24:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: dmalcolm at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-72823-4-nj0wKSG5AQ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72823-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72823-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01109.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72823

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |7.0
>From gcc-bugs-return-533774-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 11:26:09 2016
Return-Path: <gcc-bugs-return-533774-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 39016 invoked by alias); 9 Aug 2016 11:26:08 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 38922 invoked by uid 48); 9 Aug 2016 11:26:02 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72827] [7 Regression] gnat bootstrap broken on powerpc64le-linux-gnu
Date: Tue, 09 Aug 2016 11:26:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-72827-4-qQoGvY1VSz@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72827-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72827-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01110.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72827

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |7.0
>From gcc-bugs-return-533775-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 11:27:56 2016
Return-Path: <gcc-bugs-return-533775-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 41670 invoked by alias); 9 Aug 2016 11:27:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 41586 invoked by uid 48); 9 Aug 2016 11:27:44 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/72813] [6/7 Regression] atomic header cannot be compiled into translation unit with -fkeep-inline-functions
Date: Tue, 09 Aug 2016 11:27:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: rejects-valid
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-72813-4-2A4K9P2n1a@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72813-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72813-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01111.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72813

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |6.2
>From gcc-bugs-return-533776-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 12:02:30 2016
Return-Path: <gcc-bugs-return-533776-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 115936 invoked by alias); 9 Aug 2016 12:02:30 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 115616 invoked by uid 48); 9 Aug 2016 12:02:16 -0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/44779] The gcov library does not adequately handle functions with constructor/destructor attributes
Date: Tue, 09 Aug 2016 12:02:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 4.1.2
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cc resolution
Message-ID: <bug-44779-4-lLL9cjBqtJ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-44779-4@http.gcc.gnu.org/bugzilla/>
References: <bug-44779-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01112.txt.bz2
Content-length: 4379

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=44779

Martin Liška <marxin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |RESOLVED
                 CC|                            |marxin at gcc dot gnu.org
         Resolution|---                         |INVALID

--- Comment #6 from Martin Liška <marxin at gcc dot gnu.org> ---
(In reply to Jay Vaughan from comment #0)
> I am developing a software system which has the requirement (as it is
> safety-critical), that we report full coverage of our modules as part of the
> validation process.
> 
> One aspect of this software system is the inclusion of a library - lets call
> it libguardian - which is wrapped around all applications being run on our
> custom system, using LD_PRELOAD.  The purpose of libguardian is to obtain
> valid conditions for continued launch prior to the execution of main() by
> the runtime in the wrapped application.  To this end, libguardian defines a
> constructor and destructor pair of functions that obtain the valid
> conditions required for continued launch, and clean up/report on exit of the
> application.
> 
> This libguardian, and associated applications, works perfectly fine. 
> However, it is not possible to capture coverage information for these
> functions due to limits in gcov.
> 
> The constructor/destructor methods are defined thus:
> 
> 
> #define GUARDIAN_CONSTRUCTOR_DESTRUCTOR_PRIORITY     65535
> /* NOTE: this priority can also be 101! */
> 
> void guardian_constructor(void)  __attribute__
> ((constructor(GUARDIAN_CONSTRUCTOR_DESTRUCTOR_PRIORITY)));
> 
> void guardian_destructor(void)  __attribute__
> ((destructor(GUARDIAN_CONSTRUCTOR_DESTRUCTOR_PRIORITY)));
>                                                    
> 
> If the guardian_constructor() finds conditions unsavory for continued
> execution in our environment, it exit()'s immediately. In this circumstance,
> coverage is lost (or not provided) by gcov's atexit/destructor methods, as
> it appears that *priority* of known constructors is not accounted for in the
> gcov library, nor is there an atexit() handler that can adequately sort
> these priorities.

Well, there are two scenarios that happen for your test-case:

1) guardian_constructor exits: as the function is called via LD_PRELOAD,
libgcov is not yet registered and cannot produce any *.gcda files. It's
unrelated to priorities of dtors/atexit handlers

2) _SHOULD_CONSTRUCTOR_DIE_ is undefined: all works fine except
guardian_exiter:

LD_PRELOAD=./testlib.so ./testapp
++++++ GUARDIAN CONSTRUCTOR STAGE: [15226] 
This is a number between 1 and 10: 1
This is a number between 1 and 10: 2
This is a number between 1 and 10: 3
This is a number between 1 and 10: 4
This is a number between 1 and 10: 5
This is a number between 1 and 10: 6
This is a number between 1 and 10: 7
This is a number between 1 and 10: 8
This is a number between 1 and 10: 9
This is a number between 1 and 10: 10
**********************************
gcov init is called
gcov init is called
^^ That was the constructor ^^
This is main() in the testapp()
By now, the testlib should have reported 
its own progress in counting 1 to 10.
Next comes the destructor :::
gcov_exit is called
------ GUARDIAN DESTRUCTOR STAGE: 
**********************************
gcov_exit is called
!!!!!! GUARDIAN EXIT HANDLER REACHED !!!!!!
gcov testlib.c
File 'testlib.c'
Lines executed:78.57% of 14
Creating 'testlib.c.gcov'

gcov testapp.c
File 'testapp.c'
Lines executed:100.00% of 3
Creating 'testapp.c.gcov'

As you can see, I added dumping of gcov_init/gcov_exit. The only functions
which is not seen by coverage is:
    #####:   16:static void guardian_exiter(void)
        -:   17:{
    #####:   18:    fprintf(stderr, "!!!!!! GUARDIAN EXIT HANDLER REACHED
!!!!!!\n");
    #####:   19:}

That's kind of expected behavior because atexit handlers are executed in
reverse order to how they were registered.
I would recommend to not utilize atexit handler and do the necessary work in
guardian_destructor.

Due to aforementioned explanation, I'm closing the PR as invalid.
>From gcc-bugs-return-533777-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 12:07:40 2016
Return-Path: <gcc-bugs-return-533777-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 101311 invoked by alias); 9 Aug 2016 12:07:39 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 101144 invoked by uid 48); 9 Aug 2016 12:07:26 -0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/43341] pragma pack changes padding in struct gcov_info on 64-bit archs
Date: Tue, 09 Aug 2016 12:07:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 4.5.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cc resolution
Message-ID: <bug-43341-4-IlWRpN5E75@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-43341-4@http.gcc.gnu.org/bugzilla/>
References: <bug-43341-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01113.txt.bz2
Content-length: 509

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=43341

Martin Liška <marxin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
                 CC|                            |marxin at gcc dot gnu.org
         Resolution|---                         |FIXED

--- Comment #13 from Martin Liška <marxin at gcc dot gnu.org> ---
Fixed.
>From gcc-bugs-return-533778-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 12:11:30 2016
Return-Path: <gcc-bugs-return-533778-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 111139 invoked by alias); 9 Aug 2016 12:11:29 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 111037 invoked by uid 48); 9 Aug 2016 12:11:17 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/38401] TreeSSA-PRE load after store missed optimization
Date: Tue, 09 Aug 2016 12:11:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 4.4.0
X-Bugzilla-Keywords: missed-optimization, TREE
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-38401-4-AWEVxarRgv@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-38401-4@http.gcc.gnu.org/bugzilla/>
References: <bug-38401-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01114.txt.bz2
Content-length: 817

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=38401

--- Comment #28 from Richard Biener <rguenth at gcc dot gnu.org> ---
The issue with the patch is that it does speculation for expressions that might
invoke undefined behavior.  Like for gcc.c-torture/execute/20000801-2.c where
it speculates a load from the next-next iteration:

  <bb 2>:
  a.next = &b;
  b.next = 0B;

  <bb 3>:
  # node_9 = PHI <prephitmp_4(4), &a(2)>
  # prephitmp_4 = PHI <prephitmp_10(4), &b(2)>
  # prephitmp_10 = PHI <pretmp_7(4), 0B(2)>
  if (prephitmp_4 != 0B)
    goto <bb 4>;
  else
    goto <bb 5>;

  <bb 4>:
  pretmp_7 = prephitmp_10->next;
  goto <bb 3>;

similar issues can appear for non-backedges, too, and for example undefined
integer overflow.  We'd need to be much more careful with what we'd insert
here.
>From gcc-bugs-return-533779-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 12:18:03 2016
Return-Path: <gcc-bugs-return-533779-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 129583 invoked by alias); 9 Aug 2016 12:18:03 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 129456 invoked by uid 48); 9 Aug 2016 12:17:48 -0000
From: "doko at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72851] New: [6/7 Regression] memory hog with -O3 on s390x-linux-gnu
Date: Tue, 09 Aug 2016 12:18:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: doko at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-72851-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01115.txt.bz2
Content-length: 756

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72851

            Bug ID: 72851
           Summary: [6/7 Regression] memory hog with -O3 on
                    s390x-linux-gnu
           Product: gcc
           Version: 6.1.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: target
          Assignee: unassigned at gcc dot gnu.org
          Reporter: doko at gcc dot gnu.org
  Target Milestone: ---

Created attachment 39087
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39087&action=edit
preprocessed source

seen with the gcc-6-branch and trunk 20160804

gcc -g -O3 -std=c99 -fPIC -pthread -c des.i

allocates all available memory, and then is killed. Workaround is to build with
-O2.
>From gcc-bugs-return-533780-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 12:23:10 2016
Return-Path: <gcc-bugs-return-533780-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 69041 invoked by alias); 9 Aug 2016 12:23:09 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 68897 invoked by uid 48); 9 Aug 2016 12:22:57 -0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/42015] gcov reports incorrect branches executed
Date: Tue, 09 Aug 2016 12:23:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 4.4.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc assigned_to everconfirmed
Message-ID: <bug-42015-4-jyyPsFi7Dy@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-42015-4@http.gcc.gnu.org/bugzilla/>
References: <bug-42015-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01116.txt.bz2
Content-length: 898

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=42015

Martin Liška <marxin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-09
                 CC|                            |marxin at gcc dot gnu.org
           Assignee|unassigned at gcc dot gnu.org      |marxin at gcc dot gnu.org
     Ever confirmed|0                           |1

--- Comment #2 from Martin Liška <marxin at gcc dot gnu.org> ---
(In reply to Frodak Baksik from comment #1)
> I would have expected the output to report:
> Branches executed:75.00% of 4
> and not
> Branches executed:100.00% of 4

You're right, it's confusing, I'm going to discuss that with Honza in order to
many it clear.
>From gcc-bugs-return-533781-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 12:25:25 2016
Return-Path: <gcc-bugs-return-533781-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 76530 invoked by alias); 9 Aug 2016 12:25:20 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 76419 invoked by uid 48); 9 Aug 2016 12:25:09 -0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/39609] hidden symbol `__gcov_init' in /usr/lib64/gcc-lib/x86_64-suse-linux/3.3.3/libgcc.a(_gcov.oS) is referenced by DSO
Date: Tue, 09 Aug 2016 12:25:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 3.3.3
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cc resolution
Message-ID: <bug-39609-4-uX0nxqhRKO@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-39609-4@http.gcc.gnu.org/bugzilla/>
References: <bug-39609-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01117.txt.bz2
Content-length: 610

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=39609

Martin Liška <marxin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
                 CC|                            |marxin at gcc dot gnu.org
         Resolution|---                         |INVALID

--- Comment #3 from Martin Liška <marxin at gcc dot gnu.org> ---
Guessing you're missing LDFLAGS="-Wall -fprofile-arcs -ftest-coverage".
Thus closing the bug as invalid.
>From gcc-bugs-return-533782-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 12:29:23 2016
Return-Path: <gcc-bugs-return-533782-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 85273 invoked by alias); 9 Aug 2016 12:29:23 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 85082 invoked by uid 48); 9 Aug 2016 12:29:10 -0000
From: "kugan at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/72835] [7 Regression] Incorrect arithmetic optimization involving bitfield arguments
Date: Tue, 09 Aug 2016 12:29:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: kugan at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-72835-4-y7ewZ1yHnW@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72835-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72835-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01118.txt.bz2
Content-length: 1003

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72835

kugan at gcc dot gnu.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |kugan at gcc dot gnu.org

--- Comment #3 from kugan at gcc dot gnu.org ---
Looking into it. 

diff of .115t.dse2 and .116t.reassoc1 is for the c++ testcase:

+  unsigned int _16;
+  unsigned int _17;
+  unsigned int _18;

   <bb 2>:
   _1 = s1.m2;
   _2 = (unsigned int) _1;
   _3 = s1.m3;
   _4 = (unsigned int) _3;
-  _5 = -_4;
-  _6 = _2 * _5;
+  _5 = _4;
+  _6 = _5 * _2;
   var_32.0_7 = var_32;
   _8 = (unsigned int) var_32.0_7;
   _9 = s1.m1;
   _10 = (unsigned int) _9;
-  _11 = -_10;
-  _12 = _8 * _11;
-  c_14 = _6 + _12;
+  _11 = _10;
+  _12 = _11 * _8;
+  _16 = _12 + _6;
+  _18 = _16;
+  _17 = -_18;
+  c_14 = _17;
   if (c_14 != 4098873984)


Also works with -fno-tree-vrp
>From gcc-bugs-return-533783-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 12:36:36 2016
Return-Path: <gcc-bugs-return-533783-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 75004 invoked by alias); 9 Aug 2016 12:36:35 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 55605 invoked by uid 48); 9 Aug 2016 12:36:23 -0000
From: "liweifriends at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72852] New: constexpr inside class template cannot be recognized
Date: Tue, 09 Aug 2016 12:36:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.3.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: liweifriends at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-72852-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01119.txt.bz2
Content-length: 1076

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72852

            Bug ID: 72852
           Summary: constexpr inside class template cannot be recognized
           Product: gcc
           Version: 5.3.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: liweifriends at gmail dot com
  Target Milestone: ---

The code is as follows:

#include <type_traits>
#include <iostream>
using namespace std;

template <typename T>
struct Outer
{
    template <typename T2>
    struct Inter
    {
        constexpr static bool value = std::is_same<T2, T>::value;
    };

    template <typename T2>
    constexpr static bool value = Inter<T2>::value;
};

template <typename T1, typename T2>
struct Wrapper
{
    constexpr static bool value = Outer<T1>::template value<T2>;
};

int main()
{
    cerr << Wrapper<int, int>::value << endl;
}

When compile as follows:
g++ --std=c++14 ./main.cpp

Gcc reports a bug said value<T2> is not a member of Outer<int>
>From gcc-bugs-return-533784-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 12:37:02 2016
Return-Path: <gcc-bugs-return-533784-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 89591 invoked by alias); 9 Aug 2016 12:37:02 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 89406 invoked by uid 55); 9 Aug 2016 12:36:54 -0000
From: "mpf at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/65345] ICE with _Generic selection on _Atomic int
Date: Tue, 09 Aug 2016 12:37:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 4.9.2
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mpf at gcc dot gnu.org
X-Bugzilla-Status: REOPENED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: mpolacek at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-65345-4-YPNAD3ZteD@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-65345-4@http.gcc.gnu.org/bugzilla/>
References: <bug-65345-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01120.txt.bz2
Content-length: 517

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65345

--- Comment #28 from mpf at gcc dot gnu.org ---
Author: mpf
Date: Tue Aug  9 12:36:18 2016
New Revision: 239278

URL: https://gcc.gnu.org/viewcvs?rev=239278&root=gcc&view=rev
Log:
MIPS: Use create_tmp_var_raw in mips_atomic_assign_expand_fenv

gcc/
        PR c/65345
        * config/mips/mips.c (mips_atomic_assign_expand_fenv):
        Use create_tmp_var_raw instead of create_tmp_var.

Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/config/mips/mips.c
>From gcc-bugs-return-533785-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 13:09:09 2016
Return-Path: <gcc-bugs-return-533785-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 14888 invoked by alias); 9 Aug 2016 13:09:09 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 14618 invoked by uid 48); 9 Aug 2016 13:08:56 -0000
From: "ppalka at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/71654] [6/7 Regression] missing VRP optimization on c++ unsigned char and short expressions
Date: Tue, 09 Aug 2016 13:09:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ppalka at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: ppalka at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status assigned_to
Message-ID: <bug-71654-4-kkEVgXnokA@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71654-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71654-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01121.txt.bz2
Content-length: 380

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71654

Patrick Palka <ppalka at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED
           Assignee|unassigned at gcc dot gnu.org      |ppalka at gcc dot gnu.org
>From gcc-bugs-return-533786-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 13:15:13 2016
Return-Path: <gcc-bugs-return-533786-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 31663 invoked by alias); 9 Aug 2016 13:15:13 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 31203 invoked by uid 48); 9 Aug 2016 13:14:54 -0000
From: "kugan at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/72835] [7 Regression] Incorrect arithmetic optimization involving bitfield arguments
Date: Tue, 09 Aug 2016 13:15:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: kugan at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: kugan at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72835-4-dXizCabuzM@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72835-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72835-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01122.txt.bz2
Content-length: 854

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72835

--- Comment #4 from kugan at gcc dot gnu.org ---
Looks like it was a latent issue. In rewrite_expr_tree, when re-associate
operands, we should reset range_info for the LHS. We don’t do that now.
Following patch fixes the test case. 


diff --git a/gcc/tree-ssa-reassoc.c b/gcc/tree-ssa-reassoc.c
index 7fd7550..6272d98 100644
--- a/gcc/tree-ssa-reassoc.c
+++ b/gcc/tree-ssa-reassoc.c
@@ -3945,6 +3945,7 @@ rewrite_expr_tree (gimple *stmt, unsigned int opindex,
              gimple_assign_set_rhs1 (stmt, oe1->op);
              gimple_assign_set_rhs2 (stmt, oe2->op);
              update_stmt (stmt);
+             reset_flow_sensitive_info (lhs);
            }

          if (rhs1 != oe1->op && rhs1 != oe2->op)


I think we also need to do the same in rewrite_expr_tree_parallel.
>From gcc-bugs-return-533787-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 13:24:59 2016
Return-Path: <gcc-bugs-return-533787-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 121859 invoked by alias); 9 Aug 2016 13:24:59 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 121703 invoked by uid 48); 9 Aug 2016 13:24:46 -0000
From: "tschwinge at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/72743] ICE in get_constraint_for_ssa_var, at tree-ssa-structalias.c:2958
Date: Tue, 09 Aug 2016 13:24:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: tschwinge at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cf_reconfirmed_on cc
Message-ID: <bug-72743-4-3RTUj3O5Fo@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72743-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72743-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01123.txt.bz2
Content-length: 998

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72743

Thomas Schwinge <tschwinge at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Last reconfirmed|2016-07-29 00:00:00         |2016-8-9
                 CC|                            |marxin at gcc dot gnu.org,
                   |                            |rguenth at gcc dot gnu.org,
                   |                            |tschwinge at gcc dot gnu.org

--- Comment #4 from Thomas Schwinge <tschwinge at gcc dot gnu.org> ---
Confirmed.  Probably Dominique's x86_64-apple-darwin15 configuration has
something differently in symbol visibility or some such, which hides this
problem.

Richard, you're probably thinking of PR70856 when you say this sounds familiar.
 Indeed this looks similar, but it's still a new/different problem.  Do you or
Martin (who fixed PR70856) have any plans to look into this issue here?
>From gcc-bugs-return-533789-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 13:31:54 2016
Return-Path: <gcc-bugs-return-533789-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 24487 invoked by alias); 9 Aug 2016 13:31:54 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 24284 invoked by uid 48); 9 Aug 2016 13:31:39 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72851] [6/7 Regression] memory hog with -O3 on s390x-linux-gnu
Date: Tue, 09 Aug 2016 13:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-72851-4-a9JRSI5gYu@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72851-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72851-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01125.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72851

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |6.2
>From gcc-bugs-return-533788-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 13:31:54 2016
Return-Path: <gcc-bugs-return-533788-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 24450 invoked by alias); 9 Aug 2016 13:31:52 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 24231 invoked by uid 55); 9 Aug 2016 13:31:37 -0000
From: "rguenther at suse dot de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/72743] ICE in get_constraint_for_ssa_var, at tree-ssa-structalias.c:2958
Date: Tue, 09 Aug 2016 13:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenther at suse dot de
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72743-4-MAemAJtdov@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72743-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72743-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01124.txt.bz2
Content-length: 1301

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72743

--- Comment #5 from rguenther at suse dot de <rguenther at suse dot de> ---
On Tue, 9 Aug 2016, tschwinge at gcc dot gnu.org wrote:

> https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72743
> 
> Thomas Schwinge <tschwinge at gcc dot gnu.org> changed:
> 
>            What    |Removed                     |Added
> ----------------------------------------------------------------------------
>    Last reconfirmed|2016-07-29 00:00:00         |2016-8-9
>                  CC|                            |marxin at gcc dot gnu.org,
>                    |                            |rguenth at gcc dot gnu.org,
>                    |                            |tschwinge at gcc dot gnu.org
> 
> --- Comment #4 from Thomas Schwinge <tschwinge at gcc dot gnu.org> ---
> Confirmed.  Probably Dominique's x86_64-apple-darwin15 configuration has
> something differently in symbol visibility or some such, which hides this
> problem.
> 
> Richard, you're probably thinking of PR70856 when you say this sounds familiar.
>  Indeed this looks similar, but it's still a new/different problem.  Do you or
> Martin (who fixed PR70856) have any plans to look into this issue here?

Low on my priority list.  Who is creating the clone this time?
>From gcc-bugs-return-533790-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 13:52:54 2016
Return-Path: <gcc-bugs-return-533790-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 15709 invoked by alias); 9 Aug 2016 13:52:54 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 15530 invoked by uid 48); 9 Aug 2016 13:52:42 -0000
From: "dan.cooke89 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/61636] generic lambda  "cannot call member function without object"
Date: Tue, 09 Aug 2016 13:52:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dan.cooke89 at gmail dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: abutcher at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-61636-4-RsjvHAaVHJ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-61636-4@http.gcc.gnu.org/bugzilla/>
References: <bug-61636-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01126.txt.bz2
Content-length: 660

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61636

Daniel Cooke <dan.cooke89 at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |dan.cooke89 at gmail dot com

--- Comment #18 from Daniel Cooke <dan.cooke89 at gmail dot com> ---
Duplicate bug report: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67274

Another example:
http://stackoverflow.com/questions/38845720/gcc-fails-to-compile-generic-lambda-with-this-capture

Still not fixed in 6.1, is anyone going to look at this in the near future?
>From gcc-bugs-return-533791-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 14:05:34 2016
Return-Path: <gcc-bugs-return-533791-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 51242 invoked by alias); 9 Aug 2016 14:05:34 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 50109 invoked by uid 48); 9 Aug 2016 14:05:21 -0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libgcj/72834] [5/6/7 Regression] the gij interpreter seems to be broken on linux 64bit big endian targets
Date: Tue, 09 Aug 2016 14:05:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libgcj
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P5
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: priority cc
Message-ID: <bug-72834-4-PNSazzbsaz@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72834-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72834-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01127.txt.bz2
Content-length: 363

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72834

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P3                          |P5
                 CC|                            |jakub at gcc dot gnu.org
>From gcc-bugs-return-533792-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 14:08:20 2016
Return-Path: <gcc-bugs-return-533792-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 130542 invoked by alias); 9 Aug 2016 14:08:20 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 126710 invoked by uid 48); 9 Aug 2016 14:08:07 -0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71824] [6/7 Regression] ICE when compiling libiberty with Graphite loop optimizations
Date: Tue, 09 Aug 2016 14:08:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: priority cc
Message-ID: <bug-71824-4-NSHZbmghBP@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71824-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71824-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01128.txt.bz2
Content-length: 437

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71824

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P3                          |P4
                 CC|                            |jakub at gcc dot gnu.org,
                   |                            |spop at gcc dot gnu.org
>From gcc-bugs-return-533793-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 14:09:19 2016
Return-Path: <gcc-bugs-return-533793-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 3311 invoked by alias); 9 Aug 2016 14:09:19 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 3102 invoked by uid 55); 9 Aug 2016 14:09:06 -0000
From: "jason at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/56701] [C++11] The *this* pointer fails to bind to rvalue reference to pointer type
Date: Tue, 09 Aug 2016 14:09:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 4.8.0
X-Bugzilla-Keywords: rejects-valid
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jason at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jason at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 4.9.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-56701-4-IUhSGHerjm@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-56701-4@http.gcc.gnu.org/bugzilla/>
References: <bug-56701-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01129.txt.bz2
Content-length: 497

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=56701

--- Comment #5 from Jason Merrill <jason at gcc dot gnu.org> ---
Author: jason
Date: Tue Aug  9 14:08:33 2016
New Revision: 239285

URL: https://gcc.gnu.org/viewcvs?rev=239285&root=gcc&view=rev
Log:
        PR c++/56701 - wrong type of &*this

        * typeck.c (cp_build_addr_expr_1): Remove special *this handling.

Added:
    trunk/gcc/testsuite/g++.dg/cpp0x/rv-this2.C
Modified:
    trunk/gcc/cp/ChangeLog
    trunk/gcc/cp/typeck.c
>From gcc-bugs-return-533794-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 14:09:37 2016
Return-Path: <gcc-bugs-return-533794-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 4135 invoked by alias); 9 Aug 2016 14:09:37 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 4052 invoked by uid 48); 9 Aug 2016 14:09:31 -0000
From: "jason at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/56701] [C++11] The *this* pointer fails to bind to rvalue reference to pointer type
Date: Tue, 09 Aug 2016 14:09:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 4.8.0
X-Bugzilla-Keywords: rejects-valid
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jason at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jason at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 4.9.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-56701-4-si4zHah3Te@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-56701-4@http.gcc.gnu.org/bugzilla/>
References: <bug-56701-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01130.txt.bz2
Content-length: 149

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=56701

--- Comment #6 from Jason Merrill <jason at gcc dot gnu.org> ---
New testcase fixed for GCC 7.
>From gcc-bugs-return-533795-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 14:16:13 2016
Return-Path: <gcc-bugs-return-533795-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 23857 invoked by alias); 9 Aug 2016 14:16:12 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 23713 invoked by uid 48); 9 Aug 2016 14:16:00 -0000
From: "jason at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72849] [7 Regression] r239267 causes Firefox build failure
Date: Tue, 09 Aug 2016 14:16:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jason at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jason at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status assigned_to
Message-ID: <bug-72849-4-mXOPEqtrWv@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72849-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72849-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01131.txt.bz2
Content-length: 378

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72849

Jason Merrill <jason at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED
           Assignee|unassigned at gcc dot gnu.org      |jason at gcc dot gnu.org
>From gcc-bugs-return-533796-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 14:25:47 2016
Return-Path: <gcc-bugs-return-533796-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 53762 invoked by alias); 9 Aug 2016 14:25:46 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 47308 invoked by uid 48); 9 Aug 2016 14:25:30 -0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/36412] gcov -l -p exceeds maximum file name length
Date: Tue, 09 Aug 2016 14:25:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 4.1.2
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc assigned_to everconfirmed
Message-ID: <bug-36412-4-P0Ah4Nm52D@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-36412-4@http.gcc.gnu.org/bugzilla/>
References: <bug-36412-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01132.txt.bz2
Content-length: 782

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=36412

Martin Liška <marxin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-09
                 CC|                            |marxin at gcc dot gnu.org
           Assignee|unassigned at gcc dot gnu.org      |marxin at gcc dot gnu.org
     Ever confirmed|0                           |1

--- Comment #1 from Martin Liška <marxin at gcc dot gnu.org> ---
Confirmed, it's quite valid use-case, I'm having a patch for that. It's quite a
lot time since the PR was created, but it may by still usefull.
>From gcc-bugs-return-533797-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 14:37:31 2016
Return-Path: <gcc-bugs-return-533797-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 124169 invoked by alias); 9 Aug 2016 14:37:31 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 121007 invoked by uid 55); 9 Aug 2016 14:37:18 -0000
From: "mpf at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/66669] FAIL: gcc.dg/loop-8.c
Date: Tue, 09 Aug 2016 14:37:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mpf at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-66669-4-zjv4IL5Gmc@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-66669-4@http.gcc.gnu.org/bugzilla/>
References: <bug-66669-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01133.txt.bz2
Content-length: 486

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66669

--- Comment #3 from mpf at gcc dot gnu.org ---
Author: mpf
Date: Tue Aug  9 14:36:45 2016
New Revision: 239288

URL: https://gcc.gnu.org/viewcvs?rev=239288&root=gcc&view=rev
Log:
MIPS: Skip gcc.dg/loop-8.c due to additional invariants

gcc/
        PR rtl-optimization/66669
        * gcc.dg/loop-8.c: Skip for MIPS due to extra invariants.

Modified:
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/testsuite/gcc.dg/loop-8.c
>From gcc-bugs-return-533798-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 14:37:57 2016
Return-Path: <gcc-bugs-return-533798-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 125209 invoked by alias); 9 Aug 2016 14:37:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 125009 invoked by uid 55); 9 Aug 2016 14:37:43 -0000
From: "jason at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72849] [7 Regression] r239267 causes Firefox build failure
Date: Tue, 09 Aug 2016 14:37:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jason at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jason at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72849-4-CJqnM06aoF@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72849-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72849-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01134.txt.bz2
Content-length: 654

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72849

--- Comment #2 from Jason Merrill <jason at gcc dot gnu.org> ---
Author: jason
Date: Tue Aug  9 14:37:12 2016
New Revision: 239289

URL: https://gcc.gnu.org/viewcvs?rev=239289&root=gcc&view=rev
Log:
        PR c++/72849 - ICE with incomplete class.

        * constexpr.c (cxx_eval_constant_expression): Check
        COMPLETE_TYPE_P before calling is_really_empty_class.
        * class.c (is_really_empty_class): Don't call complete_type.

Added:
    trunk/gcc/testsuite/g++.dg/template/incomplete7.C
Modified:
    trunk/gcc/cp/ChangeLog
    trunk/gcc/cp/class.c
    trunk/gcc/cp/constexpr.c
>From gcc-bugs-return-533799-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 14:42:42 2016
Return-Path: <gcc-bugs-return-533799-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 70894 invoked by alias); 9 Aug 2016 14:42:42 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 69555 invoked by uid 48); 9 Aug 2016 14:42:28 -0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/28478] gcov is not demangling C++ names
Date: Tue, 09 Aug 2016 14:42:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 3.4.5
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cc resolution
Message-ID: <bug-28478-4-imwO5V44DL@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-28478-4@http.gcc.gnu.org/bugzilla/>
References: <bug-28478-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01135.txt.bz2
Content-length: 1007

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=28478

Martin Liška <marxin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
                 CC|                            |marxin at gcc dot gnu.org
         Resolution|---                         |FIXED

--- Comment #3 from Martin Liška <marxin at gcc dot gnu.org> ---
Using '-m' does what you would expect:

$ gcov -f -m myClass.cpp
Function '_GLOBAL__sub_I__ZN7myClass11testIntegerEv'
Lines executed:100.00% of 1

Function '__static_initialization_and_destruction_0(int, int)'
Lines executed:100.00% of 1

Function 'myClass::testInteger()'
Lines executed:75.00% of 4

File 'myClass.cpp'
Lines executed:80.00% of 5
Creating 'myClass.cpp.gcov'

File '/home/marxin/bin/gcc/include/c++/7.0.0/iostream'
Lines executed:100.00% of 1
Creating 'iostream.gcov'

Closing as resolved.
>From gcc-bugs-return-533800-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 14:45:38 2016
Return-Path: <gcc-bugs-return-533800-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 110129 invoked by alias); 9 Aug 2016 14:45:38 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 109963 invoked by uid 48); 9 Aug 2016 14:45:24 -0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/27453] gcov opens files with O_RDWR
Date: Tue, 09 Aug 2016 14:45:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 4.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: WONTFIX
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cc resolution
Message-ID: <bug-27453-4-a31wZIibur@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-27453-4@http.gcc.gnu.org/bugzilla/>
References: <bug-27453-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01136.txt.bz2
Content-length: 512

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=27453

Martin Liška <marxin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |marxin at gcc dot gnu.org
         Resolution|---                         |WONTFIX

--- Comment #5 from Martin Liška <marxin at gcc dot gnu.org> ---
Closing.
>From gcc-bugs-return-533801-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 15:02:37 2016
Return-Path: <gcc-bugs-return-533801-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 49195 invoked by alias); 9 Aug 2016 15:02:36 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 37166 invoked by uid 55); 9 Aug 2016 15:02:22 -0000
From: "amker at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/72772] Missed SCEV after pass reordering@236440
Date: Tue, 09 Aug 2016 15:02:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: amker at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72772-4-5R9sTYI5VA@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72772-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72772-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01137.txt.bz2
Content-length: 975

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72772

--- Comment #10 from amker at gcc dot gnu.org ---
Author: amker
Date: Tue Aug  9 15:01:49 2016
New Revision: 239290

URL: https://gcc.gnu.org/viewcvs?rev=239290&root=gcc&view=rev
Log:
        PR tree-optimization/72772
        * tree-ssa-loop-niter.h (simplify_using_initial_conditions): Delete
        parameter STOP.
        * tree-ssa-loop-niter.c (tree_simplify_using_condition_1): Delete
        parameter STOP and update calls.  Move expand_simple_operations
        function call from here...
        (simplify_using_initial_conditions): ...to here.  Delete parameter
        STOP.
        (tree_simplify_using_condition): Delete parameter STOP.
        * tree-scalar-evolution.c (simple_iv_with_niters): Update call to
        simplify_using_initial_conditions.

Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/tree-scalar-evolution.c
    trunk/gcc/tree-ssa-loop-niter.c
    trunk/gcc/tree-ssa-loop-niter.h
>From gcc-bugs-return-533802-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 15:05:58 2016
Return-Path: <gcc-bugs-return-533802-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 79807 invoked by alias); 9 Aug 2016 15:05:58 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 79686 invoked by uid 48); 9 Aug 2016 15:05:45 -0000
From: "hjl.tools at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/72843] [7 Regression] internal compiler error: in lra_set_insn_recog_data, at lra.c:964
Date: Tue, 09 Aug 2016 15:05:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: hjl.tools at gmail dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72843-4-8qtWsgxkgn@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72843-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72843-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01138.txt.bz2
Content-length: 279

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72843

--- Comment #4 from H.J. Lu <hjl.tools at gmail dot com> ---
(In reply to Uroš Bizjak from comment #3)
> Created attachment 39084 [details]
> Proposed patch
> 
> HJ, can you please test this patch?

It works.  Thanks.
>From gcc-bugs-return-533803-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 15:08:49 2016
Return-Path: <gcc-bugs-return-533803-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 89784 invoked by alias); 9 Aug 2016 15:08:48 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 89555 invoked by uid 55); 9 Aug 2016 15:08:34 -0000
From: "amker at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/72772] Missed SCEV after pass reordering@236440
Date: Tue, 09 Aug 2016 15:08:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: amker at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72772-4-Q3Q9HGRCWx@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72772-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72772-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01139.txt.bz2
Content-length: 652

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72772

--- Comment #11 from amker at gcc dot gnu.org ---
Author: amker
Date: Tue Aug  9 15:08:02 2016
New Revision: 239291

URL: https://gcc.gnu.org/viewcvs?rev=239291&root=gcc&view=rev
Log:
        PR tree-optimization/72772
        * tree-ssa-loop-niter.c (loop_exits_before_overflow): Check equality
        for expanded base.

        gcc/testsuite
        PR tree-optimization/pr72772
        * gcc.dg/tree-ssa/pr72772.c: New test.

Added:
    trunk/gcc/testsuite/gcc.dg/tree-ssa/pr72772.c
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/tree-ssa-loop-niter.c
>From gcc-bugs-return-533805-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 15:11:19 2016
Return-Path: <gcc-bugs-return-533805-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 102275 invoked by alias); 9 Aug 2016 15:11:19 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 100307 invoked by uid 48); 9 Aug 2016 15:11:10 -0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72852] constexpr inside class template cannot be recognized
Date: Tue, 09 Aug 2016 15:11:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.3.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc cf_known_to_work target_milestone everconfirmed cf_known_to_fail
Message-ID: <bug-72852-4-NpMghQTemu@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72852-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72852-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01141.txt.bz2
Content-length: 794

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72852

Martin Liška <marxin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-09
                 CC|                            |marxin at gcc dot gnu.org
      Known to work|                            |6.1.0, 7.0
   Target Milestone|---                         |5.5
     Ever confirmed|0                           |1
      Known to fail|                            |4.9.4, 5.4.0

--- Comment #1 from Martin Liška <marxin at gcc dot gnu.org> ---
Confirmed, fixed on trunk (as well as on GCC-6 branch) by r233365.
>From gcc-bugs-return-533806-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 15:11:41 2016
Return-Path: <gcc-bugs-return-533806-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 103768 invoked by alias); 9 Aug 2016 15:11:40 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 103299 invoked by uid 55); 9 Aug 2016 15:11:28 -0000
From: "amker at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/33707] scev not handling unsigned conversion
Date: Tue, 09 Aug 2016 15:11:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 4.3.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: minor
X-Bugzilla-Who: amker at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-33707-4-KbpSugKuHY@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-33707-4@http.gcc.gnu.org/bugzilla/>
References: <bug-33707-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01142.txt.bz2
Content-length: 441

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=33707

--- Comment #3 from amker at gcc dot gnu.org ---
Author: amker
Date: Tue Aug  9 15:10:55 2016
New Revision: 239292

URL: https://gcc.gnu.org/viewcvs?rev=239292&root=gcc&view=rev
Log:
        gcc/testsuite
        PR tree-optimization/33707
        * gcc.dg/vect/pr33707.c: New test.

Added:
    trunk/gcc/testsuite/gcc.dg/vect/pr33707.c
Modified:
    trunk/gcc/testsuite/ChangeLog
>From gcc-bugs-return-533804-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 15:11:19 2016
Return-Path: <gcc-bugs-return-533804-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 102267 invoked by alias); 9 Aug 2016 15:11:19 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 99946 invoked by uid 48); 9 Aug 2016 15:11:06 -0000
From: "trippels at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72849] [7 Regression] r239267 causes Firefox build failure
Date: Tue, 09 Aug 2016 15:11:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: trippels at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jason at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-72849-4-ZQ1At7mpQv@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72849-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72849-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01140.txt.bz2
Content-length: 460

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72849

Markus Trippelsdorf <trippels at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #3 from Markus Trippelsdorf <trippels at gcc dot gnu.org> ---
Thanks for the quick fix.
>From gcc-bugs-return-533807-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 15:28:38 2016
Return-Path: <gcc-bugs-return-533807-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 13883 invoked by alias); 9 Aug 2016 15:28:38 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 13470 invoked by uid 48); 9 Aug 2016 15:28:25 -0000
From: "alexhenrie24 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/72830] istream::seekg should not reset eofbit if -std=c++98
Date: Tue, 09 Aug 2016 15:28:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 4.6.3
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: alexhenrie24 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72830-4-TQw0CTyMO5@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72830-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72830-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01143.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72830

--- Comment #2 from Alex Henrie <alexhenrie24 at gmail dot com> ---
All versions of GCC 5 and GCC 6 have the same problem.
>From gcc-bugs-return-533808-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 15:36:20 2016
Return-Path: <gcc-bugs-return-533808-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 23872 invoked by alias); 9 Aug 2016 15:36:19 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 23722 invoked by uid 55); 9 Aug 2016 15:36:07 -0000
From: "uros at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/72843] [7 Regression] internal compiler error: in lra_set_insn_recog_data, at lra.c:964
Date: Tue, 09 Aug 2016 15:36:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: uros at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72843-4-rQrlDWHvHM@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72843-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72843-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01144.txt.bz2
Content-length: 598

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72843

--- Comment #5 from uros at gcc dot gnu.org ---
Author: uros
Date: Tue Aug  9 15:35:34 2016
New Revision: 239293

URL: https://gcc.gnu.org/viewcvs?rev=239293&root=gcc&view=rev
Log:
        PR target/72843
        * config/i386/i386.md (*movtf_internal): Use
        lra_in_progress || reload_completed instead of !can_create_pseudo_p
        in the insn constraint.
        (*movxf_internal): Ditto.
        (*movdf_internal): Ditto.
        (*movsf_internal): Ditto.


Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/config/i386/i386.md
>From gcc-bugs-return-533809-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 15:42:22 2016
Return-Path: <gcc-bugs-return-533809-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 52175 invoked by alias); 9 Aug 2016 15:42:22 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 52094 invoked by uid 48); 9 Aug 2016 15:42:09 -0000
From: "ubizjak at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/72843] [7 Regression] internal compiler error: in lra_set_insn_recog_data, at lra.c:964
Date: Tue, 09 Aug 2016 15:42:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ubizjak at gmail dot com
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: ubizjak at gmail dot com
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status assigned_to target_milestone
Message-ID: <bug-72843-4-RqMdv0zbDA@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72843-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72843-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01145.txt.bz2
Content-length: 541

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72843

Uroš Bizjak <ubizjak at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED
           Assignee|unassigned at gcc dot gnu.org      |ubizjak at gmail dot com
   Target Milestone|7.0                         |5.5

--- Comment #6 from Uroš Bizjak <ubizjak at gmail dot com> ---
Fixed in mainline, backports pending.
>From gcc-bugs-return-533810-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 16:06:17 2016
Return-Path: <gcc-bugs-return-533810-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 12712 invoked by alias); 9 Aug 2016 16:06:16 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 128217 invoked by uid 55); 9 Aug 2016 16:06:04 -0000
From: "jamborm at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ipa/71981] [6/7 Regression] ICE at -O2 and -O3 on x86_64-linux-gnu (internal compiler error: in get_dynamic_type, at ipa-polymorphic-call.c:1667)
Date: Tue, 09 Aug 2016 16:06:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ipa
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jamborm at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: jamborm at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71981-4-qnFSXMOLQD@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71981-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71981-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01146.txt.bz2
Content-length: 722

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71981

--- Comment #4 from Martin Jambor <jamborm at gcc dot gnu.org> ---
Author: jamborm
Date: Tue Aug  9 16:05:30 2016
New Revision: 239294

URL: https://gcc.gnu.org/viewcvs?rev=239294&root=gcc&view=rev
Log:
[PR ipa/71981] Make get_dynamic_type grok MEM_REF

2016-08-09  Martin Jambor  <mjambor@suse.cz>

        PR ipa/71981
        * ipa-polymorphic-call.c (get_dynamic_type): Bail out gracefully
        if instance is a MEM_REF.

testsuite/
        PR ipa/71981
        * gcc.dg/ipa/pr71981.c: New test.


Added:
    trunk/gcc/testsuite/gcc.dg/ipa/pr71981.c
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/ipa-polymorphic-call.c
    trunk/gcc/testsuite/ChangeLog
>From gcc-bugs-return-533811-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 16:14:23 2016
Return-Path: <gcc-bugs-return-533811-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 14293 invoked by alias); 9 Aug 2016 16:14:22 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 14204 invoked by uid 55); 9 Aug 2016 16:14:10 -0000
From: "jamborm at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ipa/71981] [6/7 Regression] ICE at -O2 and -O3 on x86_64-linux-gnu (internal compiler error: in get_dynamic_type, at ipa-polymorphic-call.c:1667)
Date: Tue, 09 Aug 2016 16:14:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ipa
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jamborm at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: jamborm at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71981-4-yfWKUUaP8T@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71981-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71981-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01147.txt.bz2
Content-length: 787

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71981

--- Comment #5 from Martin Jambor <jamborm at gcc dot gnu.org> ---
Author: jamborm
Date: Tue Aug  9 16:13:37 2016
New Revision: 239295

URL: https://gcc.gnu.org/viewcvs?rev=239295&root=gcc&view=rev
Log:
[PR ipa/71981] Make get_dynamic_type grok MEM_REF

2016-08-09  Martin Jambor  <mjambor@suse.cz>

        PR ipa/71981
        * ipa-polymorphic-call.c (get_dynamic_type): Bail out gracefully
        if instance is a MEM_REF.

testsuite/
        PR ipa/71981
        * gcc.dg/ipa/pr71981.c: New test.



Added:
    branches/gcc-6-branch/gcc/testsuite/gcc.dg/ipa/pr71981.c
Modified:
    branches/gcc-6-branch/gcc/ChangeLog
    branches/gcc-6-branch/gcc/ipa-polymorphic-call.c
    branches/gcc-6-branch/gcc/testsuite/ChangeLog
>From gcc-bugs-return-533812-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 16:37:09 2016
Return-Path: <gcc-bugs-return-533812-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 27031 invoked by alias); 9 Aug 2016 16:37:09 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 26910 invoked by uid 48); 9 Aug 2016 16:36:56 -0000
From: "acsawdey at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72853] New: gcc/testsuite/gcc.c-torture/execute/20021120-1.c generates incorrect stxssp op with -mcpu=power9
Date: Tue, 09 Aug 2016 16:37:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: acsawdey at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-72853-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01148.txt.bz2
Content-length: 1163

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72853

            Bug ID: 72853
           Summary: gcc/testsuite/gcc.c-torture/execute/20021120-1.c
                    generates incorrect stxssp op with -mcpu=power9
           Product: gcc
           Version: 6.2.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: target
          Assignee: unassigned at gcc dot gnu.org
          Reporter: acsawdey at gcc dot gnu.org
  Target Milestone: ---

Created attachment 39088
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39088&action=edit
preprocessed version of 20021120-1.c

Compiling the test case with options:

-mcpu=power9 -fno-diagnostics-show-caret -fdiagnostics-color=never -O3
-fomit-frame-pointer -funroll-loops -fpeel-loops -ftracer -finline-functions -w
-lm -o ./20021120-1.exe

Results in 

/tmp/cc9aoc1f.s: Assembler messages:
/tmp/cc9aoc1f.s:552: Error: operand out of domain (30 is not a multiple of 4)
/tmp/cc9aoc1f.s:552: Error: syntax error; found `,', expected `('
/tmp/cc9aoc1f.s:552: Error: junk at end of line: `,24'

The compiler is gcc-6-branch svn version 239277.
>From gcc-bugs-return-533813-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 16:40:23 2016
Return-Path: <gcc-bugs-return-533813-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 48462 invoked by alias); 9 Aug 2016 16:40:21 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 48112 invoked by uid 55); 9 Aug 2016 16:40:08 -0000
From: "mpolacek at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/7652] -Wswitch-break : Warn if a switch case falls through
Date: Tue, 09 Aug 2016 16:40:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: mpolacek at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: mpolacek at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-7652-4-RTjD0eVj22@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-7652-4@http.gcc.gnu.org/bugzilla/>
References: <bug-7652-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01149.txt.bz2
Content-length: 830

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=7652

--- Comment #56 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
Author: mpolacek
Date: Tue Aug  9 16:39:28 2016
New Revision: 239297

URL: https://gcc.gnu.org/viewcvs?rev=239297&root=gcc&view=rev
Log:
        PR c/7652
gcc/c-family/
        * c-ada-spec.c (dump_generic_ada_node): Add return.
gcc/
        * cselib.c (cselib_expand_value_rtx_1): Add return.
        * gengtype.c (dbgprint_count_type_at): Likewise.
        * hsa-gen.c (gen_hsa_insn_for_internal_fn_call): Likewise.
        * reg-stack.c (get_true_reg): Restructure to avoid fallthrough warning.

Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/c-family/ChangeLog
    trunk/gcc/c-family/c-ada-spec.c
    trunk/gcc/cselib.c
    trunk/gcc/gengtype.c
    trunk/gcc/hsa-gen.c
    trunk/gcc/reg-stack.c
>From gcc-bugs-return-533814-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 16:43:35 2016
Return-Path: <gcc-bugs-return-533814-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 61092 invoked by alias); 9 Aug 2016 16:43:34 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 60842 invoked by uid 48); 9 Aug 2016 16:43:22 -0000
From: "cesar at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/72741] Fortran OpenACC routine directive doesn't properly handle clauses specifying the level of parallelism
Date: Tue, 09 Aug 2016 16:43:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: openacc
X-Bugzilla-Severity: normal
X-Bugzilla-Who: cesar at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: cesar at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72741-4-Hnw6rmb2vu@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72741-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72741-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01150.txt.bz2
Content-length: 1160

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72741

--- Comment #4 from cesar at gcc dot gnu.org ---
I could be mistaken, but I don't think there's anything we can do about that
test case because fortran doesn't have file scope. Specifically, in your
example,

SUBROUTINE r_w
  IMPLICIT NONE
  INTEGER :: i
  !$ACC ROUTINE WORKER

  !$ACC LOOP
  DO i = 1, 12345
  END DO
END SUBROUTINE r_w

PROGRAM main
  IMPLICIT NONE
  EXTERNAL :: r_w
  !$ACC ROUTINE (r_w) GANG

  !$ACC PARALLEL
  CALL r_w
  !$ACC END PARALLEL
END PROGRAM main

from program main's perspective, r_w should be an acc routine with a gang
attribute, but that's only because the end user included an explicit 'external'
function declaration. I'm not sure how to catch mismatched function
declarations in fortran, especially if lto is not enabled. If lto is enabled,
we could add some more checking in pass oacc_device_lower. But I don't think
there's anything else to do in the fortran front end.

It should be noted that if the user wants to avoid these types of problems, acc
routines should be placed inside modules. That way, each procedure sees the
same acc routine attributes.
>From gcc-bugs-return-533816-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 16:55:54 2016
Return-Path: <gcc-bugs-return-533816-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 123443 invoked by alias); 9 Aug 2016 16:55:53 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 111972 invoked by uid 55); 9 Aug 2016 16:55:40 -0000
From: "jason at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/71712] Redundant ABI tags for conversion operator
Date: Tue, 09 Aug 2016 16:55:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords: ABI
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jason at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jason at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71712-4-gfqhVVGsqQ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71712-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71712-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01152.txt.bz2
Content-length: 579

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71712

--- Comment #1 from Jason Merrill <jason at gcc dot gnu.org> ---
Author: jason
Date: Tue Aug  9 16:55:08 2016
New Revision: 239299

URL: https://gcc.gnu.org/viewcvs?rev=239299&root=gcc&view=rev
Log:
        PR c++/71712 - ABI tags on conversion ops.

        * class.c (check_abi_tags): Don't duplicate tags for conversion ops.

Added:
    trunk/gcc/testsuite/g++.dg/abi/abi-tag22.C
    trunk/gcc/testsuite/g++.dg/abi/abi-tag22a.C
Modified:
    trunk/gcc/cp/ChangeLog
    trunk/gcc/cp/class.c
    trunk/gcc/cp/mangle.c
>From gcc-bugs-return-533815-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 16:55:20 2016
Return-Path: <gcc-bugs-return-533815-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 96513 invoked by alias); 9 Aug 2016 16:55:20 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 93930 invoked by uid 48); 9 Aug 2016 16:55:07 -0000
From: "egall at gwmail dot gwu.edu" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/71009] g++: ICE on modified gdb/valarith.c with -Ofast
Date: Tue, 09 Aug 2016 16:55:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: egall at gwmail dot gwu.edu
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: attachments.created
Message-ID: <bug-71009-4-9y9Ai8BG4Q@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71009-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71009-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01151.txt.bz2
Content-length: 1208

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71009

--- Comment #7 from Eric Gallager <egall at gwmail dot gwu.edu> ---
Created attachment 39089
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39089&action=edit
some compressed compiler output

Still happens with trunk from the end of July. I tried playing around with some
of the developer options to generate some dumpfiles, but there's too many of
them, and when I group them into folders, the archives are too big to upload
even after compressing them, so I'm not really sure what to upload, besides the
attached tempfiles.

Current version info:
$ /usr/local/bin/g++ -march=native -v
Using built-in specs.
COLLECT_GCC=/usr/local/bin/g++
COLLECT_LTO_WRAPPER=/usr/local/libexec/gcc/i386-apple-darwin9.8.0/7.0.0/lto-wrapper
Target: i386-apple-darwin9.8.0
Configured with: ../configure --disable-werror
--enable-languages=c,c++,lto,objc,obj-c++ --enable-stage1-checking=release -C
--with-system-libunwind --enable-secureplt --enable-frame-pointer
--enable-debug --with-isl --enable-objc-gc --enable-host-shared
CC=/usr/local/bin/gcc CXX=/usr/local/bin/g++
Thread model: posix
gcc version 7.0.0 20160730 (experimental) (GCC)
>From gcc-bugs-return-533817-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 17:02:05 2016
Return-Path: <gcc-bugs-return-533817-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 110376 invoked by alias); 9 Aug 2016 17:02:04 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 110212 invoked by uid 48); 9 Aug 2016 17:01:52 -0000
From: "jason at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/71712] Redundant ABI tags for conversion operator
Date: Tue, 09 Aug 2016 17:02:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords: ABI
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jason at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jason at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution target_milestone
Message-ID: <bug-71712-4-dZEbXSwYPM@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71712-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71712-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01153.txt.bz2
Content-length: 486

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71712

Jason Merrill <jason at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED
   Target Milestone|---                         |7.0

--- Comment #2 from Jason Merrill <jason at gcc dot gnu.org> ---
Fixed for GCC 7.
>From gcc-bugs-return-533818-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 17:21:00 2016
Return-Path: <gcc-bugs-return-533818-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 34391 invoked by alias); 9 Aug 2016 17:21:00 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 34221 invoked by uid 55); 9 Aug 2016 17:20:47 -0000
From: "renlin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/64971] [5 Regression] gcc.c-torture/compile/pr37433.c ICEs with -mabi=ilp32
Date: Tue, 09 Aug 2016 17:21:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: ice-on-valid-code, patch
X-Bugzilla-Severity: normal
X-Bugzilla-Who: renlin at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: pinskia at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-64971-4-HHJFjWQW6f@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-64971-4@http.gcc.gnu.org/bugzilla/>
References: <bug-64971-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01154.txt.bz2
Content-length: 698

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64971

--- Comment #17 from Renlin Li <renlin at gcc dot gnu.org> ---
Author: renlin
Date: Tue Aug  9 17:20:14 2016
New Revision: 239300

URL: https://gcc.gnu.org/viewcvs?rev=239300&root=gcc&view=rev
Log:
[PATCH][PR64971]Convert function pointer to Pmode when emit call.

gcc/

2016-08-04  Renlin Li  <renlin.li@arm.com>

        PR middle-end/64971
        * calls.c (prepare_call_address): Convert funexp to Pmode when
        necessary.
        * config/aarch64/aarch64.md (sibcall): Remove fix for PR 64971.
        (sibcall_value): Likewise.


Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/calls.c
    trunk/gcc/config/aarch64/aarch64.md
>From gcc-bugs-return-533819-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 17:27:49 2016
Return-Path: <gcc-bugs-return-533819-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 59488 invoked by alias); 9 Aug 2016 17:27:49 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 59335 invoked by uid 48); 9 Aug 2016 17:27:36 -0000
From: "meissner at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72853] gcc/testsuite/gcc.c-torture/execute/20021120-1.c generates incorrect stxssp op with -mcpu=power9
Date: Tue, 09 Aug 2016 17:27:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: meissner at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72853-4-43WLRXznAO@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72853-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72853-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01155.txt.bz2
Content-length: 291

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72853

--- Comment #1 from Michael Meissner <meissner at gcc dot gnu.org> ---
I believe this is a duplicate of PR 72802 that Alan fixed on August 8th for
trunk (subversion id 239233), and backported to the gcc-6-branch (subversion id
239269)
>From gcc-bugs-return-533820-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 17:29:57 2016
Return-Path: <gcc-bugs-return-533820-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 62000 invoked by alias); 9 Aug 2016 17:29:57 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 61866 invoked by uid 48); 9 Aug 2016 17:29:45 -0000
From: "law at redhat dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71691] [6/7 Regression] wrong code at -O3 in both 32-bit and 64-bit modes on x86_64-linux-gnu (Floating point exception)
Date: Tue, 09 Aug 2016 17:29:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: law at redhat dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71691-4-spizAyGFiz@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71691-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71691-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01156.txt.bz2
Content-length: 1400

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71691

--- Comment #9 from Jeffrey A. Law <law at redhat dot com> ---
Based on c#6 I started thinking about how to make tree-ssa-loop-unswitch.c
appropriately conservative when a condition references a maybe-undefined
SSA_NAME.

To recap, tree_may_unswitch_on has this test:

     /* Unswitching on undefined values would introduce undefined
         behavior that the original program might never exercise.  */
      if (ssa_undefined_value_p (use, true))
        return NULL_TREE;

The problem is ssa_undefined_value_p returns an optimistic result -- ie, it
will returns true iff the definition statement is empty.  So it will return
false for an SSA_NAME that is set from a PHI node where one or more arguments
have undefined values.

ISTM this can be pretty easily fixed.

Create a bitmap and initialize it to all the SSA_NAMEs where
ssa_undefined_value_p is true.

Examine each PHI, if the PHI has an argument on its RHS that has the bit set in
the bitmap, then set the bit for the LHS of the PHI

Iterate on the PHIs until nothing has changed.

[ Yes, this isn't the most efficient.  Implementation would be different to
improve efficiency. ]

The result is the conservative set of SSA_NAMEs that may be undefined.  This
satisfies the need of unswitching and potentially other passes that really want
the conservative set.  


Thoughts?
>From gcc-bugs-return-533821-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 17:40:40 2016
Return-Path: <gcc-bugs-return-533821-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 78574 invoked by alias); 9 Aug 2016 17:40:40 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 78223 invoked by uid 48); 9 Aug 2016 17:40:27 -0000
From: "manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/52116] pragma GCC diagnostic only acts on some lines
Date: Tue, 09 Aug 2016 17:40:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 4.7.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: manu at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-52116-4-q7nynaCuhh@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-52116-4@http.gcc.gnu.org/bugzilla/>
References: <bug-52116-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01157.txt.bz2
Content-length: 872

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=52116

Manuel López-Ibáñez <manu at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--- Comment #5 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
(In reply to Ben Longbons from comment #0)
> Case 1. Wrapping a warning location in _Pragma("GCC diagnostic ignored
> \"-Wshadow\"") does not work (sometimes). This precludes error suppression
> during macro expansion. Oddly, it suppresses as expected (mostly) if both
> are on the same line. (Although it behaves oddly if one is "warning" and one
> is "ignored")

This seems fixed in GCC 7.0, possibly earlier.
>From gcc-bugs-return-533822-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 17:58:46 2016
Return-Path: <gcc-bugs-return-533822-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 16789 invoked by alias); 9 Aug 2016 17:58:46 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 16215 invoked by uid 55); 9 Aug 2016 17:58:32 -0000
From: "edlinger at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/72833] [7 regression] error in fortran/parse.c (unexpected_eof) on Mac OS X 10.7
Date: Tue, 09 Aug 2016 17:58:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: edlinger at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72833-4-tSjR1M05FE@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72833-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72833-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01158.txt.bz2
Content-length: 836

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72833

--- Comment #14 from Bernd Edlinger <edlinger at gcc dot gnu.org> ---
Author: edlinger
Date: Tue Aug  9 17:58:00 2016
New Revision: 239301

URL: https://gcc.gnu.org/viewcvs?rev=239301&root=gcc&view=rev
Log:
2016-08-09  Bernd Edlinger  <bernd.edlinger@hotmail.de>

        PR bootstrap/72833
        * fixincl.tpl (version-compare): Fix generation with autogen 5.18.
        * inclhack.def (darwin_longjmp_noreturn): New fix.
        * fixincl.x: Regenerated.
        * tests/base/i386/setjmp.h [DARWIN_LONGJMP_NORETURN_CHECK]: new test.

Added:
    trunk/fixincludes/tests/base/i386/
    trunk/fixincludes/tests/base/i386/setjmp.h
Modified:
    trunk/fixincludes/ChangeLog
    trunk/fixincludes/fixincl.tpl
    trunk/fixincludes/fixincl.x
    trunk/fixincludes/inclhack.def
>From gcc-bugs-return-533823-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 18:00:58 2016
Return-Path: <gcc-bugs-return-533823-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 29873 invoked by alias); 9 Aug 2016 18:00:54 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 29647 invoked by uid 48); 9 Aug 2016 18:00:40 -0000
From: "meissner at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72853] gcc/testsuite/gcc.c-torture/execute/20021120-1.c generates incorrect stxssp op with -mcpu=power9
Date: Tue, 09 Aug 2016 18:00:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: meissner at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: attachments.created
Message-ID: <bug-72853-4-nf3YBbU5m8@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72853-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72853-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01159.txt.bz2
Content-length: 375

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72853

--- Comment #2 from Michael Meissner <meissner at gcc dot gnu.org> ---
Created attachment 39090
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39090&action=edit
Proposed patch to fix the problem

Alan mixed up the stxsspx and stxssp alternatives.  I haven't yet done the
bootstrap and make check on this patch.
>From gcc-bugs-return-533824-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 18:12:28 2016
Return-Path: <gcc-bugs-return-533824-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 40565 invoked by alias); 9 Aug 2016 18:12:27 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 40454 invoked by uid 48); 9 Aug 2016 18:12:16 -0000
From: "segher at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/71724] [5/6/7 Regression] ICE: Segmentation fault, deep recursion between combine_simplify_rtx and subst
Date: Tue, 09 Aug 2016 18:12:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 5.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: segher at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-71724-4-VJ8lfYWwRT@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71724-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71724-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01160.txt.bz2
Content-length: 454

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71724

Segher Boessenkool <segher at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |helloqirun at gmail dot com

--- Comment #2 from Segher Boessenkool <segher at gcc dot gnu.org> ---
*** Bug 72746 has been marked as a duplicate of this bug. ***
>From gcc-bugs-return-533825-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 18:12:28 2016
Return-Path: <gcc-bugs-return-533825-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 40577 invoked by alias); 9 Aug 2016 18:12:28 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 40402 invoked by uid 48); 9 Aug 2016 18:12:15 -0000
From: "segher at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: =?UTF-8?B?W0J1ZyB0cmVlLW9wdGltaXphdGlvbi83Mjc0Nl0gWzUvNi83IFJlZ3Jlc3Np?= =?UTF-8?B?b25dIGdjYyBJQ0UgYXQgLU8yIGFuZCBhYm92ZSBvbiB2YWxpZCBjb2RlIG9u?= =?UTF-8?B?IHg4Nl82NC1saW51eC1nbnUgd2l0aCDigJxzZWcgZmF1bHTigJ0=?Date: Tue, 09 Aug 2016 18:12:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: segher at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: DUPLICATE
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-72746-4-CToluIkTVt@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72746-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72746-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01161.txt.bz2
Content-length: 516

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72746

Segher Boessenkool <segher at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |DUPLICATE

--- Comment #3 from Segher Boessenkool <segher at gcc dot gnu.org> ---
Duplicate of PR71724.

*** This bug has been marked as a duplicate of bug 71724 ***
>From gcc-bugs-return-533826-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 20:03:33 2016
Return-Path: <gcc-bugs-return-533826-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 94399 invoked by alias); 9 Aug 2016 20:03:33 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 94278 invoked by uid 48); 9 Aug 2016 20:03:19 -0000
From: "bergner at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72853] gcc/testsuite/gcc.c-torture/execute/20021120-1.c generates incorrect stxssp op with -mcpu=power9
Date: Tue, 09 Aug 2016 20:03:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: bergner at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cf_known_to_work target_milestone everconfirmed cf_known_to_fail
Message-ID: <bug-72853-4-NqYkai1B3S@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72853-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72853-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01162.txt.bz2
Content-length: 684

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72853

Peter Bergner <bergner at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-09
      Known to work|                            |6.1.0
   Target Milestone|---                         |6.2
     Ever confirmed|0                           |1
      Known to fail|                            |6.2.0, 7.0

--- Comment #3 from Peter Bergner <bergner at gcc dot gnu.org> ---
Confirmed and this is a regression from 6.1.
>From gcc-bugs-return-533827-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 20:08:06 2016
Return-Path: <gcc-bugs-return-533827-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 125631 invoked by alias); 9 Aug 2016 20:08:06 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 125508 invoked by uid 48); 9 Aug 2016 20:07:53 -0000
From: "wschmidt at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/72855] New: Long compile time due to integrity checking during dataflow analysis per loop
Date: Tue, 09 Aug 2016 20:08:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 5.4.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wschmidt at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-72855-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01163.txt.bz2
Content-length: 3359

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72855

            Bug ID: 72855
           Summary: Long compile time due to integrity checking during
                    dataflow analysis per loop
           Product: gcc
           Version: 5.4.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: rtl-optimization
          Assignee: unassigned at gcc dot gnu.org
          Reporter: wschmidt at gcc dot gnu.org
  Target Milestone: ---

Created attachment 39091
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39091&action=edit
C++ file showing excessive compile time

This was reported to me for the gcc compilers on Ubuntu 14.04 and 16.10, and
occurs on all compilers from GCC 4.8 through current trunk.  A partial
backtrace shows:

#0  df_ref_equal_p (ref1=0x1000fca3c40, ref2=0x1000d2e0570)
    at /home/wschmidt/gcc/gcc-mainline-base/gcc/df-scan.c:2045
#1  0x0000000010647a00 in df_ref_equal_p (ref2=0x1000d2e0570, 
    ref1=<optimized out>)
    at /home/wschmidt/gcc/gcc-mainline-base/gcc/df-scan.c:2041
#2  df_refs_verify (new_rec=0x3fffddb13f30, old_rec=0x1000d2e0570, 
    abort_if_fail=true)
    at /home/wschmidt/gcc/gcc-mainline-base/gcc/df-scan.c:4030
#3  0x000000001064e518 in df_insn_refs_verify (collection_rec=0x3fffddb13f30, 
    bb=0x3fffa0baf908, insn=0x3fff98487340, abort_if_fail=true)
    at /home/wschmidt/gcc/gcc-mainline-base/gcc/df-scan.c:4113
#4  0x000000001064eca0 in df_bb_verify (bb=0x3fffa0baf908)
    at /home/wschmidt/gcc/gcc-mainline-base/gcc/df-scan.c:4142
#5  0x0000000010652fa8 in df_scan_verify ()
    at /home/wschmidt/gcc/gcc-mainline-base/gcc/df-scan.c:4274
#6  0x0000000010635404 in df_verify ()
    at /home/wschmidt/gcc/gcc-mainline-base/gcc/df-core.c:1830
#7  df_analyze_1 () at /home/wschmidt/gcc/gcc-mainline-base/gcc/df-core.c:1216
#8  0x000000001091ced0 in iv_analysis_loop_init (loop=0x3fff9ef663e0)
    at /home/wschmidt/gcc/gcc-mainline-base/gcc/loop-iv.c:285
#9  0x0000000011309d98 in doloop_optimize (loop=0x3fff9ef663e0)
    at /home/wschmidt/gcc/gcc-mainline-base/gcc/loop-doloop.c:624
#10 doloop_optimize_loops ()

This is where we spend the lion's share of 2 hours of compilation time for the
attached example.  Using -fno-checking on GCC 6 drops the compilation time to 7
minutes on a POWER8 with lots of memory.  However, this workaround is not
available on earlier compiler versions.  Note that the Ubuntu compilers are
built with --enable-checking=release.

The test case does (far too) aggressive inlining which creates a large function
with many loops.  It appears that iv_analysis_loop_init calls df_analyze_loop
for each loop, which causes df_verify to be run over the whole function many
times.  It's not that efficient to begin with, so...

Given the nature of the problem, reducing the test case isn't very practical,
and since the only headers are from libstdc++, I've provided the
un-preprocessed code (which is much smaller due to all the macro expansion). 
To reproduce:

$ gcc -std=gnu++1y -O3 --param early-inlining-insns=200 -c ltc144607.cpp

This is very similar to a problem Richard looked at before: 
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=38518.  Something similar should
probably be done to try to limit how often the df_analyze code is called.
>From gcc-bugs-return-533828-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 20:12:49 2016
Return-Path: <gcc-bugs-return-533828-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 31810 invoked by alias); 9 Aug 2016 20:12:49 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 31621 invoked by uid 48); 9 Aug 2016 20:12:36 -0000
From: "mikulas at artax dot karlin.mff.cuni.cz" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/72848] profiledbootstrap: internal compiler error: in streamer_write_gcov_count_stream, at data-streamer-out.c:366
Date: Tue, 09 Aug 2016 20:12:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords: build, ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mikulas at artax dot karlin.mff.cuni.cz
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72848-4-AHui0UT0V9@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72848-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72848-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01164.txt.bz2
Content-length: 200

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72848

--- Comment #2 from mikulas at artax dot karlin.mff.cuni.cz ---
gcc/hwint.h always defines HOST_WIDE_INT as 64-bit value. How could it be
32-bit?
>From gcc-bugs-return-533829-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 20:33:47 2016
Return-Path: <gcc-bugs-return-533829-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 96183 invoked by alias); 9 Aug 2016 20:33:47 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 94141 invoked by uid 55); 9 Aug 2016 20:33:32 -0000
From: "tkoenig at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/71795] [5 Regression] Two Bugs in array constructors (optimization)
Date: Tue, 09 Aug 2016 20:33:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 4.9.1
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: critical
X-Bugzilla-Who: tkoenig at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: tkoenig at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71795-4-kWn4xyxPqb@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71795-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71795-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01165.txt.bz2
Content-length: 911

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71795

--- Comment #12 from Thomas Koenig <tkoenig at gcc dot gnu.org> ---
Author: tkoenig
Date: Tue Aug  9 20:33:00 2016
New Revision: 239302

URL: https://gcc.gnu.org/viewcvs?rev=239302&root=gcc&view=rev
Log:
2016-08-09  Thomas Koenig  <tkoenig@gcc.gnu.org>

        Backport from trunk
        PR fortran/71795
        * frontend-passes.c (combine_array_constructor):  Don't
        do anything if the expression is inside an array iterator.

2016-08-09  Thomas Koenig  <tkoenig@gcc.gnu.org>

        Backport from trunk
        PR fortran/71795
        * gfortran.dg/array_constructor_50.f90:  New test.


Added:
    branches/gcc-5-branch/gcc/testsuite/gfortran.dg/array_constructor_50.f90
Modified:
    branches/gcc-5-branch/gcc/fortran/ChangeLog
    branches/gcc-5-branch/gcc/fortran/frontend-passes.c
    branches/gcc-5-branch/gcc/testsuite/ChangeLog
>From gcc-bugs-return-533830-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 20:34:28 2016
Return-Path: <gcc-bugs-return-533830-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 97260 invoked by alias); 9 Aug 2016 20:34:28 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 97124 invoked by uid 48); 9 Aug 2016 20:34:15 -0000
From: "tkoenig at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/71795] [5 Regression] Two Bugs in array constructors (optimization)
Date: Tue, 09 Aug 2016 20:34:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 4.9.1
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: critical
X-Bugzilla-Who: tkoenig at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: tkoenig at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-71795-4-LMvhMiGiDo@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71795-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71795-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01166.txt.bz2
Content-length: 458

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71795

Thomas Koenig <tkoenig at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #13 from Thomas Koenig <tkoenig at gcc dot gnu.org> ---
Fixed on all open branches, closing.
>From gcc-bugs-return-533831-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 20:42:08 2016
Return-Path: <gcc-bugs-return-533831-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 114667 invoked by alias); 9 Aug 2016 20:42:08 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 113268 invoked by uid 48); 9 Aug 2016 20:41:55 -0000
From: "tkoenig at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/67757] ICE after "ambiguous reference"
Date: Tue, 09 Aug 2016 20:42:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 4.9.3
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: tkoenig at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cc resolution
Message-ID: <bug-67757-4-VYQc1hUanV@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67757-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67757-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01167.txt.bz2
Content-length: 561

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67757

Thomas Koenig <tkoenig at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |tkoenig at gcc dot gnu.org
         Resolution|---                         |FIXED

--- Comment #4 from Thomas Koenig <tkoenig at gcc dot gnu.org> ---
This no longer ICEs, probably after r238822 .

Closing as fixed.
>From gcc-bugs-return-533832-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 20:45:43 2016
Return-Path: <gcc-bugs-return-533832-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 120488 invoked by alias); 9 Aug 2016 20:45:43 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 120347 invoked by uid 48); 9 Aug 2016 20:45:30 -0000
From: "tkoenig at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/65173] ICE while compiling wrong code
Date: Tue, 09 Aug 2016 20:45:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 4.9.2
X-Bugzilla-Keywords:
X-Bugzilla-Severity: minor
X-Bugzilla-Who: tkoenig at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cc resolution
Message-ID: <bug-65173-4-R2ERmyl1mO@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-65173-4@http.gcc.gnu.org/bugzilla/>
References: <bug-65173-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01168.txt.bz2
Content-length: 541

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65173

Thomas Koenig <tkoenig at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |tkoenig at gcc dot gnu.org
         Resolution|---                         |FIXED

--- Comment #4 from Thomas Koenig <tkoenig at gcc dot gnu.org> ---
All of these ICEs are now gone with r238822.
>From gcc-bugs-return-533833-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 20:46:48 2016
Return-Path: <gcc-bugs-return-533833-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 121557 invoked by alias); 9 Aug 2016 20:46:47 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 121474 invoked by uid 48); 9 Aug 2016 20:46:35 -0000
From: "tkoenig at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/69860] ICE on missing end apostrophe with character(kind=4)
Date: Tue, 09 Aug 2016 20:46:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: tkoenig at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cc resolution
Message-ID: <bug-69860-4-FsYdDlrSZj@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69860-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69860-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01169.txt.bz2
Content-length: 516

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69860

Thomas Koenig <tkoenig at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |tkoenig at gcc dot gnu.org
         Resolution|---                         |FIXED

--- Comment #4 from Thomas Koenig <tkoenig at gcc dot gnu.org> ---
Fixed with r238822.
>From gcc-bugs-return-533834-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 20:48:32 2016
Return-Path: <gcc-bugs-return-533834-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 123648 invoked by alias); 9 Aug 2016 20:48:24 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 122666 invoked by uid 48); 9 Aug 2016 20:47:57 -0000
From: "tkoenig at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/71194] ICE on compilation with fcheck=all ; -fcheck=bounds
Date: Tue, 09 Aug 2016 20:48:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 5.3.1
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: tkoenig at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cc resolution
Message-ID: <bug-71194-4-Gi9d6oZRPU@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71194-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71194-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01170.txt.bz2
Content-length: 638

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71194

Thomas Koenig <tkoenig at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |tkoenig at gcc dot gnu.org
         Resolution|---                         |FIXED

--- Comment #3 from Thomas Koenig <tkoenig at gcc dot gnu.org> ---
(In reply to Tobias Burnus from comment #2)
> Author: burnus
> Date: Mon Jun 20 18:46:43 2016
> New Revision: 237612

This fixed it, closing.
>From gcc-bugs-return-533835-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 20:56:13 2016
Return-Path: <gcc-bugs-return-533835-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 1024 invoked by alias); 9 Aug 2016 20:56:13 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 894 invoked by uid 48); 9 Aug 2016 20:56:00 -0000
From: "tkoenig at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/69396] ICE on type mismatch, in update_ppc_arglist, at fortran/resolve.c:5580
Date: Tue, 09 Aug 2016 20:56:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: tkoenig at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cc resolution
Message-ID: <bug-69396-4-k5Be1bEKSr@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69396-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69396-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01171.txt.bz2
Content-length: 526

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69396

Thomas Koenig <tkoenig at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |tkoenig at gcc dot gnu.org
         Resolution|---                         |FIXED

--- Comment #4 from Thomas Koenig <tkoenig at gcc dot gnu.org> ---
The ICE is gone with r238822.
>From gcc-bugs-return-533836-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 21:00:04 2016
Return-Path: <gcc-bugs-return-533836-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 28948 invoked by alias); 9 Aug 2016 21:00:03 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 14805 invoked by uid 48); 9 Aug 2016 20:59:50 -0000
From: "tkoenig at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/58787] ICE (error recovery) in check_proc_interface
Date: Tue, 09 Aug 2016 21:00:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords: error-recovery, ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: tkoenig at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-58787-4-Jbid1JdaXA@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-58787-4@http.gcc.gnu.org/bugzilla/>
References: <bug-58787-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01172.txt.bz2
Content-length: 150

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58787

--- Comment #4 from Thomas Koenig <tkoenig at gcc dot gnu.org> ---
No longer ICEs with r238822.
>From gcc-bugs-return-533837-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 21:00:32 2016
Return-Path: <gcc-bugs-return-533837-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 55576 invoked by alias); 9 Aug 2016 21:00:29 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 40085 invoked by uid 48); 9 Aug 2016 21:00:18 -0000
From: "tkoenig at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/58787] ICE (error recovery) in check_proc_interface
Date: Tue, 09 Aug 2016 21:00:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords: error-recovery, ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: tkoenig at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-58787-4-TaT9UEdgWl@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-58787-4@http.gcc.gnu.org/bugzilla/>
References: <bug-58787-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01173.txt.bz2
Content-length: 452

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58787

Thomas Koenig <tkoenig at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--- Comment #5 from Thomas Koenig <tkoenig at gcc dot gnu.org> ---
... therefore closing (really).
>From gcc-bugs-return-533838-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 21:03:41 2016
Return-Path: <gcc-bugs-return-533838-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 78496 invoked by alias); 9 Aug 2016 21:03:41 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 78112 invoked by uid 48); 9 Aug 2016 21:03:28 -0000
From: "tkoenig at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/69859] Non-deterministic ICEs on incomplete character declaration statement
Date: Tue, 09 Aug 2016 21:03:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: error-recovery, ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: tkoenig at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-69859-4-r9dphjEetI@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69859-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69859-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01174.txt.bz2
Content-length: 445

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69859

Thomas Koenig <tkoenig at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |tkoenig at gcc dot gnu.org

--- Comment #5 from Thomas Koenig <tkoenig at gcc dot gnu.org> ---
z3.f90 still ICEs, the others appear to be fine with r238822.
>From gcc-bugs-return-533839-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 21:07:04 2016
Return-Path: <gcc-bugs-return-533839-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 87292 invoked by alias); 9 Aug 2016 21:07:04 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 85823 invoked by uid 48); 9 Aug 2016 21:06:51 -0000
From: "peter.klotz99 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/36412] gcov -l -p exceeds maximum file name length
Date: Tue, 09 Aug 2016 21:07:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 4.1.2
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: peter.klotz99 at gmail dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-36412-4-IWosvGLbNf@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-36412-4@http.gcc.gnu.org/bugzilla/>
References: <bug-36412-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01175.txt.bz2
Content-length: 527

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=36412

--- Comment #2 from Peter Klotz <peter.klotz99 at gmail dot com> ---
Hello Martin

It's great that you came up with a solution!

Meanwhile I removed "-l" from the command line to avoid the error and use an
additional script to rename files as soon as they are generated by gcov. This
way file name collisions leading to overwritten files are prevented.

Once your solution is present in a binary distribution I'm happy to remove all
these workarounds.

Regards, Peter.
>From gcc-bugs-return-533840-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 21:08:47 2016
Return-Path: <gcc-bugs-return-533840-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 88730 invoked by alias); 9 Aug 2016 21:08:46 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 88617 invoked by uid 48); 9 Aug 2016 21:08:32 -0000
From: "tkoenig at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/48776] ICE(segfault) after -stdù5 diagnostic error involving PROCEDURE
Date: Tue, 09 Aug 2016 21:08:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 4.7.0
X-Bugzilla-Keywords: error-recovery, ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: tkoenig at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cf_reconfirmed_on cc
Message-ID: <bug-48776-4-fQVRWnlyg9@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-48776-4@http.gcc.gnu.org/bugzilla/>
References: <bug-48776-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01176.txt.bz2
Content-length: 2858

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=48776

Thomas Koenig <tkoenig at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Last reconfirmed|2013-06-16 00:00:00         |2016-8-9
                 CC|                            |tkoenig at gcc dot gnu.org

--- Comment #4 from Thomas Koenig <tkoenig at gcc dot gnu.org> ---
Still many invalid reads using valgrind:

Error: Fortran 2003: PROCEDURE statement at (1)
==13422== Invalid read of size 8
==13422==    at 0x6B2540: gfc_sym_get_dummy_args(gfc_symbol*) (symbol.c:4662)
==13422==    by 0x695632: resolve_fl_procedure (resolve.c:11449)
==13422==    by 0x695632: resolve_symbol(gfc_symbol*) (resolve.c:13884)
==13422==    by 0x6AC8DB: do_traverse_symtree(gfc_symtree*, void
(*)(gfc_symtree*), void (*)(gfc_symbol*)) (symbol.c:3646)
==13422==    by 0x6971A2: resolve_types(gfc_namespace*) (resolve.c:15100)
==13422==    by 0x692D4F: gfc_resolve(gfc_namespace*) [clone .part.48]
(resolve.c:15210)
==13422==    by 0x67E4DA: resolve_all_program_units (parse.c:5415)
==13422==    by 0x67E4DA: gfc_parse_file() (parse.c:5658)
==13422==    by 0x6BDDC5: gfc_be_parse_file() (f95-lang.c:229)
==13422==    by 0xA7C2A1: compile_file() (toplev.c:594)
==13422==    by 0x6005B3: do_compile (toplev.c:2067)
==13422==    by 0x6005B3: toplev::main(int, char**) (toplev.c:2165)
==13422==    by 0x6012A9: main (main.c:39)
==13422==  Address 0x5f10998 is 120 bytes inside a block of size 304 free'd
==13422==    at 0x4C2A37C: free (in
/usr/lib64/valgrind/vgpreload_memcheck-amd64-linux.so)
==13422==    by 0x6B085A: gfc_restore_last_undo_checkpoint() (symbol.c:3177)
==13422==    by 0x67431F: reject_statement() (parse.c:2358)
==13422==    by 0x67457C: match_word(char const*, match (*)(), locus*) [clone
.part.5] (parse.c:99)
==13422==    by 0x679756: match_word (parse.c:511)
==13422==    by 0x679756: decode_statement() (parse.c:511)
==13422==    by 0x679AE0: next_free (parse.c:1118)
==13422==    by 0x679AE0: next_statement() (parse.c:1352)
==13422==    by 0x67A834: parse_interface (parse.c:3044)
==13422==    by 0x67A834: parse_spec(gfc_statement) (parse.c:3389)
==13422==    by 0x67D008: parse_progunit(gfc_statement) (parse.c:5087)
==13422==    by 0x67E1D5: gfc_parse_file() (parse.c:5604)
==13422==    by 0x6BDDC5: gfc_be_parse_file() (f95-lang.c:229)
==13422==    by 0xA7C2A1: compile_file() (toplev.c:594)
==13422==    by 0x6005B3: do_compile (toplev.c:2067)
==13422==    by 0x6005B3: toplev::main(int, char**) (toplev.c:2165)

...
>From gcc-bugs-return-533841-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 21:08:56 2016
Return-Path: <gcc-bugs-return-533841-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 89379 invoked by alias); 9 Aug 2016 21:08:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 88704 invoked by uid 55); 9 Aug 2016 21:08:43 -0000
From: "t.hirsch at web dot de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/72076] cmath: illegal instruction (constexpr)
Date: Tue, 09 Aug 2016 21:08:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: t.hirsch at web dot de
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72076-4-GJvnlia12w@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72076-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72076-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01177.txt.bz2
Content-length: 1434

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72076

--- Comment #4 from Thorsten Hirsch <t.hirsch at web dot de> ---
Sorry, you lost me - does my GMP installation cause the compilation error
(illegal instruction) or does it cause the lonely constexpr without a type
in the cmath header?

In other words: is the lonely constexpr a bug at all? I've checked the
cmath header in Ubuntu 16.04 (/usr/include/c++/5/cmath) and it also
contains this constexpr without a type at more or less the same position
(line 1459 to be precise).

2016-08-06 7:37 GMT+02:00 pinskia at gcc dot gnu.org <
gcc-bugzilla@gcc.gnu.org>:

> https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72076
>
> --- Comment #3 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
> (In reply to Thorsten Hirsch from comment #2)
> > In that case it might be a problem of Arch's multilib, which is their
> way of
> > allowing 32bit compilations on x64, see [1] and [2]. So my gcc package is
> > called gcc-multilib, which includes (depends on) the 32bit package of
> glibc,
> > thus I've installed packages for both architectures. And I have 2 gmp
> > packages:
> >
> > $ pacman -Q | grep -i gmp
> > gmp 6.1.1-1
> > lib32-gmp 6.1.0-2
> >
> > (I just checked if there's version 6.1.1 for 32bit, but it's not
> available,
> > yet.)
>
>
> No the problem is GMP is compiled say skylake but used on boardwell.
>
> --
> You are receiving this mail because:
> You reported the bug.
>From gcc-bugs-return-533842-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 21:10:58 2016
Return-Path: <gcc-bugs-return-533842-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 103542 invoked by alias); 9 Aug 2016 21:10:57 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 103371 invoked by uid 48); 9 Aug 2016 21:10:39 -0000
From: "tkoenig at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/65045] [5 Regression] [F08] ICE when using the same name for a block and a variable
Date: Tue, 09 Aug 2016 21:10:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 4.9.2
X-Bugzilla-Keywords: error-recovery
X-Bugzilla-Severity: normal
X-Bugzilla-Who: tkoenig at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: pault at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cf_reconfirmed_on
Message-ID: <bug-65045-4-IoMidvmsUr@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-65045-4@http.gcc.gnu.org/bugzilla/>
References: <bug-65045-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01178.txt.bz2
Content-length: 1957

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65045

Thomas Koenig <tkoenig at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Last reconfirmed|2015-02-13 00:00:00         |2016-8-9

--- Comment #12 from Thomas Koenig <tkoenig at gcc dot gnu.org> ---
Test case from comment#1 still fails:

ig25@linux-fd1f:/tmp> valgrind ~/Gcc/5-bin/gcc/f951 -std=f95 a.f90
==13447== Memcheck, a memory error detector
==13447== Copyright (C) 2002-2013, and GNU GPL'd, by Julian Seward et al.
==13447== Using Valgrind-3.10.0 and LibVEX; rerun with -h for copyright info
==13447== Command: /home/ig25/Gcc/5-bin/gcc/f951 -std=f95 a.f90
==13447== 
a.f90:2:7:

 i:block
       1
Error: Fortran 2008: BLOCK construct at (1)
a.f90:3:6:

  if (i>7.7) then
      1
Error: Symbol at (1) is not appropriate for an expression
a.f90:4:11:

      exit i
           1
Error: Fortran 2008: EXIT statement with no do-construct-name at (1)
a.f90:5:6:

    end if
      1
Error: Expecting END BLOCK statement at (1)
==13447== Invalid read of size 8
==13447==    at 0x67981A: next_statement() (parse.c:1328)
==13447==    by 0x67C17F: parse_executable(gfc_statement) (parse.c:4730)
==13447==    by 0x67D116: parse_progunit(gfc_statement) (parse.c:5113)
==13447==    by 0x67E1D5: gfc_parse_file() (parse.c:5604)
==13447==    by 0x6BDDC5: gfc_be_parse_file() (f95-lang.c:229)
==13447==    by 0xA7C2A1: compile_file() (toplev.c:594)
==13447==    by 0x6005B3: do_compile (toplev.c:2067)
==13447==    by 0x6005B3: toplev::main(int, char**) (toplev.c:2165)
==13447==    by 0x6012A9: main (main.c:39)
==13447==  Address 0x958 is not stack'd, malloc'd or (recently) free'd
==13447== 
(null):0: confused by earlier errors, bailing out
>From gcc-bugs-return-533843-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 21:11:39 2016
Return-Path: <gcc-bugs-return-533843-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 6735 invoked by alias); 9 Aug 2016 21:11:39 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 118197 invoked by uid 48); 9 Aug 2016 21:11:25 -0000
From: "dominiq at lps dot ens.fr" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/58787] ICE (error recovery) in check_proc_interface
Date: Tue, 09 Aug 2016 21:11:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords: error-recovery, ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dominiq at lps dot ens.fr
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-58787-4-aSuvkSVjkG@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-58787-4@http.gcc.gnu.org/bugzilla/>
References: <bug-58787-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01179.txt.bz2
Content-length: 1792

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58787

Dominique d'Humieres <dominiq at lps dot ens.fr> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |NEW
         Resolution|FIXED                       |---

--- Comment #6 from Dominique d'Humieres <dominiq at lps dot ens.fr> ---
> No longer ICEs with r238822.

It still fails for me:

[book15] f90/bug% /opt/gcc/gcc7p-238822p2/bin/gfortran pr58787.f90
pr58787.f90:15:27:

pr58787.f90:10:7:

    USE string_utilities_mod
       2                    
pr58787.f90:15:27:

    FUNCTION array_to_string(array) RESULT(str)
                           1
Error: Procedure 'array_to_string' at (1) is already defined at (2)
pr58787.f90:15:34:

    FUNCTION array_to_string(array) RESULT(str)
                                  1
Error: Cannot change attributes of USE-associated symbol array_to_string at (1)
pr58787.f90:16:33:

      CHARACTER(LEN=1) :: array(1)
                                 1
Error: Unexpected data declaration statement in CONTAINS section at (1)
pr58787.f90:17:47:

      CHARACTER(LEN=SUM(LEN_TRIM(array))) :: str
                                               1
Error: Unexpected data declaration statement in CONTAINS section at (1)
pr58787.f90:18:6:

    END FUNCTION array_to_string
      1
Error: Expecting END SUBROUTINE statement at (1)
f951: internal compiler error: Segmentation fault: 11

f951: internal compiler error: Abort trap: 6
gfortran: internal compiler error: Abort trap: 6 (program f951)
Please submit a full bug report,
with preprocessed source if appropriate.
See <http://gcc.gnu.org/bugs.html> for instructions.
>From gcc-bugs-return-533844-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 21:18:28 2016
Return-Path: <gcc-bugs-return-533844-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 36629 invoked by alias); 9 Aug 2016 21:18:28 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 36451 invoked by uid 48); 9 Aug 2016 21:18:15 -0000
From: "dominiq at lps dot ens.fr" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/69396] ICE on type mismatch, in update_ppc_arglist, at fortran/resolve.c:5580
Date: Tue, 09 Aug 2016 21:18:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dominiq at lps dot ens.fr
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-69396-4-oahfHuA0PN@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69396-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69396-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01180.txt.bz2
Content-length: 176

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69396

--- Comment #5 from Dominique d'Humieres <dominiq at lps dot ens.fr> ---
> The ICE is gone with r238822.

Rather r235999.
>From gcc-bugs-return-533845-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 21:21:50 2016
Return-Path: <gcc-bugs-return-533845-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 98543 invoked by alias); 9 Aug 2016 21:21:50 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 98376 invoked by uid 48); 9 Aug 2016 21:21:38 -0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/72076] cmath: illegal instruction (constexpr)
Date: Tue, 09 Aug 2016 21:21:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72076-4-mHbyforQ7k@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72076-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72076-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01181.txt.bz2
Content-length: 592

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72076

--- Comment #5 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
(In reply to Thorsten Hirsch from comment #4)
> Sorry, you lost me - does my GMP installation cause the compilation error
> (illegal instruction) or does it cause the lonely constexpr without a type
> in the cmath header?

Huh?  Without a type, what do you mean by that?  Do you mean without a
typename?

Do you have a preprocessed source which causes the failure then?  Also the
internal compiler error from gcc or clang?  If clang, you should report it to
them also.
>From gcc-bugs-return-533846-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 21:27:34 2016
Return-Path: <gcc-bugs-return-533846-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 106563 invoked by alias); 9 Aug 2016 21:27:34 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 106430 invoked by uid 55); 9 Aug 2016 21:27:30 -0000
From: "t.hirsch at web dot de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/72076] cmath: illegal instruction (constexpr)
Date: Tue, 09 Aug 2016 21:27:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: t.hirsch at web dot de
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72076-4-HojVvQXKAv@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72076-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72076-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01182.txt.bz2
Content-length: 458

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72076

--- Comment #6 from Thorsten Hirsch <t.hirsch at web dot de> ---
One by one. :)
I mean this snippet:

  template<typename _Tp>

    constexpr

    typename __gnu_cxx::__enable_if<__is_integer<_Tp>::__value,

                                    int>::__type

    ilogb(_Tp __x)

    { return __builtin_ilogb(__x); }


Is this valid? Or should there be an "int" or "float" after the "constexpr"
in line 2?
>From gcc-bugs-return-533847-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 21:33:35 2016
Return-Path: <gcc-bugs-return-533847-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 119084 invoked by alias); 9 Aug 2016 21:33:35 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 118976 invoked by uid 48); 9 Aug 2016 21:33:21 -0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/72076] cmath: illegal instruction (constexpr)
Date: Tue, 09 Aug 2016 21:33:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72076-4-qKTlZVNebL@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72076-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72076-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01183.txt.bz2
Content-length: 1176

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72076

--- Comment #7 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
(In reply to Thorsten Hirsch from comment #6)
> One by one. :)
> I mean this snippet:
> 
>   template<typename _Tp>
> 
>     constexpr
> 
>     typename __gnu_cxx::__enable_if<__is_integer<_Tp>::__value,
> 
>                                     int>::__type
> 
>     ilogb(_Tp __x)
> 
>     { return __builtin_ilogb(__x); }
> 
> 
> Is this valid? Or should there be an "int" or "float" after the "constexpr"
> in line 2?

    typename __gnu_cxx::__enable_if<__is_integer<_Tp>::__value,
                                    int>::__type

is a type, it is either SFINAE or is int.  Basically the template is rejected
as a substitution failure and not considered or is the type is an int.
This is standard C++98ism.  One which is confusing but used so you can do
overloads which are not considered part of the overload class.
See https://en.wikipedia.org/wiki/Substitution_failure_is_not_an_error for more
information on that.

Again do you have a preprocessed source for the failure you are seeing and what
is the full error message?
>From gcc-bugs-return-533848-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 21:35:25 2016
Return-Path: <gcc-bugs-return-533848-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 123820 invoked by alias); 9 Aug 2016 21:35:25 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 122665 invoked by uid 48); 9 Aug 2016 21:35:12 -0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/72076] cmath: illegal instruction (constexpr)
Date: Tue, 09 Aug 2016 21:35:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72076-4-5XAiW7pi42@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72076-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72076-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01184.txt.bz2
Content-length: 208

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72076

--- Comment #8 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Also white spaces are still white spaces so joining lines should not make a
different.
>From gcc-bugs-return-533849-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 22:03:44 2016
Return-Path: <gcc-bugs-return-533849-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 117468 invoked by alias); 9 Aug 2016 22:03:44 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 117224 invoked by uid 48); 9 Aug 2016 22:03:30 -0000
From: "jason at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/68703] __attribute__((vector_size(N))) template member confusion
Date: Tue, 09 Aug 2016 22:03:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.2.1
X-Bugzilla-Keywords: rejects-valid
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jason at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jason at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution assigned_to target_milestone
Message-ID: <bug-68703-4-AV05ajUqee@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68703-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68703-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01185.txt.bz2
Content-length: 569

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68703

Jason Merrill <jason at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED
           Assignee|unassigned at gcc dot gnu.org      |jason at gcc dot gnu.org
   Target Milestone|---                         |7.0

--- Comment #5 from Jason Merrill <jason at gcc dot gnu.org> ---
Fixed for GCC 7.
>From gcc-bugs-return-533850-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 22:03:44 2016
Return-Path: <gcc-bugs-return-533850-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 117483 invoked by alias); 9 Aug 2016 22:03:44 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 117385 invoked by uid 55); 9 Aug 2016 22:03:39 -0000
From: "jason at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/68703] __attribute__((vector_size(N))) template member confusion
Date: Tue, 09 Aug 2016 22:03:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.2.1
X-Bugzilla-Keywords: rejects-valid
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jason at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jason at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-68703-4-9rpXbdKlUV@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68703-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68703-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01186.txt.bz2
Content-length: 1026

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68703

--- Comment #6 from Jason Merrill <jason at gcc dot gnu.org> ---
Author: jason
Date: Tue Aug  9 22:03:07 2016
New Revision: 239309

URL: https://gcc.gnu.org/viewcvs?rev=239309&root=gcc&view=rev
Log:
        PR c++/68703 - bogus error with dependent vector length

gcc/c-family/
        * c-common.c (c_common_attribute_table): vector_size affects type
        identity.
gcc/cp/
        * decl2.c (any_dependent_type_attributes_p): New.
        * pt.c (dependent_type_p_r, type_dependent_expression_p): Check it.
        * semantics.c (finish_id_expression): Check it.
        * typeck.c (finish_class_member_access_expr): Check it.

Added:
    trunk/gcc/testsuite/g++.dg/ext/vector32.C
    trunk/gcc/testsuite/g++.dg/ext/vector32a.C
Modified:
    trunk/gcc/c-family/ChangeLog
    trunk/gcc/c-family/c-common.c
    trunk/gcc/cp/ChangeLog
    trunk/gcc/cp/cp-tree.h
    trunk/gcc/cp/decl2.c
    trunk/gcc/cp/pt.c
    trunk/gcc/cp/semantics.c
    trunk/gcc/cp/typeck.c
>From gcc-bugs-return-533851-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 22:31:04 2016
Return-Path: <gcc-bugs-return-533851-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 37095 invoked by alias); 9 Aug 2016 22:31:04 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 36950 invoked by uid 48); 9 Aug 2016 22:30:51 -0000
From: "meissner at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72853] gcc/testsuite/gcc.c-torture/execute/20021120-1.c generates incorrect stxssp op with -mcpu=power9
Date: Tue, 09 Aug 2016 22:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: meissner at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: attachments.isobsolete attachments.created
Message-ID: <bug-72853-4-21kUd63x92@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72853-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72853-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01187.txt.bz2
Content-length: 991

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72853

Michael Meissner <meissner at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
  Attachment #39090|0                           |1
        is obsolete|                            |

--- Comment #4 from Michael Meissner <meissner at gcc dot gnu.org> ---
Created attachment 39092
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39092&action=edit
Proposed patch to fix the problem #2

I was looking at the wrong line of assembly in the previous patch.

This patches adds a check for the address being offsettable.  In the movdf
patterns, the ISA 3.0 d-form (reg+offset) address alternatives (stxsd, lxsd)
come before the ISA 2.06 x-form (reg+reg) alternatives (stxsdx, lxsdx).  So if
an indexed address using the Altivec regsiters is emitted when -mcpu=power9 is
used, the compiler will emit an illegal instruction.
>From gcc-bugs-return-533852-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 09 23:03:35 2016
Return-Path: <gcc-bugs-return-533852-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 103796 invoked by alias); 9 Aug 2016 23:03:35 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 103676 invoked by uid 48); 9 Aug 2016 23:03:22 -0000
From: "t.hirsch at web dot de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/72076] cmath: illegal instruction (constexpr)
Date: Tue, 09 Aug 2016 23:03:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: t.hirsch at web dot de
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-72076-4-8TM3GfTImF@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72076-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72076-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01188.txt.bz2
Content-length: 682

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72076

Thorsten Hirsch <t.hirsch at web dot de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |RESOLVED
         Resolution|---                         |INVALID

--- Comment #9 from Thorsten Hirsch <t.hirsch at web dot de> ---
I cannot reproduce the error anymore. 2 weeks ago I made sure that I can
reproduce it before opening this bug report, but now compiling runs
successfully no matter whether the constexpr line is joined with the next one
or not.

Sorry to steal your time, Andrew.
>From gcc-bugs-return-533853-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 01:32:54 2016
Return-Path: <gcc-bugs-return-533853-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 100515 invoked by alias); 10 Aug 2016 01:32:53 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 100386 invoked by uid 48); 10 Aug 2016 01:32:40 -0000
From: "amodra at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72853] gcc/testsuite/gcc.c-torture/execute/20021120-1.c generates incorrect stxssp op with -mcpu=power9
Date: Wed, 10 Aug 2016 01:32:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: amodra at gmail dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-72853-4-4RxBalPeNc@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72853-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72853-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01189.txt.bz2
Content-length: 900

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72853

Alan Modra <amodra at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |amodra at gmail dot com

--- Comment #5 from Alan Modra <amodra at gmail dot com> ---
Yeah, Alan did mess up here in removing offsettable_address_p from the wY
constraint.  It wasn't entirely accidental either.  I'd intended to add a
simpler test in mem_operand_ds_form to replace it.

Mike, shouldn't the test in your fix be
  if (!offsettable_address_p (false, mode, addr))
ie. *not* strict?

See tm-constrs.h "o" constraint test:

static inline bool
satisfies_constraint_o (rtx op)
{
  return (GET_CODE (op) == MEM) && (
#line 32 "/home/alan/src/gcc.git/gcc/common.md"
(offsettable_nonstrict_memref_p (op)));
}
>From gcc-bugs-return-533854-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 02:43:41 2016
Return-Path: <gcc-bugs-return-533854-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 9244 invoked by alias); 10 Aug 2016 02:43:40 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 9130 invoked by uid 48); 10 Aug 2016 02:43:28 -0000
From: "LpSolit at netscape dot net" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug web/72856] New: Trottle bug creation for newly created accounts (to limit spam)
Date: Wed, 10 Aug 2016 02:43:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: web
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: LpSolit at netscape dot net
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: LpSolit at netscape dot net
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter cc target_milestone
Message-ID: <bug-72856-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01190.txt.bz2
Content-length: 10674

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72856

            Bug ID: 72856
           Summary: Trottle bug creation for newly created accounts (to
                    limit spam)
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: enhancement
          Priority: P3
         Component: web
          Assignee: LpSolit at netscape dot net
          Reporter: LpSolit at netscape dot net
                CC: fche at redhat dot com, overseers at gcc dot gnu.org
  Target Milestone: ---

GCC Bugzilla suffered vandalism again between July 25 and 27. 709 spam bugs
have been filed during this 48 hours window. 103 different email addresses have
been used to avoid being blocked too quickly. This gives a ratio on average of
7 spam per account.

For the record, moving a bug into the 'spam' component and marking it as
INVALID automatically disables the user account of the spammer. But this gives
a plenty of time to spammers to file new bugs till a triager closes spam as
INVALID. So I think we should limit the rate at which new accounts can file new
bugs. In the table below, we can see that several spammers managed to file
several tens of spam in a row, so trottling bug creation for them would have
helped a bit.

mysql> select count(*) as nb_spam, login_name as spammer, newvalue as
creation_time from bugs inner join profiles on profiles.userid = reporter inner
join profiles_activity on profiles_activity.userid = reporter where
component_id = (select id from components where name = 'spam') and creation_ts
> '2016-07-20' and creation_ts < '2016-07-31' and fieldid = (select id from
fielddefs where name = 'creation_ts') group by reporter order by nb_spam desc;  
+---------+-------------------------------------------+---------------------+
| nb_spam | spammer                                   | creation_time       |
+---------+-------------------------------------------+---------------------+
|      55 | andrusmith20163@gmail.com                 | 2016-07-25 21:39:09 |
|      51 | vvw@a.ahcainc.com                         | 2016-07-26 04:50:31 |
|      41 | satyamsingh168@yahoo.com                  | 2016-07-25 20:59:20 |
|      30 | kethyjelly@yopmail.com                    | 2016-07-25 20:53:31 |
|      28 | clarkally128@gmail.com                    | 2016-07-25 23:12:26 |
|      27 | boltanwelly@gmail.com                     | 2016-07-25 20:55:21 |
|      26 | loveubaby@yopmail.com                     | 2016-07-25 22:10:41 |
|      25 | shobhitgargniet@gmail.com                 | 2016-07-25 21:00:17 |
|      22 | rpaul9596@gmail.com                       | 2016-07-26 05:17:48 |
|      18 | rassules11@gmail.com                      | 2016-07-26 11:18:55 |
|      16 | rocksmith2143@gmail.com                   | 2016-07-25 20:46:22 |
|      16 | ckattyperry@gmail.com                     | 2016-07-26 10:37:12 |
|      15 | Wout1930@armyspy.com                      | 2016-07-25 20:45:15 |
|      15 | vipin01kumar2012@gmail.com                | 2016-07-25 22:04:10 |
|      14 | zzqr@tm.tosunkaya.com                     | 2016-07-26 00:27:57 |
|      13 | 45aaoa+2iao75mo6pqv1c33b8@sharklasers.com | 2016-07-25 20:27:28 |
|      13 | adcss@dayrep.com                          | 2016-07-25 20:45:33 |
|      13 | ishiboy2@codehot.co.uk                    | 2016-07-25 22:06:34 |
|      11 | vbgjgh@yopmail.com                        | 2016-07-25 20:41:27 |
|      10 | harharmahadev@yopmail.com                 | 2016-07-25 20:01:14 |
|      10 | rajdsky10@gmail.com                       | 2016-07-25 22:54:02 |
|       9 | teresadoris41@gmail.com                   | 2016-07-25 20:41:57 |
|       9 | pqrt@ze.gally.jp                          | 2016-07-25 22:04:28 |
|       9 | bkattyperry@gmail.com                     | 2016-07-26 10:36:32 |
|       8 | hs851446@gmail.com                        | 2016-07-25 21:06:15 |
|       8 | sunnyhooda76@gmail.com                    | 2016-07-25 21:06:05 |
|       8 | Sagat1987@superrito.com                   | 2016-07-25 21:36:56 |
|       8 | ram307338@gmail.com                       | 2016-07-25 22:04:25 |
|       7 | 45a7cj+pc1auass999c@sharklasers.com       | 2016-07-25 20:50:36 |
|       7 | Logne1973@cuvox.de                        | 2016-07-25 21:43:45 |
|       7 | johnhuff31@yopmail.com                    | 2016-07-26 05:20:39 |
|       7 | inlr@we.wallm.com                         | 2016-07-26 09:18:41 |
|       7 | joanann0@uw5t6ds54.com                    | 2016-07-26 12:22:05 |
|       6 | threas1938@jourrapide.com                 | 2016-07-26 11:43:02 |
|       5 | ramu.sara1000017@gmail.com                | 2016-07-26 07:40:03 |
|       5 | avamonw@gmail.com                         | 2016-07-26 10:06:27 |
|       4 | rachitakumari522@gmail.com                | 2016-07-25 20:46:30 |
|       4 | techbrothers2016@gmail.com                | 2016-07-25 22:17:38 |
|       4 | giqr@barryogorman.com                     | 2016-07-26 09:38:55 |
|       4 | dlaf1j2u.qyp@20email.eu                   | 2016-07-26 10:38:21 |
|       4 | una@c.cynaver.com                         | 2016-07-26 11:28:23 |
|       4 | andrusmith20168@gmail.com                 | 2016-07-26 00:33:43 |
|       3 | yt5scljm.uoq@20email.eu                   | 2016-07-25 20:55:26 |
|       3 | ankurcoe22@gmail.com                      | 2016-07-25 21:23:06 |
|       3 | akattyperry@gmail.com                     | 2016-07-26 08:51:01 |
|       3 | adnj@maildx.com                           | 2016-07-26 09:04:00 |
|       3 | vsmr@er.fr.to                             | 2016-07-26 09:13:02 |
|       3 | larrypage001526@gmail.com                 | 2016-07-26 10:29:07 |
|       3 | gkattyperry@gmail.com                     | 2016-07-26 10:40:46 |
|       3 | ahay5o2t.bls@20email.eu                   | 2016-07-26 11:31:55 |
|       3 | jorjbally@gmail.com                       | 2016-07-26 11:33:40 |
|       3 | lilac18@uw5t6ds54.com                     | 2016-07-26 12:38:24 |
|       3 | evwztvei.w0k@20email.eu                   | 2016-07-26 12:48:30 |
|       3 | tovah95@uw5t6ds54.com                     | 2016-07-26 12:50:57 |
|       2 | ffkattyperry@gmail.com                    | 2016-07-25 20:54:56 |
|       2 | amarniket17@gmail.com                     | 2016-07-25 21:02:09 |
|       2 | abigaillogan62@gmail.com                  | 2016-07-25 22:08:08 |
|       2 | intelomedia03@gmail.com                   | 2016-07-25 22:29:25 |
|       2 | jhon12wirte@gmail.com                     | 2016-07-25 23:00:33 |
|       2 | deik.slpk458@gmail.com                    | 2016-07-26 00:16:41 |
|       2 | ranjetn852@gmail.com                      | 2016-07-26 04:13:26 |
|       2 | stalkonq@gmail.com                        | 2016-07-26 09:15:48 |
|       2 | pandaranjan247@gmail.com                  | 2016-07-26 09:15:25 |
|       2 | veroncia5@uw5t6ds54.com                   | 2016-07-26 10:11:56 |
|       2 | kevinlewis760@gmail.com                   | 2016-07-26 10:18:31 |
|       2 | f931569@mvrht.com                         | 2016-07-26 11:11:49 |
|       2 | x2mspjb4.scv@20email.eu                   | 2016-07-26 11:13:04 |
|       2 | 5rio2y1n.5mw@20email.eu                   | 2016-07-26 11:24:57 |
|       2 | qsmr@qs.grish.de                          | 2016-07-26 11:35:17 |
|       2 | ygnulgim.0d0@20email.eu                   | 2016-07-26 11:46:23 |
|       2 | 5pwwdbqr.k54@20email.eu                   | 2016-07-26 11:55:26 |
|       2 | lesa.smith212@gmail.com                   | 2016-07-26 11:56:39 |
|       2 | seinamillarhelp@gmail.com                 | 2016-07-26 12:18:15 |
|       2 | 0dlu2wpq.3bl@20email.eu                   | 2016-07-26 12:26:29 |
|       2 | mqebsuzf.0wp@20email.eu                   | 2016-07-26 12:35:00 |
|       1 | maine@yopmail.com                         | 2016-07-25 20:59:20 |
|       1 | stephangranado3@gmail.com                 | 2016-07-25 22:28:51 |
|       1 | sahil69@yopmail.com                       | 2016-07-25 22:55:44 |
|       1 | noidaup8@gmail.com                        | 2016-07-25 23:01:51 |
|       1 | tanudurrmat@gmail.com                     | 2016-07-26 00:17:33 |
|       1 | jacksftt@gmail.com                        | 2016-07-26 09:18:01 |
|       1 | janette75@uw5t6ds54.com                   | 2016-07-26 09:52:59 |
|       1 | skyphelpline@gmail.com                    | 2016-07-26 10:12:31 |
|       1 | whcpvgyg.rjz@20email.eu                   | 2016-07-26 10:27:26 |
|       1 | oxvmmus5.il5@20email.eu                   | 2016-07-26 10:32:46 |
|       1 | ifzv0va3.m0y@20email.eu                   | 2016-07-26 10:54:58 |
|       1 | w5lkox3p.ado@20email.eu                   | 2016-07-26 11:03:48 |
|       1 | antivirusshelplinenumber5526@gmail.com    | 2016-07-26 11:13:51 |
|       1 | davidwarner1369@gmail.com                 | 2016-07-26 11:16:57 |
|       1 | nidhimishra@codehot.co.uk                 | 2016-07-26 11:20:36 |
|       1 | lisa.thomas22345@gmail.com                | 2016-07-26 11:50:30 |
|       1 | smithmartin919@gmail.com                  | 2016-07-26 11:56:08 |
|       1 | monti.carlo879@gmail.com                  | 2016-07-26 12:00:31 |
|       1 | lisa.smith5555555@gmail.com               | 2016-07-26 12:06:38 |
|       1 | 5f0rfifp.i2x@20email.eu                   | 2016-07-26 12:06:28 |
|       1 | burnet62@uw5t6ds54.com                    | 2016-07-26 12:12:25 |
|       1 | andrusmith201620@gmail.com                | 2016-07-26 12:15:16 |
|       1 | teagreen80@uw5t6ds54.com                  | 2016-07-26 12:15:43 |
|       1 | andrusmith20164@gmail.com                 | 2016-07-26 00:26:58 |
|       1 | ramu.sara100006@gmail.com                 | 2016-07-26 12:31:21 |
|       1 | andrusmith20166@gmail.com                 | 2016-07-26 00:30:44 |
|       1 | andrusmith20167@gmail.com                 | 2016-07-26 00:31:56 |
|       1 | andrusmith20169@gmail.com                 | 2016-07-26 00:35:19 |
+---------+-------------------------------------------+---------------------+
103 rows in set (0.01 sec)


Anyone has a good suggestion for the rate limit? Probably something
exponential, so that new legit users can still file a bug or two, but then
expand the delay before being allowed to file the next bug and so on. Something
like:

$minutes_till_next_bug_report = 3**$number_of_already_reported_bugs - 1;

What do you think?
>From gcc-bugs-return-533855-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 02:44:11 2016
Return-Path: <gcc-bugs-return-533855-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 10242 invoked by alias); 10 Aug 2016 02:44:10 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 10090 invoked by uid 48); 10 Aug 2016 02:43:57 -0000
From: "LpSolit at netscape dot net" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug web/72856] Trottle bug creation for newly created accounts (to limit spam)
Date: Wed, 10 Aug 2016 02:44:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: web
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: LpSolit at netscape dot net
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: LpSolit at netscape dot net
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-72856-4-rBitSZkF1K@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72856-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72856-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01191.txt.bz2
Content-length: 421

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72856

Frédéric Buclin <LpSolit at netscape dot net> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |ASSIGNED
   Last reconfirmed|                            |2016-08-10
     Ever confirmed|0                           |1
>From gcc-bugs-return-533856-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 03:31:12 2016
Return-Path: <gcc-bugs-return-533856-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 16397 invoked by alias); 10 Aug 2016 03:31:10 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 16015 invoked by uid 48); 10 Aug 2016 03:30:28 -0000
From: "msebor at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/72857] New: incorrect caret location in -Wformat for width and precision given by asterisk
Date: Wed, 10 Aug 2016 03:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: minor
X-Bugzilla-Who: msebor at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-72857-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01192.txt.bz2
Content-length: 2757

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72857

            Bug ID: 72857
           Summary: incorrect caret location in -Wformat for width and
                    precision given by asterisk
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: minor
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: msebor at gcc dot gnu.org
  Target Milestone: ---

In -Wformat diagnostics, GCC 6.1 (and 7.0, likely prior to r239260) would, for
the most part, point the caret to the component of a format directive that it
complained about.  For example, in the program below, it would point at the
asterisk corresponding to the problem width or precision:

$ cat xyz.c && gcc -S -Wformat xyz.c
int f (char *d, long i)
{
  __builtin_sprintf (d, "%*ld", i, i);
  __builtin_sprintf (d, "%.*ld", i, i);
}
xyz.c: In function ‘f’:
xyz.c:3:27: warning: field width specifier ‘*’ expects argument of type ‘int’,
but argument 3 has type ‘long int’ [-Wformat=]
   __builtin_sprintf (d, "%*ld", i, i);
                           ^
xyz.c:4:28: warning: field precision specifier ‘.*’ expects argument of type
‘int’, but argument 3 has type ‘long int’ [-Wformat=]
   __builtin_sprintf (d, "%.*ld", i, i);
                            ^

The current trunk of GCC 7.0 has lost that feature and the caret instead points
to the end of the format directive:

xyz.c: In function ‘f’:
xyz.c:3:29: warning: field width specifier ‘*’ expects argument of type ‘int’,
but argument 3 has type ‘long int’ [-Wformat=]
   __builtin_sprintf (d, "%*ld", i, i);
                          ~~~^
xyz.c:4:30: warning: field precision specifier ‘.*’ expects argument of type
‘int’, but argument 3 has type ‘long int’ [-Wformat=]
   __builtin_sprintf (d, "%.*ld", i, i);
                          ~~~~^

This is a minor problem (distinguishing width from precision by including the
period in the latter helps), but it is a regression nonetheless.

Below is what Clang outputs for comparison.  (Underlining the argument
corresponding to the asterisk for the width or precision seems like an
especially nice touch.)

xyz.c:3:18: warning: field width should have type 'int', but argument has type
      'long' [-Wformat]
  sprintf (d, "%*ld", i, i);
               ~~^~   ~
xyz.c:4:18: warning: field precision should have type 'int', but argument has
      type 'long' [-Wformat]
  sprintf (d, "%.*ld", i, i);
               ~~^~~   ~
>From gcc-bugs-return-533857-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 03:53:02 2016
Return-Path: <gcc-bugs-return-533857-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 77205 invoked by alias); 10 Aug 2016 03:53:01 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 76367 invoked by uid 48); 10 Aug 2016 03:52:49 -0000
From: "msebor at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/72858] New: incorrect fixit hints in -Wformat diagnostics
Date: Wed, 10 Aug 2016 03:53:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: msebor at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-72858-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01193.txt.bz2
Content-length: 1942

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72858

            Bug ID: 72858
           Summary: incorrect fixit hints in -Wformat diagnostics
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: msebor at gcc dot gnu.org
  Target Milestone: ---

With the latest improvements to diagnostics, GCC 7.0 provides fixit hints in
-Wformat diagnostics that suggest the correct format directives where those
specified do not match their arguments.  The hints, however, only include the
length modifier and (what appears to be an approximation of) the conversion
specifier but not any of the flags present in the (incorrect) directive.

That's misleading since it suggests to the user that in addition to replacing
the length modifier they should also avoid using the flags and replace the
conversion specifier they need with a different one.  To avoid giving that
impression the fixit hints should copy the first part of the directive,
including the flags, width, and precision, and use the corresponding conversion
specifier.

The following test case shows some of the problems:

$ cat xyz.c && /build/gcc-trunk-svn/gcc/xgcc -B /build/gcc-trunk-svn/gcc -S
-Wformat xyz.c
int f (char *d, long x)
{
  extern int sprintf (char*, const char*, ...);
  sprintf (d, "%-8x", x);
}
xyz.c: In function ‘f’:
xyz.c:4:19: warning: format ‘%x’ expects argument of type ‘unsigned int’, but
argument 3 has type ‘long int’ [-Wformat=]
   sprintf (d, "%-8x", x);
                ~~~^
                %ld

Clang provides the expected hint:

xyz.c:4:23: warning: format specifies type 'unsigned int' but the argument has
      type 'long' [-Wformat]
  sprintf (d, "%-8x", x);
               ~~~~   ^
               %-8lx
>From gcc-bugs-return-533858-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 05:34:27 2016
Return-Path: <gcc-bugs-return-533858-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 48053 invoked by alias); 10 Aug 2016 05:34:26 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 47912 invoked by uid 48); 10 Aug 2016 05:34:12 -0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug other/68500] Remove in_loop_pipeline usage
Date: Wed, 10 Aug 2016 05:34:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: other
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-68500-4-yy08oZ1VCv@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68500-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68500-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01194.txt.bz2
Content-length: 179

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68500

--- Comment #5 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
What happened to this set of patches?  it is stage 1 now.
>From gcc-bugs-return-533859-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 05:35:24 2016
Return-Path: <gcc-bugs-return-533859-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 50171 invoked by alias); 10 Aug 2016 05:35:23 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 49877 invoked by uid 48); 10 Aug 2016 05:35:10 -0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug go/68477] error: type variant differs by TYPE_STRING_FLAG.
Date: Wed, 10 Aug 2016 05:35:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: go
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: ice-checking, ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: ian at airs dot com
X-Bugzilla-Target-Milestone: 6.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords target_milestone
Message-ID: <bug-68477-4-r0HEYmzILQ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68477-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68477-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01195.txt.bz2
Content-length: 422

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68477

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |ice-checking,
                   |                            |ice-on-valid-code
   Target Milestone|---                         |6.0
>From gcc-bugs-return-533860-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 05:44:25 2016
Return-Path: <gcc-bugs-return-533860-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 77710 invoked by alias); 10 Aug 2016 05:44:25 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 77524 invoked by uid 55); 10 Aug 2016 05:44:12 -0000
From: "amodra at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/71680] [7 Regression] ICE: Max. number of generated reload insns per insn is achieved (90) w/ -Os -mlra
Date: Wed, 10 Aug 2016 05:44:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: patch, ra
X-Bugzilla-Severity: normal
X-Bugzilla-Who: amodra at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: amodra at gmail dot com
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71680-4-nQx7RyAGsQ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71680-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71680-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01196.txt.bz2
Content-length: 700

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71680

--- Comment #16 from Alan Modra <amodra at gcc dot gnu.org> ---
Author: amodra
Date: Wed Aug 10 05:43:36 2016
New Revision: 239317

URL: https://gcc.gnu.org/viewcvs?rev=239317&root=gcc&view=rev
Log:
[RS6000] e500 part of pr71680

The fallback part of HARD_REGNO_CALLER_SAVE_MODE, choose_hard_reg_mode,
returns DFmode for SImode when TARGET_E500_DOUBLE.  This confuses
lra when attempting to save ctr around a call.

        PR target/71680
        * config/rs6000/rs6000.h (HARD_REGNO_CALLER_SAVE_MODE): Return
        SImode for TARGET_E500_DOUBLE when given SImode.

Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/config/rs6000/rs6000.h
>From gcc-bugs-return-533861-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 05:50:52 2016
Return-Path: <gcc-bugs-return-533861-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 83782 invoked by alias); 10 Aug 2016 05:50:52 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 83598 invoked by uid 48); 10 Aug 2016 05:50:39 -0000
From: "trippels at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug web/72856] Trottle bug creation for newly created accounts (to limit spam)
Date: Wed, 10 Aug 2016 05:50:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: web
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: trippels at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: LpSolit at netscape dot net
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-72856-4-B5D3h5YV2s@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72856-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72856-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01197.txt.bz2
Content-length: 662

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72856

Markus Trippelsdorf <trippels at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |trippels at gcc dot gnu.org

--- Comment #1 from Markus Trippelsdorf <trippels at gcc dot gnu.org> ---
> GCC Bugzilla suffered vandalism again between July 25 and 27. 709 spam bugs have been filed during this 48 hours window. 

All of these would have been easily detected by a simple Bayes spam filter.
So why not run all new bugs and all new comments thru one?
>From gcc-bugs-return-533862-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 06:09:24 2016
Return-Path: <gcc-bugs-return-533862-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 73759 invoked by alias); 10 Aug 2016 06:09:24 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 73628 invoked by uid 48); 10 Aug 2016 06:09:10 -0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/68128] A huge regression in Parboil v2.5 OpenMP CUTCP test (2.5 times lower performance)
Date: Wed, 10 Aug 2016 06:09:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 5.3.0
X-Bugzilla-Keywords: missed-optimization, openmp
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-68128-4-539GVT89eI@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68128-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68128-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01198.txt.bz2
Content-length: 142

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68128

--- Comment #10 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Does this work now?
>From gcc-bugs-return-533863-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 07:20:16 2016
Return-Path: <gcc-bugs-return-533863-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 116295 invoked by alias); 10 Aug 2016 07:20:15 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 116078 invoked by uid 48); 10 Aug 2016 07:20:02 -0000
From: "ebotcazou at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/71911] [Cygwin] "gnatclean program" will remove the standard package .ali file
Date: Wed, 10 Aug 2016 07:20:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ebotcazou at gcc dot gnu.org
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc everconfirmed
Message-ID: <bug-71911-4-y166Rv0o5J@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71911-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71911-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01199.txt.bz2
Content-length: 631

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71911

Eric Botcazou <ebotcazou at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |WAITING
   Last reconfirmed|                            |2016-08-10
                 CC|                            |ebotcazou at gcc dot gnu.org
     Ever confirmed|0                           |1

--- Comment #1 from Eric Botcazou <ebotcazou at gcc dot gnu.org> ---
How was the compiler configured?  Which permissions have the ALI files?
>From gcc-bugs-return-533864-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 07:31:37 2016
Return-Path: <gcc-bugs-return-533864-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 38263 invoked by alias); 10 Aug 2016 07:31:37 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 38139 invoked by uid 48); 10 Aug 2016 07:31:24 -0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ipa/65483] bzip2 bsR/bsW should be auto-inlined
Date: Wed, 10 Aug 2016 07:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ipa
X-Bugzilla-Version: 5.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-65483-4-DhXEF5oXBq@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-65483-4@http.gcc.gnu.org/bugzilla/>
References: <bug-65483-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01200.txt.bz2
Content-length: 197

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65483

--- Comment #5 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Does this still happen or do we need to crank up the inlining limits still?
>From gcc-bugs-return-533865-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 07:33:13 2016
Return-Path: <gcc-bugs-return-533865-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 45269 invoked by alias); 10 Aug 2016 07:33:13 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 40293 invoked by uid 48); 10 Aug 2016 07:33:00 -0000
From: "993870b5 at opayq dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/72859] New: Building GCC Cross-Compiler on cygwin for PowerPC
Date: Wed, 10 Aug 2016 07:33:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: 993870b5 at opayq dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-72859-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01201.txt.bz2
Content-length: 2479

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72859

            Bug ID: 72859
           Summary: Building GCC Cross-Compiler on cygwin for PowerPC
           Product: gcc
           Version: 5.4.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: 993870b5 at opayq dot com
  Target Milestone: ---

Following the instructions on http://wiki.osdev.org/GCC_Cross-Compiler I have
been trying to build a GCC C language cross-compiler for Powerpc-eabi
architecture using Cygwin on Windows 7 32bit.

I downloaded following software
Cygwin 2.5.2
GCC version 5.4.0
binutils 2.26

I have successfully bulit and installed binutils-2.26

I have executed following configure command:
../gcc-5.4.0/configure --target=powerpc-eabi --prefix=/home/user/opt/cross
--disable-nls --enable-languages=c --without-headers

when I execute the command: make all-gcc

after a while, the following error is generated.

...
g++ -c-g -O2 -DIN_GCC  -DCROSS_DIRECTORY_STRUCTURE  -fno-exceptions -fno-rtti 
-fasynchronous-unwind-tables -W -Wall -Wno-narrowing -Wwrite-strings
-Wcast-qual 
-Wmissing-format-attribute -Woverloaded-virtual -pedantic -Wno-long-long 
-Wno-variadic-macros -Wno-overlength-strings   -DHAVE_CONFIG_H 
-DGENERATOR_FILE -I. -Ibuild -I../../gcc-5.4.0/gcc 
-I../../gcc-5.4.0/gcc/build -I../../gcc-5.4.0/gcc/../include  
-I../../gcc-5.4.0/gcc/../libcpp/include
-o build/genpreds.o ../../gcc-5.4.0/gcc/genpreds.c
In file included from ../../gcc-5.4.0/gcc/rtl.h:26:0,
                 from ../../gcc-5.4.0/gcc/genpreds.c:27:
../../gcc-5.4.0/gcc/real.h:43:35: warning: division by zero [-Wdiv-by-zero]
 #define SIGSZ   (SIGNIFICAND_BITS / HOST_BITS_PER_LONG)
                                   ^
../../gcc-5.4.0/gcc/real.h:56:21: note: in expansion of macro ‘SIGSZ’
   unsigned long sig[SIGSZ];
                     ^
../../gcc-5.4.0/gcc/real.h:56:26: error: size of array ‘sig’ is not an integral
constant-expression
   unsigned long sig[SIGSZ];
                          ^
make[1]: *** [Makefile:2429: build/genpreds.o] Error 1
make[1]: Leaving directory '/home/user/build-gcc/gcc'
make: *** [Makefile:4100: all-gcc] Error 2

The cause of error seems to be the missing definition of HOST_BITS_PER_LONG in
file rtl.h.

removing the -pedantic option from the Makefile did not result in any
difference.
>From gcc-bugs-return-533866-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 07:35:26 2016
Return-Path: <gcc-bugs-return-533866-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 75780 invoked by alias); 10 Aug 2016 07:35:25 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 75627 invoked by uid 48); 10 Aug 2016 07:35:13 -0000
From: "993870b5 at opayq dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/72860] New: Building GCC Cross-Compiler on cygwin for PowerPC
Date: Wed, 10 Aug 2016 07:35:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: 993870b5 at opayq dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-72860-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01202.txt.bz2
Content-length: 2479

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72860

            Bug ID: 72860
           Summary: Building GCC Cross-Compiler on cygwin for PowerPC
           Product: gcc
           Version: 5.4.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: 993870b5 at opayq dot com
  Target Milestone: ---

Following the instructions on http://wiki.osdev.org/GCC_Cross-Compiler I have
been trying to build a GCC C language cross-compiler for Powerpc-eabi
architecture using Cygwin on Windows 7 32bit.

I downloaded following software
Cygwin 2.5.2
GCC version 5.4.0
binutils 2.26

I have successfully bulit and installed binutils-2.26

I have executed following configure command:
../gcc-5.4.0/configure --target=powerpc-eabi --prefix=/home/user/opt/cross
--disable-nls --enable-languages=c --without-headers

when I execute the command: make all-gcc

after a while, the following error is generated.

...
g++ -c-g -O2 -DIN_GCC  -DCROSS_DIRECTORY_STRUCTURE  -fno-exceptions -fno-rtti 
-fasynchronous-unwind-tables -W -Wall -Wno-narrowing -Wwrite-strings
-Wcast-qual 
-Wmissing-format-attribute -Woverloaded-virtual -pedantic -Wno-long-long 
-Wno-variadic-macros -Wno-overlength-strings   -DHAVE_CONFIG_H 
-DGENERATOR_FILE -I. -Ibuild -I../../gcc-5.4.0/gcc 
-I../../gcc-5.4.0/gcc/build -I../../gcc-5.4.0/gcc/../include  
-I../../gcc-5.4.0/gcc/../libcpp/include
-o build/genpreds.o ../../gcc-5.4.0/gcc/genpreds.c
In file included from ../../gcc-5.4.0/gcc/rtl.h:26:0,
                 from ../../gcc-5.4.0/gcc/genpreds.c:27:
../../gcc-5.4.0/gcc/real.h:43:35: warning: division by zero [-Wdiv-by-zero]
 #define SIGSZ   (SIGNIFICAND_BITS / HOST_BITS_PER_LONG)
                                   ^
../../gcc-5.4.0/gcc/real.h:56:21: note: in expansion of macro ‘SIGSZ’
   unsigned long sig[SIGSZ];
                     ^
../../gcc-5.4.0/gcc/real.h:56:26: error: size of array ‘sig’ is not an integral
constant-expression
   unsigned long sig[SIGSZ];
                          ^
make[1]: *** [Makefile:2429: build/genpreds.o] Error 1
make[1]: Leaving directory '/home/user/build-gcc/gcc'
make: *** [Makefile:4100: all-gcc] Error 2

The cause of error seems to be the missing definition of HOST_BITS_PER_LONG in
file rtl.h.

removing the -pedantic option from the Makefile did not result in any
difference.
>From gcc-bugs-return-533868-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 07:36:06 2016
Return-Path: <gcc-bugs-return-533868-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 81311 invoked by alias); 10 Aug 2016 07:36:06 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 76907 invoked by uid 48); 10 Aug 2016 07:36:01 -0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/72859] Building GCC Cross-Compiler on cygwin for PowerPC
Date: Wed, 10 Aug 2016 07:36:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72859-4-g6XZWEXWaN@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72859-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72859-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01204.txt.bz2
Content-length: 183

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72859

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
*** Bug 72860 has been marked as a duplicate of this bug. ***
>From gcc-bugs-return-533867-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 07:36:06 2016
Return-Path: <gcc-bugs-return-533867-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 81035 invoked by alias); 10 Aug 2016 07:36:05 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 76740 invoked by uid 48); 10 Aug 2016 07:36:00 -0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/72860] Building GCC Cross-Compiler on cygwin for PowerPC
Date: Wed, 10 Aug 2016 07:36:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: DUPLICATE
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-72860-4-IdV87fEOv8@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72860-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72860-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01203.txt.bz2
Content-length: 490

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72860

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |DUPLICATE

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
.

*** This bug has been marked as a duplicate of bug 72859 ***
>From gcc-bugs-return-533869-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 07:38:11 2016
Return-Path: <gcc-bugs-return-533869-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 87739 invoked by alias); 10 Aug 2016 07:38:11 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 87618 invoked by uid 48); 10 Aug 2016 07:37:58 -0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/72859] Building GCC Cross-Compiler on cygwin for PowerPC
Date: Wed, 10 Aug 2016 07:38:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords: build
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cf_gcctarget cf_gcchost cf_gccbuild
Message-ID: <bug-72859-4-gHKdkzsQQz@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72859-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72859-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01205.txt.bz2
Content-length: 542

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72859

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Target|                            |powerpc-eabi
               Host|                            |*-cygwin
              Build|                            |*-cygwin

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Can you attach the config.log from the gcc subdirectory?
>From gcc-bugs-return-533870-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 07:43:23 2016
Return-Path: <gcc-bugs-return-533870-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 98042 invoked by alias); 10 Aug 2016 07:43:23 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 97736 invoked by uid 48); 10 Aug 2016 07:43:10 -0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/63586] x+x+x+x -> 4*x in gimple
Date: Wed, 10 Aug 2016 07:43:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 5.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: kugan at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_status resolution target_milestone
Message-ID: <bug-63586-4-MJwsShxAlE@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-63586-4@http.gcc.gnu.org/bugzilla/>
References: <bug-63586-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01206.txt.bz2
Content-length: 550

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63586

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |missed-optimization
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |FIXED
   Target Milestone|---                         |7.0

--- Comment #10 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Fixed.
>From gcc-bugs-return-533871-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 07:43:51 2016
Return-Path: <gcc-bugs-return-533871-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 99019 invoked by alias); 10 Aug 2016 07:43:51 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 98930 invoked by uid 48); 10 Aug 2016 07:43:41 -0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/63596] Saving of GPR/FPRs for stdarg even though the variable argument is not used
Date: Wed, 10 Aug 2016 07:43:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jiwang at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-63596-4-W6GQinJrjP@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-63596-4@http.gcc.gnu.org/bugzilla/>
References: <bug-63596-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01207.txt.bz2
Content-length: 292

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63596

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |7.0
>From gcc-bugs-return-533872-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 07:46:01 2016
Return-Path: <gcc-bugs-return-533872-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 129611 invoked by alias); 10 Aug 2016 07:46:01 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 129462 invoked by uid 48); 10 Aug 2016 07:45:45 -0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/36412] gcov -l -p exceeds maximum file name length
Date: Wed, 10 Aug 2016 07:46:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 4.1.2
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-36412-4-GB5QjbjWJp@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-36412-4@http.gcc.gnu.org/bugzilla/>
References: <bug-36412-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01208.txt.bz2
Content-length: 939

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=36412

--- Comment #3 from Martin Liška <marxin at gcc dot gnu.org> ---
(In reply to Peter Klotz from comment #2)
> Hello Martin
> 
> It's great that you came up with a solution!
> 
> Meanwhile I removed "-l" from the command line to avoid the error and use an
> additional script to rename files as soon as they are generated by gcov.
> This way file name collisions leading to overwritten files are prevented.
> 
> Once your solution is present in a binary distribution I'm happy to remove
> all these workarounds.
> 
> Regards, Peter.

Hi Peter.

I'm happy that you're using GCC and that the request is still more than valid.
I expect it's going to be accepted to trunk soon:
https://gcc.gnu.org/ml/gcc-patches/2016-08/msg00721.html

What compiler version are you using, I may backport the patch if you are
interested (cause GCC 7.1 is going to be released in ~May 2017)?
>From gcc-bugs-return-533873-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 07:58:15 2016
Return-Path: <gcc-bugs-return-533873-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 126080 invoked by alias); 10 Aug 2016 07:58:15 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 124608 invoked by uid 55); 10 Aug 2016 07:58:02 -0000
From: "rguenther at suse dot de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71691] [6/7 Regression] wrong code at -O3 in both 32-bit and 64-bit modes on x86_64-linux-gnu (Floating point exception)
Date: Wed, 10 Aug 2016 07:58:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenther at suse dot de
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71691-4-p2lJALoe5A@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71691-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71691-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01209.txt.bz2
Content-length: 2502

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71691

--- Comment #10 from rguenther at suse dot de <rguenther at suse dot de> ---
On Tue, 9 Aug 2016, law at redhat dot com wrote:

> https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71691
> 
> --- Comment #9 from Jeffrey A. Law <law at redhat dot com> ---
> Based on c#6 I started thinking about how to make tree-ssa-loop-unswitch.c
> appropriately conservative when a condition references a maybe-undefined
> SSA_NAME.
> 
> To recap, tree_may_unswitch_on has this test:
> 
>      /* Unswitching on undefined values would introduce undefined
>          behavior that the original program might never exercise.  */
>       if (ssa_undefined_value_p (use, true))
>         return NULL_TREE;
> 
> The problem is ssa_undefined_value_p returns an optimistic result -- ie, it
> will returns true iff the definition statement is empty.  So it will return
> false for an SSA_NAME that is set from a PHI node where one or more arguments
> have undefined values.

ssa_undefined_value_p returns a conservative result for the
must-be-undefined question which it is used for.  It doesn't 
conservatively answer maybe-undefined.

> ISTM this can be pretty easily fixed.
> 
> Create a bitmap and initialize it to all the SSA_NAMEs where
> ssa_undefined_value_p is true.
> 
> Examine each PHI, if the PHI has an argument on its RHS that has the bit set in
> the bitmap, then set the bit for the LHS of the PHI
> 
> Iterate on the PHIs until nothing has changed.

Simpler: in dominator order walk all PHIs and stmts, for PHIs mark
the def defined if all args are defined, for stmts mark all defs defined

no iteration necessary, no pre-seeding with ssa_undefined_value_p needed,
simply fall back to it when looking at PHI args (for parameter handling).

> [ Yes, this isn't the most efficient.  Implementation would be different to
> improve efficiency. ]
> 
> The result is the conservative set of SSA_NAMEs that may be undefined.  This
> satisfies the need of unswitching and potentially other passes that really want
> the conservative set.  

Yeah, though it computes undefinedness in the strict SSA sense.

OTOH what unswitching wants to know is whether the value is either known
to be defined or is known to be already used in the path leading from
function entry to the place we want to place the new condition.  That
can be tested with iterating over all immediate uses and a dominance
check which should improve things a bit.
>From gcc-bugs-return-533874-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 08:19:00 2016
Return-Path: <gcc-bugs-return-533874-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 24566 invoked by alias); 10 Aug 2016 08:18:59 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 23737 invoked by uid 48); 10 Aug 2016 08:18:47 -0000
From: "trippels at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72861] New: [7 Regression] 25% tramp3d-v4 performance regression on ppc64le
Date: Wed, 10 Aug 2016 08:18:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: trippels at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone cf_gcchost cf_gcctarget cf_gccbuild
Message-ID: <bug-72861-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01210.txt.bz2
Content-length: 4074

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72861

            Bug ID: 72861
           Summary: [7 Regression] 25% tramp3d-v4 performance regression
                    on ppc64le
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: target
          Assignee: unassigned at gcc dot gnu.org
          Reporter: trippels at gcc dot gnu.org
  Target Milestone: ---
              Host: powerpc64le-unknown-linux-gnu
            Target: powerpc64le-unknown-linux-gnu
             Build: powerpc64le-unknown-linux-gnu

Performance of tramp3d-v4 regressed more than 25% compared to gcc-6
on ppc64le (gcc112):

gcc-6:

trippels@gcc2-power8 ~ % ~/gcc_6/usr/local/bin/g++ -w -Ofast -mlra -mcpu=power8
tramp3d-v4.cpp

 Performance counter stats for './a.out --cartvis 1.0 0.0 --rhomin 1e-8 -n 20'
(5 runs):

       1972.550946      task-clock (msec)         #    0.999 CPUs utilized     
      ( +-  0.22% )
               159      context-switches          #    0.081 K/sec             
      ( +-  0.90% )
                 0      cpu-migrations            #    0.000 K/sec              
             1,224      page-faults               #    0.621 K/sec             
      ( +-  0.02% )
     6,748,308,064      cycles                    #    3.421 GHz               
      ( +-  0.22% ) [66.46%]
       102,294,018      stalled-cycles-frontend   #    1.52% frontend cycles
idle     ( +-  3.23% ) [49.91%]
     4,241,962,795      stalled-cycles-backend    #   62.86% backend  cycles
idle     ( +-  0.42% ) [50.41%]
     7,902,269,951      instructions              #    1.17  insns per cycle    
                                                  #    0.54  stalled cycles per
insn  ( +-  0.17% ) [67.10%]
       740,198,353      branches                  #  375.249 M/sec             
      ( +-  0.12% ) [50.14%]
        12,209,406      branch-misses             #    1.65% of all branches   
      ( +-  0.25% ) [49.82%]

       1.973964281 seconds time elapsed                                        
 ( +-  0.22% )


gcc-7:

trippels@gcc2-power8 ~ % ~/gcc_7/usr/local/bin/g++ -w -Ofast -mlra -mcpu=power8
tramp3d-v4.cpp 

 Performance counter stats for './a.out --cartvis 1.0 0.0 --rhomin 1e-8 -n 20'
(5 runs):

       2677.865248      task-clock (msec)         #    0.999 CPUs utilized     
      ( +-  0.84% )
               163      context-switches          #    0.061 K/sec             
      ( +-  1.77% )
                 0      cpu-migrations            #    0.000 K/sec             
      ( +-100.00% )
             2,092      page-faults               #    0.781 K/sec             
      ( +-  0.03% )
     9,149,015,944      cycles                    #    3.417 GHz               
      ( +-  0.92% ) [66.65%]
       105,804,553      stalled-cycles-frontend   #    1.16% frontend cycles
idle     ( +-  5.21% ) [50.12%]
     6,383,265,282      stalled-cycles-backend    #   69.77% backend  cycles
idle     ( +-  1.30% ) [50.31%]
     8,980,496,614      instructions              #    0.98  insns per cycle    
                                                  #    0.71  stalled cycles per
insn  ( +-  0.32% ) [66.96%]
       682,369,238      branches                  #  254.818 M/sec             
      ( +-  0.25% ) [49.93%]
        10,159,864      branch-misses             #    1.49% of all branches   
      ( +-  0.61% ) [49.82%]

       2.679415575 seconds time elapsed                                        
 ( +-  0.84% )
>From gcc-bugs-return-533875-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 08:28:15 2016
Return-Path: <gcc-bugs-return-533875-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 55086 invoked by alias); 10 Aug 2016 08:28:14 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 54423 invoked by uid 48); 10 Aug 2016 08:28:02 -0000
From: "vehre at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/72832] [OOP] ALLOCATE with SOURCE fails to allocate requested dimensions
Date: Wed, 10 Aug 2016 08:28:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: vehre at gcc dot gnu.org
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-72832-4-ilTuuNNyUR@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72832-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72832-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01211.txt.bz2
Content-length: 618

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72832

vehre at gcc dot gnu.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |vehre at gcc dot gnu.org

--- Comment #2 from vehre at gcc dot gnu.org ---
There are two bugs in one here: 

- the shape is selected from source= and not from the b(1:4), and
- the shape of a and new b is not conformable, which can only be deduced at
runtime (and is already when the class(t) is replaced by type(t) and
-fcheck=all is used).
>From gcc-bugs-return-533876-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 08:33:37 2016
Return-Path: <gcc-bugs-return-533876-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 63072 invoked by alias); 10 Aug 2016 08:33:36 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 62931 invoked by uid 48); 10 Aug 2016 08:33:24 -0000
From: "gerald at pfeifer dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug web/72856] Trottle bug creation for newly created accounts (to limit spam)
Date: Wed, 10 Aug 2016 08:33:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: web
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: gerald at pfeifer dot com
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: LpSolit at netscape dot net
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-72856-4-z8D57r1ejO@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72856-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72856-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01212.txt.bz2
Content-length: 678

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72856

Gerald Pfeifer <gerald at pfeifer dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |gerald at pfeifer dot com

--- Comment #2 from Gerald Pfeifer <gerald at pfeifer dot com> ---
Thanks for looking into this, Frédéric!

As for rate throttling, how about only allowing for a single bug 
report per day until a bug report has been "processed" (for some
suitable definition of "processed" - perhaps even any action that
is different from simply marking it as spam)?
>From gcc-bugs-return-533877-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 08:38:14 2016
Return-Path: <gcc-bugs-return-533877-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 71592 invoked by alias); 10 Aug 2016 08:38:14 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 71286 invoked by uid 48); 10 Aug 2016 08:38:01 -0000
From: "amker at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/72855] Long compile time due to integrity checking during dataflow analysis per loop
Date: Wed, 10 Aug 2016 08:38:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 5.4.1
X-Bugzilla-Keywords: compile-time-hog
X-Bugzilla-Severity: normal
X-Bugzilla-Who: amker at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-72855-4-QqNG9NxuB4@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72855-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72855-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01213.txt.bz2
Content-length: 1254

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72855

amker at gcc dot gnu.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |amker at gcc dot gnu.org

--- Comment #1 from amker at gcc dot gnu.org ---
Among all loops in the large function, how many loops can be doloop optimized
successfully?  Function doloop__optimize has some valid checks on doloop
optimizations.  Is it possible to move most (some) of checks outside of the
per-loop function.  Looks like targetm.invalid_within_doloop can be moved.  As
a result, we can know some loops can't be doloop optimized, so the
iv_analysis/df_analysis can be skipped for those loops.  For checks on loop
analysis result:
  if (!desc->simple_p
      || desc->assumptions
      || desc->infinite)
I think it's possible to avoid per-loop analysis behavior too.  Since we don't
change code, there is no need to do df analysis for each loop before
iv_analysis.  As a result, df_verify can be saved.  We may need a new interface
analyzing iv/loop_desc for all loops in loop-iv.c

Of course, if most loops can be doloop optimized, this may not be able to help.
>From gcc-bugs-return-533878-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 08:52:11 2016
Return-Path: <gcc-bugs-return-533878-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 76182 invoked by alias); 10 Aug 2016 08:52:11 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 75999 invoked by uid 48); 10 Aug 2016 08:51:58 -0000
From: "vehre at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/72832] [OOP] ALLOCATE with SOURCE fails to allocate requested dimensions
Date: Wed, 10 Aug 2016 08:52:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: vehre at gcc dot gnu.org
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72832-4-LZUzpNlj1x@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72832-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72832-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01214.txt.bz2
Content-length: 660

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72832

--- Comment #3 from vehre at gcc dot gnu.org ---
This patch fragment fixes the first issue:

diff --git a/gcc/fortran/trans-stmt.c b/gcc/fortran/trans-stmt.c
index 5884e7a..8e5428a 100644
--- a/gcc/fortran/trans-stmt.c
+++ b/gcc/fortran/trans-stmt.c
@@ -5485,7 +5485,8 @@ gfc_trans_allocate (gfc_code * code)
                  desc = tmp;
                  tmp = gfc_class_data_get (tmp);
                }
-             e3_is = E3_DESC;
+             if (code->ext.alloc.arr_spec_from_expr3)
+               e3_is = E3_DESC;
            }
          else
            desc = !is_coarray ? se.expr
>From gcc-bugs-return-533879-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 08:58:02 2016
Return-Path: <gcc-bugs-return-533879-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 94529 invoked by alias); 10 Aug 2016 08:58:02 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 93728 invoked by uid 48); 10 Aug 2016 08:57:49 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/72855] Long compile time due to integrity checking during dataflow analysis per loop
Date: Wed, 10 Aug 2016 08:58:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 5.4.1
X-Bugzilla-Keywords: compile-time-hog
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72855-4-ciPh8USCXe@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72855-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72855-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01215.txt.bz2
Content-length: 2100

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72855

--- Comment #2 from Richard Biener <rguenth at gcc dot gnu.org> ---
If we have release checking enabled then we shuould hit

static void
df_analyze_1 (void)
{
...
#ifndef ENABLE_DF_CHECKING
  if (df->changeable_flags & DF_VERIFY_SCHEDULED)
#endif
    df_verify ();

so I wonder why df->changeable_flags & DF_VERIFY_SCHEDULED is ever true
for release checking.  Can you track that down?  I can't reproduce
df_verify being called on the 4.9 branch with release checking on x86_64
(OTOH x86_64 doesn't have a doloop pattern).  Compile-time is 186s for 4.9,
main offenders:

 df reaching defs        :  24.61 (13%) usr 
 alias stmt walking      :  13.72 ( 7%) usr  
 dominator optimization  :  33.26 (18%) usr
 expand vars             :  48.89 (26%) usr

GCC 5 seems to be quite a bit worse with 400s:

 df reaching defs        :  13.16 ( 3%) usr
 alias stmt walking      : 216.73 (54%) usr
 expand vars             :  25.86 ( 6%) usr  
 load CSE after reload   :  83.96 (21%) usr  

GCC 6 uses a _load_ more memory on this testcase (I end up swapping with 8GB
ram
and finally get killed).  So even on x86_64 the testcase looks interesting.

Note that

static bool
doloop_optimize (struct loop *loop)
{
...
  iv_analysis_loop_init (loop);

  /* Find the simple exit of a LOOP.  */
  desc = get_simple_loop_desc (loop);


performs iv_analysis_loop_init and thus df_analyze_loop twice ...


But yes, performing df_verify for each loop in a function is excessive,
we seem to lack ever clearing said flag.  Does

Index: gcc/df-core.c
===================================================================
--- gcc/df-core.c       (revision 239276)
+++ gcc/df-core.c       (working copy)
@@ -1833,6 +1833,7 @@ df_verify (void)
   if (df_live)
     df_live_verify_transfer_functions ();
 #endif
+  df->changeable_flags &= ~DF_VERIFY_SCHEDULED;
 }

 #ifdef DF_DEBUG_CFG

help in the non-DF-checking case?
>From gcc-bugs-return-533880-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 09:08:16 2016
Return-Path: <gcc-bugs-return-533880-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 111664 invoked by alias); 10 Aug 2016 09:08:16 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 111537 invoked by uid 48); 10 Aug 2016 09:08:02 -0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/72831] [7 Regression] Conditional jump or move depends on uninitialised value: regno_in_use_p (lra-spills.c:701)
Date: Wed, 10 Aug 2016 09:08:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-72831-4-VXgWqQBJgT@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72831-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72831-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01216.txt.bz2
Content-length: 403

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72831

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jakub at gcc dot gnu.org

--- Comment #2 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Doesn't r239241 fix this?
>From gcc-bugs-return-533881-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 09:23:45 2016
Return-Path: <gcc-bugs-return-533881-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 6160 invoked by alias); 10 Aug 2016 09:23:45 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 6053 invoked by uid 48); 10 Aug 2016 09:23:32 -0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/72785] [7 Regression] kernel build error since r236831
Date: Wed, 10 Aug 2016 09:23:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-72785-4-rIZ2K8Fh3C@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72785-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72785-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01217.txt.bz2
Content-length: 1129

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72785

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jakub at gcc dot gnu.org

--- Comment #2 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
tree-ssa-threadedge.c has some BUILT_IN_CONSTANT_P code already, but clearly it
isn't enough.
"Similarly for __builtin_constant_p:

r = PHI <1(2), 2(3)>
__builtin_constant_p (r)

Both PHI arguments are constant, but x ? 1 : 2 is still not
constant."
is what it does right now, but we have instead:
  # iftmp.0_2 = PHI <a.1_5(2), 1(3)>
  b = iftmp.0_2;
  _1 = __builtin_constant_p (iftmp.0_2);
where thread1 turns it into:
  # iftmp.0_8 = PHI <1(2)>
  b = iftmp.0_8;
  _10 = __builtin_constant_p (iftmp.0_8);
...
  # iftmp.0_2 = PHI <a.1_5(2)>
  b = iftmp.0_2;
  _1 = __builtin_constant_p (iftmp.0_2);
This is undesirable, iftmp.0_2 really isn't constant, so we shouldn't turn it
into sometimes constant, sometimes non-constant.
>From gcc-bugs-return-533882-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 09:43:49 2016
Return-Path: <gcc-bugs-return-533882-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 118829 invoked by alias); 10 Aug 2016 09:43:49 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 118723 invoked by uid 48); 10 Aug 2016 09:43:36 -0000
From: "jamborm at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ipa/71981] [6/7 Regression] ICE at -O2 and -O3 on x86_64-linux-gnu (internal compiler error: in get_dynamic_type, at ipa-polymorphic-call.c:1667)
Date: Wed, 10 Aug 2016 09:43:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ipa
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jamborm at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: jamborm at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-71981-4-B16evg16wu@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71981-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71981-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01218.txt.bz2
Content-length: 541

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71981

Martin Jambor <jamborm at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #6 from Martin Jambor <jamborm at gcc dot gnu.org> ---
Fixed on trunk and gcc-6-branch, so hopefully everywhere (I did not verify gcc
5 is OK but let's trust the bug title).
>From gcc-bugs-return-533883-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 09:53:40 2016
Return-Path: <gcc-bugs-return-533883-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 46645 invoked by alias); 10 Aug 2016 09:53:40 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 46336 invoked by uid 48); 10 Aug 2016 09:53:27 -0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ipa/71981] [6/7 Regression] ICE at -O2 and -O3 on x86_64-linux-gnu (internal compiler error: in get_dynamic_type, at ipa-polymorphic-call.c:1667)
Date: Wed, 10 Aug 2016 09:53:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ipa
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: jamborm at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71981-4-Fk6jgOv8iU@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71981-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71981-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01219.txt.bz2
Content-length: 342

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71981

--- Comment #7 from Martin Liška <marxin at gcc dot gnu.org> ---
(In reply to Martin Jambor from comment #6)
> Fixed on trunk and gcc-6-branch, so hopefully everywhere (I did not verify
> gcc 5 is OK but let's trust the bug title).

Yeah, I've just verified that GCC 5 branch is OK.
>From gcc-bugs-return-533884-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 09:55:26 2016
Return-Path: <gcc-bugs-return-533884-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 63484 invoked by alias); 10 Aug 2016 09:55:26 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 63356 invoked by uid 48); 10 Aug 2016 09:55:13 -0000
From: "trippels at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/72831] [7 Regression] Conditional jump or move depends on uninitialised value: regno_in_use_p (lra-spills.c:701)
Date: Wed, 10 Aug 2016 09:55:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: trippels at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-72831-4-Nswrd3H2PL@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72831-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72831-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01220.txt.bz2
Content-length: 531

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72831

Markus Trippelsdorf <trippels at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |FIXED

--- Comment #3 from Markus Trippelsdorf <trippels at gcc dot gnu.org> ---
(In reply to Jakub Jelinek from comment #2)
> Doesn't r239241 fix this?

Indeed it does. Thanks.
>From gcc-bugs-return-533885-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 10:12:50 2016
Return-Path: <gcc-bugs-return-533885-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 4049 invoked by alias); 10 Aug 2016 10:12:50 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 2900 invoked by uid 48); 10 Aug 2016 10:12:36 -0000
From: "krebbel at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72851] [6/7 Regression] memory hog with -O3 on s390x-linux-gnu
Date: Wed, 10 Aug 2016 10:12:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: krebbel at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-72851-4-sH6eqRhxGS@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72851-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72851-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01221.txt.bz2
Content-length: 1236

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72851

Andreas Krebbel <krebbel at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-10
     Ever confirmed|0                           |1

--- Comment #1 from Andreas Krebbel <krebbel at gcc dot gnu.org> ---
Reghunt indicates that this was introduced with:

Author: rguenth
Date: Tue Jul  7 07:59:40 2015
New Revision: 225504

URL: https://gcc.gnu.org/viewcvs?rev=225504&root=gcc&view=rev
Log:
2015-07-07  Richard Biener  <rguenther@suse.de>

        * tree-ssa-propagate.c (add_ssa_edge): Dump what edge list we
        add which use to.
        (add_control_edge): Remove excessive vertical space in dumping.
        (process_ssa_edge_worklist): Simulate at most one statement and
        return whether we did.  Do not simulate PHIs if they are in a
        BB not yet simulated.
        (ssa_propagate): Adjust to always drain the BB worklist whenever
        a BB is available there, likewise the VARYING edges list before
        the interesting edge list.
>From gcc-bugs-return-533886-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 10:16:53 2016
Return-Path: <gcc-bugs-return-533886-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 57462 invoked by alias); 10 Aug 2016 10:16:53 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 57317 invoked by uid 48); 10 Aug 2016 10:16:41 -0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/44779] The gcov library does not adequately handle functions with constructor/destructor attributes
Date: Wed, 10 Aug 2016 10:16:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 4.1.2
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: REOPENED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution assigned_to
Message-ID: <bug-44779-4-Ua1kJhgMfD@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-44779-4@http.gcc.gnu.org/bugzilla/>
References: <bug-44779-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01222.txt.bz2
Content-length: 558

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=44779

Martin Liška <marxin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
         Resolution|INVALID                     |---
           Assignee|unassigned at gcc dot gnu.org      |marxin at gcc dot gnu.org

--- Comment #7 from Martin Liška <marxin at gcc dot gnu.org> ---
Looks I've got working solution for situation 2).
>From gcc-bugs-return-533887-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 10:31:42 2016
Return-Path: <gcc-bugs-return-533887-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 77039 invoked by alias); 10 Aug 2016 10:31:42 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 76921 invoked by uid 48); 10 Aug 2016 10:31:29 -0000
From: "amker at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/72855] Long compile time due to integrity checking during dataflow analysis per loop
Date: Wed, 10 Aug 2016 10:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 5.4.1
X-Bugzilla-Keywords: compile-time-hog
X-Bugzilla-Severity: normal
X-Bugzilla-Who: amker at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72855-4-IW1bRogU8e@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72855-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72855-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01223.txt.bz2
Content-length: 1248

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72855

--- Comment #3 from amker at gcc dot gnu.org ---
(In reply to amker from comment #1)
> Among all loops in the large function, how many loops can be doloop
> optimized successfully?  Function doloop__optimize has some valid checks on
> doloop optimizations.  Is it possible to move most (some) of checks outside
> of the per-loop function.  Looks like targetm.invalid_within_doloop can be
> moved.  As a result, we can know some loops can't be doloop optimized, so
> the iv_analysis/df_analysis can be skipped for those loops.  For checks on
> loop analysis result:
>   if (!desc->simple_p
>       || desc->assumptions
>       || desc->infinite)
> I think it's possible to avoid per-loop analysis behavior too.  Since we
> don't change code, there is no need to do df analysis for each loop before
> iv_analysis.  As a result, df_verify can be saved.  We may need a new
> interface analyzing iv/loop_desc for all loops in loop-iv.c
> 
> Of course, if most loops can be doloop optimized, this may not be able to
> help.

As suspected, most loop can't be doloop optimized by the target dependent insn
check.  I am testing a simple refactoring patch to see if it can reduce compile
time.
>From gcc-bugs-return-533888-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 10:54:58 2016
Return-Path: <gcc-bugs-return-533888-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 15546 invoked by alias); 10 Aug 2016 10:54:58 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 15431 invoked by uid 48); 10 Aug 2016 10:54:45 -0000
From: "ysrumyan at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug testsuite/72850] [7 Regression] FAIL: gcc.dg/tree-ssa/pr69270-3.c scan-tree-dump-times uncprop1 ", 1" 4
Date: Wed, 10 Aug 2016 10:54:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: testsuite
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ysrumyan at gmail dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-72850-4-Pup3HcpElU@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72850-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72850-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01224.txt.bz2
Content-length: 501

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72850

Yuri Rumyantsev <ysrumyan at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ysrumyan at gmail dot com

--- Comment #3 from Yuri Rumyantsev <ysrumyan at gmail dot com> ---
We also noticed huge regression on coremark-pro/core benchmark after this
revision. I attach test-case to reproduce.
>From gcc-bugs-return-533889-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 10:56:58 2016
Return-Path: <gcc-bugs-return-533889-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 21283 invoked by alias); 10 Aug 2016 10:56:58 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 19952 invoked by uid 48); 10 Aug 2016 10:56:45 -0000
From: "ysrumyan at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug testsuite/72850] [7 Regression] FAIL: gcc.dg/tree-ssa/pr69270-3.c scan-tree-dump-times uncprop1 ", 1" 4
Date: Wed, 10 Aug 2016 10:56:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: testsuite
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ysrumyan at gmail dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: attachments.created
Message-ID: <bug-72850-4-6nxDyIpm1P@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72850-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72850-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01225.txt.bz2
Content-length: 308

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72850

--- Comment #4 from Yuri Rumyantsev <ysrumyan at gmail dot com> ---
Created attachment 39093
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39093&action=edit
test-case to reproduce

It is safficient use -Ofast option to compile on x86 machine.
>From gcc-bugs-return-533890-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 11:24:15 2016
Return-Path: <gcc-bugs-return-533890-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 66394 invoked by alias); 10 Aug 2016 11:24:10 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 66195 invoked by uid 48); 10 Aug 2016 11:23:56 -0000
From: "dominiq at lps dot ens.fr" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/72832] [OOP] ALLOCATE with SOURCE fails to allocate requested dimensions
Date: Wed, 10 Aug 2016 11:24:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dominiq at lps dot ens.fr
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72832-4-YhlNyfTFrl@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72832-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72832-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01226.txt.bz2
Content-length: 645

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72832

--- Comment #4 from Dominique d'Humieres <dominiq at lps dot ens.fr> ---
For the record, the following test

program allocate_source
  type :: t
  end type t
  type, extends(t) :: tt
  end type tt

  type(t), allocatable, dimension(:) :: a, b
  allocate(a(1:2))
  write(*,*) size(a,1)

  allocate(b(1:4), source=a)
  write(*,*) size(b,1)
end program allocate_source

gives the "expected" output and at runtime the error

           2
At line 11 of file pr72832_db_1.f90
Fortran runtime error: Array bound mismatch for dimension 1 of array 'b' (4/2)

when compiled with -fcheck=bounds.
>From gcc-bugs-return-533892-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 11:39:59 2016
Return-Path: <gcc-bugs-return-533892-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 9275 invoked by alias); 10 Aug 2016 11:39:59 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 9124 invoked by uid 48); 10 Aug 2016 11:39:51 -0000
From: "tschwinge at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/72741] Fortran OpenACC routine directive doesn't properly handle clauses specifying the level of parallelism
Date: Wed, 10 Aug 2016 11:39:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: openacc
X-Bugzilla-Severity: normal
X-Bugzilla-Who: tschwinge at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: cesar at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72741-4-TPfeWchSgT@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72741-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72741-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01228.txt.bz2
Content-length: 2203

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72741

--- Comment #5 from Thomas Schwinge <tschwinge at gcc dot gnu.org> ---
(In reply to cesar from comment #4)
> I could be mistaken, but I don't think there's anything we can do about that
> test case because fortran doesn't have file scope. Specifically, in your
> example,
> 
> SUBROUTINE r_w
>   IMPLICIT NONE
>   INTEGER :: i
>   !$ACC ROUTINE WORKER
> 
>   !$ACC LOOP
>   DO i = 1, 12345
>   END DO
> END SUBROUTINE r_w
> 
> PROGRAM main
>   IMPLICIT NONE
>   EXTERNAL :: r_w
>   !$ACC ROUTINE (r_w) GANG
> 
>   !$ACC PARALLEL
>   CALL r_w
>   !$ACC END PARALLEL
> END PROGRAM main
> 
> from program main's perspective, r_w should be an acc routine with a gang
> attribute, but that's only because the end user included an explicit
> 'external' function declaration. I'm not sure how to catch mismatched
> function declarations in fortran

Maybe I'm assuming too much about the Fortran front end, but I assumed that the
"SUBROUTINE r_w" would create some kind of decl, and the later "!$ACC ROUTINE
(r_w)" would look up some kind of decl (that is, the
gfc_find_function/gfc_find_subroutine/gfc_find_symtree stuff in
gfc_match_oacc_routine), and these decls both have some kind of "attributes"
attached to them, and once these two decls are "paired"/"merged", we can then
see whether these "attributes" match or conflict.  I assume some very similar
verification is done in the Fortran front end for other checking between
definition and use of any kind of routines, for example?

Are you saying that's not how the Fortran front end operates, and the
"SUBROUTINE r_w" and the later "PROGRAM main" do see completly detached "decl
spaces"?  Then indeed, we can't verify this in the Fortran front end, but...

> especially if lto is not enabled. If lto
> is enabled, we could add some more checking in pass oacc_device_lower.

..., as discussed before, something like that is the final goal that I'm
working on, and for that...

> But I
> don't think there's anything else to do in the fortran front end.

..., please implement the changes I asked you to implement in Comment 3, #c3,
or elaborate why that doesn't make sense.
>From gcc-bugs-return-533891-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 11:39:38 2016
Return-Path: <gcc-bugs-return-533891-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 8395 invoked by alias); 10 Aug 2016 11:39:37 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 7907 invoked by uid 48); 10 Aug 2016 11:39:25 -0000
From: "daanvanvugt at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/72832] [OOP] ALLOCATE with SOURCE fails to allocate requested dimensions
Date: Wed, 10 Aug 2016 11:39:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: daanvanvugt at gmail dot com
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72832-4-k3vKrPb69a@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72832-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72832-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01227.txt.bz2
Content-length: 361

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72832

--- Comment #5 from Daan van Vugt <daanvanvugt at gmail dot com> ---
Thanks for the quick responses.
Just out of interest: what is the recommended way to allocate a class(t)
variable of the same type as a but different size?
Do I need to select type and list all of the types? that would be inconvenient.
>From gcc-bugs-return-533893-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 11:46:10 2016
Return-Path: <gcc-bugs-return-533893-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 29146 invoked by alias); 10 Aug 2016 11:46:10 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 28992 invoked by uid 48); 10 Aug 2016 11:45:56 -0000
From: "manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug web/72856] Trottle bug creation for newly created accounts (to limit spam)
Date: Wed, 10 Aug 2016 11:46:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: web
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: manu at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: LpSolit at netscape dot net
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-72856-4-KmMVXJ9F9g@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72856-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72856-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01229.txt.bz2
Content-length: 1099

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72856

Manuel López-Ibáñez <manu at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |manu at gcc dot gnu.org

--- Comment #3 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
(In reply to Frédéric Buclin from comment #0)
> GCC Bugzilla suffered vandalism again between July 25 and 27. 709 spam bugs
> have been filed during this 48 hours window. 103 different email addresses
> have been used to avoid being blocked too quickly. This gives a ratio on
> average of 7 spam per account.

I wonder about the effort required to do such a thing. Some of those emails
seem fake, is there some kind of confirmation email for newly created accounts?

Limiting the number of bug reports per new account seems a good measure, but
also easily circumvented as long as someone can create as many new users as
they wish and each user stays below the limit.
>From gcc-bugs-return-533894-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 12:04:48 2016
Return-Path: <gcc-bugs-return-533894-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 68046 invoked by alias); 10 Aug 2016 12:04:48 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 67907 invoked by uid 48); 10 Aug 2016 12:04:35 -0000
From: "LpSolit at netscape dot net" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug web/72856] Trottle bug creation for newly created accounts (to limit spam)
Date: Wed, 10 Aug 2016 12:04:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: web
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: LpSolit at netscape dot net
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: LpSolit at netscape dot net
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72856-4-SwA6QpMWVo@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72856-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72856-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01230.txt.bz2
Content-length: 1291

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72856

--- Comment #4 from Frédéric Buclin <LpSolit at netscape dot net> ---
(In reply to Manuel López-Ibáñez from comment #3)
> I wonder about the effort required to do such a thing. Some of those emails
> seem fake, is there some kind of confirmation email for newly created
> accounts?

Yes. When a user requests a new account, an email is sent to that email
address, and the user must click on the link which is in the email to confirm
that 1) the email address is valid, and 2) it belongs to the user who wants to
create the bugzilla account. Clicking on this link will display a page where
the user must type his new password, and only after that is the bugzilla
account activated. It is not possible to create bugzilla accounts automatically
using the API (to prevent such problems).


> Limiting the number of bug reports per new account seems a good measure, but
> also easily circumvented as long as someone can create as many new users as
> they wish and each user stays below the limit.

I agree, that's a problem. But I think there isn't one single solution which
fixes all cases, but rather multiple solutions which, when combined together,
can give a reasonable level of spam prevention.
>From gcc-bugs-return-533895-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 12:15:20 2016
Return-Path: <gcc-bugs-return-533895-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 554 invoked by alias); 10 Aug 2016 12:15:19 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 130693 invoked by uid 48); 10 Aug 2016 12:14:59 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72861] [7 Regression] 25% tramp3d-v4 performance regression on ppc64le
Date: Wed, 10 Aug 2016 12:15:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords target_milestone
Message-ID: <bug-72861-4-VY1CgkIFFt@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72861-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72861-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01231.txt.bz2
Content-length: 362

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72861

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |missed-optimization
   Target Milestone|---                         |7.0
>From gcc-bugs-return-533897-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 12:17:48 2016
Return-Path: <gcc-bugs-return-533897-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 8410 invoked by alias); 10 Aug 2016 12:17:47 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 8267 invoked by uid 48); 10 Aug 2016 12:17:35 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/72848] profiledbootstrap: internal compiler error: in streamer_write_gcov_count_stream, at data-streamer-out.c:366
Date: Wed, 10 Aug 2016 12:17:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords: build, ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72848-4-YA5ARqh6vL@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72848-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72848-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01233.txt.bz2
Content-length: 308

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72848

--- Comment #3 from Richard Biener <rguenth at gcc dot gnu.org> ---
(In reply to mikulas from comment #2)
> gcc/hwint.h always defines HOST_WIDE_INT as 64-bit value. How could it be
> 32-bit?

Ah, didn't remember we fixed it to 64bit already with GCC 5.
>From gcc-bugs-return-533896-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 12:17:25 2016
Return-Path: <gcc-bugs-return-533896-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 7512 invoked by alias); 10 Aug 2016 12:17:25 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 7331 invoked by uid 55); 10 Aug 2016 12:17:12 -0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/72824] [5/6 Regression] Signed floating point zero semantics broken at optimization level -O3 (tree-loop-distribute-patterns)
Date: Wed, 10 Aug 2016 12:17:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72824-4-OqqcsMKTRg@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72824-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72824-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01232.txt.bz2
Content-length: 788

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72824

--- Comment #7 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Author: jakub
Date: Wed Aug 10 12:16:39 2016
New Revision: 239319

URL: https://gcc.gnu.org/viewcvs?rev=239319&root=gcc&view=rev
Log:
        Backported from mainline
        2016-08-09  Jakub Jelinek  <jakub@redhat.com>

        PR tree-optimization/72824
        * tree-loop-distribution.c (const_with_all_bytes_same): Verify
        real_zerop is not negative.

        * gcc.c-torture/execute/ieee/pr72824.c: New test.

Added:
    branches/gcc-6-branch/gcc/testsuite/gcc.c-torture/execute/ieee/pr72824.c
Modified:
    branches/gcc-6-branch/gcc/ChangeLog
    branches/gcc-6-branch/gcc/testsuite/ChangeLog
    branches/gcc-6-branch/gcc/tree-loop-distribution.c
>From gcc-bugs-return-533898-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 12:19:45 2016
Return-Path: <gcc-bugs-return-533898-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 17943 invoked by alias); 10 Aug 2016 12:19:45 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 13709 invoked by uid 48); 10 Aug 2016 12:19:32 -0000
From: "993870b5 at opayq dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/72859] Building GCC Cross-Compiler on cygwin for PowerPC
Date: Wed, 10 Aug 2016 12:19:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords: build
X-Bugzilla-Severity: normal
X-Bugzilla-Who: 993870b5 at opayq dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: attachments.created
Message-ID: <bug-72859-4-jrpFNeJHO8@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72859-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72859-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01234.txt.bz2
Content-length: 241

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72859

--- Comment #3 from 993870b5 at opayq dot com ---
Created attachment 39094
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39094&action=edit
config.log from the gcc subdirectory
>From gcc-bugs-return-533899-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 12:23:07 2016
Return-Path: <gcc-bugs-return-533899-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 61530 invoked by alias); 10 Aug 2016 12:23:07 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 61357 invoked by uid 48); 10 Aug 2016 12:22:53 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72851] [6/7 Regression] memory hog with -O3 on s390x-linux-gnu
Date: Wed, 10 Aug 2016 12:23:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72851-4-uAoHTS4jEc@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72851-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72851-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01235.txt.bz2
Content-length: 222

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72851

--- Comment #2 from Richard Biener <rguenth at gcc dot gnu.org> ---
Huh, if the reghunt is correct it points at some latent issue.  Will try to
reproduce with a cross.
>From gcc-bugs-return-533900-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 12:33:11 2016
Return-Path: <gcc-bugs-return-533900-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 97041 invoked by alias); 10 Aug 2016 12:33:11 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 92826 invoked by uid 48); 10 Aug 2016 12:32:55 -0000
From: "LpSolit at netscape dot net" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug web/72856] Trottle bug creation for newly created accounts (to limit spam)
Date: Wed, 10 Aug 2016 12:33:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: web
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: LpSolit at netscape dot net
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: LpSolit at netscape dot net
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72856-4-QUQzFGavAb@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72856-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72856-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01236.txt.bz2
Content-length: 1438

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72856

--- Comment #5 from Frédéric Buclin <LpSolit at netscape dot net> ---
(In reply to Gerald Pfeifer from comment #2)
> As for rate throttling, how about only allowing for a single bug 
> report per day until a bug report has been "processed"

Isn't one bug per day a bit rude for legit users? I would be tempted to say
that above 2 or 3 new bug reports, it's reasonable to question if the user is
trying to spam Bugzilla or not. This is why I made the proposal in comment 0 to
use something exponential. This would give us something like:

3**n-1                         5**n
======                         ====
T0      : account created      T0      : account created
T0      : 1st bug created      T0+1min : 1st bug created
T0+2min : 2nd bug created      T0+6min : 2nd bug created
T0+10min: 3rd bug created      T0+31min: 3rd bug created
T0+36min: 4th bug created      T0+2.5h : 4th bug created
T0+2h   : 5th bug created      T0+13h  : 5th bug created
T0+6h   : 6th bug created      T0+65h  : 6th bug created
T0+18h  : 7th bug created      etc...
T0+55h  : 8th bug created
etc...

So a spammer could file at most 6-8 bugs in a week, but a legit user could
still easily file his first 2-3 bugs in a half hour. Of course, this rate limit
would only apply to users without editbugs privileges, so e.g. @gcc.gnu.org
accounts would not be affected.
>From gcc-bugs-return-533901-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 12:34:04 2016
Return-Path: <gcc-bugs-return-533901-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 98684 invoked by alias); 10 Aug 2016 12:34:02 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 98522 invoked by uid 48); 10 Aug 2016 12:33:48 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72851] [6/7 Regression] memory hog with -O3 on s390x-linux-gnu
Date: Wed, 10 Aug 2016 12:34:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status assigned_to
Message-ID: <bug-72851-4-763KRLzlPH@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72851-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72851-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01237.txt.bz2
Content-length: 1326

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72851

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED
           Assignee|unassigned at gcc dot gnu.org      |rguenth at gcc dot gnu.org

--- Comment #3 from Richard Biener <rguenth at gcc dot gnu.org> ---
Doesn't reproduce with a cross.  I've configured with just
--target=s390x-suse-linux thus end up with

> ./xgcc -B. -S des.i -g -O3 -std=c99 -fPIC -pthread -v
Reading specs from ./specs
COLLECT_GCC=./xgcc
Target: s390x-suse-linux
Configured with: /space/rguenther/src/svn/gcc-6-branch/configure
--target=s390x-suse-linux --enable-languages=c,c++ --enable-checking=yes
Thread model: posix
gcc version 6.1.1 20160719 [gcc-6-branch revision 238088] (GCC) 
COLLECT_GCC_OPTIONS='-B' '.' '-S' '-g' '-O3' '-std=c99' '-fPIC' '-pthread' '-v'
'-m64' '-mzarch' '-march=z900'
 ./cc1 -fpreprocessed des.i -quiet -dumpbase des.i -m64 -mzarch -march=z900
-auxbase des -g -O3 -std=c99 -version -fPIC -o des.s

not sure if -march is the one you see this with.

Ah, using -march=z10 is required to reproduce it and it iterates forever in
VRP.

Investiating.
>From gcc-bugs-return-533902-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 12:36:35 2016
Return-Path: <gcc-bugs-return-533902-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 102206 invoked by alias); 10 Aug 2016 12:36:35 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 101944 invoked by uid 55); 10 Aug 2016 12:36:29 -0000
From: "saaadhu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/71873] ICE in push_reload
Date: Wed, 10 Aug 2016 12:36:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: saaadhu at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: saaadhu at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71873-4-Lov5dVRCgV@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71873-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71873-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01238.txt.bz2
Content-length: 960

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71873

--- Comment #1 from Senthil Kumar Selvaraj <saaadhu at gcc dot gnu.org> ---
Author: saaadhu
Date: Wed Aug 10 12:35:57 2016
New Revision: 239321

URL: https://gcc.gnu.org/viewcvs?rev=239321&root=gcc&view=rev
Log:
Fix PR 71873 - ICE in push_reload

Extend computation of subreg_in_class to constants and plus expressions 
inside SUBREGs, before recursively calling push_reload. SYMBOL_REFs are
also CONSTANT_P, so remove explicit handling of SYMBOL_REFs.

gcc/ChangeLog

        PR target/71873
        * reload.c (push_reload): Compute subreg_in_class for
        subregs of constants and plus expressions. Remove special
        handling of SYMBOL_REFs.

gcc/testsuite/ChangeLog

        PR target/71873
        * gcc.target/avr/pr71873.c: New test.

Added:
    trunk/gcc/testsuite/gcc.target/avr/pr71873.c
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/reload.c
    trunk/gcc/testsuite/ChangeLog
>From gcc-bugs-return-533903-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 12:41:26 2016
Return-Path: <gcc-bugs-return-533903-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 108597 invoked by alias); 10 Aug 2016 12:41:24 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 107071 invoked by uid 48); 10 Aug 2016 12:41:05 -0000
From: "fche at redhat dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug web/72856] Trottle bug creation for newly created accounts (to limit spam)
Date: Wed, 10 Aug 2016 12:41:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: web
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: fche at redhat dot com
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: LpSolit at netscape dot net
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72856-4-vpJg9Xmjpd@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72856-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72856-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01239.txt.bz2
Content-length: 404

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72856

--- Comment #6 from Frank Ch. Eigler <fche at redhat dot com> ---
Per-account rate limits seem so easy to overcome, with spammers already
creating numerous verified junk accounts with ease.

I would suggest focusing on spam-prevention content analysis (spamassassin
style), and post-spam cleanup (blacklisting, history editing, bug hiding?)
efforts.
>From gcc-bugs-return-533904-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 12:47:26 2016
Return-Path: <gcc-bugs-return-533904-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 84070 invoked by alias); 10 Aug 2016 12:47:26 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 83919 invoked by uid 48); 10 Aug 2016 12:47:13 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72851] [6/7 Regression] memory hog with -O3 on s390x-linux-gnu
Date: Wed, 10 Aug 2016 12:47:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72851-4-B6OdFpmDsG@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72851-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72851-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01240.txt.bz2
Content-length: 1648

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72851

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
Reduced testcase:

typedef unsigned char uint8_t;
typedef unsigned long int uint64_t;
union unaligned_64 {
    uint64_t l;
}
__attribute__((packed)) __attribute__((may_alias));
typedef struct AVDES {
    uint64_t round_keys[3][16];
} AVDES;
static const uint8_t PC1_shuffle[] = {
    64-57,64-49,64-41,64-33,64-25,64-17,64-9,    
64-1,64-58,64-50,64-42,64-34,64-26,64-18,    
64-10,64-2,64-59,64-51,64-43,64-35,64-27,    
64-19,64-11,64-3,64-60,64-52,64-44,64-36,    
64-63,64-55,64-47,64-39,64-31,64-23,64-15,    
64-7,64-62,64-54,64-46,64-38,64-30,64-22,    
64-14,64-6,64-61,64-53,64-45,64-37,64-29,    
64-21,64-13,64-5,64-28,64-20,64-12,64-4 };
static const uint8_t PC2_shuffle[] = {
    56-14,56-17,56-11,56-24,56-1,56-5,     56-3,56-28,56-15,56-6,56-21,56-10,  
  56-23,56-19,56-12,56-4,56-26,56-8,     56-16,56-7,56-27,56-20,56-13,56-2,    
56-41,56-52,56-31,56-37,56-47,56-55,     56-30,56-40,56-51,56-45,56-33,56-48,  
  56-44,56-49,56-39,56-56,56-34,56-53,     56-46,56-42,56-50,56-36,56-29,56-32
};
static uint64_t shuffle(uint64_t in, const uint8_t *shuffle, int shuffle_len)
{
  int i;
  uint64_t res = 0;
  for (i = 0; i < shuffle_len; i++)
    res += res + ((in >> *shuffle++) & 1);
  return res;
}
void gen_roundkeys(uint64_t K[16], uint64_t key)
{
  int i;
  uint64_t CDn = shuffle(key, PC1_shuffle, sizeof(PC1_shuffle));
  for (i = 0; i < 16; i++)
    K[i] = shuffle(CDn, PC2_shuffle, sizeof(PC2_shuffle));
}
>From gcc-bugs-return-533905-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 12:50:17 2016
Return-Path: <gcc-bugs-return-533905-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 94917 invoked by alias); 10 Aug 2016 12:50:14 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 86964 invoked by uid 48); 10 Aug 2016 12:49:59 -0000
From: "doko at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72851] [6/7 Regression] memory hog with -O3 on s390x-linux-gnu
Date: Wed, 10 Aug 2016 12:50:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: doko at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72851-4-QFV5w8bmLn@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72851-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72851-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01241.txt.bz2
Content-length: 230

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72851

--- Comment #5 from Matthias Klose <doko at gcc dot gnu.org> ---
configured --with-arch=zEC12, I can reproduce it with a cross as well. so maybe
check with -march=zEC12?
>From gcc-bugs-return-533906-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 13:09:08 2016
Return-Path: <gcc-bugs-return-533906-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 10356 invoked by alias); 10 Aug 2016 13:09:08 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 10019 invoked by uid 48); 10 Aug 2016 13:08:55 -0000
From: "anton at samba dot org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72863] New: Powerpc64le: redundant swaps when using vec_vsx_ld/st
Date: Wed, 10 Aug 2016 13:09:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: anton at samba dot org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter cc target_milestone cf_gcctarget
Message-ID: <bug-72863-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01242.txt.bz2
Content-length: 1586

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72863

            Bug ID: 72863
           Summary: Powerpc64le: redundant swaps when using vec_vsx_ld/st
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: target
          Assignee: unassigned at gcc dot gnu.org
          Reporter: anton at samba dot org
                CC: amodra at gcc dot gnu.org, bergner at gcc dot gnu.org,
                    meissner at gcc dot gnu.org, segher at gcc dot gnu.org,
                    wschmidt at gcc dot gnu.org
  Target Milestone: ---
            Target: powerpc64le-linux

I notice swaps to and from memory with the following test case:

void b(void)
{
        int i;

        unsigned char *s8 = src;
        unsigned char *d8 = dst;

        for (i = 0; i < 100; i++) {
                vector unsigned char vs = vec_vsx_ld(0, s8);
                vector unsigned char vd = vec_vsx_ld(0, d8);
                vector unsigned char vr = vec_xor(vs, vd);
                vec_vsx_st(vr, 0, d8);
                s8 += 16;
                d8 += 16;
        }
}

  70:   98 56 00 7c     lxvd2x  vs0,0,r10
  74:   98 4e 80 7d     lxvd2x  vs12,0,r9
  78:   10 00 4a 39     addi    r10,r10,16
  7c:   50 02 60 f1     xxswapd vs11,vs0
  80:   50 62 0c f0     xxswapd vs0,vs12
  84:   d0 04 0b f0     xxlxor  vs0,vs11,vs0
  88:   50 02 00 f0     xxswapd vs0,vs0
  8c:   98 4f 00 7c     stxvd2x vs0,0,r9
  90:   10 00 29 39     addi    r9,r9,16
  94:   dc ff 00 42     bdnz    70 <b+0x20>
>From gcc-bugs-return-533907-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 13:12:50 2016
Return-Path: <gcc-bugs-return-533907-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 21362 invoked by alias); 10 Aug 2016 13:12:50 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 21216 invoked by uid 48); 10 Aug 2016 13:12:37 -0000
From: "amker at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/72855] Long compile time due to integrity checking during dataflow analysis per loop
Date: Wed, 10 Aug 2016 13:12:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 5.4.1
X-Bugzilla-Keywords: compile-time-hog
X-Bugzilla-Severity: normal
X-Bugzilla-Who: amker at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72855-4-3dYY3sLKaP@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72855-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72855-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01243.txt.bz2
Content-length: 4633

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72855

--- Comment #4 from amker at gcc dot gnu.org ---
Here is a simple refactoring patch.

diff --git a/gcc/loop-doloop.c b/gcc/loop-doloop.c
index c311516..9fb04cf 100644
--- a/gcc/loop-doloop.c
+++ b/gcc/loop-doloop.c
@@ -254,18 +254,51 @@ doloop_condition_get (rtx doloop_pat)
   return 0;
 }

-/* Return nonzero if the loop specified by LOOP is suitable for
-   the use of special low-overhead looping instructions.  DESC
-   describes the number of iterations of the loop.  */
+/* Check all insns of LOOP to see if the loop is suitable for the use of
+   special low-overhead looping instructions.  Return TRUE if yes, false
+   otherwise.  */

 static bool
-doloop_valid_p (struct loop *loop, struct niter_desc *desc)
+doloop_insn_valid_p (struct loop *loop)
 {
-  basic_block *body = get_loop_body (loop), bb;
-  rtx_insn *insn;
   unsigned i;
-  bool result = true;
+  rtx_insn *insn;
+  basic_block *body = get_loop_body (loop), bb;

+  for (i = 0; i < loop->num_nodes; i++)
+    {
+      bb = body[i];
+
+      for (insn = BB_HEAD (bb);
+          insn != NEXT_INSN (BB_END (bb));
+          insn = NEXT_INSN (insn))
+       {
+         /* Different targets have different necessities for low-overhead
+            looping.  Call the back end for each instruction within the loop
+            to let it decide whether the insn prohibits a low-overhead loop.
+            It will then return the cause for it to emit to the dump file.  */
+         const char * invalid = targetm.invalid_within_doloop (insn);
+         if (invalid)
+           {
+             if (dump_file)
+               fprintf (dump_file, "Doloop: %s\n", invalid);
+
+             free (body);
+             return false;
+           }
+       }
+    }
+  free (body);
+  return true;
+}
+
+/* Check the number of iterations described by DESC of a loop to see if
+   the loop is suitable for the use of special low-overhead looping
+   instructions.  Return true if yes, false otherwise.  */
+
+static bool
+doloop_niter_valid_p (struct loop *, struct niter_desc *desc)
+{
   /* Check for loops that may not terminate under special conditions.  */
   if (!desc->simple_p
       || desc->assumptions
@@ -295,38 +328,10 @@ doloop_valid_p (struct loop *loop, struct niter_desc
*desc)
         enable count-register loops in this case.  */
       if (dump_file)
        fprintf (dump_file, "Doloop: Possible infinite iteration case.\n");
-      result = false;
-      goto cleanup;
-    }
-
-  for (i = 0; i < loop->num_nodes; i++)
-    {
-      bb = body[i];
-
-      for (insn = BB_HEAD (bb);
-          insn != NEXT_INSN (BB_END (bb));
-          insn = NEXT_INSN (insn))
-       {
-         /* Different targets have different necessities for low-overhead
-            looping.  Call the back end for each instruction within the loop
-            to let it decide whether the insn prohibits a low-overhead loop.
-            It will then return the cause for it to emit to the dump file.  */
-         const char * invalid = targetm.invalid_within_doloop (insn);
-         if (invalid)
-           {
-             if (dump_file)
-               fprintf (dump_file, "Doloop: %s\n", invalid);
-             result = false;
-             goto cleanup;
-           }
-       }
+      return false;
     }
-  result = true;
-
-cleanup:
-  free (body);

-  return result;
+  return true;
 }

 /* Adds test of COND jumping to DEST on edge *E and set *E to the new fallthru
@@ -621,17 +626,25 @@ doloop_optimize (struct loop *loop)
   if (dump_file)
     fprintf (dump_file, "Doloop: Processing loop %d.\n", loop->num);

+  if (!doloop_insn_valid_p (loop))
+    {
+      if (dump_file)
+       fprintf (dump_file, "Doloop: The loop is not suitable.\n");
+
+      return false;
+    }
+
   iv_analysis_loop_init (loop);

   /* Find the simple exit of a LOOP.  */
   desc = get_simple_loop_desc (loop);

   /* Check that loop is a candidate for a low-overhead looping insn.  */
-  if (!doloop_valid_p (loop, desc))
+  if (!doloop_niter_valid_p (loop, desc))
     {
       if (dump_file)
-       fprintf (dump_file,
-                "Doloop: The loop is not suitable.\n");
+       fprintf (dump_file, "Doloop: The loop is not suitable.\n");
+
       return false;
     }
   mode = desc->mode;

It reduces compile time for powerpc-elf on x86_64 machine from 54m to 5m.  The
compiler is configured with checking.  With "--enable-checking=release", the
current trunk compiles for ~5m too, but gcc in Ubuntu has the issue even it's
configured as release?
>From gcc-bugs-return-533908-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 13:15:53 2016
Return-Path: <gcc-bugs-return-533908-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 24599 invoked by alias); 10 Aug 2016 13:15:52 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 24368 invoked by uid 55); 10 Aug 2016 13:15:36 -0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/58306] Broken profiling for unrar sources: error: corrupted value profile: value profile counter (X out of Y) inconsistent with basic-block count
Date: Wed, 10 Aug 2016 13:15:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-58306-4-pt3djvN8iI@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-58306-4@http.gcc.gnu.org/bugzilla/>
References: <bug-58306-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01244.txt.bz2
Content-length: 1532

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58306

--- Comment #27 from Martin Liška <marxin at gcc dot gnu.org> ---
Author: marxin
Date: Wed Aug 10 13:14:56 2016
New Revision: 239324

URL: https://gcc.gnu.org/viewcvs?rev=239324&root=gcc&view=rev
Log:
Add new *_atomic counter update function

        PR gcov-profile/58306
        * Makefile.in: New functions (modules) are added.
        * libgcov-profiler.c (__gcov_interval_profiler_atomic): New
        function.
        (__gcov_pow2_profiler_atomic): New function.
        (__gcov_one_value_profiler_body): New argument is instroduced.
        (__gcov_one_value_profiler): Call with the new argument.
        (__gcov_one_value_profiler_atomic): Likewise.
        (__gcov_indirect_call_profiler_v2): Likewise.
        (__gcov_time_profiler_atomic): New function.
        (__gcov_average_profiler_atomic): Likewise.
        (__gcov_ior_profiler_atomic): Likewise.
        * libgcov.h: Declare the aforementioned functions.
        PR gcov-profile/58306
        * gcc.dg/tree-prof/val-profiler-threads-1.c: New test.
        PR gcov-profile/58306
        * tree-profile.c (gimple_init_edge_profiler): Create conditionally
        atomic variants of profile update functions.

Added:
    trunk/gcc/testsuite/gcc.dg/tree-prof/val-profiler-threads-1.c
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/tree-profile.c
    trunk/libgcc/ChangeLog
    trunk/libgcc/Makefile.in
    trunk/libgcc/libgcov-profiler.c
    trunk/libgcc/libgcov.h
>From gcc-bugs-return-533909-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 13:19:10 2016
Return-Path: <gcc-bugs-return-533909-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 43119 invoked by alias); 10 Aug 2016 13:19:10 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 42902 invoked by uid 48); 10 Aug 2016 13:18:57 -0000
From: "ebotcazou at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/72740] gnat.dg/specs/access[12].ads ICE when compiling with -g
Date: Wed, 10 Aug 2016 13:19:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ebotcazou at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc everconfirmed
Message-ID: <bug-72740-4-DYARRjAp9A@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72740-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72740-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01245.txt.bz2
Content-length: 1189

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72740

Eric Botcazou <ebotcazou at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-10
                 CC|                            |ebotcazou at gcc dot gnu.org
     Ever confirmed|0                           |1

--- Comment #1 from Eric Botcazou <ebotcazou at gcc dot gnu.org> ---
> the issue is that we have recursive pointer types and blow the stack when
> dwarf2out calls verify_type which calls variably_modified_type_p:
> 
> (gdb) p type->typed.type->typed.type
> $3 = <pointer_type 0x7ffff6525a80 access2__inc>
> (gdb) p type->typed.type->typed.type->typed.type
> $4 = <pointer_type 0x7ffff6525888 access2__priv>
> (gdb) p type->typed.type->typed.type->typed.type->typed.type
> $5 = <pointer_type 0x7ffff6525a80 access2__inc>
> 
> not sure how to best represent such a structure.  Maybe
> variably_modified_type_p needs adjustment?

Do you mean something similar to what Jan added in get_alias_set?
>From gcc-bugs-return-533910-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 13:22:45 2016
Return-Path: <gcc-bugs-return-533910-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 51021 invoked by alias); 10 Aug 2016 13:22:44 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 50895 invoked by uid 48); 10 Aug 2016 13:22:31 -0000
From: "dominiq at lps dot ens.fr" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/72832] [6/7 Regression] [OOP] ALLOCATE with SOURCE fails to allocate requested dimensions
Date: Wed, 10 Aug 2016 13:22:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dominiq at lps dot ens.fr
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: priority cf_known_to_work short_desc cf_known_to_fail
Message-ID: <bug-72832-4-4nQHNdyTDI@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72832-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72832-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01246.txt.bz2
Content-length: 1264

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72832

Dominique d'Humieres <dominiq at lps dot ens.fr> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P3                          |P4
      Known to work|                            |5.4.0
            Summary|[OOP] ALLOCATE with SOURCE  |[6/7 Regression] [OOP]
                   |fails to allocate requested |ALLOCATE with SOURCE fails
                   |dimensions                  |to allocate requested
                   |                            |dimensions
      Known to fail|                            |6.1.0, 7.0

--- Comment #6 from Dominique d'Humieres <dominiq at lps dot ens.fr> ---
BTW this is a regression. Compiling the code with 5.4.0 gives at runtime the
output

           2
           4

if compiled without -fcheck=bounds and

           2
At line 11 of file pr72832.f90
Fortran runtime error: Array bound mismatch for dimension 1 of array 'b' (4/2)

with it.

> Just out of interest: what is the recommended way to allocate a class(t)
> variable of the same type as a but different size?

Not 100% sure, but may be you can use a scalar (it does seem to work for me).
>From gcc-bugs-return-533911-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 13:27:11 2016
Return-Path: <gcc-bugs-return-533911-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 66871 invoked by alias); 10 Aug 2016 13:27:11 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 61769 invoked by uid 48); 10 Aug 2016 13:26:58 -0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/58306] Broken profiling for unrar sources: error: corrupted value profile: value profile counter (X out of Y) inconsistent with basic-block count
Date: Wed, 10 Aug 2016 13:27:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-58306-4-H93DC1mVtl@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-58306-4@http.gcc.gnu.org/bugzilla/>
References: <bug-58306-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01247.txt.bz2
Content-length: 443

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58306

Martin Liška <marxin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--- Comment #28 from Martin Liška <marxin at gcc dot gnu.org> ---
Fixed on trunk.
>From gcc-bugs-return-533912-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 13:29:14 2016
Return-Path: <gcc-bugs-return-533912-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 76583 invoked by alias); 10 Aug 2016 13:29:14 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 75624 invoked by uid 48); 10 Aug 2016 13:29:00 -0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/28441] Need atomic increment of gcov counters for MP programs
Date: Wed, 10 Aug 2016 13:29:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 4.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-28441-4-HaIJm8bSZ1@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-28441-4@http.gcc.gnu.org/bugzilla/>
References: <bug-28441-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01248.txt.bz2
Content-length: 451

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=28441

Martin Liška <marxin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--- Comment #16 from Martin Liška <marxin at gcc dot gnu.org> ---
Implemented by r239324.
>From gcc-bugs-return-533913-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 13:44:08 2016
Return-Path: <gcc-bugs-return-533913-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 103552 invoked by alias); 10 Aug 2016 13:44:08 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 103319 invoked by uid 48); 10 Aug 2016 13:43:53 -0000
From: "wschmidt at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72863] Powerpc64le: redundant swaps when using vec_vsx_ld/st
Date: Wed, 10 Aug 2016 13:44:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wschmidt at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72863-4-VJFOB0jhVK@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72863-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72863-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01249.txt.bz2
Content-length: 167

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72863

--- Comment #1 from Bill Schmidt <wschmidt at gcc dot gnu.org> ---
Egad.  How appalling.  I'll have a look soon.
>From gcc-bugs-return-533914-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 13:46:02 2016
Return-Path: <gcc-bugs-return-533914-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 111467 invoked by alias); 10 Aug 2016 13:46:01 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 111376 invoked by uid 48); 10 Aug 2016 13:45:56 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72851] [6/7 Regression] memory hog with -O3 on s390x-linux-gnu
Date: Wed, 10 Aug 2016 13:46:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72851-4-fbfzb2DxxH@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72851-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72851-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01250.txt.bz2
Content-length: 2229

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72851

--- Comment #6 from Richard Biener <rguenth at gcc dot gnu.org> ---
Ok, so with clever stmt / SSA use ordering you can get to quadratic propagation
as VRP allows ranges to arbitrarily grow:

Found new range for res_561: [0, 20368]
Found new range for res_561: [0, 20370]
Found new range for res_561: [0, 20372]
Found new range for res_561: [0, 20374]
Found new range for res_561: [0, 20376]
Found new range for res_561: [0, 20378]
Found new range for res_561: [0, 20380]
Found new range for res_561: [0, 20382]
Found new range for res_561: [0, 20384]
Found new range for res_561: [0, 20386]
Found new range for res_561: [0, 20388]
Found new range for res_561: [0, 20390]
Found new range for res_561: [0, 20392]
Found new range for res_561: [0, 20394]
Found new range for res_561: [0, 20396]
...

the SSA worklist in the SSA propagator is just a stack that is pushed/popped
to/from.

Ideally that worklist would be processed in stmt order but that requires
sorting the worklist vector or changing the worklist data structure to
sth "better" (a balanced tree?).  Slightly "randomizing" the worklist
processing, say by

Index: gcc/tree-ssa-propagate.c
===================================================================
--- gcc/tree-ssa-propagate.c    (revision 238469)
+++ gcc/tree-ssa-propagate.c    (working copy)
@@ -422,7 +422,8 @@ process_ssa_edge_worklist (vec<gimple *>
       basic_block bb;

       /* Pull the statement to simulate off the worklist.  */
-      gimple *stmt = worklist->pop ();
+      gimple *stmt = (*worklist)[0];
+      worklist->unordered_remove (0);

       /* If this statement was already visited by simulate_block, then
         we don't need to visit it again here.  */

fixes the testcase.  Of course it's just a matter of pure luck that it
re-appears (with the current processing order it's just most likely given
its depth-first processing nature).  Picking a truly random element from
the worklist would be better than the above (but truly random has to be
predictable to not break bootstrap).
>From gcc-bugs-return-533916-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 13:49:52 2016
Return-Path: <gcc-bugs-return-533916-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 64783 invoked by alias); 10 Aug 2016 13:49:52 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 64702 invoked by uid 55); 10 Aug 2016 13:49:46 -0000
From: "meissner at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72853] gcc/testsuite/gcc.c-torture/execute/20021120-1.c generates incorrect stxssp op with -mcpu=power9
Date: Wed, 10 Aug 2016 13:49:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: meissner at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72853-4-PX7BydUYgt@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72853-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72853-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01252.txt.bz2
Content-length: 789

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72853

--- Comment #6 from Michael Meissner <meissner at gcc dot gnu.org> ---
Author: meissner
Date: Wed Aug 10 13:49:12 2016
New Revision: 239325

URL: https://gcc.gnu.org/viewcvs?rev=239325&root=gcc&view=rev
Log:
[gcc]
2016-08-10  Michael Meissner  <meissner@linux.vnet.ibm.com>

        PR target/72853
        * config/rs6000/rs6000.c (mem_operand_ds_form): Add check for op
        being an offsettable address.

[gcc/testsuite]
2016-08-10  Michael Meissner  <meissner@linux.vnet.ibm.com>

        PR target/72853
        * gcc.target/powerpc/pr72853.c: New test.


Added:
    trunk/gcc/testsuite/gcc.target/powerpc/pr72853.c
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/config/rs6000/rs6000.c
    trunk/gcc/testsuite/ChangeLog
>From gcc-bugs-return-533915-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 13:49:52 2016
Return-Path: <gcc-bugs-return-533915-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 64774 invoked by alias); 10 Aug 2016 13:49:52 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 64515 invoked by uid 55); 10 Aug 2016 13:49:39 -0000
From: "rguenther at suse dot de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/72740] gnat.dg/specs/access[12].ads ICE when compiling with -g
Date: Wed, 10 Aug 2016 13:49:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenther at suse dot de
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72740-4-tMbneMggBz@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72740-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72740-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01251.txt.bz2
Content-length: 1567

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72740

--- Comment #2 from rguenther at suse dot de <rguenther at suse dot de> ---
On Wed, 10 Aug 2016, ebotcazou at gcc dot gnu.org wrote:

> https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72740
> 
> Eric Botcazou <ebotcazou at gcc dot gnu.org> changed:
> 
>            What    |Removed                     |Added
> ----------------------------------------------------------------------------
>              Status|UNCONFIRMED                 |NEW
>    Last reconfirmed|                            |2016-08-10
>                  CC|                            |ebotcazou at gcc dot gnu.org
>      Ever confirmed|0                           |1
> 
> --- Comment #1 from Eric Botcazou <ebotcazou at gcc dot gnu.org> ---
> > the issue is that we have recursive pointer types and blow the stack when
> > dwarf2out calls verify_type which calls variably_modified_type_p:
> > 
> > (gdb) p type->typed.type->typed.type
> > $3 = <pointer_type 0x7ffff6525a80 access2__inc>
> > (gdb) p type->typed.type->typed.type->typed.type
> > $4 = <pointer_type 0x7ffff6525888 access2__priv>
> > (gdb) p type->typed.type->typed.type->typed.type->typed.type
> > $5 = <pointer_type 0x7ffff6525a80 access2__inc>
> > 
> > not sure how to best represent such a structure.  Maybe
> > variably_modified_type_p needs adjustment?
> 
> Do you mean something similar to what Jan added in get_alias_set?

Yeah, or maybe mark the "forward" reference (the "backedge") tree type
in some way in the FE?  POINTER_TYPE_CYCLE_CLOSING_P?
>From gcc-bugs-return-533917-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 13:50:32 2016
Return-Path: <gcc-bugs-return-533917-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 66626 invoked by alias); 10 Aug 2016 13:50:32 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 66397 invoked by uid 48); 10 Aug 2016 13:50:22 -0000
From: "t.artem at mailcity dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/58306] Broken profiling for unrar sources: error: corrupted value profile: value profile counter (X out of Y) inconsistent with basic-block count
Date: Wed, 10 Aug 2016 13:50:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: t.artem at mailcity dot com
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-58306-4-ljFZPHMJ2x@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-58306-4@http.gcc.gnu.org/bugzilla/>
References: <bug-58306-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01253.txt.bz2
Content-length: 243

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58306

--- Comment #29 from Artem S. Tashkinov <t.artem at mailcity dot com> ---
(In reply to Martin Liška from comment #28)
> Fixed on trunk.

Thanks!

Will GCC 6.1.1 include these patches?
>From gcc-bugs-return-533918-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 13:52:01 2016
Return-Path: <gcc-bugs-return-533918-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 70326 invoked by alias); 10 Aug 2016 13:52:00 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 69952 invoked by uid 48); 10 Aug 2016 13:51:48 -0000
From: "dominiq at lps dot ens.fr" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/72832] [6/7 Regression] [OOP] ALLOCATE with SOURCE fails to allocate requested dimensions
Date: Wed, 10 Aug 2016 13:52:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dominiq at lps dot ens.fr
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72832-4-y6M75pT5pp@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72832-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72832-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01254.txt.bz2
Content-length: 175

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72832

--- Comment #7 from Dominique d'Humieres <dominiq at lps dot ens.fr> ---
Likely caused by r229294 (PRs 67044 and 66927).
>From gcc-bugs-return-533919-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 14:06:19 2016
Return-Path: <gcc-bugs-return-533919-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 99440 invoked by alias); 10 Aug 2016 14:06:19 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 98033 invoked by uid 48); 10 Aug 2016 14:06:06 -0000
From: "dmalcolm at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/72857] incorrect caret location in -Wformat for width and precision given by asterisk
Date: Wed, 10 Aug 2016 14:06:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: minor
X-Bugzilla-Who: dmalcolm at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: dmalcolm at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on assigned_to everconfirmed
Message-ID: <bug-72857-4-M7A8eQjAtl@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72857-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72857-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01255.txt.bz2
Content-length: 495

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72857

David Malcolm <dmalcolm at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |ASSIGNED
   Last reconfirmed|                            |2016-08-10
           Assignee|unassigned at gcc dot gnu.org      |dmalcolm at gcc dot gnu.org
     Ever confirmed|0                           |1
>From gcc-bugs-return-533921-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 14:11:30 2016
Return-Path: <gcc-bugs-return-533921-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 120763 invoked by alias); 10 Aug 2016 14:11:30 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 120618 invoked by uid 48); 10 Aug 2016 14:11:17 -0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/35543] Add more strOp for value profiling
Date: Wed, 10 Aug 2016 14:11:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 4.4.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc assigned_to
Message-ID: <bug-35543-4-HwI9mHqzfe@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-35543-4@http.gcc.gnu.org/bugzilla/>
References: <bug-35543-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01257.txt.bz2
Content-length: 513

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=35543

Martin Liška <marxin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |marxin at gcc dot gnu.org
           Assignee|unassigned at gcc dot gnu.org      |marxin at gcc dot gnu.org

--- Comment #3 from Martin Liška <marxin at gcc dot gnu.org> ---
Confirmed, I'm going to prepare a patch.
>From gcc-bugs-return-533920-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 14:11:06 2016
Return-Path: <gcc-bugs-return-533920-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 119850 invoked by alias); 10 Aug 2016 14:11:06 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 115564 invoked by uid 48); 10 Aug 2016 14:10:53 -0000
From: "dominiq at lps dot ens.fr" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/72864] New: gcc.c-torture/compile/pr72802.c fails on x86_64-apple-darwin15 with -m32
Date: Wed, 10 Aug 2016 14:11:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dominiq at lps dot ens.fr
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter cc target_milestone cf_gcchost cf_gcctarget cf_gccbuild
Message-ID: <bug-72864-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01256.txt.bz2
Content-length: 2084

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72864

            Bug ID: 72864
           Summary: gcc.c-torture/compile/pr72802.c fails on
                    x86_64-apple-darwin15 with -m32
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: dominiq at lps dot ens.fr
                CC: amodra at gcc dot gnu.org, iains at gcc dot gnu.org
  Target Milestone: ---
              Host: x86_64-apple-darwin15
            Target: x86_64-apple-darwin15
             Build: x86_64-apple-darwin15

The test gcc.c-torture/compile/pr72802.c fails on x86_64-apple-darwin15 with
-m32

Running target unix/-m32
FAIL: gcc.c-torture/compile/pr72802.c   -O0  (test for excess errors)
FAIL: gcc.c-torture/compile/pr72802.c   -O1  (test for excess errors)
FAIL: gcc.c-torture/compile/pr72802.c   -O2  (test for excess errors)
FAIL: gcc.c-torture/compile/pr72802.c   -O2 -flto  (test for excess errors)
FAIL: gcc.c-torture/compile/pr72802.c   -O2 -flto -flto-partition=none  (test
for excess errors)
FAIL: gcc.c-torture/compile/pr72802.c   -O3 -fomit-frame-pointer -funroll-loops
-fpeel-loops -ftracer -finline-functions  (test for excess errors)
FAIL: gcc.c-torture/compile/pr72802.c   -O3 -g  (test for excess errors)
FAIL: gcc.c-torture/compile/pr72802.c   -Os  (test for excess errors)

The error is

[book15] f90/bug% gcc-fsf-6
/opt/gcc/_clean/gcc/testsuite/gcc.c-torture/compile/pr72802.c -w -c -m32
/var/folders/8q/sh_swgz96r7f5vnn08f7fxr00000gn/T//cc30nAcT.s:152:2: error:
symbol '_a' can not be undefined in a subtraction expression
        leal    _a-L3$pb(%ebx), %eax
        ^

with all the gcc versions I have tried from 4.8 up to trunk (7.0), i.e. latent
bug.

Compiling with clang, Apple LLVM version 7.3.0 (clang-703.0.31), I get

/opt/gcc/_clean/gcc/testsuite/gcc.c-torture/compile/pr72802.c:53:5: error:
non-void function 'fn3' should return a value [-Wreturn-type]
    return;
    ^
1 error generated.
>From gcc-bugs-return-533922-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 14:21:22 2016
Return-Path: <gcc-bugs-return-533922-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 6045 invoked by alias); 10 Aug 2016 14:21:22 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 5892 invoked by uid 48); 10 Aug 2016 14:21:10 -0000
From: "cesar at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/72741] Fortran OpenACC routine directive doesn't properly handle clauses specifying the level of parallelism
Date: Wed, 10 Aug 2016 14:21:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: openacc
X-Bugzilla-Severity: normal
X-Bugzilla-Who: cesar at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: cesar at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72741-4-ucl1de1JXt@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72741-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72741-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01258.txt.bz2
Content-length: 2290

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72741

--- Comment #6 from cesar at gcc dot gnu.org ---
(In reply to Thomas Schwinge from comment #5)
> (In reply to cesar from comment #4)

> Are you saying that's not how the Fortran front end operates, and the
> "SUBROUTINE r_w" and the later "PROGRAM main" do see completly detached
> "decl spaces"?  Then indeed, we can't verify this in the Fortran front end,
> but...

Yes, the address spaces are completely detached in separate, external function.
Internal functions, i.e. those that are places after "contains:" share the same
scope as the main program/module block. 

Keep in mind that fortran has a lot of intrinsic procedures, so those find
function/subroutine functions mostly resolve those intrinsic procedures or
procedures explicitly declared by the user.

> > especially if lto is not enabled. If lto
> > is enabled, we could add some more checking in pass oacc_device_lower.
> 
> ..., as discussed before, something like that is the final goal that I'm
> working on, and for that...
> 
> > But I
> > don't think there's anything else to do in the fortran front end.
> 
> ..., please implement the changes I asked you to implement in Comment 3,
> #c3, or elaborate why that doesn't make sense.

That's a good idea in principle, but there are a couple of reasons why I'm
hesitant to pursue it.

a) The fortran pretty printer doesn't know about generic tree notes.
Consequently, I don't think build_oacc_routine_dims would be able to report any
errors unless we add support for tree notes in that pretty printer.

b) The fortran FE handle errors slightly differently from the c FE. Instead of
catching the error early and aborting immediately, you're method will defer the
error handling to after the FE has parsed everything. I'm not sure if this is a
problem or not.

c) That oacc_function information needs to be captured for fortran module .mod
files, and those .mod files don't require tree node attributes. Postponing that
attribute requires separate functions to manipulate the routine clauses.

d) gfc_oacc_routine_dims is already creating an oacc_function attribute for
routines. This attribute is a single enum instead of the individual clauses. I
like that because its more self contained.
>From gcc-bugs-return-533923-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 14:56:28 2016
Return-Path: <gcc-bugs-return-533923-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 104557 invoked by alias); 10 Aug 2016 14:56:27 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 104437 invoked by uid 48); 10 Aug 2016 14:56:15 -0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/72859] Building GCC Cross-Compiler on cygwin for PowerPC
Date: Wed, 10 Aug 2016 14:56:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords: build
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72859-4-ekNFOmv3jh@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72859-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72859-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01259.txt.bz2
Content-length: 414

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72859

--- Comment #4 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Comment on attachment 39094
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39094
config.log from the gcc subdirectory

configure:5756: checking size of short
configure:5776: result: 0
...
configure:5824: checking size of long
configure:5844: result: 0

That is why this is failing ...
>From gcc-bugs-return-533924-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 14:58:01 2016
Return-Path: <gcc-bugs-return-533924-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 106331 invoked by alias); 10 Aug 2016 14:58:00 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 106237 invoked by uid 48); 10 Aug 2016 14:57:48 -0000
From: "root at zta dot lk" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72865] New: Adding __may_alias__ attribute triggers a compilation error
Date: Wed, 10 Aug 2016 14:58:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.2.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: root at zta dot lk
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-72865-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01260.txt.bz2
Content-length: 1825

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72865

            Bug ID: 72865
           Summary: Adding __may_alias__ attribute triggers a compilation
                    error
           Product: gcc
           Version: 5.2.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: root at zta dot lk
  Target Milestone: ---

The following (correct) code triggers a compilation error when compiled with
gcc. It does compiles under clang.
Removing __attribute__((__may_alias__)) clause fixes the problem.

$ cat sf.cpp
template <class T>
class rv: public T
{
   rv();
   ~rv() throw();
   rv(rv const&);
   void operator=(rv const&);
} __attribute__((__may_alias__));

class A
{
  A(A &);
  A& operator=(A &);
public:
  explicit A(rv<A>& safetyCamera);
  A& operator=(rv<A>& safetyCamera);
  operator const rv<A>&() const { return *static_cast<const rv<A>*>(this); }
};

A::A(rv<A>&) {}
A& A::operator=(rv<A>&) { return *this; }



The error message
=================

$ g++ -c sf.cpp
sf.cpp:20:1: error: prototype for ‘A::A(rv<A>&)’ does not match any in class
‘A’
 A::A(rv<A>&) {}
 ^
sf.cpp:15:12: error: candidates are: A::A(rv<A>&)
   explicit A(rv<A>& safetyCamera);
            ^
sf.cpp:12:3: error:                 A::A(A&)
   A(A &);
   ^
sf.cpp:21:4: error: prototype for ‘A& A::operator=(rv<A>&)’ does not match any
in class ‘A’
 A& A::operator=(rv<A>&) { return *this; }
    ^
sf.cpp:16:6: error: candidates are: A& A::operator=(rv<A>&)
   A& operator=(rv<A>& safetyCamera);
      ^
sf.cpp:13:6: error:                 A& A::operator=(A&)
   A& operator=(A &);
      ^
>From gcc-bugs-return-533925-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 15:00:30 2016
Return-Path: <gcc-bugs-return-533925-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 109084 invoked by alias); 10 Aug 2016 15:00:13 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 108699 invoked by uid 48); 10 Aug 2016 14:59:56 -0000
From: "root at zta dot lk" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72865] Adding __may_alias__ attribute triggers a compilation error
Date: Wed, 10 Aug 2016 15:00:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.2.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: root at zta dot lk
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72865-4-NsGFBZ5Nno@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72865-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72865-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01261.txt.bz2
Content-length: 567

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72865

--- Comment #1 from Aleksej Lebedev <root at zta dot lk> ---
Forgot to tell what platform I'm running this:
$ uname -a
Linux zhtw-pc 4.2.0-41-generic #48-Ubuntu SMP Fri Jun 24 11:28:43 UTC 2016
x86_64 x86_64 x86_64 GNU/Linux

Exact version of the GCC:
$ g++ --version
g++ (Ubuntu 5.2.1-22ubuntu2) 5.2.1 20151010
Copyright (C) 2015 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
>From gcc-bugs-return-533926-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 15:03:49 2016
Return-Path: <gcc-bugs-return-533926-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 113620 invoked by alias); 10 Aug 2016 15:03:49 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 113516 invoked by uid 55); 10 Aug 2016 15:03:36 -0000
From: "hjl at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/71734] [7 Regression] FAIL: libgomp.fortran/simd4.f90   -O3 -g  execution test
Date: Wed, 10 Aug 2016 15:03:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: hjl at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71734-4-PlOvxfULkU@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71734-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71734-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01262.txt.bz2
Content-length: 1031

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71734

--- Comment #13 from hjl at gcc dot gnu.org <hjl at gcc dot gnu.org> ---
Author: hjl
Date: Wed Aug 10 15:03:02 2016
New Revision: 239326

URL: https://gcc.gnu.org/viewcvs?rev=239326&root=gcc&view=rev
Log:
Fix PR tree-optimization/71734

2016-08-10  Yuri Rumyantsev  <ysrumyan@gmail.com>

        PR tree-optimization/71734
        * tree-ssa-loop-im.c (ref_indep_loop_p): Add new argument
        REF_LOOP, invoke ref_indep_loop_p_1.
        (outermost_indep_loop): Pass LOOP argumnet where REF was defined
        to ref_indep_loop_p.
        (ref_indep_loop_p_1): Fix commentary, add argument REF_LOOP,
        combine it with ref_indep_lopp_p_2, update SAFELEN if only REF
        is inside LOOP, do not cache dpendence value for loops with
        non-zero SAFELEN.
        (ref_indep_loop_p_2): Delete function.
        (can_sm_ref_p): Pass LOOP as additional argument to
        ref_indep_loop_p.

Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/tree-ssa-loop-im.c
>From gcc-bugs-return-533927-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 15:05:27 2016
Return-Path: <gcc-bugs-return-533927-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 115637 invoked by alias); 10 Aug 2016 15:05:27 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 115541 invoked by uid 48); 10 Aug 2016 15:05:14 -0000
From: "root at zta dot lk" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72865] Adding __may_alias__ attribute triggers a compilation error
Date: Wed, 10 Aug 2016 15:05:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.2.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: root at zta dot lk
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72865-4-S9WAkv8hSD@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72865-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72865-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01263.txt.bz2
Content-length: 888

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72865

--- Comment #2 from Aleksej Lebedev <root at zta dot lk> ---
Just tried it with gcc-6.0.0 under DragonflyBSD. It seems that the bug is
fixed.

$ uname -a
DragonFly kl.zta.lk 4.4-RELEASE DragonFly v4.4.3.1.gf6df7-RELEASE #8: Thu Apr
21 17:59:21 CEST 2016     root@kl.zta.lk:/usr/obj/usr/src/sys/X86_64_GENERIC 
x86_64

$ g++6 --version
g++6 (FreeBSD Ports Collection) 6.0.0 20160410 (experimental)
Copyright (C) 2016 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

$ $ g++6 sf.cpp -c
$ echo $?
0

Not sure what's your policy in this case. You decide if you want to close this
as "Won't fix", but this bug prevents us from using boost::move for classes
with move constructors (in some cases).
>From gcc-bugs-return-533928-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 15:15:57 2016
Return-Path: <gcc-bugs-return-533928-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 86225 invoked by alias); 10 Aug 2016 15:15:57 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 85969 invoked by uid 48); 10 Aug 2016 15:15:44 -0000
From: "wschmidt at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/72855] Long compile time due to integrity checking during dataflow analysis per loop
Date: Wed, 10 Aug 2016 15:15:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 5.4.1
X-Bugzilla-Keywords: compile-time-hog
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wschmidt at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72855-4-khuBUbef9j@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72855-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72855-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01264.txt.bz2
Content-length: 1594

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72855

--- Comment #5 from Bill Schmidt <wschmidt at gcc dot gnu.org> ---
(In reply to Richard Biener from comment #2)
> If we have release checking enabled then we shuould hit
> 
> static void
> df_analyze_1 (void)
> {
> ...
> #ifndef ENABLE_DF_CHECKING
>   if (df->changeable_flags & DF_VERIFY_SCHEDULED)
> #endif
>     df_verify ();
> 
> so I wonder why df->changeable_flags & DF_VERIFY_SCHEDULED is ever true
> for release checking.  Can you track that down?  

df_finish_pass has the following unguarded code at the end of the function:

  if (flag_checking && verify)
    df->changeable_flags |= DF_VERIFY_SCHEDULED;

This is the only way that DF_VERIFY_SCHEDULED gets turned on by itself.

> But yes, performing df_verify for each loop in a function is excessive,
> we seem to lack ever clearing said flag.  Does
> 
> Index: gcc/df-core.c
> ===================================================================
> --- gcc/df-core.c       (revision 239276)
> +++ gcc/df-core.c       (working copy)
> @@ -1833,6 +1833,7 @@ df_verify (void)
>    if (df_live)
>      df_live_verify_transfer_functions ();
>  #endif
> +  df->changeable_flags &= ~DF_VERIFY_SCHEDULED;
>  }
>  
>  #ifdef DF_DEBUG_CFG
> 
> help in the non-DF-checking case?

It should, since df_finish_pass isn't called (indirectly from iv_analysis_done)
by the doloop code until after all of the loops have been processed.
>From gcc-bugs-return-533929-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 15:32:06 2016
Return-Path: <gcc-bugs-return-533929-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 34457 invoked by alias); 10 Aug 2016 15:32:06 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 34197 invoked by uid 48); 10 Aug 2016 15:31:56 -0000
From: "wschmidt at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/72855] Long compile time due to integrity checking during dataflow analysis per loop
Date: Wed, 10 Aug 2016 15:32:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 5.4.1
X-Bugzilla-Keywords: compile-time-hog
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wschmidt at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72855-4-TvZrxc1S29@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72855-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72855-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01265.txt.bz2
Content-length: 2310

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72855

--- Comment #6 from Bill Schmidt <wschmidt at gcc dot gnu.org> ---
(In reply to amker from comment #4)
> It reduces compile time for powerpc-elf on x86_64 machine from 54m to 5m. 
> The compiler is configured with checking.  With "--enable-checking=release",
> the current trunk compiles for ~5m too, but gcc in Ubuntu has the issue even
> it's configured as release?

Yes -- I can reproduce this with:

Target: powerpc64le-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu
4.8.4-2ubuntu1~14.04' --with-bugurl=file:///usr/share/doc/gcc-4.8/README.Bugs
--enable-languages=c,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr
--program-suffix=-4.8 --enable-shared --enable-linker-build-id
--libexecdir=/usr/lib --without-included-gettext --enable-threads=posix
--with-gxx-include-dir=/usr/include/c++/4.8 --libdir=/usr/lib --enable-nls
--with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug
--enable-libstdcxx-time=yes --enable-gnu-unique-object --disable-libmudflap
--disable-libsanitizer --disable-libsanitizer --disable-libquadmath
--enable-plugin --with-system-zlib --disable-browser-plugin
--enable-java-awt=gtk --enable-gtk-cairo
--with-java-home=/usr/lib/jvm/java-1.5.0-gcj-4.8-ppc64el/jre --enable-java-home
--with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-4.8-ppc64el
--with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-4.8-ppc64el
--with-arch-directory=ppc64el --with-ecj-jar=/usr/share/java/eclipse-ecj.jar
--enable-objc-gc --enable-secureplt --with-cpu=power7 --with-tune=power8
--enable-targets=powerpcle-linux --disable-multilib --enable-multiarch
--disable-werror --with-long-double-128 --enable-checking=release
--build=powerpc64le-linux-gnu --host=powerpc64le-linux-gnu
--target=powerpc64le-linux-gnu
Thread model: posix
gcc version 4.8.4 (Ubuntu 4.8.4-2ubuntu1~14.04) 

I also reproduced it with latest gcc-6-branch, which should be built with
release checking, and with trunk (but that should use extra checking).  The guy
who spotted this originally reported it on 4.8.4, 4.9.?, and 5.4 also.

For his purposes, he recognized that he should just remove the silly --param,
but this uncovered a rather interesting test in any event.
>From gcc-bugs-return-533930-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 15:40:33 2016
Return-Path: <gcc-bugs-return-533930-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 78119 invoked by alias); 10 Aug 2016 15:40:33 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 76936 invoked by uid 48); 10 Aug 2016 15:40:18 -0000
From: "993870b5 at opayq dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/72859] Building GCC Cross-Compiler on cygwin for PowerPC
Date: Wed, 10 Aug 2016 15:40:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords: build
X-Bugzilla-Severity: normal
X-Bugzilla-Who: 993870b5 at opayq dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72859-4-g49FatHTRT@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72859-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72859-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01266.txt.bz2
Content-length: 311

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72859

--- Comment #5 from 993870b5 at opayq dot com ---
Thank you.

How can I fix the checking of size for short and long types?

configure:5756: checking size of short
configure:5776: result: 0
...
configure:5824: checking size of long
configure:5844: result: 0
>From gcc-bugs-return-533931-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 16:08:44 2016
Return-Path: <gcc-bugs-return-533931-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 10521 invoked by alias); 10 Aug 2016 16:08:43 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 10084 invoked by uid 48); 10 Aug 2016 16:08:30 -0000
From: "wschmidt at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71815] SLSR misses several PHI candidate cases
Date: Wed, 10 Aug 2016 16:08:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wschmidt at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: wschmidt at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71815-4-dpmSDpDov2@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71815-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71815-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01267.txt.bz2
Content-length: 548

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71815

--- Comment #9 from Bill Schmidt <wschmidt at gcc dot gnu.org> ---
I'm not comfortable with the results of the patch.  Overall I see a slight
improvement for SPECint CPU2006 and a slightly larger degradation for SPECfp
CPU2006.  But there are some individual slowdowns that are unacceptable:

435.gromacs:   -8.7%
436.cactusADM: -3.0%

On the other hand:

403.gcc:       +4.6%

All other results within +/- 2%.

I'm going to hold off on this until I can investigate the 435.gromacs slowdown.
>From gcc-bugs-return-533932-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 16:48:28 2016
Return-Path: <gcc-bugs-return-533932-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 29982 invoked by alias); 10 Aug 2016 16:48:20 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 29656 invoked by uid 48); 10 Aug 2016 16:47:56 -0000
From: "ysrumyan at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/71956] [7 Regression] 176.gcc fails on 32 bits when compiled with -march=core-avx2
Date: Wed, 10 Aug 2016 16:48:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ysrumyan at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-71956-4-XMBoZ8Httb@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71956-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71956-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01268.txt.bz2
Content-length: 1600

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71956

Yuri Rumyantsev <ysrumyan at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ysrumyan at gmail dot com

--- Comment #2 from Yuri Rumyantsev <ysrumyan at gmail dot com> ---
Jakub,

I removed both your revisions in cse.c (c1) but it did not help - 176.gcc stll
gets RF on avx2 but not on avx. I assume that masked stores are responsible for
it since we have them in binaries:

.L2437:
        vmovd   %ecx, %xmm1
        vpxor   %xmm5, %xmm5, %xmm5
        addl    -40(%ebp), %eax
        movl    -28(%ebp), %edx
        vpbroadcastd    -36(%ebp), %ymm4
        vpaddd  .LC1, %ymm4, %ymm2
        vpbroadcastd    %xmm1, %ymm1
        leal    (%edx,%eax,4), %eax
        vpsrlvd %ymm2, %ymm1, %ymm2
        vpaddd  %ymm7, %ymm4, %ymm3
        vpand   %ymm6, %ymm2, %ymm2
        vpcmpeqd        %ymm5, %ymm2, %ymm2
        vpcmpeqd        %ymm5, %ymm2, %ymm2
        vptest  %ymm2, %ymm2
        je      .L2446
        vpmaskmovd      %ymm0, %ymm2, (%eax)
.L2446:
        vpsrlvd %ymm3, %ymm1, %ymm2
        vpxor   %xmm3, %xmm3, %xmm3
        leal    32(%eax), %edx
        vpaddd  .LC3, %ymm4, %ymm4
        vpand   %ymm6, %ymm2, %ymm2
        vpcmpeqd        %ymm3, %ymm2, %ymm2
        vpcmpeqd        %ymm3, %ymm2, %ymm2
        vptest  %ymm2, %ymm2
        je      .L2447
        vpmaskmovd      %ymm0, %ymm2, (%edx)

Will try to determine the correct revision responsible for it.
>From gcc-bugs-return-533933-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 16:51:02 2016
Return-Path: <gcc-bugs-return-533933-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 35519 invoked by alias); 10 Aug 2016 16:51:02 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 35317 invoked by uid 48); 10 Aug 2016 16:50:49 -0000
From: "asolokha at gmx dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/72866] New: [7 Regression] Compile time hog w/ -O3 (-Ofast)
Date: Wed, 10 Aug 2016 16:51:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: compile-time-hog
X-Bugzilla-Severity: normal
X-Bugzilla-Who: asolokha at gmx dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status keywords bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-72866-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01269.txt.bz2
Content-length: 929

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72866

            Bug ID: 72866
           Summary: [7 Regression] Compile time hog w/ -O3 (-Ofast)
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Keywords: compile-time-hog
          Severity: normal
          Priority: P3
         Component: tree-optimization
          Assignee: unassigned at gcc dot gnu.org
          Reporter: asolokha at gmx dot com
  Target Milestone: ---

gcc-7.0.0-alpha20160807 takes large (or infinite?) time when compiling the
following reduced testcase w/ -O3 or -Ofast:

unsigned int dl;
int rx, lb;

void
fo (int jv, int be)
{
  const unsigned int xw = 16;
  unsigned int ya, wo;

  for (ya = 0; ya < 2; ++ya)
    for (wo = 0; wo < xw; ++wo)
      {
        dl += (jv ? be : rx);
        rx += ((lb == 0) + 1);
      }
}

Compilation time appears to be dependent on the value stored in `xw'.
>From gcc-bugs-return-533934-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 17:17:17 2016
Return-Path: <gcc-bugs-return-533934-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 50003 invoked by alias); 10 Aug 2016 17:17:16 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 49847 invoked by uid 55); 10 Aug 2016 17:17:04 -0000
From: "rguenther at suse dot de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/72855] Long compile time due to integrity checking during dataflow analysis per loop
Date: Wed, 10 Aug 2016 17:17:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 5.4.1
X-Bugzilla-Keywords: compile-time-hog
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenther at suse dot de
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72855-4-lEiNcLOYwS@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72855-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72855-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01270.txt.bz2
Content-length: 1986

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72855

--- Comment #7 from rguenther at suse dot de <rguenther at suse dot de> ---
On August 10, 2016 5:15:43 PM GMT+02:00, "wschmidt at gcc dot gnu.org"
<gcc-bugzilla@gcc.gnu.org> wrote:
>https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72855
>
>--- Comment #5 from Bill Schmidt <wschmidt at gcc dot gnu.org> ---
>(In reply to Richard Biener from comment #2)
>> If we have release checking enabled then we shuould hit
>> 
>> static void
>> df_analyze_1 (void)
>> {
>> ...
>> #ifndef ENABLE_DF_CHECKING
>>   if (df->changeable_flags & DF_VERIFY_SCHEDULED)
>> #endif
>>     df_verify ();
>> 
>> so I wonder why df->changeable_flags & DF_VERIFY_SCHEDULED is ever
>true
>> for release checking.  Can you track that down?  
>
>df_finish_pass has the following unguarded code at the end of the
>function:
>
>  if (flag_checking && verify)
>    df->changeable_flags |= DF_VERIFY_SCHEDULED;
>
>This is the only way that DF_VERIFY_SCHEDULED gets turned on by itself.

Yes, but that is guarded by flag_checking which defaults to 0.

>> But yes, performing df_verify for each loop in a function is
>excessive,
>> we seem to lack ever clearing said flag.  Does
>> 
>> Index: gcc/df-core.c
>> ===================================================================
>> --- gcc/df-core.c       (revision 239276)
>> +++ gcc/df-core.c       (working copy)
>> @@ -1833,6 +1833,7 @@ df_verify (void)
>>    if (df_live)
>>      df_live_verify_transfer_functions ();
>>  #endif
>> +  df->changeable_flags &= ~DF_VERIFY_SCHEDULED;
>>  }
>>  
>>  #ifdef DF_DEBUG_CFG
>> 
>> help in the non-DF-checking case?
>
>It should, since df_finish_pass isn't called (indirectly from
>iv_analysis_done)
>by the doloop code until after all of the loops have been processed.

If you manage to test that it's pre-approved.
>From gcc-bugs-return-533935-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 17:20:13 2016
Return-Path: <gcc-bugs-return-533935-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 52495 invoked by alias); 10 Aug 2016 17:20:13 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 52173 invoked by uid 48); 10 Aug 2016 17:20:01 -0000
From: "dje at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/72855] Long compile time due to integrity checking during dataflow analysis per loop
Date: Wed, 10 Aug 2016 17:20:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 5.4.1
X-Bugzilla-Keywords: compile-time-hog
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dje at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-72855-4-slG4cyHL1Y@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72855-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72855-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01271.txt.bz2
Content-length: 590

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72855

David Edelsohn <dje at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-10
     Ever confirmed|0                           |1

--- Comment #8 from David Edelsohn <dje at gcc dot gnu.org> ---
> Yes, but that is guarded by flag_checking which defaults to 0.

How can flag_checking be 0 if -fno-checking has an effect?
>From gcc-bugs-return-533936-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 17:38:06 2016
Return-Path: <gcc-bugs-return-533936-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 128811 invoked by alias); 10 Aug 2016 17:38:06 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 128718 invoked by uid 48); 10 Aug 2016 17:37:53 -0000
From: "trippels at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/72866] [7 Regression] Compile time hog w/ -O3 (-Ofast)
Date: Wed, 10 Aug 2016 17:38:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: compile-time-hog
X-Bugzilla-Severity: normal
X-Bugzilla-Who: trippels at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc everconfirmed
Message-ID: <bug-72866-4-UizTKtl9xu@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72866-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72866-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01272.txt.bz2
Content-length: 659

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72866

Markus Trippelsdorf <trippels at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-10
                 CC|                            |amker at gcc dot gnu.org,
                   |                            |trippels at gcc dot gnu.org
     Ever confirmed|0                           |1

--- Comment #1 from Markus Trippelsdorf <trippels at gcc dot gnu.org> ---
Started with r235808.
>From gcc-bugs-return-533937-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 17:48:02 2016
Return-Path: <gcc-bugs-return-533937-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 10109 invoked by alias); 10 Aug 2016 17:48:01 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 9780 invoked by uid 48); 10 Aug 2016 17:47:49 -0000
From: "peter.klotz99 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/36412] gcov -l -p exceeds maximum file name length
Date: Wed, 10 Aug 2016 17:48:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 4.1.2
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: peter.klotz99 at gmail dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-36412-4-B54n3iQZvy@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-36412-4@http.gcc.gnu.org/bugzilla/>
References: <bug-36412-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01273.txt.bz2
Content-length: 469

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=36412

--- Comment #4 from Peter Klotz <peter.klotz99 at gmail dot com> ---
Hi Martin

The company I work for makes heavy use of Red Hat Enterprise Linux 7.

According to this article, a GCC 6 based Red Hat Developer Toolset should be
available in the not too distant future.

http://developers.redhat.com/blog/2016/02/23/upcoming-features-in-gcc-6/

So a backport to the GCC 6 release series would help.

Regards, Peter.
>From gcc-bugs-return-533938-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 18:01:28 2016
Return-Path: <gcc-bugs-return-533938-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 62024 invoked by alias); 10 Aug 2016 18:01:28 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 55303 invoked by uid 48); 10 Aug 2016 18:01:15 -0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/69565] Heap operations could surely be faster
Date: Wed, 10 Aug 2016 18:01:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 5.3.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-69565-4-iD5gh8J4Ct@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69565-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69565-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01274.txt.bz2
Content-length: 527

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69565

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |WAITING
   Last reconfirmed|                            |2016-08-10
     Ever confirmed|0                           |1

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Do you have the benchmark that goes with the graph?
>From gcc-bugs-return-533939-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 18:12:39 2016
Return-Path: <gcc-bugs-return-533939-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 10086 invoked by alias); 10 Aug 2016 18:12:39 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 9901 invoked by uid 48); 10 Aug 2016 18:12:26 -0000
From: "wenzel@mitsuba-renderer.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72867] New: SSE/AVX/AVX512: incorrect optimization of VMINPS/VMAXPS at compile time
Date: Wed, 10 Aug 2016 18:12:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wenzel@mitsuba-renderer.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-72867-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01275.txt.bz2
Content-length: 1864

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72867

            Bug ID: 72867
           Summary: SSE/AVX/AVX512: incorrect optimization of
                    VMINPS/VMAXPS at compile time
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: target
          Assignee: unassigned at gcc dot gnu.org
          Reporter: wenzel@mitsuba-renderer.org
  Target Milestone: ---

The Intel intrinsics provide a family functions for computing the minimum and
maximum of two floating point vectors of different SIMD widths.

For the most part, these are symmetric. They are not, however, when given a NaN
argument: in particular,

min(1, nan) == 1
min(nan, 1) == nan

Whether that is pretty is arguable, but it's what the hardware implements (and
numerical libraries depend on this behavior).

The program below computes the expected output at optimization level 0.

$ g++ test.c -o test -msse4.2 -O0 && ./test
min(1, nan) = [nan nan nan nan]
min(nan, 1) = [1.000000 1.000000 1.000000 1.000000]

At optimization level 1, the minimum is computed at compile time, and the NaN
value is incorrectly propagated. This problem occurs both on GCC trunk and on
GCC 5.0 (I have not tested other versions).

$ g++ test.c -o test -msse4.2 -O1 && ./test
min(1, nan) = [nan nan nan nan]
min(nan, 1) = [nan nan nan nan]

/// ************ Program to reproduce the issue ************

#include <stdio.h>
#include <math.h>
#include <immintrin.h>


int main(int argc, char *argv[]) {
    __m128 x = _mm_min_ps(_mm_set1_ps(1.f), _mm_set1_ps(NAN));
    printf("min(1, nan) = [%f %f %f %f]\n", x[0], x[1], x[2], x[3]);

    x = _mm_min_ps(_mm_set1_ps(NAN), _mm_set1_ps(1.f));
    printf("min(nan, 1) = [%f %f %f %f]\n", x[0], x[1], x[2], x[3]);

    return 0;
}
>From gcc-bugs-return-533940-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 18:15:40 2016
Return-Path: <gcc-bugs-return-533940-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 19769 invoked by alias); 10 Aug 2016 18:15:40 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 18811 invoked by uid 48); 10 Aug 2016 18:15:19 -0000
From: "wenzel@mitsuba-renderer.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72782] AVX512: No support for scalar broadcasts
Date: Wed, 10 Aug 2016 18:15:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wenzel@mitsuba-renderer.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72782-4-4tAlJ8t0V5@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72782-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72782-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01276.txt.bz2
Content-length: 202

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72782

--- Comment #1 from Wenzel Jakob <wenzel@mitsuba-renderer.org> ---
Looks like this issue was first reported in 2014 but got stuck -- see Bug
63351.
>From gcc-bugs-return-533942-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 18:16:40 2016
Return-Path: <gcc-bugs-return-533942-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 22876 invoked by alias); 10 Aug 2016 18:16:40 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 22358 invoked by uid 48); 10 Aug 2016 18:16:27 -0000
From: "wenzel@mitsuba-renderer.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/63351] Optimization: contract broadcast intrinsics when AVX512 is enabled
Date: Wed, 10 Aug 2016 18:16:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 4.9.2
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wenzel@mitsuba-renderer.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-63351-4-HDpf5blZHA@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-63351-4@http.gcc.gnu.org/bugzilla/>
References: <bug-63351-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01278.txt.bz2
Content-length: 466

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63351

Wenzel Jakob <wenzel@mitsuba-renderer.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |wenzel@mitsuba-renderer.org

--- Comment #5 from Wenzel Jakob <wenzel@mitsuba-renderer.org> ---
Any news on this? I've also run into GCC's lack of broadcast support (Bug
72782).
>From gcc-bugs-return-533941-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 18:16:23 2016
Return-Path: <gcc-bugs-return-533941-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 21891 invoked by alias); 10 Aug 2016 18:16:23 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 20814 invoked by uid 55); 10 Aug 2016 18:16:10 -0000
From: "meissner at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72853] gcc/testsuite/gcc.c-torture/execute/20021120-1.c generates incorrect stxssp op with -mcpu=power9
Date: Wed, 10 Aug 2016 18:16:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: meissner at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72853-4-GHB0YtUxAF@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72853-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72853-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01277.txt.bz2
Content-length: 966

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72853

--- Comment #7 from Michael Meissner <meissner at gcc dot gnu.org> ---
Author: meissner
Date: Wed Aug 10 18:15:37 2016
New Revision: 239331

URL: https://gcc.gnu.org/viewcvs?rev=239331&root=gcc&view=rev
Log:
Backport from mainline:

[gcc]
2016-08-10  Michael Meissner  <meissner@linux.vnet.ibm.com>

        PR target/72853
        * config/rs6000/rs6000.c (mem_operand_ds_form): Add check for op
        being an offsettable address.

[gcc/testsuite]
2016-08-10  Michael Meissner  <meissner@linux.vnet.ibm.com>

        PR target/72853
        * gcc.target/powerpc/pr72853.c: New test.


Added:
    branches/gcc-6-branch/gcc/testsuite/gcc.target/powerpc/pr72853.c
      - copied unchanged from r239330,
trunk/gcc/testsuite/gcc.target/powerpc/pr72853.c
Modified:
    branches/gcc-6-branch/gcc/ChangeLog
    branches/gcc-6-branch/gcc/config/rs6000/rs6000.c
    branches/gcc-6-branch/gcc/testsuite/ChangeLog
>From gcc-bugs-return-533943-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 18:17:21 2016
Return-Path: <gcc-bugs-return-533943-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 24188 invoked by alias); 10 Aug 2016 18:17:21 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 24116 invoked by uid 48); 10 Aug 2016 18:17:12 -0000
From: "meissner at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72853] gcc/testsuite/gcc.c-torture/execute/20021120-1.c generates incorrect stxssp op with -mcpu=power9
Date: Wed, 10 Aug 2016 18:17:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: meissner at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-72853-4-c2NSHcUm7u@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72853-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72853-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01279.txt.bz2
Content-length: 509

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72853

Michael Meissner <meissner at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--- Comment #8 from Michael Meissner <meissner at gcc dot gnu.org> ---
Fixed in trunk (subversion id 239325) and gcc-6-branch (subversion id 239331).
>From gcc-bugs-return-533944-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 18:20:08 2016
Return-Path: <gcc-bugs-return-533944-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 30094 invoked by alias); 10 Aug 2016 18:20:07 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 29921 invoked by uid 48); 10 Aug 2016 18:19:55 -0000
From: "wenzel@mitsuba-renderer.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/72824] [5/6 Regression] Signed floating point zero semantics broken at optimization level -O3 (tree-loop-distribute-patterns)
Date: Wed, 10 Aug 2016 18:20:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wenzel@mitsuba-renderer.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72824-4-aMSaYX4BE1@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72824-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72824-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01280.txt.bz2
Content-length: 181

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72824

--- Comment #8 from Wenzel Jakob <wenzel@mitsuba-renderer.org> ---
Thank you, I can confirm that the issue is fixed on my end.
>From gcc-bugs-return-533945-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 18:36:44 2016
Return-Path: <gcc-bugs-return-533945-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 51572 invoked by alias); 10 Aug 2016 18:36:44 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 51418 invoked by uid 55); 10 Aug 2016 18:36:32 -0000
From: "rguenther at suse dot de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/72855] Long compile time due to integrity checking during dataflow analysis per loop
Date: Wed, 10 Aug 2016 18:36:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 5.4.1
X-Bugzilla-Keywords: compile-time-hog
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenther at suse dot de
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72855-4-ZamorZV37P@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72855-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72855-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01281.txt.bz2
Content-length: 1005

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72855

--- Comment #9 from rguenther at suse dot de <rguenther at suse dot de> ---
On August 10, 2016 7:20:00 PM GMT+02:00, "dje at gcc dot gnu.org"
<gcc-bugzilla@gcc.gnu.org> wrote:
>https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72855
>
>David Edelsohn <dje at gcc dot gnu.org> changed:
>
>           What    |Removed                     |Added
>----------------------------------------------------------------------------
>             Status|UNCONFIRMED                 |NEW
>   Last reconfirmed|                            |2016-08-10
>     Ever confirmed|0                           |1
>
>--- Comment #8 from David Edelsohn <dje at gcc dot gnu.org> ---
>> Yes, but that is guarded by flag_checking which defaults to 0.
>
>How can flag_checking be 0 if -fno-checking has an effect?

It can't have an effect with release checking unless sth is seriously botched. 
Which is why I asked this to be investigated (I can't reproduce it on x86_64
Linux)
>From gcc-bugs-return-533946-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 19:02:08 2016
Return-Path: <gcc-bugs-return-533946-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 75983 invoked by alias); 10 Aug 2016 19:02:08 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 75855 invoked by uid 48); 10 Aug 2016 19:01:55 -0000
From: "amarquez at sigovs dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72868] New: Constexpr expressions mistreat case ranges
Date: Wed, 10 Aug 2016 19:02:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: amarquez at sigovs dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-72868-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01282.txt.bz2
Content-length: 584

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72868

            Bug ID: 72868
           Summary: Constexpr expressions mistreat case ranges
           Product: gcc
           Version: 6.1.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: amarquez at sigovs dot com
  Target Milestone: ---

When performing compile-time constexpr evaluation (under gnu++1y), G++ silently
treats case ranges as if they were a case with the first element of the range.
>From gcc-bugs-return-533947-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 19:08:40 2016
Return-Path: <gcc-bugs-return-533947-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 86262 invoked by alias); 10 Aug 2016 19:08:40 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 86149 invoked by uid 48); 10 Aug 2016 19:08:27 -0000
From: "jhakasbaba76 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/72869] New: $@$@^^^18557092847@$$@$$^^^^*** Epson printer technical support number.....
Date: Wed, 10 Aug 2016 19:08:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: 4.0.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jhakasbaba76 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-72869-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01283.txt.bz2
Content-length: 7266

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72869

            Bug ID: 72869
           Summary: $@$@^^^18557092847@$$@$$^^^^*** Epson printer
                    technical support number.....
           Product: gcc
           Version: 4.0.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ada
          Assignee: unassigned at gcc dot gnu.org
          Reporter: jhakasbaba76 at gmail dot com
  Target Milestone: ---

Created attachment 39095
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39095&action=edit
((moti))Call @@@++ USA I8557O92847 EPSON p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l EPSON h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a EPSON s.u.p.p.o.r.t p.h.o.n.

((moti))Call @@@++ USA I8557O92847 EPSON p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l EPSON h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a EPSON s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa USA 1
I8557O92847 EPSON p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r
u.s.a. C.a.l.l EPSON h.e.l.p d.e.s.k n.u.m.b.e.r n.u.m.b.e.r C.a.n.a.d.a EPSON
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa canada 1-1855-709-2847 USA, EPSON printer
Tech Support phone number,EPSON technical support phone number 1 I8557O92847
.EPSON Tech Support Number EPSON Tech EPSON tech support, EPSON tech support
number, EPSON tech support phone number, EPSON technical support, EPSON
technical support number, EPSON technical support phone number, EPSON tech
support number, EPSON support number, EPSON Tech support phone number, EPSON
support phone number, EPSON technical support phone number, EPSON technical
support number,Support Phone Number for EPSON printer Phone Number for EPSON
CustomerService Technical Support Telephone Number EPSON printer support number
EPSON EPSON printer tech support number EPSON EPSON printer technical support
number EPSON EPSON printer technical support phone number EPSON EPSON printer
customer service number EPSON EPSON internet security technical support EPSON
technical support phone number EPSON EPSON tech support phone number EPSON
EPSON customer support phone number I-855-709-2847 EPSON EPSON printer support
phone number EPSON EPSON support phone EPSON tech support EPSON customer
support EPSON phone support EPSON support number EPSON EPSON technical support
EPSON printer customer support phone number EPSON EPSON printer tech support
phone number EPSON contact EPSON support EPSON printer technical support phone
number ~!~I8557092847++ EPSON EPSON phone number EPSON tech support EPSON
support ticket EPSON customer support number EPSON EPSON tech support number
EPSON EPSON technical support number EPSON EPSON support center EPSON telephone
support call EPSON support EPSON printer support support EPSON EPSON billing
support EPSON printer technical support number EPSON support EPSON printer
EPSON online support EPSON contact support EPSON printer support number EPSON
EPSON printer customer support number EPSON EPSON printer tech support number
EPSON support for EPSON EPSON phone number EPSON EPSON customer service phone
number EPSON EPSON contact phone number EPSON EPSON printer phone number EPSON
EPSON printer customer service phone number EPSON phone number EPSON for EPSON
customer service EPSON software phone number EPSON phone number EPSON for EPSON
EPSON customer service telephone number EPSON EPSON helpline phone number EPSON
EPSON contact number EPSON EPSON customer service number EPSON EPSON customer
service phone number ~!~I8557092847++ EPSON us EPSON customer service phone
number EPSON usa EPSON telephone number EPSON EPSON phone number EPSON usa
EPSON printer contact number EPSON EPSON number EPSON EPSON contact number
EPSON usa EPSON printer helpline number EPSON EPSON helpline number EPSON EPSON
customer number EPSON EPSON printer customer service number EPSON EPSON contact
telephone number EPSON contact number EPSON for EPSON EPSON software contact
number EPSON EPSON toll free number EPSON EPSON telephone number EPSON uk EPSON
registration number EPSON EPSON toll free number EPSON usa EPSON customer
service EPSON software customer service contact EPSON customer service EPSON
customer service phone EPSON printer customer service EPSON service EPSON
printer technical support EPSON printer customer support EPSON technical
support reviews telephone EPSON printer EPSON tech support phone number EPSON
EPSON printer tech support phone number EPSON EPSON printer customer service
EPSON technical support phone number EPSON EPSON printer free printer support
EPSON customer service billing EPSON customer service email address EPSON
customer service reviews contact EPSON customer service EPSON tech support
number EPSON usa EPSON printer support number EPSON EPSON printer contact
number EPSON EPSON customer service phone number EPSON EPSON technical support
usa EPSON technical support number EPSON EPSON tech support phone EPSON tech
support number EPSON EPSON customer service telephone number EPSON EPSON
printer customer support number EPSON EPSON printer phone number EPSON EPSON
printer online support EPSON customer service number EPSON EPSON tech support
center EPSON customer service EPSON software customer service EPSON customer
care number EPSON usa EPSON customer number EPSON EPSON customer support number
EPSON EPSON customer care number EPSON EPSON customer care toll free number
EPSON EPSON tech support EPSON technical support EPSON printer support EPSON
printer tech support EPSON support center EPSON.com customer service EPSON
printer customer care number EPSON EPSON customer care EPSON phone number EPSON
phone number EPSON for EPSON customer service EPSON phone support EPSON phone
number EPSON tech support EPSON support phone number EPSON contact EPSON by
phone EPSON contact phone number EPSON EPSON helpline phone number EPSON EPSON
printer phone EPSON printer for phone EPSON contact number EPSON EPSON contact
support contact EPSON printer EPSON contact number EPSON usa EPSON toll free
number EPSON EPSON telephone number EPSON EPSON toll free number EPSON usa
EPSON printer support services technical support for printer EPSON EPSON
customer service phone number EPSON usa EPSON printer customer care number
EPSON usa EPSON customer care number EPSON EPSON customer care center EPSON
customer support EPSON customer support phone EPSON customer help EPSON
customer & technical support EPSON customer portal EPSON customer care phone
number EPSON usa EPSON customer care email EPSON helpline EPSON tech support
contact EPSON customer care toll free EPSON printer customer service number
EPSON EPSON printer protection norton printer customer service number EPSON
EPSON software customer service number EPSON EPSON hotline customer service
phone number EPSON EPSON customer service phone number EPSON us how to contact
EPSON by email EPSON free phone support EPSON printer technical support number
EPSON EPSON printer technical support help desk phone number EPSON EPSON
technical support number EPSON toll free number EPSON EPSON printer customer
support phone number EPSON EPSON printer customer
>From gcc-bugs-return-533948-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 19:12:05 2016
Return-Path: <gcc-bugs-return-533948-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 96635 invoked by alias); 10 Aug 2016 19:12:04 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 93574 invoked by uid 48); 10 Aug 2016 19:11:52 -0000
From: "daniel.kruegler at googlemail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72865] Adding __may_alias__ attribute triggers a compilation error
Date: Wed, 10 Aug 2016 19:12:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.2.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: daniel.kruegler at googlemail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-72865-4-EN32WtPEe8@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72865-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72865-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01284.txt.bz2
Content-length: 554

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72865

Daniel Krügler <daniel.kruegler at googlemail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |daniel.kruegler@googlemail.
                   |                            |com

--- Comment #3 from Daniel Krügler <daniel.kruegler at googlemail dot com> ---
The code is also accepted by the current gcc HEAD 7.0.0 20160807
(experimental).
>From gcc-bugs-return-533949-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 19:15:51 2016
Return-Path: <gcc-bugs-return-533949-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 99710 invoked by alias); 10 Aug 2016 19:15:50 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 99610 invoked by uid 48); 10 Aug 2016 19:15:38 -0000
From: "jhakasbaba76 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/72872] New: $@$@^^^18557092847@$$@$$^^^^*** Lexmark printer technical support number.....
Date: Wed, 10 Aug 2016 19:15:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: 4.0.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jhakasbaba76 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-72872-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01285.txt.bz2
Content-length: 7852

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72872

            Bug ID: 72872
           Summary: $@$@^^^18557092847@$$@$$^^^^*** Lexmark printer
                    technical support number.....
           Product: gcc
           Version: 4.0.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ada
          Assignee: unassigned at gcc dot gnu.org
          Reporter: jhakasbaba76 at gmail dot com
  Target Milestone: ---

Created attachment 39097
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39097&action=edit
((moti))Call @@@++ USA I8557O92847 LEXMARK p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l LEXMARK h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a LEXMARK s.u.p.p.o.r.t p.

((moti))Call @@@++ USA I8557O92847 LEXMARK p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l LEXMARK h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a LEXMARK s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa USA 1
I8557O92847 LEXMARK p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r
u.s.a. C.a.l.l LEXMARK h.e.l.p d.e.s.k n.u.m.b.e.r n.u.m.b.e.r C.a.n.a.d.a
LEXMARK s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa canada 1-1855-709-2847 USA,
LEXMARK printer Tech Support phone number,LEXMARK technical support phone
number 1 I8557O92847 .LEXMARK Tech Support Number LEXMARK Tech LEXMARK tech
support, LEXMARK tech support number, LEXMARK tech support phone number,
LEXMARK technical support, LEXMARK technical support number, LEXMARK technical
support phone number, LEXMARK tech support number, LEXMARK support number,
LEXMARK Tech support phone number, LEXMARK support phone number, LEXMARK
technical support phone number, LEXMARK technical support number,Support Phone
Number for LEXMARK printer Phone Number for LEXMARK CustomerService Technical
Support Telephone Number LEXMARK printer support number LEXMARK LEXMARK printer
tech support number LEXMARK LEXMARK printer technical support number LEXMARK
LEXMARK printer technical support phone number LEXMARK LEXMARK printer customer
service number LEXMARK LEXMARK internet security technical support LEXMARK
technical support phone number LEXMARK LEXMARK tech support phone number
LEXMARK LEXMARK customer support phone number I-855-709-2847 LEXMARK LEXMARK
printer support phone number LEXMARK LEXMARK support phone LEXMARK tech support
LEXMARK customer support LEXMARK phone support LEXMARK support number LEXMARK
LEXMARK technical support LEXMARK printer customer support phone number LEXMARK
LEXMARK printer tech support phone number LEXMARK contact LEXMARK support
LEXMARK printer technical support phone number ~!~I8557092847++ LEXMARK LEXMARK
phone number LEXMARK tech support LEXMARK support ticket LEXMARK customer
support number LEXMARK LEXMARK tech support number LEXMARK LEXMARK technical
support number LEXMARK LEXMARK support center LEXMARK telephone support call
LEXMARK support LEXMARK printer support support LEXMARK LEXMARK billing support
LEXMARK printer technical support number LEXMARK support LEXMARK printer
LEXMARK online support LEXMARK contact support LEXMARK printer support number
LEXMARK LEXMARK printer customer support number LEXMARK LEXMARK printer tech
support number LEXMARK support for LEXMARK LEXMARK phone number LEXMARK LEXMARK
customer service phone number LEXMARK LEXMARK contact phone number LEXMARK
LEXMARK printer phone number LEXMARK LEXMARK printer customer service phone
number LEXMARK phone number LEXMARK for LEXMARK customer service LEXMARK
software phone number LEXMARK phone number LEXMARK for LEXMARK LEXMARK customer
service telephone number LEXMARK LEXMARK helpline phone number LEXMARK LEXMARK
contact number LEXMARK LEXMARK customer service number LEXMARK LEXMARK customer
service phone number ~!~I8557092847++ LEXMARK us LEXMARK customer service phone
number LEXMARK usa LEXMARK telephone number LEXMARK LEXMARK phone number
LEXMARK usa LEXMARK printer contact number LEXMARK LEXMARK number LEXMARK
LEXMARK contact number LEXMARK usa LEXMARK printer helpline number LEXMARK
LEXMARK helpline number LEXMARK LEXMARK customer number LEXMARK LEXMARK printer
customer service number LEXMARK LEXMARK contact telephone number LEXMARK
contact number LEXMARK for LEXMARK LEXMARK software contact number LEXMARK
LEXMARK toll free number LEXMARK LEXMARK telephone number LEXMARK uk LEXMARK
registration number LEXMARK LEXMARK toll free number LEXMARK usa LEXMARK
customer service LEXMARK software customer service contact LEXMARK customer
service LEXMARK customer service phone LEXMARK printer customer service LEXMARK
service LEXMARK printer technical support LEXMARK printer customer support
LEXMARK technical support reviews telephone LEXMARK printer LEXMARK tech
support phone number LEXMARK LEXMARK printer tech support phone number LEXMARK
LEXMARK printer customer service LEXMARK technical support phone number LEXMARK
LEXMARK printer free printer support LEXMARK customer service billing LEXMARK
customer service email address LEXMARK customer service reviews contact LEXMARK
customer service LEXMARK tech support number LEXMARK usa LEXMARK printer
support number LEXMARK LEXMARK printer contact number LEXMARK LEXMARK customer
service phone number LEXMARK LEXMARK technical support usa LEXMARK technical
support number LEXMARK LEXMARK tech support phone LEXMARK tech support number
LEXMARK LEXMARK customer service telephone number LEXMARK LEXMARK printer
customer support number LEXMARK LEXMARK printer phone number LEXMARK LEXMARK
printer online support LEXMARK customer service number LEXMARK LEXMARK tech
support center LEXMARK customer service LEXMARK software customer service
LEXMARK customer care number LEXMARK usa LEXMARK customer number LEXMARK
LEXMARK customer support number LEXMARK LEXMARK customer care number LEXMARK
LEXMARK customer care toll free number LEXMARK LEXMARK tech support LEXMARK
technical support LEXMARK printer support LEXMARK printer tech support LEXMARK
support center LEXMARK.com customer service LEXMARK printer customer care
number LEXMARK LEXMARK customer care LEXMARK phone number LEXMARK phone number
LEXMARK for LEXMARK customer service LEXMARK phone support LEXMARK phone number
LEXMARK tech support LEXMARK support phone number LEXMARK contact LEXMARK by
phone LEXMARK contact phone number LEXMARK LEXMARK helpline phone number
LEXMARK LEXMARK printer phone LEXMARK printer for phone LEXMARK contact number
LEXMARK LEXMARK contact support contact LEXMARK printer LEXMARK contact number
LEXMARK usa LEXMARK toll free number LEXMARK LEXMARK telephone number LEXMARK
LEXMARK toll free number LEXMARK usa LEXMARK printer support services technical
support for printer LEXMARK LEXMARK customer service phone number LEXMARK usa
LEXMARK printer customer care number LEXMARK usa LEXMARK customer care number
LEXMARK LEXMARK customer care center LEXMARK customer support LEXMARK customer
support phone LEXMARK customer help LEXMARK customer & technical support
LEXMARK customer portal LEXMARK customer care phone number LEXMARK usa LEXMARK
customer care email LEXMARK helpline LEXMARK tech support contact LEXMARK
customer care toll free LEXMARK printer customer service number LEXMARK LEXMARK
printer protection norton printer customer service number LEXMARK LEXMARK
software customer service number LEXMARK LEXMARK hotline customer service phone
number LEXMARK LEXMARK customer service phone number LEXMARK us how to contact
LEXMARK by email LEXMARK free phone support LEXMARK printer technical support
number LEXMARK LEXMARK printer technical support help desk phone number LEXMARK
LEXMARK technical support number LEXMARK toll free number LEXMARK LEXMARK
printer customer support phone number LEXMARK LEXMARK printer customer
>From gcc-bugs-return-533950-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 19:17:44 2016
Return-Path: <gcc-bugs-return-533950-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 102445 invoked by alias); 10 Aug 2016 19:17:43 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 101065 invoked by uid 48); 10 Aug 2016 19:17:30 -0000
From: "daniel.kruegler at googlemail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72868] Constexpr expressions mistreat case ranges
Date: Wed, 10 Aug 2016 19:17:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: daniel.kruegler at googlemail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-72868-4-rehbsc61ly@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72868-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72868-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01286.txt.bz2
Content-length: 574

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72868

Daniel Krügler <daniel.kruegler at googlemail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |daniel.kruegler@googlemail.
                   |                            |com

--- Comment #1 from Daniel Krügler <daniel.kruegler at googlemail dot com> ---
This is an incomplete bug report, please read https://gcc.gnu.org/bugs/#need
and provide a test case
>From gcc-bugs-return-533951-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 19:21:30 2016
Return-Path: <gcc-bugs-return-533951-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 105637 invoked by alias); 10 Aug 2016 19:21:30 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 105434 invoked by uid 48); 10 Aug 2016 19:21:17 -0000
From: "hjl.tools at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: =?UTF-8?B?W0J1ZyBydGwtb3B0aW1pemF0aW9uLzcyODczXSBOZXc6IGVycm9yOiDigJhh?= =?UTF-8?B?c23igJkgb3BlcmFuZCBoYXMgaW1wb3NzaWJsZSBjb25zdHJhaW50cw==?Date: Wed, 10 Aug 2016 19:21:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: hjl.tools at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter cc target_milestone
Message-ID: <bug-72873-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01287.txt.bz2
Content-length: 2244

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72873

            Bug ID: 72873
           Summary: error: ‘asm’ operand has impossible constraints
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: rtl-optimization
          Assignee: unassigned at gcc dot gnu.org
          Reporter: hjl.tools at gmail dot com
                CC: vmakarov at redhat dot com
  Target Milestone: ---

On x86-64, I got

[hjl@gnu-6 asm-2]$ cat x.i
void foo (int disks, int start, int stop, unsigned long bytes, void **ptrs)
{
  unsigned char **dptr = (unsigned char **)ptrs;
  unsigned char *p, *q;
  int d, z, z0;
  z0 = stop;
  p = dptr[disks-2];
  q = dptr[disks-1];
  for ( d = 0 ; d < bytes ; d += 512 ) {
    asm volatile("#"
                 :
                 : "m" (p[d]), "m" (p[d+64]), "m" (p[d+128]), "m" (p[d+192]),
                 "m" (p[d+256]), "m" (p[d+320]), "m" (p[d+384]),
                 "m" (p[d+448]), "m" (q[d]), "m" (q[d+64]),
                 "m" (q[d+128]), "m" (q[d+192]), "m" (q[d+256]),
                 "m" (q[d+320]), "m" (q[d+384]), "m" (q[d+448]));
    for ( z = z0-1 ; z >= start ; z-- ) {
      asm volatile("#"
                   :
                   :
                   "m" (dptr[0][d]));
    }
    asm volatile("#"
                 :
                 : "m" (p[d]), "m" (p[d+64]), "m" (p[d+128]), "m" (p[d+192]),
                 "m" (p[d+256]), "m" (p[d+320]), "m" (p[d+384]),
                 "m" (p[d+448]), "m" (q[d]), "m" (q[d+64]),
                 "m" (q[d+128]), "m" (q[d+192]), "m" (q[d+256]),
                 "m" (q[d+320]), "m" (q[d+384]), "m" (q[d+448]));
  }
}
[hjl@gnu-6 asm-2]$ make
/export/build/gnu/gcc/build-x86_64-linux/gcc/xgcc
-B/export/build/gnu/gcc/build-x86_64-linux/gcc/ -O2
-fno-asynchronous-unwind-tables -S -o x.s x.i
x.i: In function ‘foo’:
x.i:10:5: error: ‘asm’ operand has impossible constraints
     asm volatile("#"
     ^~~
x.i:23:5: error: ‘asm’ operand has impossible constraints
     asm volatile("#"
     ^~~
Makefile:23: recipe for target 'x.s' failed
make: *** [x.s] Error 1
[hjl@gnu-6 asm-2]$
>From gcc-bugs-return-533952-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 19:22:09 2016
Return-Path: <gcc-bugs-return-533952-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 106651 invoked by alias); 10 Aug 2016 19:22:09 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 106492 invoked by uid 48); 10 Aug 2016 19:21:56 -0000
From: "jhakasbaba76 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/72874] New: $@$@^^^18557092847@$$@$$^^^^*** KOdak printer technical support number.....
Date: Wed, 10 Aug 2016 19:22:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: 4.0.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jhakasbaba76 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-72874-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01288.txt.bz2
Content-length: 7266

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72874

            Bug ID: 72874
           Summary: $@$@^^^18557092847@$$@$$^^^^*** KOdak printer
                    technical support number.....
           Product: gcc
           Version: 4.0.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ada
          Assignee: unassigned at gcc dot gnu.org
          Reporter: jhakasbaba76 at gmail dot com
  Target Milestone: ---

Created attachment 39098
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39098&action=edit
((moti))Call @@@++ USA I8557O92847 KODAK p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l KODAK h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a KODAK s.u.p.p.o.r.t p.h.o.n.

((moti))Call @@@++ USA I8557O92847 KODAK p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l KODAK h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a KODAK s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa USA 1
I8557O92847 KODAK p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r
u.s.a. C.a.l.l KODAK h.e.l.p d.e.s.k n.u.m.b.e.r n.u.m.b.e.r C.a.n.a.d.a KODAK
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa canada 1-1855-709-2847 USA, KODAK printer
Tech Support phone number,KODAK technical support phone number 1 I8557O92847
.KODAK Tech Support Number KODAK Tech KODAK tech support, KODAK tech support
number, KODAK tech support phone number, KODAK technical support, KODAK
technical support number, KODAK technical support phone number, KODAK tech
support number, KODAK support number, KODAK Tech support phone number, KODAK
support phone number, KODAK technical support phone number, KODAK technical
support number,Support Phone Number for KODAK printer Phone Number for KODAK
CustomerService Technical Support Telephone Number KODAK printer support number
KODAK KODAK printer tech support number KODAK KODAK printer technical support
number KODAK KODAK printer technical support phone number KODAK KODAK printer
customer service number KODAK KODAK internet security technical support KODAK
technical support phone number KODAK KODAK tech support phone number KODAK
KODAK customer support phone number I-855-709-2847 KODAK KODAK printer support
phone number KODAK KODAK support phone KODAK tech support KODAK customer
support KODAK phone support KODAK support number KODAK KODAK technical support
KODAK printer customer support phone number KODAK KODAK printer tech support
phone number KODAK contact KODAK support KODAK printer technical support phone
number ~!~I8557092847++ KODAK KODAK phone number KODAK tech support KODAK
support ticket KODAK customer support number KODAK KODAK tech support number
KODAK KODAK technical support number KODAK KODAK support center KODAK telephone
support call KODAK support KODAK printer support support KODAK KODAK billing
support KODAK printer technical support number KODAK support KODAK printer
KODAK online support KODAK contact support KODAK printer support number KODAK
KODAK printer customer support number KODAK KODAK printer tech support number
KODAK support for KODAK KODAK phone number KODAK KODAK customer service phone
number KODAK KODAK contact phone number KODAK KODAK printer phone number KODAK
KODAK printer customer service phone number KODAK phone number KODAK for KODAK
customer service KODAK software phone number KODAK phone number KODAK for KODAK
KODAK customer service telephone number KODAK KODAK helpline phone number KODAK
KODAK contact number KODAK KODAK customer service number KODAK KODAK customer
service phone number ~!~I8557092847++ KODAK us KODAK customer service phone
number KODAK usa KODAK telephone number KODAK KODAK phone number KODAK usa
KODAK printer contact number KODAK KODAK number KODAK KODAK contact number
KODAK usa KODAK printer helpline number KODAK KODAK helpline number KODAK KODAK
customer number KODAK KODAK printer customer service number KODAK KODAK contact
telephone number KODAK contact number KODAK for KODAK KODAK software contact
number KODAK KODAK toll free number KODAK KODAK telephone number KODAK uk KODAK
registration number KODAK KODAK toll free number KODAK usa KODAK customer
service KODAK software customer service contact KODAK customer service KODAK
customer service phone KODAK printer customer service KODAK service KODAK
printer technical support KODAK printer customer support KODAK technical
support reviews telephone KODAK printer KODAK tech support phone number KODAK
KODAK printer tech support phone number KODAK KODAK printer customer service
KODAK technical support phone number KODAK KODAK printer free printer support
KODAK customer service billing KODAK customer service email address KODAK
customer service reviews contact KODAK customer service KODAK tech support
number KODAK usa KODAK printer support number KODAK KODAK printer contact
number KODAK KODAK customer service phone number KODAK KODAK technical support
usa KODAK technical support number KODAK KODAK tech support phone KODAK tech
support number KODAK KODAK customer service telephone number KODAK KODAK
printer customer support number KODAK KODAK printer phone number KODAK KODAK
printer online support KODAK customer service number KODAK KODAK tech support
center KODAK customer service KODAK software customer service KODAK customer
care number KODAK usa KODAK customer number KODAK KODAK customer support number
KODAK KODAK customer care number KODAK KODAK customer care toll free number
KODAK KODAK tech support KODAK technical support KODAK printer support KODAK
printer tech support KODAK support center KODAK.com customer service KODAK
printer customer care number KODAK KODAK customer care KODAK phone number KODAK
phone number KODAK for KODAK customer service KODAK phone support KODAK phone
number KODAK tech support KODAK support phone number KODAK contact KODAK by
phone KODAK contact phone number KODAK KODAK helpline phone number KODAK KODAK
printer phone KODAK printer for phone KODAK contact number KODAK KODAK contact
support contact KODAK printer KODAK contact number KODAK usa KODAK toll free
number KODAK KODAK telephone number KODAK KODAK toll free number KODAK usa
KODAK printer support services technical support for printer KODAK KODAK
customer service phone number KODAK usa KODAK printer customer care number
KODAK usa KODAK customer care number KODAK KODAK customer care center KODAK
customer support KODAK customer support phone KODAK customer help KODAK
customer & technical support KODAK customer portal KODAK customer care phone
number KODAK usa KODAK customer care email KODAK helpline KODAK tech support
contact KODAK customer care toll free KODAK printer customer service number
KODAK KODAK printer protection norton printer customer service number KODAK
KODAK software customer service number KODAK KODAK hotline customer service
phone number KODAK KODAK customer service phone number KODAK us how to contact
KODAK by email KODAK free phone support KODAK printer technical support number
KODAK KODAK printer technical support help desk phone number KODAK KODAK
technical support number KODAK toll free number KODAK KODAK printer customer
support phone number KODAK KODAK printer customer
>From gcc-bugs-return-533953-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 19:23:45 2016
Return-Path: <gcc-bugs-return-533953-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 108438 invoked by alias); 10 Aug 2016 19:23:45 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 108259 invoked by uid 48); 10 Aug 2016 19:23:32 -0000
From: "amarquez at sigovs dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72868] Constexpr expressions mistreat case ranges
Date: Wed, 10 Aug 2016 19:23:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: amarquez at sigovs dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: attachments.created
Message-ID: <bug-72868-4-djkfTnc5NG@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72868-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72868-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01289.txt.bz2
Content-length: 230

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72868

--- Comment #2 from Alex Marquez <amarquez at sigovs dot com> ---
Created attachment 39099
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39099&action=edit
Test case
>From gcc-bugs-return-533954-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 19:24:52 2016
Return-Path: <gcc-bugs-return-533954-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 110753 invoked by alias); 10 Aug 2016 19:24:52 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 110475 invoked by uid 48); 10 Aug 2016 19:24:39 -0000
From: "jhakasbaba76 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/72875] New: $@$@^^^18557092847@$$@$$^^^^*** Brother printer technical support number.....
Date: Wed, 10 Aug 2016 19:24:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: 4.0.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jhakasbaba76 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-72875-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01290.txt.bz2
Content-length: 7852

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72875

            Bug ID: 72875
           Summary: $@$@^^^18557092847@$$@$$^^^^*** Brother printer
                    technical support number.....
           Product: gcc
           Version: 4.0.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ada
          Assignee: unassigned at gcc dot gnu.org
          Reporter: jhakasbaba76 at gmail dot com
  Target Milestone: ---

Created attachment 39100
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39100&action=edit
((moti))Call @@@++ USA I8557O92847 BROTHER p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l BROTHER h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a BROTHER s.u.p.p.o.r.t p.

((moti))Call @@@++ USA I8557O92847 BROTHER p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l BROTHER h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a BROTHER s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa USA 1
I8557O92847 BROTHER p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r
u.s.a. C.a.l.l BROTHER h.e.l.p d.e.s.k n.u.m.b.e.r n.u.m.b.e.r C.a.n.a.d.a
BROTHER s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa canada 1-1855-709-2847 USA,
BROTHER printer Tech Support phone number,BROTHER technical support phone
number 1 I8557O92847 .BROTHER Tech Support Number BROTHER Tech BROTHER tech
support, BROTHER tech support number, BROTHER tech support phone number,
BROTHER technical support, BROTHER technical support number, BROTHER technical
support phone number, BROTHER tech support number, BROTHER support number,
BROTHER Tech support phone number, BROTHER support phone number, BROTHER
technical support phone number, BROTHER technical support number,Support Phone
Number for BROTHER printer Phone Number for BROTHER CustomerService Technical
Support Telephone Number BROTHER printer support number BROTHER BROTHER printer
tech support number BROTHER BROTHER printer technical support number BROTHER
BROTHER printer technical support phone number BROTHER BROTHER printer customer
service number BROTHER BROTHER internet security technical support BROTHER
technical support phone number BROTHER BROTHER tech support phone number
BROTHER BROTHER customer support phone number I-855-709-2847 BROTHER BROTHER
printer support phone number BROTHER BROTHER support phone BROTHER tech support
BROTHER customer support BROTHER phone support BROTHER support number BROTHER
BROTHER technical support BROTHER printer customer support phone number BROTHER
BROTHER printer tech support phone number BROTHER contact BROTHER support
BROTHER printer technical support phone number ~!~I8557092847++ BROTHER BROTHER
phone number BROTHER tech support BROTHER support ticket BROTHER customer
support number BROTHER BROTHER tech support number BROTHER BROTHER technical
support number BROTHER BROTHER support center BROTHER telephone support call
BROTHER support BROTHER printer support support BROTHER BROTHER billing support
BROTHER printer technical support number BROTHER support BROTHER printer
BROTHER online support BROTHER contact support BROTHER printer support number
BROTHER BROTHER printer customer support number BROTHER BROTHER printer tech
support number BROTHER support for BROTHER BROTHER phone number BROTHER BROTHER
customer service phone number BROTHER BROTHER contact phone number BROTHER
BROTHER printer phone number BROTHER BROTHER printer customer service phone
number BROTHER phone number BROTHER for BROTHER customer service BROTHER
software phone number BROTHER phone number BROTHER for BROTHER BROTHER customer
service telephone number BROTHER BROTHER helpline phone number BROTHER BROTHER
contact number BROTHER BROTHER customer service number BROTHER BROTHER customer
service phone number ~!~I8557092847++ BROTHER us BROTHER customer service phone
number BROTHER usa BROTHER telephone number BROTHER BROTHER phone number
BROTHER usa BROTHER printer contact number BROTHER BROTHER number BROTHER
BROTHER contact number BROTHER usa BROTHER printer helpline number BROTHER
BROTHER helpline number BROTHER BROTHER customer number BROTHER BROTHER printer
customer service number BROTHER BROTHER contact telephone number BROTHER
contact number BROTHER for BROTHER BROTHER software contact number BROTHER
BROTHER toll free number BROTHER BROTHER telephone number BROTHER uk BROTHER
registration number BROTHER BROTHER toll free number BROTHER usa BROTHER
customer service BROTHER software customer service contact BROTHER customer
service BROTHER customer service phone BROTHER printer customer service BROTHER
service BROTHER printer technical support BROTHER printer customer support
BROTHER technical support reviews telephone BROTHER printer BROTHER tech
support phone number BROTHER BROTHER printer tech support phone number BROTHER
BROTHER printer customer service BROTHER technical support phone number BROTHER
BROTHER printer free printer support BROTHER customer service billing BROTHER
customer service email address BROTHER customer service reviews contact BROTHER
customer service BROTHER tech support number BROTHER usa BROTHER printer
support number BROTHER BROTHER printer contact number BROTHER BROTHER customer
service phone number BROTHER BROTHER technical support usa BROTHER technical
support number BROTHER BROTHER tech support phone BROTHER tech support number
BROTHER BROTHER customer service telephone number BROTHER BROTHER printer
customer support number BROTHER BROTHER printer phone number BROTHER BROTHER
printer online support BROTHER customer service number BROTHER BROTHER tech
support center BROTHER customer service BROTHER software customer service
BROTHER customer care number BROTHER usa BROTHER customer number BROTHER
BROTHER customer support number BROTHER BROTHER customer care number BROTHER
BROTHER customer care toll free number BROTHER BROTHER tech support BROTHER
technical support BROTHER printer support BROTHER printer tech support BROTHER
support center BROTHER.com customer service BROTHER printer customer care
number BROTHER BROTHER customer care BROTHER phone number BROTHER phone number
BROTHER for BROTHER customer service BROTHER phone support BROTHER phone number
BROTHER tech support BROTHER support phone number BROTHER contact BROTHER by
phone BROTHER contact phone number BROTHER BROTHER helpline phone number
BROTHER BROTHER printer phone BROTHER printer for phone BROTHER contact number
BROTHER BROTHER contact support contact BROTHER printer BROTHER contact number
BROTHER usa BROTHER toll free number BROTHER BROTHER telephone number BROTHER
BROTHER toll free number BROTHER usa BROTHER printer support services technical
support for printer BROTHER BROTHER customer service phone number BROTHER usa
BROTHER printer customer care number BROTHER usa BROTHER customer care number
BROTHER BROTHER customer care center BROTHER customer support BROTHER customer
support phone BROTHER customer help BROTHER customer & technical support
BROTHER customer portal BROTHER customer care phone number BROTHER usa BROTHER
customer care email BROTHER helpline BROTHER tech support contact BROTHER
customer care toll free BROTHER printer customer service number BROTHER BROTHER
printer protection norton printer customer service number BROTHER BROTHER
software customer service number BROTHER BROTHER hotline customer service phone
number BROTHER BROTHER customer service phone number BROTHER us how to contact
BROTHER by email BROTHER free phone support BROTHER printer technical support
number BROTHER BROTHER printer technical support help desk phone number BROTHER
BROTHER technical support number BROTHER toll free number BROTHER BROTHER
printer customer support phone number BROTHER BROTHER printer customer
>From gcc-bugs-return-533955-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 19:25:27 2016
Return-Path: <gcc-bugs-return-533955-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 112314 invoked by alias); 10 Aug 2016 19:25:26 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 112088 invoked by uid 48); 10 Aug 2016 19:25:14 -0000
From: "jhakasbaba76 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/72876] New: $@^^1…5p9(47^^@@%@%@$$ Kodak Printer tech support phone number
Date: Wed, 10 Aug 2016 19:25:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: 4.0.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jhakasbaba76 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-72876-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01291.txt.bz2
Content-length: 7265

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72876

            Bug ID: 72876
           Summary: $@^^1=855=709=2847^^@@%@%@$$ Kodak Printer tech
                    support phone number
           Product: gcc
           Version: 4.0.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ada
          Assignee: unassigned at gcc dot gnu.org
          Reporter: jhakasbaba76 at gmail dot com
  Target Milestone: ---

Created attachment 39101
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39101&action=edit
((moti))Call @@@++ USA I8557O92847 KODAK p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l KODAK h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a KODAK s.u.p.p.o.r.t p.h.o.n.

((moti))Call @@@++ USA I8557O92847 KODAK p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l KODAK h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a KODAK s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa USA 1
I8557O92847 KODAK p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r
u.s.a. C.a.l.l KODAK h.e.l.p d.e.s.k n.u.m.b.e.r n.u.m.b.e.r C.a.n.a.d.a KODAK
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa canada 1-1855-709-2847 USA, KODAK printer
Tech Support phone number,KODAK technical support phone number 1 I8557O92847
.KODAK Tech Support Number KODAK Tech KODAK tech support, KODAK tech support
number, KODAK tech support phone number, KODAK technical support, KODAK
technical support number, KODAK technical support phone number, KODAK tech
support number, KODAK support number, KODAK Tech support phone number, KODAK
support phone number, KODAK technical support phone number, KODAK technical
support number,Support Phone Number for KODAK printer Phone Number for KODAK
CustomerService Technical Support Telephone Number KODAK printer support number
KODAK KODAK printer tech support number KODAK KODAK printer technical support
number KODAK KODAK printer technical support phone number KODAK KODAK printer
customer service number KODAK KODAK internet security technical support KODAK
technical support phone number KODAK KODAK tech support phone number KODAK
KODAK customer support phone number I-855-709-2847 KODAK KODAK printer support
phone number KODAK KODAK support phone KODAK tech support KODAK customer
support KODAK phone support KODAK support number KODAK KODAK technical support
KODAK printer customer support phone number KODAK KODAK printer tech support
phone number KODAK contact KODAK support KODAK printer technical support phone
number ~!~I8557092847++ KODAK KODAK phone number KODAK tech support KODAK
support ticket KODAK customer support number KODAK KODAK tech support number
KODAK KODAK technical support number KODAK KODAK support center KODAK telephone
support call KODAK support KODAK printer support support KODAK KODAK billing
support KODAK printer technical support number KODAK support KODAK printer
KODAK online support KODAK contact support KODAK printer support number KODAK
KODAK printer customer support number KODAK KODAK printer tech support number
KODAK support for KODAK KODAK phone number KODAK KODAK customer service phone
number KODAK KODAK contact phone number KODAK KODAK printer phone number KODAK
KODAK printer customer service phone number KODAK phone number KODAK for KODAK
customer service KODAK software phone number KODAK phone number KODAK for KODAK
KODAK customer service telephone number KODAK KODAK helpline phone number KODAK
KODAK contact number KODAK KODAK customer service number KODAK KODAK customer
service phone number ~!~I8557092847++ KODAK us KODAK customer service phone
number KODAK usa KODAK telephone number KODAK KODAK phone number KODAK usa
KODAK printer contact number KODAK KODAK number KODAK KODAK contact number
KODAK usa KODAK printer helpline number KODAK KODAK helpline number KODAK KODAK
customer number KODAK KODAK printer customer service number KODAK KODAK contact
telephone number KODAK contact number KODAK for KODAK KODAK software contact
number KODAK KODAK toll free number KODAK KODAK telephone number KODAK uk KODAK
registration number KODAK KODAK toll free number KODAK usa KODAK customer
service KODAK software customer service contact KODAK customer service KODAK
customer service phone KODAK printer customer service KODAK service KODAK
printer technical support KODAK printer customer support KODAK technical
support reviews telephone KODAK printer KODAK tech support phone number KODAK
KODAK printer tech support phone number KODAK KODAK printer customer service
KODAK technical support phone number KODAK KODAK printer free printer support
KODAK customer service billing KODAK customer service email address KODAK
customer service reviews contact KODAK customer service KODAK tech support
number KODAK usa KODAK printer support number KODAK KODAK printer contact
number KODAK KODAK customer service phone number KODAK KODAK technical support
usa KODAK technical support number KODAK KODAK tech support phone KODAK tech
support number KODAK KODAK customer service telephone number KODAK KODAK
printer customer support number KODAK KODAK printer phone number KODAK KODAK
printer online support KODAK customer service number KODAK KODAK tech support
center KODAK customer service KODAK software customer service KODAK customer
care number KODAK usa KODAK customer number KODAK KODAK customer support number
KODAK KODAK customer care number KODAK KODAK customer care toll free number
KODAK KODAK tech support KODAK technical support KODAK printer support KODAK
printer tech support KODAK support center KODAK.com customer service KODAK
printer customer care number KODAK KODAK customer care KODAK phone number KODAK
phone number KODAK for KODAK customer service KODAK phone support KODAK phone
number KODAK tech support KODAK support phone number KODAK contact KODAK by
phone KODAK contact phone number KODAK KODAK helpline phone number KODAK KODAK
printer phone KODAK printer for phone KODAK contact number KODAK KODAK contact
support contact KODAK printer KODAK contact number KODAK usa KODAK toll free
number KODAK KODAK telephone number KODAK KODAK toll free number KODAK usa
KODAK printer support services technical support for printer KODAK KODAK
customer service phone number KODAK usa KODAK printer customer care number
KODAK usa KODAK customer care number KODAK KODAK customer care center KODAK
customer support KODAK customer support phone KODAK customer help KODAK
customer & technical support KODAK customer portal KODAK customer care phone
number KODAK usa KODAK customer care email KODAK helpline KODAK tech support
contact KODAK customer care toll free KODAK printer customer service number
KODAK KODAK printer protection norton printer customer service number KODAK
KODAK software customer service number KODAK KODAK hotline customer service
phone number KODAK KODAK customer service phone number KODAK us how to contact
KODAK by email KODAK free phone support KODAK printer technical support number
KODAK KODAK printer technical support help desk phone number KODAK KODAK
technical support number KODAK toll free number KODAK KODAK printer customer
support phone number KODAK KODAK printer customer
>From gcc-bugs-return-533956-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 19:26:41 2016
Return-Path: <gcc-bugs-return-533956-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 113977 invoked by alias); 10 Aug 2016 19:26:40 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 113803 invoked by uid 48); 10 Aug 2016 19:26:27 -0000
From: "jhakasbaba76 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/72877] New: $@$@^^^18557092847@$$@$$^^^^*** CANon printer technical support number.....
Date: Wed, 10 Aug 2016 19:26:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: 4.0.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jhakasbaba76 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-72877-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01292.txt.bz2
Content-length: 7266

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72877

            Bug ID: 72877
           Summary: $@$@^^^18557092847@$$@$$^^^^*** CANon printer
                    technical support number.....
           Product: gcc
           Version: 4.0.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ada
          Assignee: unassigned at gcc dot gnu.org
          Reporter: jhakasbaba76 at gmail dot com
  Target Milestone: ---

Created attachment 39102
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39102&action=edit
((moti))Call @@@++ USA I8557O92847 CANON p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l CANON h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a CANON s.u.p.p.o.r.t p.h.o.n.

((moti))Call @@@++ USA I8557O92847 CANON p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l CANON h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a CANON s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa USA 1
I8557O92847 CANON p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r
u.s.a. C.a.l.l CANON h.e.l.p d.e.s.k n.u.m.b.e.r n.u.m.b.e.r C.a.n.a.d.a CANON
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa canada 1-1855-709-2847 USA, CANON printer
Tech Support phone number,CANON technical support phone number 1 I8557O92847
.CANON Tech Support Number CANON Tech CANON tech support, CANON tech support
number, CANON tech support phone number, CANON technical support, CANON
technical support number, CANON technical support phone number, CANON tech
support number, CANON support number, CANON Tech support phone number, CANON
support phone number, CANON technical support phone number, CANON technical
support number,Support Phone Number for CANON printer Phone Number for CANON
CustomerService Technical Support Telephone Number CANON printer support number
CANON CANON printer tech support number CANON CANON printer technical support
number CANON CANON printer technical support phone number CANON CANON printer
customer service number CANON CANON internet security technical support CANON
technical support phone number CANON CANON tech support phone number CANON
CANON customer support phone number I-855-709-2847 CANON CANON printer support
phone number CANON CANON support phone CANON tech support CANON customer
support CANON phone support CANON support number CANON CANON technical support
CANON printer customer support phone number CANON CANON printer tech support
phone number CANON contact CANON support CANON printer technical support phone
number ~!~I8557092847++ CANON CANON phone number CANON tech support CANON
support ticket CANON customer support number CANON CANON tech support number
CANON CANON technical support number CANON CANON support center CANON telephone
support call CANON support CANON printer support support CANON CANON billing
support CANON printer technical support number CANON support CANON printer
CANON online support CANON contact support CANON printer support number CANON
CANON printer customer support number CANON CANON printer tech support number
CANON support for CANON CANON phone number CANON CANON customer service phone
number CANON CANON contact phone number CANON CANON printer phone number CANON
CANON printer customer service phone number CANON phone number CANON for CANON
customer service CANON software phone number CANON phone number CANON for CANON
CANON customer service telephone number CANON CANON helpline phone number CANON
CANON contact number CANON CANON customer service number CANON CANON customer
service phone number ~!~I8557092847++ CANON us CANON customer service phone
number CANON usa CANON telephone number CANON CANON phone number CANON usa
CANON printer contact number CANON CANON number CANON CANON contact number
CANON usa CANON printer helpline number CANON CANON helpline number CANON CANON
customer number CANON CANON printer customer service number CANON CANON contact
telephone number CANON contact number CANON for CANON CANON software contact
number CANON CANON toll free number CANON CANON telephone number CANON uk CANON
registration number CANON CANON toll free number CANON usa CANON customer
service CANON software customer service contact CANON customer service CANON
customer service phone CANON printer customer service CANON service CANON
printer technical support CANON printer customer support CANON technical
support reviews telephone CANON printer CANON tech support phone number CANON
CANON printer tech support phone number CANON CANON printer customer service
CANON technical support phone number CANON CANON printer free printer support
CANON customer service billing CANON customer service email address CANON
customer service reviews contact CANON customer service CANON tech support
number CANON usa CANON printer support number CANON CANON printer contact
number CANON CANON customer service phone number CANON CANON technical support
usa CANON technical support number CANON CANON tech support phone CANON tech
support number CANON CANON customer service telephone number CANON CANON
printer customer support number CANON CANON printer phone number CANON CANON
printer online support CANON customer service number CANON CANON tech support
center CANON customer service CANON software customer service CANON customer
care number CANON usa CANON customer number CANON CANON customer support number
CANON CANON customer care number CANON CANON customer care toll free number
CANON CANON tech support CANON technical support CANON printer support CANON
printer tech support CANON support center CANON.com customer service CANON
printer customer care number CANON CANON customer care CANON phone number CANON
phone number CANON for CANON customer service CANON phone support CANON phone
number CANON tech support CANON support phone number CANON contact CANON by
phone CANON contact phone number CANON CANON helpline phone number CANON CANON
printer phone CANON printer for phone CANON contact number CANON CANON contact
support contact CANON printer CANON contact number CANON usa CANON toll free
number CANON CANON telephone number CANON CANON toll free number CANON usa
CANON printer support services technical support for printer CANON CANON
customer service phone number CANON usa CANON printer customer care number
CANON usa CANON customer care number CANON CANON customer care center CANON
customer support CANON customer support phone CANON customer help CANON
customer & technical support CANON customer portal CANON customer care phone
number CANON usa CANON customer care email CANON helpline CANON tech support
contact CANON customer care toll free CANON printer customer service number
CANON CANON printer protection norton printer customer service number CANON
CANON software customer service number CANON CANON hotline customer service
phone number CANON CANON customer service phone number CANON us how to contact
CANON by email CANON free phone support CANON printer technical support number
CANON CANON printer technical support help desk phone number CANON CANON
technical support number CANON toll free number CANON CANON printer customer
support phone number CANON CANON printer customer
>From gcc-bugs-return-533957-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 19:29:25 2016
Return-Path: <gcc-bugs-return-533957-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 98072 invoked by alias); 10 Aug 2016 19:29:25 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 97978 invoked by uid 48); 10 Aug 2016 19:29:12 -0000
From: "daniel.kruegler at googlemail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72868] Constexpr expressions mistreat case ranges
Date: Wed, 10 Aug 2016 19:29:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: daniel.kruegler at googlemail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72868-4-WIgZA4r55g@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72868-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72868-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01293.txt.bz2
Content-length: 318

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72868

--- Comment #3 from Daniel Krügler <daniel.kruegler at googlemail dot com> ---
The quoted essentials also require you to provide the full command line (A
range in a switch case is not Standard C++), please read about what's needed in
the quoted document.
>From gcc-bugs-return-533958-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 19:29:50 2016
Return-Path: <gcc-bugs-return-533958-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 98939 invoked by alias); 10 Aug 2016 19:29:49 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 98801 invoked by uid 48); 10 Aug 2016 19:29:37 -0000
From: "jhakasbaba76 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/72878] New: Get Help @+***1..855..709..2847**$$@@ Canon Printer Technical Support Contact Number,
Date: Wed, 10 Aug 2016 19:29:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: 4.0.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jhakasbaba76 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-72878-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01294.txt.bz2
Content-length: 6974

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72878

            Bug ID: 72878
           Summary: Get Help @+***1..855..709..2847**$$@@ Canon Printer
                    Technical Support Contact Number,
           Product: gcc
           Version: 4.0.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ada
          Assignee: unassigned at gcc dot gnu.org
          Reporter: jhakasbaba76 at gmail dot com
  Target Milestone: ---

((moti))Call @@@++ USA I8557O92847 CANON p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l CANON h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a CANON s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa USA 1
I8557O92847 CANON p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r
u.s.a. C.a.l.l CANON h.e.l.p d.e.s.k n.u.m.b.e.r n.u.m.b.e.r C.a.n.a.d.a CANON
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa canada 1-1855-709-2847 USA, CANON printer
Tech Support phone number,CANON technical support phone number 1 I8557O92847
.CANON Tech Support Number CANON Tech CANON tech support, CANON tech support
number, CANON tech support phone number, CANON technical support, CANON
technical support number, CANON technical support phone number, CANON tech
support number, CANON support number, CANON Tech support phone number, CANON
support phone number, CANON technical support phone number, CANON technical
support number,Support Phone Number for CANON printer Phone Number for CANON
CustomerService Technical Support Telephone Number CANON printer support number
CANON CANON printer tech support number CANON CANON printer technical support
number CANON CANON printer technical support phone number CANON CANON printer
customer service number CANON CANON internet security technical support CANON
technical support phone number CANON CANON tech support phone number CANON
CANON customer support phone number I-855-709-2847 CANON CANON printer support
phone number CANON CANON support phone CANON tech support CANON customer
support CANON phone support CANON support number CANON CANON technical support
CANON printer customer support phone number CANON CANON printer tech support
phone number CANON contact CANON support CANON printer technical support phone
number ~!~I8557092847++ CANON CANON phone number CANON tech support CANON
support ticket CANON customer support number CANON CANON tech support number
CANON CANON technical support number CANON CANON support center CANON telephone
support call CANON support CANON printer support support CANON CANON billing
support CANON printer technical support number CANON support CANON printer
CANON online support CANON contact support CANON printer support number CANON
CANON printer customer support number CANON CANON printer tech support number
CANON support for CANON CANON phone number CANON CANON customer service phone
number CANON CANON contact phone number CANON CANON printer phone number CANON
CANON printer customer service phone number CANON phone number CANON for CANON
customer service CANON software phone number CANON phone number CANON for CANON
CANON customer service telephone number CANON CANON helpline phone number CANON
CANON contact number CANON CANON customer service number CANON CANON customer
service phone number ~!~I8557092847++ CANON us CANON customer service phone
number CANON usa CANON telephone number CANON CANON phone number CANON usa
CANON printer contact number CANON CANON number CANON CANON contact number
CANON usa CANON printer helpline number CANON CANON helpline number CANON CANON
customer number CANON CANON printer customer service number CANON CANON contact
telephone number CANON contact number CANON for CANON CANON software contact
number CANON CANON toll free number CANON CANON telephone number CANON uk CANON
registration number CANON CANON toll free number CANON usa CANON customer
service CANON software customer service contact CANON customer service CANON
customer service phone CANON printer customer service CANON service CANON
printer technical support CANON printer customer support CANON technical
support reviews telephone CANON printer CANON tech support phone number CANON
CANON printer tech support phone number CANON CANON printer customer service
CANON technical support phone number CANON CANON printer free printer support
CANON customer service billing CANON customer service email address CANON
customer service reviews contact CANON customer service CANON tech support
number CANON usa CANON printer support number CANON CANON printer contact
number CANON CANON customer service phone number CANON CANON technical support
usa CANON technical support number CANON CANON tech support phone CANON tech
support number CANON CANON customer service telephone number CANON CANON
printer customer support number CANON CANON printer phone number CANON CANON
printer online support CANON customer service number CANON CANON tech support
center CANON customer service CANON software customer service CANON customer
care number CANON usa CANON customer number CANON CANON customer support number
CANON CANON customer care number CANON CANON customer care toll free number
CANON CANON tech support CANON technical support CANON printer support CANON
printer tech support CANON support center CANON.com customer service CANON
printer customer care number CANON CANON customer care CANON phone number CANON
phone number CANON for CANON customer service CANON phone support CANON phone
number CANON tech support CANON support phone number CANON contact CANON by
phone CANON contact phone number CANON CANON helpline phone number CANON CANON
printer phone CANON printer for phone CANON contact number CANON CANON contact
support contact CANON printer CANON contact number CANON usa CANON toll free
number CANON CANON telephone number CANON CANON toll free number CANON usa
CANON printer support services technical support for printer CANON CANON
customer service phone number CANON usa CANON printer customer care number
CANON usa CANON customer care number CANON CANON customer care center CANON
customer support CANON customer support phone CANON customer help CANON
customer & technical support CANON customer portal CANON customer care phone
number CANON usa CANON customer care email CANON helpline CANON tech support
contact CANON customer care toll free CANON printer customer service number
CANON CANON printer protection norton printer customer service number CANON
CANON software customer service number CANON CANON hotline customer service
phone number CANON CANON customer service phone number CANON us how to contact
CANON by email CANON free phone support CANON printer technical support number
CANON CANON printer technical support help desk phone number CANON CANON
technical support number CANON toll free number CANON CANON printer customer
support phone number CANON CANON printer customer
>From gcc-bugs-return-533959-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 19:32:09 2016
Return-Path: <gcc-bugs-return-533959-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 112821 invoked by alias); 10 Aug 2016 19:32:09 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 112718 invoked by uid 48); 10 Aug 2016 19:31:56 -0000
From: "jhakasbaba76 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/72881] New: $@^^1…5p9(47^^@@%@%@$$ Canon Printer tech support phone number
Date: Wed, 10 Aug 2016 19:32:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: 4.0.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jhakasbaba76 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-72881-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01295.txt.bz2
Content-length: 7265

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72881

            Bug ID: 72881
           Summary: $@^^1=855=709=2847^^@@%@%@$$ Canon Printer tech
                    support phone number
           Product: gcc
           Version: 4.0.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ada
          Assignee: unassigned at gcc dot gnu.org
          Reporter: jhakasbaba76 at gmail dot com
  Target Milestone: ---

Created attachment 39103
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39103&action=edit
((moti))Call @@@++ USA I8557O92847 CANON p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l CANON h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a CANON s.u.p.p.o.r.t p.h.o.n.

((moti))Call @@@++ USA I8557O92847 CANON p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l CANON h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a CANON s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa USA 1
I8557O92847 CANON p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r
u.s.a. C.a.l.l CANON h.e.l.p d.e.s.k n.u.m.b.e.r n.u.m.b.e.r C.a.n.a.d.a CANON
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa canada 1-1855-709-2847 USA, CANON printer
Tech Support phone number,CANON technical support phone number 1 I8557O92847
.CANON Tech Support Number CANON Tech CANON tech support, CANON tech support
number, CANON tech support phone number, CANON technical support, CANON
technical support number, CANON technical support phone number, CANON tech
support number, CANON support number, CANON Tech support phone number, CANON
support phone number, CANON technical support phone number, CANON technical
support number,Support Phone Number for CANON printer Phone Number for CANON
CustomerService Technical Support Telephone Number CANON printer support number
CANON CANON printer tech support number CANON CANON printer technical support
number CANON CANON printer technical support phone number CANON CANON printer
customer service number CANON CANON internet security technical support CANON
technical support phone number CANON CANON tech support phone number CANON
CANON customer support phone number I-855-709-2847 CANON CANON printer support
phone number CANON CANON support phone CANON tech support CANON customer
support CANON phone support CANON support number CANON CANON technical support
CANON printer customer support phone number CANON CANON printer tech support
phone number CANON contact CANON support CANON printer technical support phone
number ~!~I8557092847++ CANON CANON phone number CANON tech support CANON
support ticket CANON customer support number CANON CANON tech support number
CANON CANON technical support number CANON CANON support center CANON telephone
support call CANON support CANON printer support support CANON CANON billing
support CANON printer technical support number CANON support CANON printer
CANON online support CANON contact support CANON printer support number CANON
CANON printer customer support number CANON CANON printer tech support number
CANON support for CANON CANON phone number CANON CANON customer service phone
number CANON CANON contact phone number CANON CANON printer phone number CANON
CANON printer customer service phone number CANON phone number CANON for CANON
customer service CANON software phone number CANON phone number CANON for CANON
CANON customer service telephone number CANON CANON helpline phone number CANON
CANON contact number CANON CANON customer service number CANON CANON customer
service phone number ~!~I8557092847++ CANON us CANON customer service phone
number CANON usa CANON telephone number CANON CANON phone number CANON usa
CANON printer contact number CANON CANON number CANON CANON contact number
CANON usa CANON printer helpline number CANON CANON helpline number CANON CANON
customer number CANON CANON printer customer service number CANON CANON contact
telephone number CANON contact number CANON for CANON CANON software contact
number CANON CANON toll free number CANON CANON telephone number CANON uk CANON
registration number CANON CANON toll free number CANON usa CANON customer
service CANON software customer service contact CANON customer service CANON
customer service phone CANON printer customer service CANON service CANON
printer technical support CANON printer customer support CANON technical
support reviews telephone CANON printer CANON tech support phone number CANON
CANON printer tech support phone number CANON CANON printer customer service
CANON technical support phone number CANON CANON printer free printer support
CANON customer service billing CANON customer service email address CANON
customer service reviews contact CANON customer service CANON tech support
number CANON usa CANON printer support number CANON CANON printer contact
number CANON CANON customer service phone number CANON CANON technical support
usa CANON technical support number CANON CANON tech support phone CANON tech
support number CANON CANON customer service telephone number CANON CANON
printer customer support number CANON CANON printer phone number CANON CANON
printer online support CANON customer service number CANON CANON tech support
center CANON customer service CANON software customer service CANON customer
care number CANON usa CANON customer number CANON CANON customer support number
CANON CANON customer care number CANON CANON customer care toll free number
CANON CANON tech support CANON technical support CANON printer support CANON
printer tech support CANON support center CANON.com customer service CANON
printer customer care number CANON CANON customer care CANON phone number CANON
phone number CANON for CANON customer service CANON phone support CANON phone
number CANON tech support CANON support phone number CANON contact CANON by
phone CANON contact phone number CANON CANON helpline phone number CANON CANON
printer phone CANON printer for phone CANON contact number CANON CANON contact
support contact CANON printer CANON contact number CANON usa CANON toll free
number CANON CANON telephone number CANON CANON toll free number CANON usa
CANON printer support services technical support for printer CANON CANON
customer service phone number CANON usa CANON printer customer care number
CANON usa CANON customer care number CANON CANON customer care center CANON
customer support CANON customer support phone CANON customer help CANON
customer & technical support CANON customer portal CANON customer care phone
number CANON usa CANON customer care email CANON helpline CANON tech support
contact CANON customer care toll free CANON printer customer service number
CANON CANON printer protection norton printer customer service number CANON
CANON software customer service number CANON CANON hotline customer service
phone number CANON CANON customer service phone number CANON us how to contact
CANON by email CANON free phone support CANON printer technical support number
CANON CANON printer technical support help desk phone number CANON CANON
technical support number CANON toll free number CANON CANON printer customer
support phone number CANON CANON printer customer
>From gcc-bugs-return-533960-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 19:33:58 2016
Return-Path: <gcc-bugs-return-533960-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 115021 invoked by alias); 10 Aug 2016 19:33:58 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 114758 invoked by uid 48); 10 Aug 2016 19:33:42 -0000
From: "jhakasbaba76 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/72884] New: Contact U$$D ***@@18557092847$$$****HP  p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a.
Date: Wed, 10 Aug 2016 19:33:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: 4.0.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jhakasbaba76 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-72884-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01296.txt.bz2
Content-length: 6527

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72884

            Bug ID: 72884
           Summary: Contact U$$D ***@@18557092847$$$****HP  p.r.i.n.t.e.r
                    t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a.
           Product: gcc
           Version: 4.0.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ada
          Assignee: unassigned at gcc dot gnu.org
          Reporter: jhakasbaba76 at gmail dot com
  Target Milestone: ---

((moti))Call @@@++ USA I8557O92847 HP  p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l HP  h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a HP  s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa USA 1
I8557O92847 HP  p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r
u.s.a. C.a.l.l HP  h.e.l.p d.e.s.k n.u.m.b.e.r n.u.m.b.e.r C.a.n.a.d.a HP 
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa canada 1-1855-709-2847 USA, HP  printer
Tech Support phone number,HP  technical support phone number 1 I8557O92847 .HP 
Tech Support Number HP  Tech HP  tech support, HP  tech support number, HP 
tech support phone number, HP  technical support, HP  technical support number,
HP  technical support phone number, HP  tech support number, HP  support
number, HP  Tech support phone number, HP  support phone number, HP  technical
support phone number, HP  technical support number,Support Phone Number for HP 
printer Phone Number for HP  CustomerService Technical Support Telephone Number
HP  printer support number HP  HP  printer tech support number HP  HP  printer
technical support number HP  HP  printer technical support phone number HP  HP 
printer customer service number HP  HP  internet security technical support HP 
technical support phone number HP  HP  tech support phone number HP  HP 
customer support phone number I-855-709-2847 HP  HP  printer support phone
number HP  HP  support phone HP  tech support HP  customer support HP  phone
support HP  support number HP  HP  technical support HP  printer customer
support phone number HP  HP  printer tech support phone number HP  contact HP 
support HP  printer technical support phone number ~!~I8557092847++ HP  HP 
phone number HP  tech support HP  support ticket HP  customer support number HP
 HP  tech support number HP  HP  technical support number HP  HP  support
center HP  telephone support call HP  support HP  printer support support HP 
HP  billing support HP  printer technical support number HP  support HP 
printer HP  online support HP  contact support HP  printer support number HP 
HP  printer customer support number HP  HP  printer tech support number HP 
support for HP  HP  phone number HP  HP  customer service phone number HP  HP 
contact phone number HP  HP  printer phone number HP  HP  printer customer
service phone number HP  phone number HP  for HP  customer service HP  software
phone number HP  phone number HP  for HP  HP  customer service telephone number
HP  HP  helpline phone number HP  HP  contact number HP  HP  customer service
number HP  HP  customer service phone number ~!~I8557092847++ HP  us HP 
customer service phone number HP  usa HP  telephone number HP  HP  phone number
HP  usa HP  printer contact number HP  HP  number HP  HP  contact number HP 
usa HP  printer helpline number HP  HP  helpline number HP  HP  customer number
HP  HP  printer customer service number HP  HP  contact telephone number HP 
contact number HP  for HP  HP  software contact number HP  HP  toll free number
HP  HP  telephone number HP  uk HP  registration number HP  HP  toll free
number HP  usa HP  customer service HP  software customer service contact HP 
customer service HP  customer service phone HP  printer customer service HP 
service HP  printer technical support HP  printer customer support HP 
technical support reviews telephone HP  printer HP  tech support phone number
HP  HP  printer tech support phone number HP  HP  printer customer service HP 
technical support phone number HP  HP  printer free printer support HP 
customer service billing HP  customer service email address HP  customer
service reviews contact HP  customer service HP  tech support number HP  usa HP
 printer support number HP  HP  printer contact number HP  HP  customer service
phone number HP  HP  technical support usa HP  technical support number HP  HP 
tech support phone HP  tech support number HP  HP  customer service telephone
number HP  HP  printer customer support number HP  HP  printer phone number HP 
HP  printer online support HP  customer service number HP  HP  tech support
center HP  customer service HP  software customer service HP  customer care
number HP  usa HP  customer number HP  HP  customer support number HP  HP 
customer care number HP  HP  customer care toll free number HP  HP  tech
support HP  technical support HP  printer support HP  printer tech support HP 
support center HP .com customer service HP  printer customer care number HP  HP
 customer care HP  phone number HP  phone number HP  for HP  customer service
HP  phone support HP  phone number HP  tech support HP  support phone number HP
 contact HP  by phone HP  contact phone number HP  HP  helpline phone number HP
 HP  printer phone HP  printer for phone HP  contact number HP  HP  contact
support contact HP  printer HP  contact number HP  usa HP  toll free number HP 
HP  telephone number HP  HP  toll free number HP  usa HP  printer support
services technical support for printer HP  HP  customer service phone number HP
 usa HP  printer customer care number HP  usa HP  customer care number HP  HP 
customer care center HP  customer support HP  customer support phone HP 
customer help HP  customer & technical support HP  customer portal HP  customer
care phone number HP  usa HP  customer care email HP  helpline HP  tech support
contact HP  customer care toll free HP  printer customer service number HP  HP 
printer protection norton printer customer service number HP  HP  software
customer service number HP  HP  hotline customer service phone number HP  HP 
customer service phone number HP  us how to contact HP  by email HP  free phone
support HP  printer technical support number HP  HP  printer technical support
help desk phone number HP  HP  technical support number HP  toll free number HP
 HP  printer customer support phone number HP  HP  printer customer
>From gcc-bugs-return-533961-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 19:38:13 2016
Return-Path: <gcc-bugs-return-533961-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 25897 invoked by alias); 10 Aug 2016 19:38:13 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 18670 invoked by uid 48); 10 Aug 2016 19:38:00 -0000
From: "amarquez at sigovs dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72868] Constexpr expressions mistreat case ranges
Date: Wed, 10 Aug 2016 19:38:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: amarquez at sigovs dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72868-4-rrlElIefmy@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72868-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72868-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01297.txt.bz2
Content-length: 2442

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72868

--- Comment #4 from Alex Marquez <amarquez at sigovs dot com> ---
(In reply to Daniel Krügler from comment #3)
> The quoted essentials also require you to provide the full command line (A
> range in a switch case is not Standard C++), please read about what's needed
> in the quoted document.

Cmdline:
g++ -std=gnu++1y test.cpp

Output:
test.cpp:12:1: error: static assertion failed: Oops!
 static_assert(is_single_decimal_digit(3), "Oops!");

System GCC:
COLLECT_GCC=g++
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 5.2.1-22ubuntu2'
--with-bugurl=file:///usr/share/doc/gcc-5/README.Bugs
--enable-languages=c,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr
--program-suffix=-5 --enable-shared --enable-linker-build-id
--libexecdir=/usr/lib --without-included-gettext --enable-threads=posix
--libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu
--enable-libstdcxx-debug --enable-libstdcxx-time=yes
--with-default-libstdcxx-abi=new --enable-gnu-unique-object
--disable-vtable-verify --enable-libmpx --enable-plugin --with-system-zlib
--disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo
--with-java-home=/usr/lib/jvm/java-1.5.0-gcj-5-amd64/jre --enable-java-home
--with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-5-amd64
--with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-5-amd64
--with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar
--enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686
--with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib
--with-tune=generic --enable-checking=release --build=x86_64-linux-gnu
--host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 5.2.1 20151010 (Ubuntu 5.2.1-22ubuntu2)

Alternate GCC (also fails):
COLLECT_GCC=avr-g++
COLLECT_LTO_WRAPPER=/usr/local/libexec/gcc/avr/6.1.1/lto-wrapper
Target: avr
Configured with: ../gcc-6-20160714/configure --prefix=/usr/local/ --target=avr
--enable-languages=c,c++ --disable-nls --disable-libssp --with-avrlibc
--enable-target-optspace --disable-threads --program-prefix=avr- --enable-lto
--with-multilib-list=avr5 --disable-tls --disable-libstdcxx
Thread model: single
gcc version 6.1.1 20160714 (GCC)
>From gcc-bugs-return-533962-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 19:38:44 2016
Return-Path: <gcc-bugs-return-533962-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 27172 invoked by alias); 10 Aug 2016 19:38:44 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 26879 invoked by uid 48); 10 Aug 2016 19:38:32 -0000
From: "amarquez at sigovs dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72868] Constexpr expressions mistreat case ranges
Date: Wed, 10 Aug 2016 19:38:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: amarquez at sigovs dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: attachments.created
Message-ID: <bug-72868-4-FSYyHorm8J@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72868-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72868-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01298.txt.bz2
Content-length: 243

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72868

--- Comment #5 from Alex Marquez <amarquez at sigovs dot com> ---
Created attachment 39104
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39104&action=edit
Preprocessed test case
>From gcc-bugs-return-533963-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 19:43:12 2016
Return-Path: <gcc-bugs-return-533963-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 50998 invoked by alias); 10 Aug 2016 19:43:11 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 50904 invoked by uid 48); 10 Aug 2016 19:43:04 -0000
From: "dmalcolm at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/72857] incorrect caret location in -Wformat for width and precision given by asterisk
Date: Wed, 10 Aug 2016 19:43:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: minor
X-Bugzilla-Who: dmalcolm at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: dmalcolm at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72857-4-h4UmHlVpsR@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72857-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72857-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01299.txt.bz2
Content-length: 196

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72857

--- Comment #1 from David Malcolm <dmalcolm at gcc dot gnu.org> ---
Candidate patch: https://gcc.gnu.org/ml/gcc-patches/2016-08/msg00867.html
>From gcc-bugs-return-533965-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 19:55:57 2016
Return-Path: <gcc-bugs-return-533965-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 84475 invoked by alias); 10 Aug 2016 19:55:57 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 84212 invoked by uid 48); 10 Aug 2016 19:55:46 -0000
From: "undertakann at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug boehm-gc/72928] New: $@^^1„430#30^^@@%@%@$$ Netgear Router tech support phone number
Date: Wed, 10 Aug 2016 19:55:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: boehm-gc
X-Bugzilla-Version: trans-mem
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: undertakann at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-72928-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01301.txt.bz2
Content-length: 4990

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72928

            Bug ID: 72928
           Summary: $@^^1=844=330=2330^^@@%@%@$$ Netgear Router tech
                    support phone number
           Product: gcc
           Version: trans-mem
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: boehm-gc
          Assignee: unassigned at gcc dot gnu.org
          Reporter: undertakann at gmail dot com
  Target Milestone: ---

Help Desk Wifi 1-844-330-2330 Netgear Router Tech Support Number1.844.330.2330
Netgear Router Customer Service Number USA

MISSOURI Describe Wireless wifi Netgear Tech support Number MINNESOTA
@1-844-330-2330@ Netgear router tech support number, Netgear router customer
service number,Netgear wireless router tech support number USA Canada UK
Australia,Netgear Router Technical Support number, Netgear Router support phone
number @@@rv 18443302330++++ Netgear Router Support Phone number Netgear tech
support number +++18443302330+++ Netgear Router customer service phone number
Netgear technical support number 18443302330++ Netgear Router customer Care
phone number Netgear tech support number 18443302330++++ Netgear helpdesk
support phone number Netgear Customer support phone number 18443302330 Netgear
tech support number , Netgear tech support phone number , Netgear customer
support phone number here $$$##@@ Netgear tech support number 18443302330
Netgear Technical support number @@ Netgear support phone number 18443302330
Netgear customer service phone number Netgear customer c.a.r.e number Netgear
helpdesk phone number Netgear helpline phone number 1844+330+2330 Netgear
contact phone number 18443302330 Netgear tech support number , Netgear tech
support phone number , Netgear customer support phone number here $$$##@@
Netgear tech support number 18443302330 Netgear Technical support number @@
Netgear support phone number 18443302330 Netgear customer service phone number
Netgear customer c.a.r.e number Netgear helpdesk phone number Netgear helpline
phone number 1844+330+2330 Netgear contact phone number Netgear help number -
Netgear helpline number ; Netgear help phone number , Netgear helpline number ,
Netgear tech support tollfree number , Netgear support Tele phone number ,
Netgear tech support Tele phone number , Netgear tech support contact number ,
Netgear support contact number , Netgear Technical support contact number ,
Netgear support phone number , Netgear Router support phone number . Netgear
Router customer support phone number Netgear customer service number
18443302330 Netgear call center Netgear customer service Routeraddress Netgear
customer c.a.r.e no Netgear Router Technical support phone number 18443302330
Netgear Router tech support phone number 18443302330 Netgear Router customer
service phone number 18443302330 Netgear Technical support phone number
18443302330 symantec Technical support phone number 18443302330 Netgear
Technical support phone number 18443302330 Netgear customer service tele phone
number 18443302330 Netgear Router phone number 18443302330 Netgear Router
customer service phone number 18443302330 Netgear Router customer service
helpdesk Netgear Router phone number 18443302330 Netgear phone number
18443302330cancel subscription Netgear Technical support phone number
18443302330 Netgear 844 phone number 18443302330 snapdeal tollfree customer
c.a.r.e number 18443302330 sbi tollfree customer c.a.r.e number 18443302330
airtel tollfree customer c.a.r.e number 18443302330 hdfc tollfree customer
c.a.r.e number 18443302330 bsnl tollfree customer c.a.r.e number 18443302330
icici tollfree customer c.a.r.e number 18443302330 flipkart tollfree customer
c.a.r.e number 18443302330 vodafone tollfree customer c.a.r.e number
18443302330 Netgear Technical support phone number 18443302330 Netgear
Technical support number 18443302330 Netgear Technical support number
18443302330 symantec Technical support number 18443302330 Netgear Router
Technical support number 18443302330 Netgear locations Netgear online support
Netgear helpdesk phone number 18443302330 Netgear customer c.a.r.e Netgear tech
support phone number 18443302330 Netgear tech support phone number 18443302330
Netgear Router tech support phone number 18443302330 Netgear locations Netgear
helpdesk phone number 18443302330 service Netgear com Netgear login Netgear
Technical support phone number 18443302330 Netgear customer service Netgear
helpdesk phone number 18443302330 Netgear support tele phone number 18443302330
Netgear support phone number 18443302330 Netgear Router support phone number
18443302330 Netgear support phone number 18443302330 Netgear locations Netgear
customer service Netgear customer c.a.r.e Netgear helpdesk phone number
18443302330 Netgear customer support phone number 18443302330 Netgear customer
support phone number 18443302330 Netgear Router customer support phone number
18443302330
>From gcc-bugs-return-533964-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 19:55:34 2016
Return-Path: <gcc-bugs-return-533964-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 83497 invoked by alias); 10 Aug 2016 19:55:34 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 83249 invoked by uid 48); 10 Aug 2016 19:55:22 -0000
From: "wschmidt at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72863] Powerpc64le: redundant swaps when using vec_vsx_ld/st
Date: Wed, 10 Aug 2016 19:55:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wschmidt at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-72863-4-wgYtWr0BKO@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72863-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72863-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01300.txt.bz2
Content-length: 482

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72863

Bill Schmidt <wschmidt at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-10
     Ever confirmed|0                           |1

--- Comment #2 from Bill Schmidt <wschmidt at gcc dot gnu.org> ---
Confirmed.
>From gcc-bugs-return-533966-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 20:14:38 2016
Return-Path: <gcc-bugs-return-533966-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 20705 invoked by alias); 10 Aug 2016 20:14:38 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 20593 invoked by uid 48); 10 Aug 2016 20:14:25 -0000
From: "cinejuphus at throwam dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/72988] New: $@^^1€0y0‘86^^@@%@%@$$ CANON Printer tech support phone number
Date: Wed, 10 Aug 2016 20:14:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: 4.3.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: cinejuphus at throwam dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-72988-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01302.txt.bz2
Content-length: 7467

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72988

            Bug ID: 72988
           Summary: $@^^1=800=790=9186^^@@%@%@$$ CANON Printer tech
                    support phone number
           Product: gcc
           Version: 4.3.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ada
          Assignee: unassigned at gcc dot gnu.org
          Reporter: cinejuphus at throwam dot com
  Target Milestone: ---

Created attachment 39117
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39117&action=edit
((moti))Call @@@++ USA I80079O9186 CANON p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l CANON h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a CANON s.u.p.p.o.r.t p.h.o.n.

((moti))Call @@@++ USA I80079O9186 CANON p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l CANON h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a CANON s.u.p.p.o.r.t p.h.o.n.

((moti))Call @@@++ USA I80079O9186 CANON p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l CANON h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a CANON s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa USA 1
I80079O9186 CANON p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r
u.s.a. C.a.l.l CANON h.e.l.p d.e.s.k n.u.m.b.e.r n.u.m.b.e.r C.a.n.a.d.a CANON
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa canada 1-1800-790-9186 USA, CANON printer
Tech Support phone number,CANON technical support phone number 1 I80079O9186
.CANON Tech Support Number CANON Tech CANON tech support, CANON tech support
number, CANON tech support phone number, CANON technical support, CANON
technical support number, CANON technical support phone number, CANON tech
support number, CANON support number, CANON Tech support phone number, CANON
support phone number, CANON technical support phone number, CANON technical
support number,Support Phone Number for CANON printer Phone Number for CANON
CustomerService Technical Support Telephone Number CANON printer support number
CANON CANON printer tech support number CANON CANON printer technical support
number CANON CANON printer technical support phone number CANON CANON printer
customer service number CANON CANON internet security technical support CANON
technical support phone number CANON CANON tech support phone number CANON
CANON customer support phone number I-800-790-9186 CANON CANON printer support
phone number CANON CANON support phone CANON tech support CANON customer
support CANON phone support CANON support number CANON CANON technical support
CANON printer customer support phone number CANON CANON printer tech support
phone number CANON contact CANON support CANON printer technical support phone
number ~!~I8007909186++ CANON CANON phone number CANON tech support CANON
support ticket CANON customer support number CANON CANON tech support number
CANON CANON technical support number CANON CANON support center CANON telephone
support call CANON support CANON printer support support CANON CANON billing
support CANON printer technical support number CANON support CANON printer
CANON online support CANON contact support CANON printer support number CANON
CANON printer customer support number CANON CANON printer tech support number
CANON support for CANON CANON phone number CANON CANON customer service phone
number CANON CANON contact phone number CANON CANON printer phone number CANON
CANON printer customer service phone number CANON phone number CANON for CANON
customer service CANON software phone number CANON phone number CANON for CANON
CANON customer service telephone number CANON CANON helpline phone number CANON
CANON contact number CANON CANON customer service number CANON CANON customer
service phone number ~!~I8007909186++ CANON us CANON customer service phone
number CANON usa CANON telephone number CANON CANON phone number CANON usa
CANON printer contact number CANON CANON number CANON CANON contact number
CANON usa CANON printer helpline number CANON CANON helpline number CANON CANON
customer number CANON CANON printer customer service number CANON CANON contact
telephone number CANON contact number CANON for CANON CANON software contact
number CANON CANON toll free number CANON CANON telephone number CANON uk CANON
registration number CANON CANON toll free number CANON usa CANON customer
service CANON software customer service contact CANON customer service CANON
customer service phone CANON printer customer service CANON service CANON
printer technical support CANON printer customer support CANON technical
support reviews telephone CANON printer CANON tech support phone number CANON
CANON printer tech support phone number CANON CANON printer customer service
CANON technical support phone number CANON CANON printer free printer support
CANON customer service billing CANON customer service email address CANON
customer service reviews contact CANON customer service CANON tech support
number CANON usa CANON printer support number CANON CANON printer contact
number CANON CANON customer service phone number CANON CANON technical support
usa CANON technical support number CANON CANON tech support phone CANON tech
support number CANON CANON customer service telephone number CANON CANON
printer customer support number CANON CANON printer phone number CANON CANON
printer online support CANON customer service number CANON CANON tech support
center CANON customer service CANON software customer service CANON customer
care number CANON usa CANON customer number CANON CANON customer support number
CANON CANON customer care number CANON CANON customer care toll free number
CANON CANON tech support CANON technical support CANON printer support CANON
printer tech support CANON support center CANON.com customer service CANON
printer customer care number CANON CANON customer care CANON phone number CANON
phone number CANON for CANON customer service CANON phone support CANON phone
number CANON tech support CANON support phone number CANON contact CANON by
phone CANON contact phone number CANON CANON helpline phone number CANON CANON
printer phone CANON printer for phone CANON contact number CANON CANON contact
support contact CANON printer CANON contact number CANON usa CANON toll free
number CANON CANON telephone number CANON CANON toll free number CANON usa
CANON printer support services technical support for printer CANON CANON
customer service phone number CANON usa CANON printer customer care number
CANON usa CANON customer care number CANON CANON customer care center CANON
customer support CANON customer support phone CANON customer help CANON
customer & technical support CANON customer portal CANON customer care phone
number CANON usa CANON customer care email CANON helpline CANON tech support
contact CANON customer care toll free CANON printer customer service number
CANON CANON printer protection norton printer customer service number CANON
CANON software customer service number CANON CANON hotline customer service
phone number CANON CANON customer service phone number CANON us how to contact
CANON by email CANON free phone support CANON printer technical support number
CANON CANON printer technical support help desk phone number CANON CANON
technical support number CANON toll free number CANON CANON printer customer
support phone number CANON CANON printer customer
>From gcc-bugs-return-533968-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 20:19:40 2016
Return-Path: <gcc-bugs-return-533968-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 52030 invoked by alias); 10 Aug 2016 20:19:40 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 48270 invoked by uid 48); 10 Aug 2016 20:19:27 -0000
From: "gnu_andrew at member dot fsf.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/72895] $@^^1€0y0‘86^^@@%@%@$$ Canon Printer tech support phone number
Date: Wed, 10 Aug 2016 20:19:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: gnu_andrew at member dot fsf.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cc resolution
Message-ID: <bug-72895-4-g9AXDRckoL@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72895-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72895-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01304.txt.bz2
Content-length: 536

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72895

Andrew John Hughes <gnu_andrew at member dot fsf.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
                 CC|                            |gnu_andrew at member dot fsf.org
         Resolution|---                         |INVALID

--- Comment #1 from Andrew John Hughes <gnu_andrew at member dot fsf.org> ---
Spam.
>From gcc-bugs-return-533967-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 20:19:28 2016
Return-Path: <gcc-bugs-return-533967-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 48286 invoked by alias); 10 Aug 2016 20:19:28 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 40534 invoked by uid 48); 10 Aug 2016 20:19:15 -0000
From: "gnu_andrew at member dot fsf.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/72894] $@^^1…5p9(47^^@@%@%@$$ Hp Printer tech support phone number
Date: Wed, 10 Aug 2016 20:19:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: 4.0.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: gnu_andrew at member dot fsf.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cc resolution
Message-ID: <bug-72894-4-AeB4xzJTbo@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72894-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72894-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01303.txt.bz2
Content-length: 536

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72894

Andrew John Hughes <gnu_andrew at member dot fsf.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
                 CC|                            |gnu_andrew at member dot fsf.org
         Resolution|---                         |INVALID

--- Comment #1 from Andrew John Hughes <gnu_andrew at member dot fsf.org> ---
Spam.
>From gcc-bugs-return-533969-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 20:20:26 2016
Return-Path: <gcc-bugs-return-533969-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 58523 invoked by alias); 10 Aug 2016 20:20:25 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 58122 invoked by uid 48); 10 Aug 2016 20:20:15 -0000
From: "wschmidt at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72863] Powerpc64le: redundant swaps when using vec_vsx_ld/st
Date: Wed, 10 Aug 2016 20:20:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wschmidt at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72863-4-Ft36BRYNb6@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72863-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72863-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01305.txt.bz2
Content-length: 1476

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72863

--- Comment #3 from Bill Schmidt <wschmidt at gcc dot gnu.org> ---
This is a phase ordering issue involving the expanders for the built-ins.  In
vsx.md:

;; Explicit  load/store expanders for the builtin functions
(define_expand "vsx_load_<mode>"
  [(set (match_operand:VSX_M 0 "vsx_register_operand" "")
        (match_operand:VSX_M 1 "memory_operand" ""))]
  "VECTOR_MEM_VSX_P (<MODE>mode)"
  "")

(define_expand "vsx_store_<mode>"
  [(set (match_operand:VSX_M 0 "memory_operand" "")
        (match_operand:VSX_M 1 "vsx_register_operand" ""))]
  "VECTOR_MEM_VSX_P (<MODE>mode)"
  "")

This delays expanding into swaps until after the next split phase, instead of
right at expand time.  Since the swap optimization runs immediately following
expand, this is too late.

A normal assignment, on the other hand, goes through the mov expander in
vector.md, which takes us here:

  if (!BYTES_BIG_ENDIAN
      && VECTOR_MEM_VSX_P (<MODE>mode)
      && !TARGET_P9_VECTOR
      && !gpr_or_gpr_p (operands[0], operands[1])
      && (memory_operand (operands[0], <MODE>mode)
          ^ memory_operand (operands[1], <MODE>mode)))
    {
      rs6000_emit_le_vsx_move (operands[0], operands[1], <MODE>mode);
      DONE;
    }

thus generating the permuting load/store with the register permute.

We should be able to add similar logic to the intrinsic expanders in order to
get the swaps to show up in time to be optimized.
>From gcc-bugs-return-533972-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 20:23:46 2016
Return-Path: <gcc-bugs-return-533972-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 80175 invoked by alias); 10 Aug 2016 20:23:46 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 80089 invoked by uid 48); 10 Aug 2016 20:23:41 -0000
From: "shivangi114 at yopmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/73021] New: Canada>>>> 1 800-750-6584++ Norton 360 support phone number 1 800-750-6584usa/canad
Date: Wed, 10 Aug 2016 20:23:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: shivangi114 at yopmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73021-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01308.txt.bz2
Content-length: 8220

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73021

            Bug ID: 73021
           Summary: Canada>>>> 1 800-750-6584++ Norton 360 support phone
                    number 1 800-750-6584usa/canad
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ada
          Assignee: unassigned at gcc dot gnu.org
          Reporter: shivangi114 at yopmail dot com
  Target Milestone: ---

USA Canada>>>> 1 800-750-6584++ Norton 360 support phone number 1
800-750-6584usa/canada Norton 360 Tech Support Number
@@!1-800-750-6584;!!Norton 360 Support Number

Norton Live Support and Help‎ 18(00-750-6584 @@ Norton tech support phone
number
Norton Live Support and Help‎ 18(00-750-6584 @@ Norton tech support phone
number
Norton Live Support and Help‎ 18(00-750-6584 Norton 360 support phone number
usa
USA Canada>>>> 1 800-750-6584++ Norton 360 support phone number 1
800-750-6584usa/canada Norton 360 Tech Support Number
@@!1-800-750-6584;!!Norton 360 Support Number
WikiGenes- @+++1800-750-6584++000Norton 360 support phone
number18007506584usa/canada
Norton antivirus technical support phone number 1.800-750-6584
hdfc toll free customer care number(((!1.800-750-6584)) Norton 360 Tech Support
Number @@!1-800-750-6584!! Norton 360 Support Number
Norton toll free customer care number 1.800-750-6584
Norton toll free customer care number 1.800-750-6584
Norton toll free customer care number 1.800-750-6584
Norton toll free customer care number 1.800-750-6584>>>>>
Norton technical support phone number ((1.800-750-6584))
Norton technical support number 1.800-750-6584
Norton technical support number 1.800-750-6584
symantec technical support number 1.800-750-6584
Norton antivirus technical support number 1.800-750-6584
Norton support phone number 1.800-750-6584
Norton locations Norton 360 Tech Support Number @@!1-800-750-6584!! Norton 360
Support Number Norton 360 Tech Support Number @@!1-800-750-6584!! Norton 360
Support Number
Norton customer service
Norton antivirus customer care__Norton Support phone number 1.800-750-6584
Norton customer support phone number 1.800-750-6584
Norton customer support phone number 1.800-750-6584
Norton antivirus customer support phone number 1.800-750-6584Norton antivirus
customer service phone number 1.800-750-6584
Norton antivirus technical support phone number 1.800-750-6584
Norton antivirus tech support phone number 1.800-750-6584
Norton antivirus phone number 1.800-750-6584 Norton 360 Tech Support Number
@@!1-800-750-6584!! Norton 360 Support Number
Norton security center phone number 1.800-750-6584
Norton support telephone number 1.800-750-6584
Norton 360 technical support phone number 1.800-750-6584
symantec technical support phone number 1.800-750-6584
Norton tech support phone number 1.800-750-6584 Norton 360 Tech Support Number
@@!1-800-750-6584!! Norton 360 Support Number
apple technical support phone number 1.800-750-6584 usa
microsoft technical support phone number 1.800-750-6584 usa
gmail technical support phone number 1.800-750-6584 usa
kaspersky technical support phone number 1.800-750-6584 usa
lenovo technical support phone number 1.800-750-6584 usa
epson technical support phone number 1.800-750-6584 usa
Norton technical support phone number 1.800-750-6584 Norton 360 Tech Support
Number @@!1-800-750-6584!! Norton 360 Support Number
Norton AntiVirus Customer Service Phone Number #1: 800-750-6584
Norton Phone number 1-800-750-6584 Norton 360 phone number Norton 360 support
phone number
Free~* C@ll 1.800-750-6584 Norton 360 technical support phone number usa
1.800-750-6584 Norton 360 technical support phone number Norton free call
~* C@ll 1.800-750-6584 Norton 360 technical support phone number usa
1.800-750-6584 Norton 360 technical support phone number Norton free call
Norton 360 Tech Support Number @@!1-800-750-6584!! Norton 360 Support Number
PHONE support USA @1.800-750-6584 Norton antivirus technical support phone
number
Norton locations
Norton online support
Norton Support phone number 1.800-750-6584
Norton customer care Norton tech support phone number 1.800-750-6584
Norton tech support phone number 1.800-750-6584
Norton antivirus tech support phone number 1.800-750-6584
Norton locations Norton 360 Tech Support Number @@!1-800-750-6584!! Norton 360
Support Number
Norton Support phone number 1.800-750-6584
service Norton com
Norton login
Norton technical support phone number 1.800-750-6584
Norton customer service
Norton Support phone number 1.800-750-6584
Norton support telephone number 1.800-750-6584
Norton support phone number 1.800-750-6584
Norton antivirus support phone number 1.800-750-6584 Norton 360 Tech Support
Number @@!1-800-750-6584!! Norton 360 Support Number
Norton antivirus tech support phone number 1.800-750-6584
Norton antivirus customer service phone number 1.800-750-6584
Norton 360 technical support phone number 1.800-750-6584
symantec technical support phone number 1.800-750-6584
Norton technical support phone number 1.800-750-6584
Norton customer service telephone number 1.800-750-6584
Norton antivirus phone number 1.800-750-6584
Norton antivirus customer service phone number 1.800-750-6584
Norton antivirus customer service Support Norton 360 Tech Support Number
@@!1-800-750-6584!! Norton 360 Support Number
Norton antivirus phone number 1.800-750-6584
Norton phone number 1.800-750-6584 cancel subscription
Norton technical support phone number 1.800-750-6584
Norton 800 phone number 1.800-750-6584
snapdeal toll free customer care number 1.800-750-6584
sbi toll free customer care number 1.800-750-6584
airtel toll free customer care number 1.800-750-6584
Norton customer service number 1.800-750-6584
Norton call center Norton 360 Tech Support Number @@!1-800-750-6584!! Norton
360 Support Number
Norton customer service email address
Norton customer care no Norton 360 Tech Support Number @@!1-800-750-6584!!
Norton 360 Support Number
call Norton support
chat with Norton support
Norton customer support
Norton antivirus customer service number 1.800-750-6584
Norton Norton 360 Tech Support Number @@!1-800-750-6584!! Norton 360 Support
Number
Norton call center
Norton hq
Norton office locations
Norton support site
Norton telephone number 1.800-750-6584 for customer support
Norton customer service contact number 1.800-750-6584
Norton customer care
Norton toll free number 1.800-750-6584
Norton security contact number 1.800-750-6584
contact Vipre
Norton headquarters Norton 360 Tech Support Number @@!1-800-750-6584!! Norton
360 Support Number
Norton customer service chat
Norton customer service telephone number 1.800-750-6584
Norton Support phone number 1.800-750-6584
Norton customer support
Norton customer service refund
Norton login
Norton locations
Norton customer service number 1.800-750-6584 uk
Norton locations
Norton customer service email address
Norton support site Norton 360 Tech Support Number @@!1-800-750-6584!! Norton
360 Support Number
Norton technical support phone number 1.800-750-6584
Norton technical support live chat
Norton technical support email address
Norton technical support number 1.800-750-6584
Norton technical support number 1.800-750-6584 Norton 360 Tech Support Number
@@!1-800-750-6584!! Norton 360 Support Number
symantec technical support number 1.800-750-6584
Norton antivirus technical support number 1.800-750-6584
Norton customer support phone number 1.800-750-6584
Norton customer support number 1.800-750-6584
Norton customer support number 1.800-750-6584 Norton 360 Tech Support Number
@@!1-800-750-6584!! Norton 360 Support Number
Norton antivirus customer support number 1.800-750-6584
Norton locations Norton 360 Tech Support Number @@!1-800-750-6584!! Norton 360
Support Number
Norton Support phone number 1.800-750-6584
Norton corporate phone number 1.800-750-6584 Norton 360 Tech Support Number
@@!1-800-750-6584!! Norton 360 Support Number
Norton customer service Support
Norton technical support phone number 1.800-750-6584
Norton tech support phone number 1.800-750-6584
Norton tech support number 1.800-750-6584
Norton tech support number 1.800-750-6584 FREE
>From gcc-bugs-return-533970-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 20:23:28 2016
Return-Path: <gcc-bugs-return-533970-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 77244 invoked by alias); 10 Aug 2016 20:23:28 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 71625 invoked by uid 48); 10 Aug 2016 20:23:22 -0000
From: "sqj99355 at zasod dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/73019] New: $@^^1…5™0Y99^^@@%@%@$$ Avast antiviurs tech support number
Date: Wed, 10 Aug 2016 20:23:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: sqj99355 at zasod dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73019-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01306.txt.bz2
Content-length: 6898

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73019

            Bug ID: 73019
           Summary: $@^^1=855=990=5999^^@@%@%@$$ Avast antiviurs tech
                    support number
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: sqj99355 at zasod dot com
  Target Milestone: ---

Avast antivirus tech Support(+(1-855-990-5999)))number usa customer service
phone number
Avast antivirus tech Support(+(1-855-990-5999)))number usa customer service
phone number,Avast antivirus tech support number Avast customer service number
1855-990-5999 Avast call center 1855-990-5999 Avast customer service email
address 1855-990-5999 Avast customer care no 1855-990-5999 Avast antivirus
technical support phone number 1855-990-5999 Avast antivirus tech support phone
number 1855-990-5999 Avast antivirus customer service phone number
1855-990-5999 Avast 360 technical support phone number 1855-990-5999 symantec
technical support phone number 1855-990-5999 Avast technical support phone
number 1855-990-5999 Avast customer service telephone number 1855-990-5999
?Avast antivirus phone number 1855-990-5999 Avast antivirus customer service
phone number 1855-990-5999 Avast antivirus customer service helpdesk Avast
antivirus phone number 1855-990-5999 Avast phone number cancel subscription
1855-990-5999 Avast technical support phone number 1855-990-5999 Avast 855
phone number 1855-990-5999 Avast toll free customer care number sbi toll free
customer care number Avast 360 toll free customer care number toll free
customer care number Avast toll free customer care number icici toll free
customer care number flipkart toll free customer care number vodafone toll free
customer care number Avast technical support phone number Avast technical
support number Avast technical support number symantec technical support number
Avast antivirus technical support number Avast locations Avast online support
Avast helpdesk phone number Avast customer care Avast tech support phone number
Avast tech support phone number Avast antivirus tech support phone number Avast
locations Avast helpdesk phone number service Avast com Avast login Avast
technical support phone number Avast customer service Avast helpdesk phone
number Avast support telephone number Avast support phone number Avast
antivirus support phone number Avast support phone number Avast locations Avast
customer service Avast customer care Avast helpdesk phone number Avast customer
support phone number Avast customer support phone number Avast antivirus
customer support phone number Avast antivirus customer service phone number
Avast antivirus technical support phone number Avast antivirus tech support
phone number Avast antivirus phone number Avast security center phone number
Avast support telephone number Avast 360 technical support phone number
symantec technical support phone number Avast tech support phone number apple
technical support phone number usa microsoft technical support phone number usa
Avast technical support phone number usa Avast technical support phone number
usa lenovo technical support phone number usa epson technical support phone
number usa Avast technical support phone number call Avast support chat with
Avast support Avast customer support Avast antivirus customer service number
Avast address Avast call center Avast helpline Avast helpdesk Avast support
site Avast telephone number for customer support Avast customer service contact
number Avast customer care Avast toll free number Avast security contact number
contact Avast Avast headquarters Avast customer service chat Avast customer
service telephone number Avast helpdesk phone number Avast customer support
Avast customer service Avast login Avast locations Avast customer service
number Avast locations Avast customer service email address Avast support site
Avast technical support phone number Avast technical support live chat Avast
technical support email address Avast technical support number Avast technical
support number symantec technical support number Avast antivirus technical
support number Avast customer support phone number Avast customer support
number Avast customer support number Avast antivirus customer support number
Avast locations Avast helpdesk phone number Avast support phone number Avast
customer service helpdesk Avast technical support phone number Avast tech
support phone number Avast tech support number Avast tech support numberAvast
360 customer service phone number usa Avast phone number canada Avast phone
number customer services Avast helpline number Avast antivirus contact number
canada Avast phone number Avast antivirus customer service phone number us what
is the phone number for Avast customer service Avast contact number Avast 360
customer service phone number Avast 360 support phone number usa Avast toll
free number usa Avast contact phone number Avast antivirus phone number Avast
antivirus customer service phone number Avast support phone number Avast
support phone number canada Avast technical support phone number canada Avast
abrasives phone number Avast security phone contact number Avast internet
security customer service phone number Avast telephone number Avast canada
phone number Avast security telephone number Avast antivirus contact number us
Avast phone number Avast phone number Avast antivirus customer care number
Avast 360 customer service phone number canada Avast internet security number
Avast software customer service number Avast internet security telephone number
Avast anti virus contact number Avast virus protection phone number Avast virus
protection contact number Avast antivirus phone number Avast antivirus help
desk phone number Avast tech support phone number us Avast helpline phone
number Avast internet security contact phone number Avast customer care number
usa Avast antivirus contact number Avast customer support phone number canada
Avast department number Avast antivirus contact number Avast antivirus customer
service phone number canada Avast customer support number usa number for Avast
antivirus Avast support number Avast support number Avast 360 contact number
Avast symantec phone numberhttps://gcc.gnu.org/bugzilla/show_bug.cgi?id=73003
  Avast 360 contact number Avast contact number canada Avast antivirus toll
free number usa Avast internet security contact phone number Avast contact
number usa Avast antivirus canada contact phone number Avast support number usa
Avast support phone number Avast customer care number Avast contact phone
number Avast number Avast internet security toll free number phone number for
Avast antivirus Avast cinema phone number Avast
>From gcc-bugs-return-533971-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 20:23:46 2016
Return-Path: <gcc-bugs-return-533971-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 80163 invoked by alias); 10 Aug 2016 20:23:45 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 79474 invoked by uid 48); 10 Aug 2016 20:23:33 -0000
From: "gsjhsu at yopmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/73020] New: $@$@^^^^^18007909186@$$@$$$$^^^^^^*** Epson printer technical support number.....
Date: Wed, 10 Aug 2016 20:23:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: gsjhsu at yopmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73020-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01307.txt.bz2
Content-length: 14348

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73020

            Bug ID: 73020
           Summary: $@$@^^^^^18007909186@$$@$$$$^^^^^^*** Epson printer
                    technical support number.....
           Product: gcc
           Version: 6.1.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ada
          Assignee: unassigned at gcc dot gnu.org
          Reporter: gsjhsu at yopmail dot com
  Target Milestone: ---

$@$@^^^^^18007909186@$$@$$$$^^^^^^*** Epson printer technical support
number.....
+1-800-790-9186) Technical support number
1-800-790-9186 EPSON Printer Technical Support
1-800-790-9186 contact EPSON Printer customer service phone number
1-800-790-9186 phone number for EPSON customer service
1-800-790-9186 phone number for EPSON Printer technical support
1-800-790-9186 phone number for EPSON Printer customer service
phone number for EPSON Printer technical support
phone number for EPSON security
EPSON Printer customer care phone number
EPSON Printer customer service billing
EPSON Printer customer service email address
EPSON Printer customer service live chat
EPSON Printer customer service telephone number
EPSON Printer customer support usa phone number
EPSON Printer help desk support phone number free in usa
EPSON Printer phone number customer service us
EPSON Printer phone number support
EPSON Printer support phone number
EPSON Printer tech support phone number free in usa
EPSON Printer tech support phone number
EPSON Printer technical support customer service
EPSON Printer technical support number
EPSON Printer telephone number
EPSON Printer toll free customer care number
EPSON Printer toll free number in usa
EPSON Printer contact phone number in usa
EPSON Printer customer service number
EPSON Printer customer service phone number
EPSON Printer customer service telephone number
EPSON Printer customer support number
EPSON Printer customer support phone number
EPSON Printer customer support phone number
EPSON Printer help desk phone number in usa
EPSON Printer phone number
EPSON Printer phone number support for technical issue in usa
EPSON Printer support phone number
EPSON Printer technical support help desk phone number
EPSON Printer technical support number
EPSON Printer technical support phone number
EPSON customer service number
EPSON customer service telephone number
EPSON customer services email
EPSON customer support email address
EPSON customer support number
EPSON customer support phone number
EPSON customer service phone number
EPSON internet security contact phone number
EPSON internet security customer service phone number
EPSON internet security phone number
EPSON internet security help phone number
EPSON internet security phone number in usa
EPSON internet security support phone number
EPSON internet security technical support
EPSON phone number customer service
EPSON phone numbers customer support
EPSON phone support number
EPSON security contact phone number
EPSON security phone number customer service
EPSON security support phone number
EPSON support contact number
EPSON support email address
EPSON support phone number
EPSON support telephone number
EPSON support telephone number usa
EPSON support telephone number
EPSON tech support number
EPSON tech support phone number
EPSON tech support phone number free
EPSON technical support phone number
EPSON technical support cutomer phone number
EPSON technical support phone number
EPSON technical support number free in usa
EPSON technical support number toll free number
EPSON technical support phone number
EPSON technologies phone number
EPSON telephone support number
EPSON Printer customer support phone number
EPSON Printer customer service phone number
EPSON customer support phone number
EPSON phone number customer service
EPSON technical support telephone number
contact EPSON Printer customer service phone number
customer service number for EPSON Printer
phone number for EPSON Printer
phone number for EPSON Printer customer service
phone number for EPSON Printer support
phone number for EPSON customer service
phone number for EPSON customer service
phone number for EPSON customer support
phone number for EPSON tech support
phone number EPSON Printer customer service
EPSON Printer customer service number
EPSON Printer customer service phone
EPSON Printer customer service phone number
EPSON Printer customer service phone number us
EPSON Printer customer service telephone number
EPSON Printer customer support
EPSON Printer customer support number
EPSON Printer phone number customer service us
EPSON Printer phone number support
EPSON Printer phone support
EPSON Printer phone support number
EPSON Printer support phone number
EPSON Printer tech support phone number
EPSON Printer technical support
EPSON Printer technical support number
EPSON Printer technical support phone number
EPSON customer service phone number
EPSON customer support phone number
EPSON helpline phone number
EPSON internet security customer service
EPSON internet security customer service phone number
EPSON internet security help phone number
EPSON internet security phone number customer service
EPSON phone number customer service
EPSON phone number customer support
EPSON security customer service phone number
EPSON security phone number customer service
EPSON support phone number
EPSON support telephone number
EPSON tech support number
EPSON tech support phone number
EPSON technical support
EPSON technical support number
EPSON technical support phone number
EPSON Printer customer support phone number
EPSON Printer phone number customer service
EPSON Printer tech support number
EPSON customer service phone number
EPSON customer service phone numbers
EPSON internet security technical support
EPSON tech support phone number us
EPSON technical support telephone number
contact EPSON Printer
contact EPSON by phone
contact EPSON customer service
contact EPSON Printer customer service phone number
contactEPSON Printer tech support usa
customer service EPSON phone number
download EPSON titanium
dri EPSON customer service number
dri EPSON customer service phone number
dri EPSON phone number
how to contact EPSON by email
how to delete EPSON from mac
micro trend customer service
norton Printer customer service number
phone number for EPSON customer service
phone number forEPSON customer service
phone number forEPSON customer support
phone number forEPSON tech support
phone number forEPSON technical support
phone number for EPSON Printer technical support
phone number for EPSON security
phone number for EPSON support
phone number for EPSON technical support
phone number for EPSON Printer customer service
phone number for EPSON customer service
remove EPSON from mac
technical support for Printer EPSON
telephone number forEPSON technical support
telephone EPSON Printer
EPSON Printer contact number
EPSON Printer customer care
EPSON Printer customer care number
EPSON Printer customer care number usa
EPSON Printer customer service
EPSON Printer customer service number :idea: :evil: :D :) :lol: :( :o :shock:
EPSON Printer customer service phone number
EPSON Printer customer service phone number usa
EPSON Printer customer service telephone number
EPSON Printer customer support
EPSON Printer customer support in usa
EPSON Printer customer support number
EPSON Printer customer support phone number
EPSON Printer for phone
EPSON Printer free Printer support
EPSON Printer help phone number
EPSON Printer helpline number
EPSON Printer online support
EPSON Printer phone
EPSON Printer phone number
EPSON Printer phone number in usa
EPSON Printer phone number usa
EPSON Printer phone support
EPSON Printer plus tech support
EPSON Printer protection
EPSON Printer support
EPSON Printer support number
EPSON Printer support phone number
EPSON Printer support services
EPSON Printer support telephone number
EPSON Printer tech support
EPSON Printer tech support phone number free in usa
EPSON Printer tech support number
EPSON Printer tech support phone number
EPSON Printer technical support
EPSON Printer technical support number
EPSON Printer technical support phone number
EPSON Printer toll free customer care number
EPSON Printer toll free number
EPSON Printer contact phone number in usa
EPSON Printer help desk phone number in usa
EPSON Printer phone number support for technical issue in usa
EPSON Printer support phone number
EPSON Printer technical support help desk phone number
EPSON Printer technical support phone number
EPSON contact number
EPSON contact number usa
EPSON contact phone number
EPSON contact support
EPSON contact number usa
EPSON contact phone number
EPSON contact phone number usa
EPSON customer & technical support
EPSON customer care
EPSON customer care center
EPSON customer care email
EPSON customer care number
EPSON customer care number
EPSON customer care number usa
EPSON customer care number usa toll free
EPSON customer care phone number usa
EPSON customer care tchnical support
EPSON customer care toll free
EPSON customer care toll free number
EPSON customer care usa
EPSON customer help
EPSON customer number
EPSON customer portal
EPSON customer service
EPSON customer service billing
EPSON customer service email address
EPSON customer service number
EPSON customer service phone
EPSON customer service phone number
EPSON customer service phone number us
EPSON customer service phone number usa
EPSON customer service reviews
EPSON customer service telephone number
EPSON customer service usa
EPSON customer support
EPSON customer support number
EPSON customer support phone
EPSON customer support phone number
EPSON customer service number
EPSON customer service number usa
EPSON customer service phone number
EPSON customer support number
EPSON customer support phone number
EPSON free phone support
EPSON gold support phone number
EPSON help desk phone number
EPSON help phone number
EPSON helpline
EPSON helpline phone number
EPSON hotline customer service phone number
EPSON internet security customer service
EPSON internet security phone number
EPSON internet security phone number in usa
EPSON lab usa customer service
EPSON labs usa customer serviceEPSON
EPSON phone number
EPSON phone number customer service
EPSON phone number support
EPSON phone number tech support
EPSON phone number technical support
EPSON phone numbers customer support
EPSON phone support
EPSON phone support number
EPSON phone number customer service
EPSON phone number support
EPSON phone number tech support
EPSON phone number usa
EPSON security contact phone number
EPSON security phone number
EPSON security support phone number
EPSON software customer service
EPSON software customer service number
EPSON support center
EPSON support contact number
EPSON support email address
EPSON support phone number
EPSON support telephone number
EPSON support number usa
EPSON support phone number
EPSON support phone number usa
EPSON tech support
EPSON tech support center
EPSON tech support contact
EPSON tech support number
EPSON tech support number usa
EPSON tech support phone
EPSON tech support phone number
EPSON tech support phone number free
EPSON tech support number
EPSON tech support number usa
EPSON tech support phone number
EPSON technical support
EPSON technical support number
EPSON technical support phone number
EPSON technical support phone number usa
EPSON technical support reviews
EPSON technical support usa
EPSON technical support phone number
EPSON technical support number
EPSON technical support number toll free number
EPSON technical support number usa
EPSON technical support phone number
EPSON technical support phone number usa
EPSON technologies phone number
EPSON telephone number
EPSON telephone support number
EPSON toll free number
EPSON toll free number usa
EPSON usa customer care for tech support
EPSON usa customer service
EPSON usa phone number
EPSON Printer customer service phone number
EPSON Printer customer service phone number
EPSON Printer customer support phone number
EPSON Printer customer support phone number
EPSON Printer technical support number
EPSON customer service phone number usa
EPSON internet security support phone number
EPSON.com customer service
EPSON Printer antispyware 2011
EPSON Printer customer support
EPSON Printer serial key
EPSON Printer serial number
EPSON Printer support
EPSON Printer technical support
EPSON business support
EPSON contact support
EPSON customer care number
EPSON customer service 800
EPSON customer service number
EPSON customer service phone number
EPSON customer service telephone number
EPSON customer support
EPSON grentry non payment
EPSON helpline support number
EPSON internet security customer service
EPSON internet security technical support
EPSON oem customer service
EPSON pc cillin technical support
EPSON phone support
EPSON removal tool download
EPSON subscription renewal
EPSON support contact
EPSON support hotline
EPSON support phone number
EPSON tech support phone number
EPSON technical support
EPSON technical support chat
EPSON technical support phone number
EPSON technical support phone number usa
EPSON telephone number
EPSON titanium Printer
EPSON titanium internet security
EPSON titanium maximum
EPSON titanium maximum security
EPSON titanium problems
EPSON titanium removal tool
EPSON titanium reviews
EPSON titanium support
EPSON virus removal service
uninstall EPSON smart surfing for mac
usa customer care number for EPSON Printer
$#@!~_)(*&^%$#@!~+_)(*&^%$#@!~+_)(*&^%$#@!~+_)(*&^%%$#@!~+_)(*&^%$#@!()_~!@#$%^&*()+_)(*&^%$#@!~~!@#$%^&*()_++_)(*&^%$#@!~!@#$%^&*()_++++++_@!~~!@#$%^&*()_+~!@#$%^&*()_+~!@#$%^&*()_+~!@#$%^&*()_+~!@#$%^&*()_++_)(*&^%$#@!~+_)(*&^%$#@!~_)(*&^%$#@!~+_)(*&^%$#@!~+_)(*&^%$#@!~+_)(*&^%)(*&^%$#@!~!@#$%^&*()_+++_)(*&^%$#@!~~!@#$%^&*()_++++_)(*&^%$#@!~!@#$%^@!~~!@#$%^&*()_+~!@#$%^&*()_+~!@#$%^&*()_+~!@#$%^&*()_+~!@#$%^&*()_++_)(*&^%$#@!~+_)(*&^%$#@!~_)(*&^%$#@!~+_)(*&^%$#@!~+_)(*&^%$#@!~+_)(*&^%%$#@!~+_)(*&^%$#@!()_~!@#$%^&*()+_)(*&^%$#@!~~!@#$%^&*()_++_)(*&^%$#@!~~!@#$%^&*()_+_)(*&^%$#@!~+_)(*&^%$#@!~+_)(*&^%$#@!~~!@#$%^&*()_+~!@#$%^&*()_+~!@#$%^&*()_+~!@#$%^&*()_+~!@#$%^&*()_++_)(*&#@!~!@#$%^@!~~!@#$%^&*()_+~!@#$%^&*()_+~!@#$%^&*()_+~!@#$%^&*()_+~!@#$%^&*()_++_)(*&^%$#@!~+_)(*&^%$#@!~_)(*&^%$#@!~+_)(*&^%$#@!~+_)(*&^%$#@!~+_
>From gcc-bugs-return-533973-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 20:25:43 2016
Return-Path: <gcc-bugs-return-533973-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 83275 invoked by alias); 10 Aug 2016 20:25:43 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 83138 invoked by uid 48); 10 Aug 2016 20:25:30 -0000
From: "gsjhsu at yopmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: =?UTF-8?B?W0J1ZyBhZGEvNzMwMjRdIE5ldzogMTgwMCA3OTAgOTE4NiAtQXBwbGXCriBN?= =?UTF-8?B?YWNCb29rIFBybyBTdXBwb3J0LCBBcHBsZcKuIE1hY0Jvb2sgUHJvIEhlbHAs?= =?UTF-8?B?IEFwcGxlwq4gTWFjQm9vayBQcm8gVGVjaCBTdXBwb3J0?Date: Wed, 10 Aug 2016 20:25:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: gsjhsu at yopmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73024-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01309.txt.bz2
Content-length: 39741

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73024

            Bug ID: 73024
           Summary: 1800 790 9186 -Apple® MacBook Pro Support, Apple®
                    MacBook Pro Help, Apple® MacBook Pro Tech Support
           Product: gcc
           Version: 5.4.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ada
          Assignee: unassigned at gcc dot gnu.org
          Reporter: gsjhsu at yopmail dot com
  Target Milestone: ---

1800 790 9186 -Apple® MacBook Pro Support, Apple® MacBook Pro Help, Apple®
MacBook Pro Tech Support
1 Dial Now--1-800-790-9186
1.1 Instant Help@ 18.00.79.091.86 MacBook Pro Email Helpline Phone Number,
MacBook Pro Phone Number
2 MacBook Pro Contact Number 1 800 790 9186
2.1 MacBook Pro Email Contact Phone Number 1 800 790 9186 Toll free Number
2.1.1 MacBook Pro Customer Care Phone Number 1 800 790 9186 TFN
2.1.1.1 MacBook Pro Mail Help Phone Number 18007909186 Free Number
2.1.1.1.1 MacBook Pro Email Technical Support Phone Number 1 800 790 9186
3 MacBook Pro Contact Number 1 800 790 9186
3.1 MacBook Pro Email Contact Phone Number 1 800 790 9186 Toll free Number
3.1.1 MacBook Pro Customer Care Phone Number 1 800 790 9186 TFN
3.1.1.1 MacBook Pro Mail Help Phone Number 18007909186 Free Number
3.1.1.1.1 MacBook Pro Email Technical Support Phone Number 1 800 790 9186
4 MacBook Pro Contact Number 1 800 790 9186
4.1 MacBook Pro Email Contact Phone Number 1 800 790 9186 Toll free Number
4.1.1 MacBook Pro Customer Care Phone Number 1 800 790 9186 TFN
4.1.1.1 MacBook Pro Mail Help Phone Number 18007909186 Free Number
4.1.1.1.1 MacBook Pro Email Technical Support Phone Number 1 800 790 9186
Dial Now--1-800-790-9186

Instant Help@ 18007909186 MacBook Pro Email Helpline Phone Number, MacBook Pro
Phone Number[edit]

MacBook Pro Contact Number 1 800 790 9186[edit]

MacBook Pro Customer Service phone number,MacBook Pro helpline phone number
here. Describe MacBook Pro help desk phone number,MacBook Pro helpline phone
number here. MacBook Pro Payroll support phone number, 1-800-790-9186 MacBook
Pro tech support number Call, 1-800-790-9186 for all type help by MacBook Pro
tech support phone number, 1800-790-9186 Intuit MacBook Pro Tech Support Phone
Number, 1800-790-9186 MacBook Pro Help Desk Phone Number, 1800-790-9186 MacBook
Pro tech support number, MacBook Pro technical support phone number,
1800-790-9186 @ MacBook Pro phone number, 1800-790-9186 MacBook Pro technical
support number, 1800-790-9186 MacBook Pro support phone number, 1800-790-9186
MacBook Pro technical support, MacBook Pro Customer Service Phone Number,
MacBook Pro Customer Service Number, MacBook Pro Customer Support Phone Number,
MacBook Pro Customer Support Number, MacBook Pro Customer Service Helpline
Number, MacBook Pro Customer Care Number, MacBook Pro support team phone
number, MacBook Pro help number-MacBook Pro Helpline Number; MacBook Pro help
phone number-MacBook Pro Helpline Number, MacBook Pro Tech Support Toll free
Number, MacBook Pro Support Telephone Number, MacBook Pro Tech Support
Telephone number, MacBook Pro Tech Support contact number, MacBook Pro support
contact number, MacBook Pro technical support contact number. Call, MacBook Pro
tech support phone number, Intuit MacBook Pro Tech Support Phone Number,
MacBook Pro Help Desk Phone Number, MacBook Pro tech support number, MacBook
Pro technical support phone number, MacBook Pro phone number, MacBook Pro
technical support number
MacBook Pro Email Contact Phone Number 1 800 790 9186 Toll free Number[edit]

MacBook Pro support phone number. It is very popular toll free number which
payroll vide by MacBook Pro technical support, MacBook Pro Customer Service
Phone Number, MacBook Pro Customer Service Number, MacBook Pro Customer Support
Phone Number, MacBook Pro Customer Support Number, MacBook Pro Customer Service
Helpline Number, MacBook Pro Customer Care Number, MacBook Pro support team
phone number. Call, MacBook Pro tech support phone number, Intuit MacBook Pro
Tech Support Phone Number, MacBook Pro Help Desk Phone Number, MacBook Pro tech
support number, MacBook Pro technical support phone number, MacBook Pro phone
number, MacBook Pro technical support number, MacBook Pro support phone number,
MacBook Pro technical support, MacBook Pro Customer Service Phone Number,
MacBook Pro Customer Service Number, MacBook Pro Customer Support Phone Number,
MacBook Pro Customer Support Number, MacBook Pro Customer Service Helpline
Number, MacBook Pro Customer Care Number, MacBook Pro support team phone
number, MacBook Pro help number-MacBook Pro Helpline Number; MacBook Pro help
phone number, MacBook Pro Helpline Number, MacBook Pro Tech Support Toll free
Number, MacBook Pro Support Telephone Number, MacBook Pro Tech Support
Telephone number, MacBook Pro Tech Support contact number, MacBook Pro support
contact number, MacBook Pro technical support contact number, MacBook Pro
support phone number, MacBook Pro support phone number. MacBook Pro customer
support phone number MacBook Pro Support Helpline Number, MacBook Pro contact
number MacBook Pro tech support phone number MacBook Pro support team phone
number MacBook Pro contact number 1800-790-9186 MacBook Pro technical help
telephone number, MacBook Pro technical help contact number, MacBook Pro
technical support contact number, MacBook Pro contact number, MacBook Pro
contact phone number, MacBook Pro contact telephone number, MacBook Pro 24 hour
contact number, MacBook Pro customer support contact number, MacBook Pro
customer service contact number, MacBook Pro official number, MacBook Pro
official contact number, MacBook Pro 800 contact number, MacBook Pro toll free
number, 800 number for MacBook Pro support, MacBook Pro 24/7 support phone
number MacBook Pro support phone number,MacBook Pro support phone
number,MacBook Pro help phone number, MacBook Pro technical support
number.MacBook Pro support number, MacBook Pro phone number, MacBook Pro tech
support number, MacBook Pro customer support number, MacBook Pro customer
support phone number, MacBook Pro customer service phone number, MacBook Pro
customer service phone number, MacBook Pro support phone number.Help@Call
1-800-790-9186/.MacBook Pro 24/7 support phone number,MacBook Pro telephone
number for support? call 1800-790-9186@./MacBook Pro contact number, MacBook
Pro contact phone number, MacBook Pro contact telephone number telephone number
for MacBook Pro online support,MacBook Pro official support number,MacBook Pro
official number,MacBook Pro official phone number,phone number for MacBook Pro
support MacBook Pro 24/7 support phone number MacBook Pro support
number,MacBook Pro telephone number for support
MacBook Pro Customer Care Phone Number 1 800 790 9186 TFN[edit]
MacBook Pro phone number,(1-800-790-9186) MacBook Pro customer care number
MacBook Pro Toll Free, Intuit@(1-800.790-9186)@: MacBook Pro Technical Support
Number, MacBook Pro help desk phone number payroll vides online solution for
all USA/CANADA clients. For any help of query call 1 800 790 9186 to get all
MacBook Pro account solution. For any help of query call 1 800 790 9186 to get
all MacBook Pro account solution. @@Call, 1-800-790-9186 for all type help by
MacBook Pro support telephone number,MacBook Pro support phone number,MacBook
Pro support phone number,MacBook Pro help phone number, MacBook Pro technical
support number.MacBook Pro support number, MacBook Pro phone number, MacBook
Pro tech support number, MacBook Pro customer support number, MacBook Pro
customer support phone number, MacBook Pro customer service phone number,
MacBook Pro customer service phone number, MacBook Pro support phone number
MacBook Pro help number-MacBook Pro Helpline Number; MacBook Pro help phone
number-MacBook Pro Helpline Number, MacBook Pro Tech Support Toll free Number,
MacBook Pro Support Telephone Number, MacBook Pro Tech Support Telephone
number, MacBook Pro Tech Support contact number, MacBook Pro support contact
number, MacBook Pro technical support contact number, MacBook Pro help desk
phone number. Call, @(1-800-790-9186)@: It is very popular toll free number
which payroll vide by MacBook Pro technical support, MacBook Pro Customer
Service Phone Number, MacBook Pro Customer Service Number, MacBook Pro Customer
Support Phone Number, MacBook Pro Customer Support Number, MacBook Pro Customer
Service Helpline Number, MacBook Pro Customer Care Number, MacBook Pro support
team phone number. Call,@(1-800-790-9186)@-: MacBook Pro help number-MacBook
Pro Helpline Number; MacBook Pro help phone number, MacBook Pro Helpline
Number, MacBook Pro Tech Support Toll free Number, MacBook Pro Support
Telephone Number, MacBook Pro Tech Support Telephone number, MacBook Pro Tech
Support contact number, MacBook Pro support contact number, MacBook Pro
technical support contact number, MacBook Pro support phone number, MacBook Pro
support phone number. MacBook Pro customer support phone number for all type
help by MacBook Pro support telephone number, MacBook Pro help phone number,
MacBook Pro technical support number.MacBook Pro support number, MacBook Pro
phone number, MacBook Pro tech support number, MacBook Pro customer support
number, MacBook Pro customer support phone number, MacBook Pro customer service
phone number, MacBook Pro customer service phone number
MacBook Pro Mail Help Phone Number 18007909186 Free Number[edit]
MacBook Pro Customer Service phone number,MacBook Pro helpline phone number
here. Describe MacBook Pro help desk phone number,MacBook Pro helpline phone
number here. MacBook Pro Payroll support phone number, 1-800-790-9186 MacBook
Pro tech support number Call, 1-800-790-9186 for all type help by MacBook Pro
tech support phone number, 1800-790-9186 Intuit MacBook Pro Tech Support Phone
Number, 1800-790-9186 MacBook Pro Help Desk Phone Number, 1800-790-9186 MacBook
Pro tech support number, MacBook Pro technical support phone number,
1800-790-9186 @ MacBook Pro phone number, 1800-790-9186 MacBook Pro technical
support number, 1800-790-9186 MacBook Pro support phone number, 1800-790-9186
MacBook Pro technical support, MacBook Pro Customer Service Phone Number,
MacBook Pro Customer Service Number, MacBook Pro Customer Support Phone Number,
MacBook Pro Customer Support Number, MacBook Pro Customer Service Helpline
Number, MacBook Pro Customer Care Number, MacBook Pro support team phone
number, MacBook Pro help number-MacBook Pro Helpline Number; MacBook Pro help
phone number-MacBook Pro Helpline Number, MacBook Pro Tech Support Toll free
Number, MacBook Pro Support Telephone Number, MacBook Pro Tech Support
Telephone number, MacBook Pro Tech Support contact number, MacBook Pro support
contact number, MacBook Pro technical support contact number. Call, MacBook Pro
tech support phone number, Intuit MacBook Pro Tech Support Phone Number,
MacBook Pro Help Desk Phone Number, MacBook Pro tech support number, MacBook
Pro technical support phone number, MacBook Pro phone number, MacBook Pro
technical support number
MacBook Pro Email Technical Support Phone Number 1 800 790 9186[edit]
MacBook Pro support phone number. It is very popular toll free number which
payroll vied by MacBook Pro technical support, MacBook Pro Customer Service
Phone Number, MacBook Pro Customer Service Number, MacBook Pro Customer Support
Phone Number, MacBook Pro Customer Support Number, MacBook Pro Customer Service
Helpline Number, MacBook Pro Customer Care Number, MacBook Pro support team
phone number. Call, MacBook Pro tech support phone number, Intuit MacBook Pro
Tech Support Phone Number, MacBook Pro Help Desk Phone Number, MacBook Pro tech
support number, MacBook Pro technical support phone number, MacBook Pro phone
number, MacBook Pro technical support number, MacBook Pro support phone number,
MacBook Pro technical support, MacBook Pro Customer Service Phone Number,
MacBook Pro Customer Service Number, MacBook Pro Customer Support Phone Number,
MacBook Pro Customer Support Number, MacBook Pro Customer Service Helpline
Number, MacBook Pro Customer Care Number, MacBook Pro support team phone
number, MacBook Pro help number-MacBook Pro Helpline Number; MacBook Pro help
phone number, MacBook Pro Helpline Number, MacBook Pro Tech Support Toll free
Number, MacBook Pro Support Telephone Number, MacBook Pro Tech Support
Telephone number, MacBook Pro Tech Support contact number, MacBook Pro support
contact number, MacBook Pro technical support contact number, MacBook Pro
support phone number, MacBook Pro support phone number. MacBook Pro customer
support phone number MacBook Pro Support Helpline Number, MacBook Pro contact
number MacBook Pro tech support phone number MacBook Pro support team phone
number MacBook Pro contact number 1800-790-9186 MacBook Pro technical help
telephone number, MacBook Pro technical help contact number, MacBook Pro
technical support contact number, MacBook Pro contact number, MacBook Pro
contact phone number, MacBook Pro contact telephone number, MacBook Pro 24 hour
contact number, MacBook Pro customer support contact number, MacBook Pro
customer service contact number, MacBook Pro official number, MacBook Pro
official contact number, MacBook Pro 800 contact number, MacBook Pro toll free
number, 800 number for MacBook Pro support, MacBook Pro 24/7 support phone
number MacBook Pro support phone number,MacBook Pro support phone
number,MacBook Pro help phone number, MacBook Pro technical support
number.MacBook Pro support number, MacBook Pro phone number, MacBook Pro tech
support number, MacBook Pro customer support number, MacBook Pro customer
support phone number, MacBook Pro customer service phone number, MacBook Pro
customer service phone number, MacBook Pro support phone number.Help@Call
1-800-790-9186/.MacBook Pro 24/7 support phone number,MacBook Pro telephone
number for support? call 1800-790-9186@./MacBook Pro contact number, MacBook
Pro contact phone number, MacBook Pro contact telephone number telephone number
for MacBook Pro online support,MacBook Pro official support number,MacBook Pro
official number,MacBook Pro official phone number,phone number for MacBook Pro
support MacBook Pro 24/7 support phone number MacBook Pro support
number,MacBook Pro telephone number for support "
MacBook Pro Contact Number 1 800 790 9186[edit]

MacBook Pro Customer Service phone number,MacBook Pro helpline phone number
here. Describe MacBook Pro help desk phone number,MacBook Pro helpline phone
number here. MacBook Pro Payroll support phone number, 1-800-790-9186 MacBook
Pro tech support number Call, 1-800-790-9186 for all type help by MacBook Pro
tech support phone number, 1800-790-9186 Intuit MacBook Pro Tech Support Phone
Number, 1800-790-9186 MacBook Pro Help Desk Phone Number, 1800-790-9186 MacBook
Pro tech support number, MacBook Pro technical support phone number,
1800-790-9186 @ MacBook Pro phone number, 1800-790-9186 MacBook Pro technical
support number, 1800-790-9186 MacBook Pro support phone number, 1800-790-9186
MacBook Pro technical support, MacBook Pro Customer Service Phone Number,
MacBook Pro Customer Service Number, MacBook Pro Customer Support Phone Number,
MacBook Pro Customer Support Number, MacBook Pro Customer Service Helpline
Number, MacBook Pro Customer Care Number, MacBook Pro support team phone
number, MacBook Pro help number-MacBook Pro Helpline Number; MacBook Pro help
phone number-MacBook Pro Helpline Number, MacBook Pro Tech Support Toll free
Number, MacBook Pro Support Telephone Number, MacBook Pro Tech Support
Telephone number, MacBook Pro Tech Support contact number, MacBook Pro support
contact number, MacBook Pro technical support contact number. Call, MacBook Pro
tech support phone number, Intuit MacBook Pro Tech Support Phone Number,
MacBook Pro Help Desk Phone Number, MacBook Pro tech support number, MacBook
Pro technical support phone number, MacBook Pro phone number, MacBook Pro
technical support number
MacBook Pro Email Contact Phone Number 1 800 790 9186 Toll free Number[edit]

MacBook Pro support phone number. It is very popular toll free number which
payroll vide by MacBook Pro technical support, MacBook Pro Customer Service
Phone Number, MacBook Pro Customer Service Number, MacBook Pro Customer Support
Phone Number, MacBook Pro Customer Support Number, MacBook Pro Customer Service
Helpline Number, MacBook Pro Customer Care Number, MacBook Pro support team
phone number. Call, MacBook Pro tech support phone number, Intuit MacBook Pro
Tech Support Phone Number, MacBook Pro Help Desk Phone Number, MacBook Pro tech
support number, MacBook Pro technical support phone number, MacBook Pro phone
number, MacBook Pro technical support number, MacBook Pro support phone number,
MacBook Pro technical support, MacBook Pro Customer Service Phone Number,
MacBook Pro Customer Service Number, MacBook Pro Customer Support Phone Number,
MacBook Pro Customer Support Number, MacBook Pro Customer Service Helpline
Number, MacBook Pro Customer Care Number, MacBook Pro support team phone
number, MacBook Pro help number-MacBook Pro Helpline Number; MacBook Pro help
phone number, MacBook Pro Helpline Number, MacBook Pro Tech Support Toll free
Number, MacBook Pro Support Telephone Number, MacBook Pro Tech Support
Telephone number, MacBook Pro Tech Support contact number, MacBook Pro support
contact number, MacBook Pro technical support contact number, MacBook Pro
support phone number, MacBook Pro support phone number. MacBook Pro customer
support phone number MacBook Pro Support Helpline Number, MacBook Pro contact
number MacBook Pro tech support phone number MacBook Pro support team phone
number MacBook Pro contact number 1800-790-9186 MacBook Pro technical help
telephone number, MacBook Pro technical help contact number, MacBook Pro
technical support contact number, MacBook Pro contact number, MacBook Pro
contact phone number, MacBook Pro contact telephone number, MacBook Pro 24 hour
contact number, MacBook Pro customer support contact number, MacBook Pro
customer service contact number, MacBook Pro official number, MacBook Pro
official contact number, MacBook Pro 800 contact number, MacBook Pro toll free
number, 800 number for MacBook Pro support, MacBook Pro 24/7 support phone
number MacBook Pro support phone number,MacBook Pro support phone
number,MacBook Pro help phone number, MacBook Pro technical support
number.MacBook Pro support number, MacBook Pro phone number, MacBook Pro tech
support number, MacBook Pro customer support number, MacBook Pro customer
support phone number, MacBook Pro customer service phone number, MacBook Pro
customer service phone number, MacBook Pro support phone number.Help@Call
1-800-790-9186/.MacBook Pro 24/7 support phone number,MacBook Pro telephone
number for support? call 1800-790-9186@./MacBook Pro contact number, MacBook
Pro contact phone number, MacBook Pro contact telephone number telephone number
for MacBook Pro online support,MacBook Pro official support number,MacBook Pro
official number,MacBook Pro official phone number,phone number for MacBook Pro
support MacBook Pro 24/7 support phone number MacBook Pro support
number,MacBook Pro telephone number for support
MacBook Pro Customer Care Phone Number 1 800 790 9186 TFN[edit]
MacBook Pro phone number,(1-800-790-9186) MacBook Pro customer care number
MacBook Pro Toll Free, Intuit@(1-800.790-9186)@: MacBook Pro Technical Support
Number, MacBook Pro help desk phone number payroll vides online solution for
all USA/CANADA clients. For any help of query call 1 800 790 9186 to get all
MacBook Pro account solution. For any help of query call 1 800 790 9186 to get
all MacBook Pro account solution. @@Call, 1-800-790-9186 for all type help by
MacBook Pro support telephone number,MacBook Pro support phone number,MacBook
Pro support phone number,MacBook Pro help phone number, MacBook Pro technical
support number.MacBook Pro support number, MacBook Pro phone number, MacBook
Pro tech support number, MacBook Pro customer support number, MacBook Pro
customer support phone number, MacBook Pro customer service phone number,
MacBook Pro customer service phone number, MacBook Pro support phone number
MacBook Pro help number-MacBook Pro Helpline Number; MacBook Pro help phone
number-MacBook Pro Helpline Number, MacBook Pro Tech Support Toll free Number,
MacBook Pro Support Telephone Number, MacBook Pro Tech Support Telephone
number, MacBook Pro Tech Support contact number, MacBook Pro support contact
number, MacBook Pro technical support contact number, MacBook Pro help desk
phone number. Call, @(1-800-790-9186)@: It is very popular toll free number
which payroll vide by MacBook Pro technical support, MacBook Pro Customer
Service Phone Number, MacBook Pro Customer Service Number, MacBook Pro Customer
Support Phone Number, MacBook Pro Customer Support Number, MacBook Pro Customer
Service Helpline Number, MacBook Pro Customer Care Number, MacBook Pro support
team phone number. Call,@(1-800-790-9186)@-: MacBook Pro help number-MacBook
Pro Helpline Number; MacBook Pro help phone number, MacBook Pro Helpline
Number, MacBook Pro Tech Support Toll free Number, MacBook Pro Support
Telephone Number, MacBook Pro Tech Support Telephone number, MacBook Pro Tech
Support contact number, MacBook Pro support contact number, MacBook Pro
technical support contact number, MacBook Pro support phone number, MacBook Pro
support phone number. MacBook Pro customer support phone number for all type
help by MacBook Pro support telephone number, MacBook Pro help phone number,
MacBook Pro technical support number.MacBook Pro support number, MacBook Pro
phone number, MacBook Pro tech support number, MacBook Pro customer support
number, MacBook Pro customer support phone number, MacBook Pro customer service
phone number, MacBook Pro customer service phone number
MacBook Pro Mail Help Phone Number 18007909186 Free Number[edit]
MacBook Pro Customer Service phone number,MacBook Pro helpline phone number
here. Describe MacBook Pro help desk phone number,MacBook Pro helpline phone
number here. MacBook Pro Payroll support phone number, 1-800-790-9186 MacBook
Pro tech support number Call, 1-800-790-9186 for all type help by MacBook Pro
tech support phone number, 1800-790-9186 Intuit MacBook Pro Tech Support Phone
Number, 1800-790-9186 MacBook Pro Help Desk Phone Number, 1800-790-9186 MacBook
Pro tech support number, MacBook Pro technical support phone number,
1800-790-9186 @ MacBook Pro phone number, 1800-790-9186 MacBook Pro technical
support number, 1800-790-9186 MacBook Pro support phone number, 1800-790-9186
MacBook Pro technical support, MacBook Pro Customer Service Phone Number,
MacBook Pro Customer Service Number, MacBook Pro Customer Support Phone Number,
MacBook Pro Customer Support Number, MacBook Pro Customer Service Helpline
Number, MacBook Pro Customer Care Number, MacBook Pro support team phone
number, MacBook Pro help number-MacBook Pro Helpline Number; MacBook Pro help
phone number-MacBook Pro Helpline Number, MacBook Pro Tech Support Toll free
Number, MacBook Pro Support Telephone Number, MacBook Pro Tech Support
Telephone number, MacBook Pro Tech Support contact number, MacBook Pro support
contact number, MacBook Pro technical support contact number. Call, MacBook Pro
tech support phone number, Intuit MacBook Pro Tech Support Phone Number,
MacBook Pro Help Desk Phone Number, MacBook Pro tech support number, MacBook
Pro technical support phone number, MacBook Pro phone number, MacBook Pro
technical support number
MacBook Pro Email Technical Support Phone Number 1 800 790 9186[edit]
MacBook Pro support phone number. It is very popular toll free number which
payroll vied by MacBook Pro technical support, MacBook Pro Customer Service
Phone Number, MacBook Pro Customer Service Number, MacBook Pro Customer Support
Phone Number, MacBook Pro Customer Support Number, MacBook Pro Customer Service
Helpline Number, MacBook Pro Customer Care Number, MacBook Pro support team
phone number. Call, MacBook Pro tech support phone number, Intuit MacBook Pro
Tech Support Phone Number, MacBook Pro Help Desk Phone Number, MacBook Pro tech
support number, MacBook Pro technical support phone number, MacBook Pro phone
number, MacBook Pro technical support number, MacBook Pro support phone number,
MacBook Pro technical support, MacBook Pro Customer Service Phone Number,
MacBook Pro Customer Service Number, MacBook Pro Customer Support Phone Number,
MacBook Pro Customer Support Number, MacBook Pro Customer Service Helpline
Number, MacBook Pro Customer Care Number, MacBook Pro support team phone
number, MacBook Pro help number-MacBook Pro Helpline Number; MacBook Pro help
phone number, MacBook Pro Helpline Number, MacBook Pro Tech Support Toll free
Number, MacBook Pro Support Telephone Number, MacBook Pro Tech Support
Telephone number, MacBook Pro Tech Support contact number, MacBook Pro support
contact number, MacBook Pro technical support contact number, MacBook Pro
support phone number, MacBook Pro support phone number. MacBook Pro customer
support phone number MacBook Pro Support Helpline Number, MacBook Pro contact
number MacBook Pro tech support phone number MacBook Pro support team phone
number MacBook Pro contact number 1800-790-9186 MacBook Pro technical help
telephone number, MacBook Pro technical help contact number, MacBook Pro
technical support contact number, MacBook Pro contact number, MacBook Pro
contact phone number, MacBook Pro contact telephone number, MacBook Pro 24 hour
contact number, MacBook Pro customer support contact number, MacBook Pro
customer service contact number, MacBook Pro official number, MacBook Pro
official contact number, MacBook Pro 800 contact number, MacBook Pro toll free
number, 800 number for MacBook Pro support, MacBook Pro 24/7 support phone
number MacBook Pro support phone number,MacBook Pro support phone
number,MacBook Pro help phone number, MacBook Pro technical support
number.MacBook Pro support number, MacBook Pro phone number, MacBook Pro tech
support number, MacBook Pro customer support number, MacBook Pro customer
support phone number, MacBook Pro customer service phone number, MacBook Pro
customer service phone number, MacBook Pro support phone number.Help@Call
1-800-790-9186/.MacBook Pro 24/7 support phone number,MacBook Pro telephone
number for support? call 1800-790-9186@./MacBook Pro contact number, MacBook
Pro contact phone number, MacBook Pro contact telephone number telephone number
for MacBook Pro online support,MacBook Pro official support number,MacBook Pro
official number,MacBook Pro official phone number,phone number for MacBook Pro
support MacBook Pro 24/7 support phone number MacBook Pro support
number,MacBook Pro telephone number for support "
MacBook Pro Contact Number 1 800 790 9186[edit]

MacBook Pro Customer Service phone number,MacBook Pro helpline phone number
here. Describe MacBook Pro help desk phone number,MacBook Pro helpline phone
number here. MacBook Pro Payroll support phone number, 1-800-790-9186 MacBook
Pro tech support number Call, 1-800-790-9186 for all type help by MacBook Pro
tech support phone number, 1800-790-9186 Intuit MacBook Pro Tech Support Phone
Number, 1800-790-9186 MacBook Pro Help Desk Phone Number, 1800-790-9186 MacBook
Pro tech support number, MacBook Pro technical support phone number,
1800-790-9186 @ MacBook Pro phone number, 1800-790-9186 MacBook Pro technical
support number, 1800-790-9186 MacBook Pro support phone number, 1800-790-9186
MacBook Pro technical support, MacBook Pro Customer Service Phone Number,
MacBook Pro Customer Service Number, MacBook Pro Customer Support Phone Number,
MacBook Pro Customer Support Number, MacBook Pro Customer Service Helpline
Number, MacBook Pro Customer Care Number, MacBook Pro support team phone
number, MacBook Pro help number-MacBook Pro Helpline Number; MacBook Pro help
phone number-MacBook Pro Helpline Number, MacBook Pro Tech Support Toll free
Number, MacBook Pro Support Telephone Number, MacBook Pro Tech Support
Telephone number, MacBook Pro Tech Support contact number, MacBook Pro support
contact number, MacBook Pro technical support contact number. Call, MacBook Pro
tech support phone number, Intuit MacBook Pro Tech Support Phone Number,
MacBook Pro Help Desk Phone Number, MacBook Pro tech support number, MacBook
Pro technical support phone number, MacBook Pro phone number, MacBook Pro
technical support number
MacBook Pro Email Contact Phone Number 1 800 790 9186 Toll free Number[edit]

MacBook Pro support phone number. It is very popular toll free number which
payroll vide by MacBook Pro technical support, MacBook Pro Customer Service
Phone Number, MacBook Pro Customer Service Number, MacBook Pro Customer Support
Phone Number, MacBook Pro Customer Support Number, MacBook Pro Customer Service
Helpline Number, MacBook Pro Customer Care Number, MacBook Pro support team
phone number. Call, MacBook Pro tech support phone number, Intuit MacBook Pro
Tech Support Phone Number, MacBook Pro Help Desk Phone Number, MacBook Pro tech
support number, MacBook Pro technical support phone number, MacBook Pro phone
number, MacBook Pro technical support number, MacBook Pro support phone number,
MacBook Pro technical support, MacBook Pro Customer Service Phone Number,
MacBook Pro Customer Service Number, MacBook Pro Customer Support Phone Number,
MacBook Pro Customer Support Number, MacBook Pro Customer Service Helpline
Number, MacBook Pro Customer Care Number, MacBook Pro support team phone
number, MacBook Pro help number-MacBook Pro Helpline Number; MacBook Pro help
phone number, MacBook Pro Helpline Number, MacBook Pro Tech Support Toll free
Number, MacBook Pro Support Telephone Number, MacBook Pro Tech Support
Telephone number, MacBook Pro Tech Support contact number, MacBook Pro support
contact number, MacBook Pro technical support contact number, MacBook Pro
support phone number, MacBook Pro support phone number. MacBook Pro customer
support phone number MacBook Pro Support Helpline Number, MacBook Pro contact
number MacBook Pro tech support phone number MacBook Pro support team phone
number MacBook Pro contact number 1800-790-9186 MacBook Pro technical help
telephone number, MacBook Pro technical help contact number, MacBook Pro
technical support contact number, MacBook Pro contact number, MacBook Pro
contact phone number, MacBook Pro contact telephone number, MacBook Pro 24 hour
contact number, MacBook Pro customer support contact number, MacBook Pro
customer service contact number, MacBook Pro official number, MacBook Pro
official contact number, MacBook Pro 800 contact number, MacBook Pro toll free
number, 800 number for MacBook Pro support, MacBook Pro 24/7 support phone
number MacBook Pro support phone number,MacBook Pro support phone
number,MacBook Pro help phone number, MacBook Pro technical support
number.MacBook Pro support number, MacBook Pro phone number, MacBook Pro tech
support number, MacBook Pro customer support number, MacBook Pro customer
support phone number, MacBook Pro customer service phone number, MacBook Pro
customer service phone number, MacBook Pro support phone number.Help@Call
1-800-790-9186/.MacBook Pro 24/7 support phone number,MacBook Pro telephone
number for support? call 1800-790-9186@./MacBook Pro contact number, MacBook
Pro contact phone number, MacBook Pro contact telephone number telephone number
for MacBook Pro online support,MacBook Pro official support number,MacBook Pro
official number,MacBook Pro official phone number,phone number for MacBook Pro
support MacBook Pro 24/7 support phone number MacBook Pro support
number,MacBook Pro telephone number for support
MacBook Pro Customer Care Phone Number 1 800 790 9186 TFN[edit]
MacBook Pro phone number,(1-800-790-9186) MacBook Pro customer care number
MacBook Pro Toll Free, Intuit@(1-800.790-9186)@: MacBook Pro Technical Support
Number, MacBook Pro help desk phone number payroll vides online solution for
all USA/CANADA clients. For any help of query call 1 800 790 9186 to get all
MacBook Pro account solution. For any help of query call 1 800 790 9186 to get
all MacBook Pro account solution. @@Call, 1-800-790-9186 for all type help by
MacBook Pro support telephone number,MacBook Pro support phone number,MacBook
Pro support phone number,MacBook Pro help phone number, MacBook Pro technical
support number.MacBook Pro support number, MacBook Pro phone number, MacBook
Pro tech support number, MacBook Pro customer support number, MacBook Pro
customer support phone number, MacBook Pro customer service phone number,
MacBook Pro customer service phone number, MacBook Pro support phone number
MacBook Pro help number-MacBook Pro Helpline Number; MacBook Pro help phone
number-MacBook Pro Helpline Number, MacBook Pro Tech Support Toll free Number,
MacBook Pro Support Telephone Number, MacBook Pro Tech Support Telephone
number, MacBook Pro Tech Support contact number, MacBook Pro support contact
number, MacBook Pro technical support contact number, MacBook Pro help desk
phone number. Call, @(1-800-790-9186)@: It is very popular toll free number
which payroll vide by MacBook Pro technical support, MacBook Pro Customer
Service Phone Number, MacBook Pro Customer Service Number, MacBook Pro Customer
Support Phone Number, MacBook Pro Customer Support Number, MacBook Pro Customer
Service Helpline Number, MacBook Pro Customer Care Number, MacBook Pro support
team phone number. Call,@(1-800-790-9186)@-: MacBook Pro help number-MacBook
Pro Helpline Number; MacBook Pro help phone number, MacBook Pro Helpline
Number, MacBook Pro Tech Support Toll free Number, MacBook Pro Support
Telephone Number, MacBook Pro Tech Support Telephone number, MacBook Pro Tech
Support contact number, MacBook Pro support contact number, MacBook Pro
technical support contact number, MacBook Pro support phone number, MacBook Pro
support phone number. MacBook Pro customer support phone number for all type
help by MacBook Pro support telephone number, MacBook Pro help phone number,
MacBook Pro technical support number.MacBook Pro support number, MacBook Pro
phone number, MacBook Pro tech support number, MacBook Pro customer support
number, MacBook Pro customer support phone number, MacBook Pro customer service
phone number, MacBook Pro customer service phone number
MacBook Pro Mail Help Phone Number 18007909186 Free Number[edit]
MacBook Pro Customer Service phone number,MacBook Pro helpline phone number
here. Describe MacBook Pro help desk phone number,MacBook Pro helpline phone
number here. MacBook Pro Payroll support phone number, 1-800-790-9186 MacBook
Pro tech support number Call, 1-800-790-9186 for all type help by MacBook Pro
tech support phone number, 1800-790-9186 Intuit MacBook Pro Tech Support Phone
Number, 1800-790-9186 MacBook Pro Help Desk Phone Number, 1800-790-9186 MacBook
Pro tech support number, MacBook Pro technical support phone number,
1800-790-9186 @ MacBook Pro phone number, 1800-790-9186 MacBook Pro technical
support number, 1800-790-9186 MacBook Pro support phone number, 1800-790-9186
MacBook Pro technical support, MacBook Pro Customer Service Phone Number,
MacBook Pro Customer Service Number, MacBook Pro Customer Support Phone Number,
MacBook Pro Customer Support Number, MacBook Pro Customer Service Helpline
Number, MacBook Pro Customer Care Number, MacBook Pro support team phone
number, MacBook Pro help number-MacBook Pro Helpline Number; MacBook Pro help
phone number-MacBook Pro Helpline Number, MacBook Pro Tech Support Toll free
Number, MacBook Pro Support Telephone Number, MacBook Pro Tech Support
Telephone number, MacBook Pro Tech Support contact number, MacBook Pro support
contact number, MacBook Pro technical support contact number. Call, MacBook Pro
tech support phone number, Intuit MacBook Pro Tech Support Phone Number,
MacBook Pro Help Desk Phone Number, MacBook Pro tech support number, MacBook
Pro technical support phone number, MacBook Pro phone number, MacBook Pro
technical support number
MacBook Pro Email Technical Support Phone Number 1 800 790 9186[edit]
MacBook Pro support phone number. It is very popular toll free number which
payroll vied by MacBook Pro technical support, MacBook Pro Customer Service
Phone Number, MacBook Pro Customer Service Number, MacBook Pro Customer Support
Phone Number, MacBook Pro Customer Support Number, MacBook Pro Customer Service
Helpline Number, MacBook Pro Customer Care Number, MacBook Pro support team
phone number. Call, MacBook Pro tech support phone number, Intuit MacBook Pro
Tech Support Phone Number, MacBook Pro Help Desk Phone Number, MacBook Pro tech
support number, MacBook Pro technical support phone number, MacBook Pro phone
number, MacBook Pro technical support number, MacBook Pro support phone number,
MacBook Pro technical support, MacBook Pro Customer Service Phone Number,
MacBook Pro Customer Service Number, MacBook Pro Customer Support Phone Number,
MacBook Pro Customer Support Number, MacBook Pro Customer Service Helpline
Number, MacBook Pro Customer Care Number, MacBook Pro support team phone
number, MacBook Pro help number-MacBook Pro Helpline Number; MacBook Pro help
phone number, MacBook Pro Helpline Number, MacBook Pro Tech Support Toll free
Number, MacBook Pro Support Telephone Number, MacBook Pro Tech Support
Telephone number, MacBook Pro Tech Support contact number, MacBook Pro support
contact number, MacBook Pro technical support contact number, MacBook Pro
support phone number, MacBook Pro support phone number. MacBook Pro customer
support phone number MacBook Pro Support Helpline Number, MacBook Pro contact
number MacBook Pro tech support phone number MacBook Pro support team phone
number MacBook Pro contact number 1800-790-9186 MacBook Pro technical help
telephone number, MacBook Pro technical help contact number, MacBook Pro
technical support contact number, MacBook Pro contact number, MacBook Pro
contact phone number, MacBook Pro contact telephone number, MacBook Pro 24 hour
contact number, MacBook Pro customer support contact number, MacBook Pro
customer service contact number, MacBook Pro official number, MacBook Pro
official contact number, MacBook Pro 800 contact number, MacBook Pro toll free
number, 800 number for MacBook Pro support, MacBook Pro 24/7 support phone
number MacBook Pro support phone number,MacBook Pro support phone
number,MacBook Pro help phone number, MacBook Pro technical support
number.MacBook Pro support number, MacBook Pro phone number, MacBook Pro tech
support number, MacBook Pro customer support number, MacBook Pro customer
support phone number, MacBook Pro customer service phone number, MacBook Pro
customer service phone number, MacBook Pro support phone number.Help@Call
1-800-790-9186/.MacBook Pro 24/7 support phone number,MacBook Pro telephone
number for support? call 1800-790-9186@./MacBook Pro contact number, MacBook
Pro contact phone number, MacBook Pro contact telephone number telephone number
for MacBook Pro online support,MacBook Pro official support number,MacBook Pro
official number,MacBook Pro official phone number,phone number for MacBook Pro
support MacBook Pro 24/7 support phone number MacBook Pro support
number,MacBook Pro telephone number for support "
>From gcc-bugs-return-533975-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 20:30:35 2016
Return-Path: <gcc-bugs-return-533975-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 90798 invoked by alias); 10 Aug 2016 20:30:35 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 90545 invoked by uid 48); 10 Aug 2016 20:30:24 -0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72868] Constexpr expressions mistreat case ranges
Date: Wed, 10 Aug 2016 20:30:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on assigned_to everconfirmed attachments.created
Message-ID: <bug-72868-4-ZhdEvw4qcF@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72868-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72868-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01311.txt.bz2
Content-length: 689

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72868

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |ASSIGNED
   Last reconfirmed|                            |2016-08-10
           Assignee|unassigned at gcc dot gnu.org      |jakub at gcc dot gnu.org
     Ever confirmed|0                           |1

--- Comment #6 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Created attachment 39120
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39120&action=edit
gcc7-pr72868.patch

Untested fix.
>From gcc-bugs-return-533976-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 20:30:45 2016
Return-Path: <gcc-bugs-return-533976-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 92561 invoked by alias); 10 Aug 2016 20:30:45 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 90609 invoked by uid 48); 10 Aug 2016 20:30:25 -0000
From: "markvsupp1 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/73038] New: Lycos customer support Number@(1-855-335-9520)@Lycos customer service number@@support phone number
Date: Wed, 10 Aug 2016 20:30:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: trans-mem
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: markvsupp1 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73038-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01312.txt.bz2
Content-length: 17255

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73038

            Bug ID: 73038
           Summary: Lycos customer support Number@(1-855-335-9520)@Lycos
                    customer service number@@support phone number
           Product: gcc
           Version: trans-mem
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: markvsupp1 at gmail dot com
  Target Milestone: ---

Lycos customer support Number@(1-855-335-9520)@Lycos customer service
number@@support phone number 


Lycos customer care number Lycos Help Desk Number HD HDX 7
paperwhite@(1-855-335-9520)@Lycos tech support service number Dialer..
U.U.S.A.Q 1+855+335+9520 Lycos customer service number Lycos customer service
phone number Lycos tech support number, Amazon HD HX Lycos customer service
number,Lycos help desk number usa Lycos technical support number usa

USA 855 335 9520 ++++Lycos help desk number usa @@1 855 335 9520@@ Lycos
technical support number usa number, Lycos help desk number.Lycos fire support
number, Lycos fire phone number, Lycos help desk number, Lycos fire customer
support number, Lycos fire customer support phone number, Lycos fire customer
service phone number, Lycos fire payroll customer service phone number, Lycos
fire support phone number

Lycos help number-Lycos help desk Number; Lycos help phone number-Lycos help
desk Number, Lycos help desk Toll free Number, Lycos fire Support Telephone
Number, Lycos help desk Telephone number, Lycos help desk contact number, Lycos
fire support contact number, Lycos help desk contact number, Lycos help desk
phone number.Lycos fire password recovery support phone number.

Call, @(1-855-335-9520)@-: Lycos fire password recovery support phone number.

It is very popular toll free number which vide by Lycos help desk, Lycos fire
Customer Service Phone Number, Lycos fire Customer Service Number, Lycos fire
Customer Support Phone Number, Lycos fire Customer Support Number, Lycos fire
Customer Service help desk Number, Lycos fire Customer Care Number, Lycos fire
support team phone number. Lycos fire password recovery support phone number.

Call,@(1-855-335-9520)@-: Lycos help number-Lycos help desk Number; Lycos help
phone number, Lycos help desk Number, Lycos help desk Toll free Number, Lycos
fire Support Telephone Number, Lycos help desk Telephone number, Lycos help
desk contact number, Lycos fire support contact number, Lycos help desk contact
number, Lycos fire support phone number, Lycos fire payroll support phone
number. Lycos fire payroll customer support phone number.. Lycos fire password
reset support phone number.

for all type help by Lycos fire support telephone number, Lycos help phone
number, Lycos help desk number.Lycos fire support number, Lycos fire phone
number, Lycos help desk number, Lycos fire customer support number, Lycos fire
customer support phone number, Lycos fire customer service phone number, Lycos
fire payroll customer service phone number

Lycos fire Toll Free, @(1-855.335-9520)@-: Lycos help desk Number, Lycos help
desk phone number vides online solution for all USA/CANADA clients. For any
help of query call 1 855 335 9520 to get all Lycos fire account solution.

For any help of query call 1 855 335 9520 to get all Lycos fire account
solution.

https://www.facebook.com/business/help/community/question/?id=106955893084800

https://www.facebook.com/business/help/community/question/?id=106962649750791

https://www.facebook.com/business/help/community/question/?id=106958829751173

https://www.facebook.com/business/help/community/question/?id=106945256419197

https://bugzilla.xamarin.com/show_bug.cgi?id=43126

https://java.net/bugzilla/show_bug.cgi?id=31373

https://bugzilla.xamarin.com/show_bug.cgi?id=43127

@@Call, 1-855-335-9520 for all type help by Lycos fire support telephone
number,Lycos fire support phone number,Lycos fire support phone number,Lycos
help phone number, Lycos help desk number.Lycos fire support number, Lycos fire
phone number, Lycos help desk number, Lycos fire customer support number, Lycos
fire customer support phone number, Lycos fire customer service phone number,
Lycos fire payroll customer service phone number, [Lycos tech support
number]https://magic.piktochart.com/output/10813354-1-855-335-9520-kindle-fire-tech-support-number

Lycos help number-Lycos help desk Number; Lycos help phone number-Lycos help
desk Number, Lycos help desk Toll free Number, Lycos fire Support Telephone
Number, Lycos help desk Telephone number, Lycos help desk contact number, Lycos
fire support contact number, Lycos help desk contact number, Lycos help desk
phone number.Lycos fire password recovery support phone number.

Call, @(1-855-335-9520)@Lycos fire tech support phone number.

It is very popular toll free number which vide by Lycos help desk, [Lycos fire
Customer Service Phone Number, Lycos fire Customer Service Number, Lycos fire
Customer Support Phone Number, Lycos fire Customer Support Number, Lycos fire
Customer Service help desk Number, Lycos fire Customer Care Number, Lycos fire
support team phone
number]http://wikis.ala.org/yalsa/index.php/TECHSUPPORT:1_855_855_2433_Tech_Kindle_fire_support_phone_number_1_855_855_2433))))))Kindle_fire_support_number_Kindle_fire_customer_service_phone_number
. Lycos fire password recovery support phone number.
https://www.facebook.com/business/help/community/question/?id=103770883405695
https://www.facebook.com/business/help/community/question/?id=103773750072075
https://www.facebook.com/business/help/community/question/?id=103775186738598
https://java.net/bugzilla/show_bug.cgi?id=35978
https://www.facebook.com/business/help/community/question/?id=103786670070783


Lycos tech Phone Number@(1-855-335-9520)@Lycos customer Support ?


Amazon HD HX 7 Paperwhite Lycos tech support Number@(1-855-335-9520)@Lycos
customer service number,Lycos customer care number Lycos Help Desk Number HD
HDX 7 paperwhite@(1-855-335-9520)@Lycos tech support service number Dialer..
U.U.S.A.Q 1+855+335+9520 Lycos customer service number Lycos customer service
phone number Lycos tech support number, Amazon HD HX Lycos customer service
number,Lycos help desk number usa Lycos technical support number usa

USA 855 335 9520 ++++Lycos help desk number usa @@1 855 335 9520@@ Lycos
technical support number usa number, Lycos help desk number.Lycos fire support
number, Lycos fire phone number, Lycos help desk number, Lycos fire customer
support number, Lycos fire customer support phone number, Lycos fire customer
service phone number, Lycos fire payroll customer service phone number, Lycos
fire support phone number

Lycos help number-Lycos help desk Number; Lycos help phone number-Lycos help
desk Number, Lycos help desk Toll free Number, Lycos fire Support Telephone
Number, Lycos help desk Telephone number, Lycos help desk contact number, Lycos
fire support contact number, Lycos help desk contact number, Lycos help desk
phone number.Lycos fire password recovery support phone number.

Call, @(1-855-335-9520)@-: Lycos fire password recovery support phone number.

It is very popular toll free number which vide by Lycos help desk, Lycos fire
Customer Service Phone Number, Lycos fire Customer Service Number, Lycos fire
Customer Support Phone Number, Lycos fire Customer Support Number, Lycos fire
Customer Service help desk Number, Lycos fire Customer Care Number, Lycos fire
support team phone number. Lycos fire password recovery support phone number.

Call,@(1-855-335-9520)@-: Lycos help number-Lycos help desk Number; Lycos help
phone number, Lycos help desk Number, Lycos help desk Toll free Number, Lycos
fire Support Telephone Number, Lycos help desk Telephone number, Lycos help
desk contact number, Lycos fire support contact number, Lycos help desk contact
number, Lycos fire support phone number, Lycos fire payroll support phone
number. Lycos fire payroll customer support phone number.. Lycos fire password
reset support phone number.

for all type help by Lycos fire support telephone number, Lycos help phone
number, Lycos help desk number.Lycos fire support number, Lycos fire phone
number, Lycos help desk number, Lycos fire customer support number, Lycos fire
customer support phone number, Lycos fire customer service phone number, Lycos
fire payroll customer service phone number

Lycos fire Toll Free, @(1-855.335-9520)@-: Lycos help desk Number, Lycos help
desk phone number vides online solution for all USA/CANADA clients. For any
help of query call 1 855 335 9520 to get all Lycos fire account solution.

For any help of query call 1 855 335 9520 to get all Lycos fire account
solution.

https://www.facebook.com/business/help/community/question/?id=106955893084800

https://www.facebook.com/business/help/community/question/?id=106962649750791

https://www.facebook.com/business/help/community/question/?id=106958829751173

https://www.facebook.com/business/help/community/question/?id=106945256419197

https://bugzilla.xamarin.com/show_bug.cgi?id=43126

https://java.net/bugzilla/show_bug.cgi?id=31373

https://bugzilla.xamarin.com/show_bug.cgi?id=43127

@@Call, 1-855-335-9520 for all type help by Lycos fire support telephone
number,Lycos fire support phone number,Lycos fire support phone number,Lycos
help phone number, Lycos help desk number.Lycos fire support number, Lycos fire
phone number, Lycos help desk number, Lycos fire customer support number, Lycos
fire customer support phone number, Lycos fire customer service phone number,
Lycos fire payroll customer service phone number, [Lycos tech support
number]https://magic.piktochart.com/output/10813354-1-855-335-9520-kindle-fire-tech-support-number

Lycos help number-Lycos help desk Number; Lycos help phone number-Lycos help
desk Number, Lycos help desk Toll free Number, Lycos fire Support Telephone
Number, Lycos help desk Telephone number, Lycos help desk contact number, Lycos
fire support contact number, Lycos help desk contact number, Lycos help desk
phone number.Lycos fire password recovery support phone number.

Call, @(1-855-335-9520)@Lycos fire tech support phone number.

It is very popular toll free number which vide by Lycos help desk, [Lycos fire
Customer Service Phone Number, Lycos fire Customer Service Number, Lycos fire
Customer Support Phone Number, Lycos fire Customer Support Number, Lycos fire
Customer Service help desk Number, Lycos fire Customer Care Number, Lycos fire
support team phone
number]http://wikis.ala.org/yalsa/index.php/TECHSUPPORT:1_855_855_2433_Tech_Kindle_fire_support_phone_number_1_855_855_2433))))))Kindle_fire_support_number_Kindle_fire_customer_service_phone_number
. Lycos fire password recovery support phone number.

Call,@(1-855-335-9520)@-: Lycos help number-Lycos help desk Number; Lycos help
phone number, Lycos help desk Number, Lycos help desk Toll free Number, Lycos
fire Support Telephone Number, Lycos help desk Telephone number, Lycos help
desk contact number, Lycos fire support contact number, Lycos help desk contact
number, Lycos fire support phone number, Lycos fire payroll support phone
number. Lycos fire payroll customer support phone number.. Lycos fire password
reset support phone number.
Call,@(1-855-335-9520)@-: Lycos help number-Lycos help desk Number; Lycos help
phone number, Lycos help desk Number, Lycos help desk Toll free Number, Lycos
fire Support Telephone Number, Lycos help desk Tel 1+855+335+9520 Lycos tech
support number usa Lycos help desk number usa


Call.. U.U.S.A.Q 1+855+335+9520 Lycos tech support number usa Lycos help desk
number usa  USA 855 335 9520 ++++Lycos tech support number usa @@1 855 335
9520@@ Lycos technical

USA 855 335 9520 ++++Lycos tech support number usa @@1 855 335 9520@@ Lycos
technical support number usa number, Lycos tech support number.Lycos fire
support number, Lycos fire phone number, Lycos tech support number, Lycos fire
customer support number, Lycos fire customer support phone number, Lycos fire
customer service phone number, Lycos fire payroll customer service phone
number, Lycos fire support phone number

Lycos help number-Lycos tech support Number; Lycos help phone number-Lycos tech
support Number, Lycos tech support Toll free Number, Lycos fire Support
Telephone Number, Lycos tech support Telephone number, Lycos tech support
contact number, Lycos fire support contact number, Lycos tech support contact
number, Lycos tech support phone number.Lycos fire password recovery support
phone number.

Call, @(1-855-335-9520)@-: Lycos fire password recovery support phone number.

It is very popular toll free number which vide by Lycos tech support, Lycos
fire Customer Service Phone Number, Lycos fire Customer Service Number, Lycos
fire Customer Support Phone Number, Lycos fire Customer Support Number, Lycos
fire Customer Service tech support Number, Lycos fire Customer Care Number,
Lycos fire support team phone number. Lycos fire password recovery support
phone number.

Call,@(1-855-335-9520)@-: Lycos help number-Lycos tech support Number; Lycos
help phone number, Lycos tech support Number, Lycos tech support Toll free
Number, Lycos fire Support Telephone Number, Lycos tech support Telephone
number, Lycos tech support contact number, Lycos fire support contact number,
Lycos tech support contact number, Lycos fire support phone number, Lycos fire
payroll support phone number. Lycos fire payroll customer support phone
number.. Lycos fire password reset support phone number.

for all type help by Lycos fire support telephone number, Lycos help phone
number, Lycos tech support number.Lycos fire support number, Lycos fire phone
number, Lycos tech support number, Lycos fire customer support number, Lycos
fire customer support phone number, Lycos fire customer service phone number,
Lycos fire payroll customer service phone number

Lycos fire Toll Free, @(1-855.335-9520)@-: Lycos tech support Number, Lycos
tech support phone number vides online solution for all USA/CANADA clients. For
any help of query call 1 855 335 9520 to get all Lycos fire account solution.

For any help of query call 1 855 335 9520 to get all Lycos fire account
solution.

@@Call, 1-855-335-9520 for all type help by Lycos fire support telephone
number,Lycos fire support phone number,Lycos fire support phone number,Lycos
help phone number, Lycos tech support number.Lycos fire support number, Lycos
fire phone number, Lycos tech support number, Lycos fire customer support
number, Lycos fire customer support phone number, Lycos fire customer service
phone number, Lycos fire payroll customer service phone number, Lycos fire
support phone number

Lycos help number-Lycos tech support Number; Lycos help phone number-Lycos tech
support Number, Lycos tech support Toll free Number, Lycos fire Support
Telephone Number, Lycos tech support Telephone number, Lycos tech support
contact number, Lycos fire support contact number, Lycos tech support contact
number, Lycos tech support phone number.Lycos fire password recovery support
phone number.

Call, @(1-855-335-9520)@-: Lycos fire password recovery support phone number.

It is very popular toll free number which vide by Lycos tech support, Lycos
fire Customer Service Phone Number, Lycos fire Customer Service Number, Lycos
fire Customer Support Phone Number, Lycos fire Customer Support Number, Lycos
fire Customer Service tech support Number, Lycos fire Customer Care Number,
Lycos fire support team phone number. Lycos fire password recovery support
phone number.

Call,@(1-855-335-9520)@-: Lycos help number-Lycos tech support Number; Lycos
help phone number, Lycos tech support Number, Lycos tech support Toll free
Number, Lycos fire Support Telephone Number, Lycos tech support Telephone
number, Lycos tech support contact number, Lycos fire support contact number,
Lycos tech support contact number, Lycos fire support phone number, Lycos fire
payroll support phone number. Lycos fire payroll customer support phone
number.. Lycos fire password reset support phone number.

for all type help by Lycos fire support telephone number, Lycos help phone
number, Lycos tech support number.Lycos fire support number, Lycos fire phone
number, Lycos tech support number, Lycos fire customer support number, Lycos
fire customer support phone number, Lycos fire customer service phone number,
Lycos fire payroll customer service phone numberephone number, Lycos help desk
contact number, Lycos fire support contact number, Lycos help desk contact
number, Lycos fire support phone number, Lycos fire payroll support phone
number. Lycos fire payroll customer support phone number.. Lycos fire password
reset support phone
number.https://www.facebook.com/business/help/community/question/?id=103770883405695
https://www.facebook.com/business/help/community/question/?id=103773750072075
https://www.facebook.com/business/help/community/question/?id=103775186738598
https://java.net/bugzilla/show_bug.cgi?id=35978
>From gcc-bugs-return-533974-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 20:30:02 2016
Return-Path: <gcc-bugs-return-533974-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 89389 invoked by alias); 10 Aug 2016 20:30:01 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 89159 invoked by uid 48); 10 Aug 2016 20:29:49 -0000
From: "srinivash at yopmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/73037] New: Mcafee Technical USA- 1`800`492`3958 Mcafee 360 technical support phone number
Date: Wed, 10 Aug 2016 20:30:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: tree-ssa
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: srinivash at yopmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73037-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01310.txt.bz2
Content-length: 14460

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73037

            Bug ID: 73037
           Summary: Mcafee Technical USA- 1`800`492`3958 Mcafee 360
                    technical support phone number
           Product: gcc
           Version: tree-ssa
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ada
          Assignee: unassigned at gcc dot gnu.org
          Reporter: srinivash at yopmail dot com
  Target Milestone: ---

24*7McAfee Support Number - Call +1-(800)-(492)-(3958)‎ Mcafee antivirus tech
support PHONe number
Asked by dfajh hja 15 seconds ago
Mcafee Technical USA- 1`800`492`3958 Mcafee 360 technical support phone number

Mcafee Technical USA- 18004923958 Mcafee 360 technical support phone number

USA- 1-800-44.5-3958 Mcafee Antivirus phone number for Mcafee antivirus
customer service
Canada- +1-800-492-3958) Mcafee Antivirus support number
USA- +1-800-44.5-3958 Mcafee Antivirus Technical Support
U.K- +800-810-3958 contact Mcafee antivirus customer service phone number
 phone number for Mcafee customer service
Canada- 1-800-492-3958 phone number for Mcafee antivirus technical support
USA- 1-800-44.5-3958 phone number for Mcafee antivirus customer service
phone number for Mcafee antivirus technical support
phone number for Mcafee security
Mcafee antivirus customer care phone number
Mcafee antivirus customer service billing
Mcafee antivirus customer service email address
Mcafee antivirus customer service live chat
Mcafee antivirus customer service telephone number
Mcafee antivirus customer support usa phone number
Mcafee antivirus help desk support phone number free in usa
Mcafee antivirus phone number customer service us
Mcafee antivirus phone number support
Mcafee antivirus support phone number
Mcafee antivirus tech support phone number free in usa
Mcafee antivirus tech support phone number
Mcafee antivirus technical support customer service
Mcafee antivirus technical support number
Mcafee antivirus telephone number
Mcafee antivirus toll free customer care number
Mcafee antivirus toll free number in usa
Mcafee antivirus contact phone number in usa
Mcafee antivirus customer service number
Mcafee antivirus customer service phone number
Mcafee antivirus customer service telephone number
Mcafee antivirus customer support number
Mcafee antivirus customer support phone number
Mcafee antivirus customer support phone number
Mcafee antivirus help desk phone number in usa
Mcafee antivirus phone number
Mcafee antivirus phone number support for technical issue in usa
Mcafee antivirus support phone number
Mcafee antivirus technical support help desk phone number
Mcafee antivirus technical support number
Mcafee antivirus technical support phone number
Mcafee customer service number
Mcafee customer service telephone number
Mcafee customer services email
Mcafee customer support email address
Mcafee customer support number
Mcafee customer support phone number
Mcafee customer service phone number
Mcafee internet security contact phone number
Mcafee internet security customer service phone number
Mcafee internet security phone number
Mcafee internet security help phone number
Mcafee internet security phone number in usa
Mcafee internet security support phone number
Mcafee internet security technical support
Mcafee phone number customer service
Mcafee phone numbers customer support
Mcafee phone support number
Mcafee security contact phone number
Mcafee security phone number customer service
Mcafee security support phone number
Mcafee support contact number
Mcafee support email address
Mcafee support phone number
Mcafee support telephone number
Mcafee support telephone number usa
Mcafee support telephone number
Mcafee tech support number
Mcafee tech support phone number
Mcafee tech support phone number free
Mcafee technical support phone number
Mcafee technical support cutomer phone number
Mcafee technical support phone number
Mcafee technical support number free in usa
Mcafee technical support number toll free number
Mcafee technical support phone number
Mcafee technologies phone number
Mcafee telephone support number
Mcafee antivirus customer support phone number
Mcafee antivirus customer service phone number
Mcafee customer support phone number
Mcafee phone number customer service
Mcafee technical support telephone number
contact Mcafee antivirus customer service phone number
customer service number for Mcafee antivirus
phone number for Mcafee antivirus
phone number for Mcafee antivirus customer service
phone number for Mcafee antivirus support
phone number for Mcafee customer service
phone number for Mcafee customer service
phone number for Mcafee customer support
phone number for Mcafee tech support
phone number Mcafee antivirus customer service
Mcafee antivirus customer service number
Mcafee antivirus customer service phone
Mcafee antivirus customer service phone number
Mcafee antivirus customer service phone number us
Mcafee antivirus customer service telephone number
Mcafee antivirus customer support
Mcafee antivirus customer support number
Mcafee antivirus phone number customer service us
Mcafee antivirus phone number support
Mcafee antivirus phone support
Mcafee antivirus phone support number
Mcafee antivirus support phone number
Mcafee antivirus tech support phone number
Mcafee antivirus technical support
Mcafee antivirus technical support number
Mcafee antivirus technical support phone number
Mcafee customer service phone number
Mcafee customer support phone number
Mcafee helpline phone number
Mcafee internet security customer service
Mcafee internet security customer service phone number
Mcafee internet security help phone number
Mcafee internet security phone number customer service
Mcafee phone number customer service
Mcafee phone number customer support
Mcafee security customer service phone number
Mcafee security phone number customer service
Mcafee support phone number
Mcafee support telephone number
Mcafee tech support number
Mcafee tech support phone number
Mcafee technical support
Mcafee technical support number
Mcafee technical support phone number
Mcafee antivirus customer support phone number
Mcafee antivirus phone number customer service
Mcafee antivirus tech support number
Mcafee customer service phone number
Mcafee customer service phone numbers
Mcafee internet security technical support
Mcafee tech support phone number us
Mcafee technical support telephone number
contact Mcafee antivirus
contact Mcafee by phone
contact Mcafee customer service
contact Mcafee antivirus customer service phone number
contactMcafee antivirus tech support usa
customer service Mcafee phone number
download Mcafee titanium
dri Mcafee customer service number
dri Mcafee customer service phone number
dri Mcafee phone number
how to contact Mcafee by email
how to delete Mcafee from mac
micro trend customer service
Mcafee antivirus customer service number
phone number for Mcafee customer service
phone number forMcafee customer service
phone number forMcafee customer support
phone number forMcafee tech support
phone number forMcafee technical support
phone number for Mcafee antivirus technical support
phone number for Mcafee security
phone number for Mcafee support
phone number for Mcafee technical support
phone number for Mcafee antivirus customer service
phone number for Mcafee customer service
remove Mcafee from mac
technical support for antivirus Mcafee
telephone number forMcafee technical support
telephone Mcafee antivirus
Mcafee antivirus contact number
Mcafee antivirus customer care
Mcafee antivirus customer care number
Mcafee antivirus customer care number usa
Mcafee antivirus customer service
Mcafee antivirus customer service number :idea: :evil: :D :) :lol: :( :o
:shock:
Mcafee antivirus customer service phone number
Mcafee antivirus customer service phone number usa
Mcafee antivirus customer service telephone number
Mcafee antivirus customer support
Mcafee antivirus customer support in usa
Mcafee antivirus customer support number
Mcafee antivirus customer support phone number
Mcafee antivirus for phone
Mcafee antivirus free antivirus support
Mcafee antivirus help phone number
Mcafee antivirus helpline number
Mcafee antivirus online support
Mcafee antivirus phone
Mcafee antivirus phone number
Mcafee antivirus phone number in usa
Mcafee antivirus phone number usa
Mcafee antivirus phone support
Mcafee antivirus plus tech support
Mcafee antivirus protection
Mcafee antivirus support
Mcafee antivirus support number
Mcafee antivirus support phone number
Mcafee antivirus support services
Mcafee antivirus support telephone number
Mcafee antivirus tech support
Mcafee antivirus tech support phone number free in usa
Mcafee antivirus tech support number
Mcafee antivirus tech support phone number
Mcafee antivirus technical support
Mcafee antivirus technical support number
Mcafee antivirus technical support phone number
Mcafee antivirus toll free customer care number
Mcafee antivirus toll free number
Mcafee antivirus contact phone number in usa
Mcafee antivirus help desk phone number in usa
Mcafee antivirus phone number support for technical issue in usa
Mcafee antivirus support phone number
Mcafee antivirus technical support help desk phone number
Mcafee antivirus technical support phone number
Mcafee contact number
Mcafee contact number usa
Mcafee contact phone number
Mcafee contact support
Mcafee contact number usa
Mcafee contact phone number
Mcafee contact phone number usa
Mcafee customer & technical support
Mcafee customer care
Mcafee customer care center
Mcafee customer care email
Mcafee customer care number
Mcafee customer care number
Mcafee customer care number usa
Mcafee customer care number usa toll free
Mcafee customer care phone number usa
Mcafee customer care tchnical support
Mcafee customer care toll free
Mcafee customer care toll free number
Mcafee customer care usa
Mcafee customer help
Mcafee customer number
Mcafee customer portal
Mcafee customer service
Mcafee customer service billing
Mcafee customer service email address
Mcafee customer service number
Mcafee customer service phone
Mcafee customer service phone number
Mcafee customer service phone number us
Mcafee customer service phone number usa
Mcafee customer service reviews
Mcafee customer service telephone number
Mcafee customer service usa
Mcafee customer support
Mcafee customer support number
Mcafee customer support phone
Mcafee customer support phone number
Mcafee customer service number
Mcafee customer service number usa
Mcafee customer service phone number
Mcafee customer support number
Mcafee customer support phone number
Mcafee free phone support
Mcafee gold support phone number
Mcafee help desk phone number
Mcafee help phone number
Mcafee helpline
Mcafee helpline phone number
Mcafee hotline customer service phone number
Mcafee internet security customer service
Mcafee internet security phone number
Mcafee internet security phone number in usa
Mcafee lab usa customer service
Mcafee labs usa customer serviceMcafee
Mcafee phone number
Mcafee phone number customer service
Mcafee phone number support
Mcafee phone number tech support
Mcafee phone number technical support
Mcafee phone numbers customer support
Mcafee phone support
Mcafee phone support number
Mcafee phone number customer service
Mcafee phone number support
Mcafee phone number tech support
Mcafee phone number usa
Mcafee security contact phone number
Mcafee security phone number
Mcafee security support phone number
Mcafee software customer service
Mcafee software customer service number
Mcafee support center
Mcafee support contact number
Mcafee support email address
Mcafee support phone number
Mcafee support telephone number
Mcafee support number usa
Mcafee support phone number
Mcafee support phone number usa
Mcafee tech support
Mcafee tech support center
Mcafee tech support contact
Mcafee tech support number
Mcafee tech support number usa
Mcafee tech support phone
Mcafee tech support phone number
Mcafee tech support phone number free
Mcafee tech support number
Mcafee tech support number usa
Mcafee tech support phone number
Mcafee technical support
Mcafee technical support number
Mcafee technical support phone number
Mcafee technical support phone number usa
Mcafee technical support reviews
Mcafee technical support usa
Mcafee technical support phone number
Mcafee technical support number
Mcafee technical support number toll free number
Mcafee technical support number usa
Mcafee technical support phone number
Mcafee technical support phone number usa
Mcafee technologies phone number
Mcafee telephone number
Mcafee telephone support number
Mcafee toll free number
Mcafee toll free number usa
Mcafee usa customer care for tech support
Mcafee usa customer service
Mcafee usa phone number
Mcafee antivirus customer service phone number
Mcafee antivirus customer service phone number
Mcafee antivirus customer support phone number
Mcafee antivirus customer support phone number
Mcafee antivirus technical support number
Mcafee customer service phone number usa
Mcafee internet security support phone number
Mcafee.com customer service
Mcafee antivirus antispyware 2011
Mcafee antivirus customer support
Mcafee antivirus serial key
Mcafee antivirus serial number
Mcafee antivirus support
Mcafee antivirus technical support
Mcafee business support
Mcafee contact support
Mcafee customer care number
Mcafee customer service 800
Mcafee customer service number
Mcafee customer service phone number
Mcafee customer service telephone number
Mcafee customer support
Mcafee grentry non payment
Mcafee helpline support number
Mcafee internet security customer service
Mcafee internet security technical support
Mcafee oem customer service
Mcafee pc cillin technical support
Mcafee phone support
Mcafee removal tool download
Mcafee subscription renewal
Mcafee support contact
Mcafee support hotline
Mcafee support phone number
Mcafee tech support phone number
Mcafee technical support
Mcafee technical support chat
Mcafee technical support phone number
Mcafee technical support phone number usa
Mcafee telephone number
Mcafee titanium antivirus
Mcafee titanium internet security
Mcafee titanium maximum
Mcafee titanium maximum security
Mcafee titanium problems
Mcafee titanium removal tool
Mcafee titanium reviews
Mcafee titanium support
Mcafee virus removal service
uninstall Mcafee smart surfing for mac
usa customer care number for Mcafee antivirus
>From gcc-bugs-return-533977-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 20:31:21 2016
Return-Path: <gcc-bugs-return-533977-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 100537 invoked by alias); 10 Aug 2016 20:31:21 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 100377 invoked by uid 48); 10 Aug 2016 20:31:15 -0000
From: "srinivash at yopmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73042] New: USA- +1-800-44.5-3958 Mcafee Antivirus Technical Support
Date: Wed, 10 Aug 2016 20:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: tree-ssa
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: srinivash at yopmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73042-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01313.txt.bz2
Content-length: 14438

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73042

            Bug ID: 73042
           Summary: USA- +1-800-44.5-3958 Mcafee Antivirus Technical
                    Support
           Product: gcc
           Version: tree-ssa
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: srinivash at yopmail dot com
  Target Milestone: ---

24*7McAfee Support Number - Call +1-(800)-(492)-(3958)‎ Mcafee antivirus tech
support PHONe number
Asked by dfajh hja 15 seconds ago
Mcafee Technical USA- 1`800`492`3958 Mcafee 360 technical support phone number

Mcafee Technical USA- 18004923958 Mcafee 360 technical support phone number

USA- 1-800-44.5-3958 Mcafee Antivirus phone number for Mcafee antivirus
customer service
Canada- +1-800-492-3958) Mcafee Antivirus support number
USA- +1-800-44.5-3958 Mcafee Antivirus Technical Support
U.K- +800-810-3958 contact Mcafee antivirus customer service phone number
 phone number for Mcafee customer service
Canada- 1-800-492-3958 phone number for Mcafee antivirus technical support
USA- 1-800-44.5-3958 phone number for Mcafee antivirus customer service
phone number for Mcafee antivirus technical support
phone number for Mcafee security
Mcafee antivirus customer care phone number
Mcafee antivirus customer service billing
Mcafee antivirus customer service email address
Mcafee antivirus customer service live chat
Mcafee antivirus customer service telephone number
Mcafee antivirus customer support usa phone number
Mcafee antivirus help desk support phone number free in usa
Mcafee antivirus phone number customer service us
Mcafee antivirus phone number support
Mcafee antivirus support phone number
Mcafee antivirus tech support phone number free in usa
Mcafee antivirus tech support phone number
Mcafee antivirus technical support customer service
Mcafee antivirus technical support number
Mcafee antivirus telephone number
Mcafee antivirus toll free customer care number
Mcafee antivirus toll free number in usa
Mcafee antivirus contact phone number in usa
Mcafee antivirus customer service number
Mcafee antivirus customer service phone number
Mcafee antivirus customer service telephone number
Mcafee antivirus customer support number
Mcafee antivirus customer support phone number
Mcafee antivirus customer support phone number
Mcafee antivirus help desk phone number in usa
Mcafee antivirus phone number
Mcafee antivirus phone number support for technical issue in usa
Mcafee antivirus support phone number
Mcafee antivirus technical support help desk phone number
Mcafee antivirus technical support number
Mcafee antivirus technical support phone number
Mcafee customer service number
Mcafee customer service telephone number
Mcafee customer services email
Mcafee customer support email address
Mcafee customer support number
Mcafee customer support phone number
Mcafee customer service phone number
Mcafee internet security contact phone number
Mcafee internet security customer service phone number
Mcafee internet security phone number
Mcafee internet security help phone number
Mcafee internet security phone number in usa
Mcafee internet security support phone number
Mcafee internet security technical support
Mcafee phone number customer service
Mcafee phone numbers customer support
Mcafee phone support number
Mcafee security contact phone number
Mcafee security phone number customer service
Mcafee security support phone number
Mcafee support contact number
Mcafee support email address
Mcafee support phone number
Mcafee support telephone number
Mcafee support telephone number usa
Mcafee support telephone number
Mcafee tech support number
Mcafee tech support phone number
Mcafee tech support phone number free
Mcafee technical support phone number
Mcafee technical support cutomer phone number
Mcafee technical support phone number
Mcafee technical support number free in usa
Mcafee technical support number toll free number
Mcafee technical support phone number
Mcafee technologies phone number
Mcafee telephone support number
Mcafee antivirus customer support phone number
Mcafee antivirus customer service phone number
Mcafee customer support phone number
Mcafee phone number customer service
Mcafee technical support telephone number
contact Mcafee antivirus customer service phone number
customer service number for Mcafee antivirus
phone number for Mcafee antivirus
phone number for Mcafee antivirus customer service
phone number for Mcafee antivirus support
phone number for Mcafee customer service
phone number for Mcafee customer service
phone number for Mcafee customer support
phone number for Mcafee tech support
phone number Mcafee antivirus customer service
Mcafee antivirus customer service number
Mcafee antivirus customer service phone
Mcafee antivirus customer service phone number
Mcafee antivirus customer service phone number us
Mcafee antivirus customer service telephone number
Mcafee antivirus customer support
Mcafee antivirus customer support number
Mcafee antivirus phone number customer service us
Mcafee antivirus phone number support
Mcafee antivirus phone support
Mcafee antivirus phone support number
Mcafee antivirus support phone number
Mcafee antivirus tech support phone number
Mcafee antivirus technical support
Mcafee antivirus technical support number
Mcafee antivirus technical support phone number
Mcafee customer service phone number
Mcafee customer support phone number
Mcafee helpline phone number
Mcafee internet security customer service
Mcafee internet security customer service phone number
Mcafee internet security help phone number
Mcafee internet security phone number customer service
Mcafee phone number customer service
Mcafee phone number customer support
Mcafee security customer service phone number
Mcafee security phone number customer service
Mcafee support phone number
Mcafee support telephone number
Mcafee tech support number
Mcafee tech support phone number
Mcafee technical support
Mcafee technical support number
Mcafee technical support phone number
Mcafee antivirus customer support phone number
Mcafee antivirus phone number customer service
Mcafee antivirus tech support number
Mcafee customer service phone number
Mcafee customer service phone numbers
Mcafee internet security technical support
Mcafee tech support phone number us
Mcafee technical support telephone number
contact Mcafee antivirus
contact Mcafee by phone
contact Mcafee customer service
contact Mcafee antivirus customer service phone number
contactMcafee antivirus tech support usa
customer service Mcafee phone number
download Mcafee titanium
dri Mcafee customer service number
dri Mcafee customer service phone number
dri Mcafee phone number
how to contact Mcafee by email
how to delete Mcafee from mac
micro trend customer service
Mcafee antivirus customer service number
phone number for Mcafee customer service
phone number forMcafee customer service
phone number forMcafee customer support
phone number forMcafee tech support
phone number forMcafee technical support
phone number for Mcafee antivirus technical support
phone number for Mcafee security
phone number for Mcafee support
phone number for Mcafee technical support
phone number for Mcafee antivirus customer service
phone number for Mcafee customer service
remove Mcafee from mac
technical support for antivirus Mcafee
telephone number forMcafee technical support
telephone Mcafee antivirus
Mcafee antivirus contact number
Mcafee antivirus customer care
Mcafee antivirus customer care number
Mcafee antivirus customer care number usa
Mcafee antivirus customer service
Mcafee antivirus customer service number :idea: :evil: :D :) :lol: :( :o
:shock:
Mcafee antivirus customer service phone number
Mcafee antivirus customer service phone number usa
Mcafee antivirus customer service telephone number
Mcafee antivirus customer support
Mcafee antivirus customer support in usa
Mcafee antivirus customer support number
Mcafee antivirus customer support phone number
Mcafee antivirus for phone
Mcafee antivirus free antivirus support
Mcafee antivirus help phone number
Mcafee antivirus helpline number
Mcafee antivirus online support
Mcafee antivirus phone
Mcafee antivirus phone number
Mcafee antivirus phone number in usa
Mcafee antivirus phone number usa
Mcafee antivirus phone support
Mcafee antivirus plus tech support
Mcafee antivirus protection
Mcafee antivirus support
Mcafee antivirus support number
Mcafee antivirus support phone number
Mcafee antivirus support services
Mcafee antivirus support telephone number
Mcafee antivirus tech support
Mcafee antivirus tech support phone number free in usa
Mcafee antivirus tech support number
Mcafee antivirus tech support phone number
Mcafee antivirus technical support
Mcafee antivirus technical support number
Mcafee antivirus technical support phone number
Mcafee antivirus toll free customer care number
Mcafee antivirus toll free number
Mcafee antivirus contact phone number in usa
Mcafee antivirus help desk phone number in usa
Mcafee antivirus phone number support for technical issue in usa
Mcafee antivirus support phone number
Mcafee antivirus technical support help desk phone number
Mcafee antivirus technical support phone number
Mcafee contact number
Mcafee contact number usa
Mcafee contact phone number
Mcafee contact support
Mcafee contact number usa
Mcafee contact phone number
Mcafee contact phone number usa
Mcafee customer & technical support
Mcafee customer care
Mcafee customer care center
Mcafee customer care email
Mcafee customer care number
Mcafee customer care number
Mcafee customer care number usa
Mcafee customer care number usa toll free
Mcafee customer care phone number usa
Mcafee customer care tchnical support
Mcafee customer care toll free
Mcafee customer care toll free number
Mcafee customer care usa
Mcafee customer help
Mcafee customer number
Mcafee customer portal
Mcafee customer service
Mcafee customer service billing
Mcafee customer service email address
Mcafee customer service number
Mcafee customer service phone
Mcafee customer service phone number
Mcafee customer service phone number us
Mcafee customer service phone number usa
Mcafee customer service reviews
Mcafee customer service telephone number
Mcafee customer service usa
Mcafee customer support
Mcafee customer support number
Mcafee customer support phone
Mcafee customer support phone number
Mcafee customer service number
Mcafee customer service number usa
Mcafee customer service phone number
Mcafee customer support number
Mcafee customer support phone number
Mcafee free phone support
Mcafee gold support phone number
Mcafee help desk phone number
Mcafee help phone number
Mcafee helpline
Mcafee helpline phone number
Mcafee hotline customer service phone number
Mcafee internet security customer service
Mcafee internet security phone number
Mcafee internet security phone number in usa
Mcafee lab usa customer service
Mcafee labs usa customer serviceMcafee
Mcafee phone number
Mcafee phone number customer service
Mcafee phone number support
Mcafee phone number tech support
Mcafee phone number technical support
Mcafee phone numbers customer support
Mcafee phone support
Mcafee phone support number
Mcafee phone number customer service
Mcafee phone number support
Mcafee phone number tech support
Mcafee phone number usa
Mcafee security contact phone number
Mcafee security phone number
Mcafee security support phone number
Mcafee software customer service
Mcafee software customer service number
Mcafee support center
Mcafee support contact number
Mcafee support email address
Mcafee support phone number
Mcafee support telephone number
Mcafee support number usa
Mcafee support phone number
Mcafee support phone number usa
Mcafee tech support
Mcafee tech support center
Mcafee tech support contact
Mcafee tech support number
Mcafee tech support number usa
Mcafee tech support phone
Mcafee tech support phone number
Mcafee tech support phone number free
Mcafee tech support number
Mcafee tech support number usa
Mcafee tech support phone number
Mcafee technical support
Mcafee technical support number
Mcafee technical support phone number
Mcafee technical support phone number usa
Mcafee technical support reviews
Mcafee technical support usa
Mcafee technical support phone number
Mcafee technical support number
Mcafee technical support number toll free number
Mcafee technical support number usa
Mcafee technical support phone number
Mcafee technical support phone number usa
Mcafee technologies phone number
Mcafee telephone number
Mcafee telephone support number
Mcafee toll free number
Mcafee toll free number usa
Mcafee usa customer care for tech support
Mcafee usa customer service
Mcafee usa phone number
Mcafee antivirus customer service phone number
Mcafee antivirus customer service phone number
Mcafee antivirus customer support phone number
Mcafee antivirus customer support phone number
Mcafee antivirus technical support number
Mcafee customer service phone number usa
Mcafee internet security support phone number
Mcafee.com customer service
Mcafee antivirus antispyware 2011
Mcafee antivirus customer support
Mcafee antivirus serial key
Mcafee antivirus serial number
Mcafee antivirus support
Mcafee antivirus technical support
Mcafee business support
Mcafee contact support
Mcafee customer care number
Mcafee customer service 800
Mcafee customer service number
Mcafee customer service phone number
Mcafee customer service telephone number
Mcafee customer support
Mcafee grentry non payment
Mcafee helpline support number
Mcafee internet security customer service
Mcafee internet security technical support
Mcafee oem customer service
Mcafee pc cillin technical support
Mcafee phone support
Mcafee removal tool download
Mcafee subscription renewal
Mcafee support contact
Mcafee support hotline
Mcafee support phone number
Mcafee tech support phone number
Mcafee technical support
Mcafee technical support chat
Mcafee technical support phone number
Mcafee technical support phone number usa
Mcafee telephone number
Mcafee titanium antivirus
Mcafee titanium internet security
Mcafee titanium maximum
Mcafee titanium maximum security
Mcafee titanium problems
Mcafee titanium removal tool
Mcafee titanium reviews
Mcafee titanium support
Mcafee virus removal service
uninstall Mcafee smart surfing for mac
usa customer care number for Mcafee antivirus
>From gcc-bugs-return-533978-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 20:35:52 2016
Return-Path: <gcc-bugs-return-533978-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 27216 invoked by alias); 10 Aug 2016 20:35:51 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 27011 invoked by uid 48); 10 Aug 2016 20:35:39 -0000
From: "ravi10 at codehot dot co.uk" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/73061] New: $@$@^^^18557092847@$$@$$^^^*** CANon printer technical support number.....
Date: Wed, 10 Aug 2016 20:35:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: 4.0.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ravi10 at codehot dot co.uk
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-73061-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01314.txt.bz2
Content-length: 7263

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73061

            Bug ID: 73061
           Summary: $@$@^^^18557092847@$$@$$^^^*** CANon printer technical
                    support number.....
           Product: gcc
           Version: 4.0.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ada
          Assignee: unassigned at gcc dot gnu.org
          Reporter: ravi10 at codehot dot co.uk
  Target Milestone: ---

Created attachment 39121
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39121&action=edit
((moti))Call @@@++ USA I8557O92847 CANON p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l CANON h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a CANON s.u.p.p.o.r.t p.h.o.n.

((moti))Call @@@++ USA I8557O92847 CANON p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l CANON h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a CANON s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa USA 1
I8557O92847 CANON p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r
u.s.a. C.a.l.l CANON h.e.l.p d.e.s.k n.u.m.b.e.r n.u.m.b.e.r C.a.n.a.d.a CANON
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa canada 1-1855-709-2847 USA, CANON printer
Tech Support phone number,CANON technical support phone number 1 I8557O92847
.CANON Tech Support Number CANON Tech CANON tech support, CANON tech support
number, CANON tech support phone number, CANON technical support, CANON
technical support number, CANON technical support phone number, CANON tech
support number, CANON support number, CANON Tech support phone number, CANON
support phone number, CANON technical support phone number, CANON technical
support number,Support Phone Number for CANON printer Phone Number for CANON
CustomerService Technical Support Telephone Number CANON printer support number
CANON CANON printer tech support number CANON CANON printer technical support
number CANON CANON printer technical support phone number CANON CANON printer
customer service number CANON CANON internet security technical support CANON
technical support phone number CANON CANON tech support phone number CANON
CANON customer support phone number I-855-709-2847 CANON CANON printer support
phone number CANON CANON support phone CANON tech support CANON customer
support CANON phone support CANON support number CANON CANON technical support
CANON printer customer support phone number CANON CANON printer tech support
phone number CANON contact CANON support CANON printer technical support phone
number ~!~I8557092847++ CANON CANON phone number CANON tech support CANON
support ticket CANON customer support number CANON CANON tech support number
CANON CANON technical support number CANON CANON support center CANON telephone
support call CANON support CANON printer support support CANON CANON billing
support CANON printer technical support number CANON support CANON printer
CANON online support CANON contact support CANON printer support number CANON
CANON printer customer support number CANON CANON printer tech support number
CANON support for CANON CANON phone number CANON CANON customer service phone
number CANON CANON contact phone number CANON CANON printer phone number CANON
CANON printer customer service phone number CANON phone number CANON for CANON
customer service CANON software phone number CANON phone number CANON for CANON
CANON customer service telephone number CANON CANON helpline phone number CANON
CANON contact number CANON CANON customer service number CANON CANON customer
service phone number ~!~I8557092847++ CANON us CANON customer service phone
number CANON usa CANON telephone number CANON CANON phone number CANON usa
CANON printer contact number CANON CANON number CANON CANON contact number
CANON usa CANON printer helpline number CANON CANON helpline number CANON CANON
customer number CANON CANON printer customer service number CANON CANON contact
telephone number CANON contact number CANON for CANON CANON software contact
number CANON CANON toll free number CANON CANON telephone number CANON uk CANON
registration number CANON CANON toll free number CANON usa CANON customer
service CANON software customer service contact CANON customer service CANON
customer service phone CANON printer customer service CANON service CANON
printer technical support CANON printer customer support CANON technical
support reviews telephone CANON printer CANON tech support phone number CANON
CANON printer tech support phone number CANON CANON printer customer service
CANON technical support phone number CANON CANON printer free printer support
CANON customer service billing CANON customer service email address CANON
customer service reviews contact CANON customer service CANON tech support
number CANON usa CANON printer support number CANON CANON printer contact
number CANON CANON customer service phone number CANON CANON technical support
usa CANON technical support number CANON CANON tech support phone CANON tech
support number CANON CANON customer service telephone number CANON CANON
printer customer support number CANON CANON printer phone number CANON CANON
printer online support CANON customer service number CANON CANON tech support
center CANON customer service CANON software customer service CANON customer
care number CANON usa CANON customer number CANON CANON customer support number
CANON CANON customer care number CANON CANON customer care toll free number
CANON CANON tech support CANON technical support CANON printer support CANON
printer tech support CANON support center CANON.com customer service CANON
printer customer care number CANON CANON customer care CANON phone number CANON
phone number CANON for CANON customer service CANON phone support CANON phone
number CANON tech support CANON support phone number CANON contact CANON by
phone CANON contact phone number CANON CANON helpline phone number CANON CANON
printer phone CANON printer for phone CANON contact number CANON CANON contact
support contact CANON printer CANON contact number CANON usa CANON toll free
number CANON CANON telephone number CANON CANON toll free number CANON usa
CANON printer support services technical support for printer CANON CANON
customer service phone number CANON usa CANON printer customer care number
CANON usa CANON customer care number CANON CANON customer care center CANON
customer support CANON customer support phone CANON customer help CANON
customer & technical support CANON customer portal CANON customer care phone
number CANON usa CANON customer care email CANON helpline CANON tech support
contact CANON customer care toll free CANON printer customer service number
CANON CANON printer protection norton printer customer service number CANON
CANON software customer service number CANON CANON hotline customer service
phone number CANON CANON customer service phone number CANON us how to contact
CANON by email CANON free phone support CANON printer technical support number
CANON CANON printer technical support help desk phone number CANON CANON
technical support number CANON toll free number CANON CANON printer customer
support phone number CANON CANON printer customer
>From gcc-bugs-return-533979-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 20:36:18 2016
Return-Path: <gcc-bugs-return-533979-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 28038 invoked by alias); 10 Aug 2016 20:36:17 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 27959 invoked by uid 48); 10 Aug 2016 20:36:05 -0000
From: "judedreges at throwam dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/73064] New: $@^^1€0y0‘86^^@@%@%@$$ SAMSUNG Printer tech support phone number
Date: Wed, 10 Aug 2016 20:36:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: 4.2.4
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: judedreges at throwam dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-73064-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01315.txt.bz2
Content-length: 8061

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73064

            Bug ID: 73064
           Summary: $@^^1=800=790=9186^^@@%@%@$$ SAMSUNG Printer tech
                    support phone number
           Product: gcc
           Version: 4.2.4
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ada
          Assignee: unassigned at gcc dot gnu.org
          Reporter: judedreges at throwam dot com
  Target Milestone: ---

Created attachment 39122
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39122&action=edit
((moti))Call @@@++ USA I80079O9186 SAMSUNG p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l SAMSUNG h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a SAMSUNG s.u.p.p.o.r.t p.

((moti))Call @@@++ USA I80079O9186 SAMSUNG p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l SAMSUNG h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a SAMSUNG s.u.p.p.o.r.t p.h.o.n.

((moti))Call @@@++ USA I80079O9186 SAMSUNG p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l SAMSUNG h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a SAMSUNG s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa USA 1
I80079O9186 SAMSUNG p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r
u.s.a. C.a.l.l SAMSUNG h.e.l.p d.e.s.k n.u.m.b.e.r n.u.m.b.e.r C.a.n.a.d.a
SAMSUNG s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa canada 1-1800-790-9186 USA,
SAMSUNG printer Tech Support phone number,SAMSUNG technical support phone
number 1 I80079O9186 .SAMSUNG Tech Support Number SAMSUNG Tech SAMSUNG tech
support, SAMSUNG tech support number, SAMSUNG tech support phone number,
SAMSUNG technical support, SAMSUNG technical support number, SAMSUNG technical
support phone number, SAMSUNG tech support number, SAMSUNG support number,
SAMSUNG Tech support phone number, SAMSUNG support phone number, SAMSUNG
technical support phone number, SAMSUNG technical support number,Support Phone
Number for SAMSUNG printer Phone Number for SAMSUNG CustomerService Technical
Support Telephone Number SAMSUNG printer support number SAMSUNG SAMSUNG printer
tech support number SAMSUNG SAMSUNG printer technical support number SAMSUNG
SAMSUNG printer technical support phone number SAMSUNG SAMSUNG printer customer
service number SAMSUNG SAMSUNG internet security technical support SAMSUNG
technical support phone number SAMSUNG SAMSUNG tech support phone number
SAMSUNG SAMSUNG customer support phone number I-800-790-9186 SAMSUNG SAMSUNG
printer support phone number SAMSUNG SAMSUNG support phone SAMSUNG tech support
SAMSUNG customer support SAMSUNG phone support SAMSUNG support number SAMSUNG
SAMSUNG technical support SAMSUNG printer customer support phone number SAMSUNG
SAMSUNG printer tech support phone number SAMSUNG contact SAMSUNG support
SAMSUNG printer technical support phone number ~!~I8007909186++ SAMSUNG SAMSUNG
phone number SAMSUNG tech support SAMSUNG support ticket SAMSUNG customer
support number SAMSUNG SAMSUNG tech support number SAMSUNG SAMSUNG technical
support number SAMSUNG SAMSUNG support center SAMSUNG telephone support call
SAMSUNG support SAMSUNG printer support support SAMSUNG SAMSUNG billing support
SAMSUNG printer technical support number SAMSUNG support SAMSUNG printer
SAMSUNG online support SAMSUNG contact support SAMSUNG printer support number
SAMSUNG SAMSUNG printer customer support number SAMSUNG SAMSUNG printer tech
support number SAMSUNG support for SAMSUNG SAMSUNG phone number SAMSUNG SAMSUNG
customer service phone number SAMSUNG SAMSUNG contact phone number SAMSUNG
SAMSUNG printer phone number SAMSUNG SAMSUNG printer customer service phone
number SAMSUNG phone number SAMSUNG for SAMSUNG customer service SAMSUNG
software phone number SAMSUNG phone number SAMSUNG for SAMSUNG SAMSUNG customer
service telephone number SAMSUNG SAMSUNG helpline phone number SAMSUNG SAMSUNG
contact number SAMSUNG SAMSUNG customer service number SAMSUNG SAMSUNG customer
service phone number ~!~I8007909186++ SAMSUNG us SAMSUNG customer service phone
number SAMSUNG usa SAMSUNG telephone number SAMSUNG SAMSUNG phone number
SAMSUNG usa SAMSUNG printer contact number SAMSUNG SAMSUNG number SAMSUNG
SAMSUNG contact number SAMSUNG usa SAMSUNG printer helpline number SAMSUNG
SAMSUNG helpline number SAMSUNG SAMSUNG customer number SAMSUNG SAMSUNG printer
customer service number SAMSUNG SAMSUNG contact telephone number SAMSUNG
contact number SAMSUNG for SAMSUNG SAMSUNG software contact number SAMSUNG
SAMSUNG toll free number SAMSUNG SAMSUNG telephone number SAMSUNG uk SAMSUNG
registration number SAMSUNG SAMSUNG toll free number SAMSUNG usa SAMSUNG
customer service SAMSUNG software customer service contact SAMSUNG customer
service SAMSUNG customer service phone SAMSUNG printer customer service SAMSUNG
service SAMSUNG printer technical support SAMSUNG printer customer support
SAMSUNG technical support reviews telephone SAMSUNG printer SAMSUNG tech
support phone number SAMSUNG SAMSUNG printer tech support phone number SAMSUNG
SAMSUNG printer customer service SAMSUNG technical support phone number SAMSUNG
SAMSUNG printer free printer support SAMSUNG customer service billing SAMSUNG
customer service email address SAMSUNG customer service reviews contact SAMSUNG
customer service SAMSUNG tech support number SAMSUNG usa SAMSUNG printer
support number SAMSUNG SAMSUNG printer contact number SAMSUNG SAMSUNG customer
service phone number SAMSUNG SAMSUNG technical support usa SAMSUNG technical
support number SAMSUNG SAMSUNG tech support phone SAMSUNG tech support number
SAMSUNG SAMSUNG customer service telephone number SAMSUNG SAMSUNG printer
customer support number SAMSUNG SAMSUNG printer phone number SAMSUNG SAMSUNG
printer online support SAMSUNG customer service number SAMSUNG SAMSUNG tech
support center SAMSUNG customer service SAMSUNG software customer service
SAMSUNG customer care number SAMSUNG usa SAMSUNG customer number SAMSUNG
SAMSUNG customer support number SAMSUNG SAMSUNG customer care number SAMSUNG
SAMSUNG customer care toll free number SAMSUNG SAMSUNG tech support SAMSUNG
technical support SAMSUNG printer support SAMSUNG printer tech support SAMSUNG
support center SAMSUNG.com customer service SAMSUNG printer customer care
number SAMSUNG SAMSUNG customer care SAMSUNG phone number SAMSUNG phone number
SAMSUNG for SAMSUNG customer service SAMSUNG phone support SAMSUNG phone number
SAMSUNG tech support SAMSUNG support phone number SAMSUNG contact SAMSUNG by
phone SAMSUNG contact phone number SAMSUNG SAMSUNG helpline phone number
SAMSUNG SAMSUNG printer phone SAMSUNG printer for phone SAMSUNG contact number
SAMSUNG SAMSUNG contact support contact SAMSUNG printer SAMSUNG contact number
SAMSUNG usa SAMSUNG toll free number SAMSUNG SAMSUNG telephone number SAMSUNG
SAMSUNG toll free number SAMSUNG usa SAMSUNG printer support services technical
support for printer SAMSUNG SAMSUNG customer service phone number SAMSUNG usa
SAMSUNG printer customer care number SAMSUNG usa SAMSUNG customer care number
SAMSUNG SAMSUNG customer care center SAMSUNG customer support SAMSUNG customer
support phone SAMSUNG customer help SAMSUNG customer & technical support
SAMSUNG customer portal SAMSUNG customer care phone number SAMSUNG usa SAMSUNG
customer care email SAMSUNG helpline SAMSUNG tech support contact SAMSUNG
customer care toll free SAMSUNG printer customer service number SAMSUNG SAMSUNG
printer protection norton printer customer service number SAMSUNG SAMSUNG
software customer service number SAMSUNG SAMSUNG hotline customer service phone
number SAMSUNG SAMSUNG customer service phone number SAMSUNG us how to contact
SAMSUNG by email SAMSUNG free phone support SAMSUNG printer technical support
number SAMSUNG SAMSUNG printer technical support help desk phone number SAMSUNG
SAMSUNG technical support number SAMSUNG toll free number SAMSUNG SAMSUNG
printer customer support phone number SAMSUNG SAMSUNG printer customer
>From gcc-bugs-return-533980-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 20:41:03 2016
Return-Path: <gcc-bugs-return-533980-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 13690 invoked by alias); 10 Aug 2016 20:41:02 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 13405 invoked by uid 48); 10 Aug 2016 20:40:49 -0000
From: "ravi10 at codehot dot co.uk" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/73081] New: aabiskohatalo @1…5p9(47^^@@%@%@$$ Kodak Printer tech support phone number
Date: Wed, 10 Aug 2016 20:41:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: 4.0.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ravi10 at codehot dot co.uk
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-73081-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01316.txt.bz2
Content-length: 8298

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73081

            Bug ID: 73081
           Summary: aabiskohatalo @1=855=709=2847^^@@%@%@$$ Kodak Printer
                    tech support phone number
           Product: gcc
           Version: 4.0.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ada
          Assignee: unassigned at gcc dot gnu.org
          Reporter: ravi10 at codehot dot co.uk
  Target Milestone: ---

Created attachment 39125
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39125&action=edit
contact number Support +@1 8557092847 @@+@ Canon Printer techNical support
customer service number helpline number Telephone Number Canon Printer @@@@
+++1* 855 ~709 2847++++ @@@@ Customer Service Pho

contact number Support +@1 8557092847 @@+@ Canon Printer techNical support
customer service number helpline number Telephone Number
Canon Printer @@@@ +++1* 855 ~709 2847++++ @@@@ Customer Service Phone Number
Canon Printer TechNICAL Support Phone Number Helpline~Number~1855 709 2847
CANON Printer Tech Support phone number CANON printer Customer Service phone
number Helpline Number ++++1855 709 2847 ++++CANON Printer Tech Support phone
number CANON printer Customer Service phone number C@ll CANON printeR UsA @@
1855 709 2847 @@ tech support phone number CANON printer customer service phone
number C@ll CANON printeR UsA @@ 1855 709 2847 @@ tech support phone number
CANON printer customer service phone number C@ll CANON printeR UsA @@ 1855 709
2847 @@ tech support phone number CANON printer customer service phone number
C@ll CANON printeR UsA @@ 1855 709 2847 @@ tech support phone number CANON
printer customer service phone number CANON printer UsA @@ 1855 709 2847 @@
tech support phone number CANON printer customer service phone number Describe
CANON printer UsA @ 1855 709 2847 @ tech support phone number CANON printer
customer service phone number here. CANON printer UsA @ 1855 709 2847 @ tech
support phone number CANON printer support phone number Describe CANON printer
UsA @ 1855 709 2847 @ tech support phone number CANON printer support phone
number here.855 709 2847@ CANON printer tech support, CANON printer tech
support number, CANON printer tech support phone number, CANON printer
technical support, CANON printer technical support number, CANON printer
technical support phone number, @+855 709 2847 @ CANON printer Support phone
number, CANON printer contact number, CANON printer helpline number, CANON
printer telephone number, contact number for CANON printer, telephone number
for CANON printer, @+855 709 2847 @ CANON printer customer service number,
CANON printer Customer service phone number, CANON printer Customer support
number, CANON printer Customer support phone number, CANON printer Customer
care number. Disclaimer: CANON printer is an independent provider of remote
tech support for third party products. Any use of third party trademarks, brand
names, product and services is only referential. CANON printer hereby disclaims
any sponsorship, affiliation or endorsement of or by any third-parties. If your
product is covered by warranty, the support service maybe available for free
from manufacturer. CANON printer support, CANON printers support, CANON printer
tech support, CANON printer technical support, CANON printer support number,
CANON printers customer support, CANON printer customer support, contact CANON
printer support, CANON printer support phone number, CANON printer support
phone, CANON technical support, CANON printers tech support, CANON support,
CANON printer support forum, CANON tech support, CANON printer technical
support phone number, CANON support number, CANON customer support, support for
CANON printers, CANON support printer, CANON support wireless, CANON printers
support phone number, CANON scanner support, contact CANON support, CANON
customer support phone number, CANON product support CANON printer Customer
Service Phone Number Describe CANON printer Usa @ 1855 709 2847 @ tech support
phone number CANON printer support phone number here.CANON printer | 1855 709
2847 | tech support phone number CANON printer customer care phone number CANON
printer support phone number 1-855 709 2847 (australia) Online Best CANON
printer support by toll free phone number 1-855 709 2847 (Australia) to fix
troubleshooting issues. We provide CANON printer technical customer service to
resolve problems when your printer not printing, problem to download printer
drivers, configure network and other issues. Keyword: CANON printer support,
CANON printer tech support phone number 1855 709 2847(USA) CANON printer
support phone number USA, UK, CANADA,AustraliaOnline Best CANON printer support
by toll free phone number 1-855 709 2847 (Australia) to fix troubleshooting
issues. We provide CANON printer technical customer service to resolve problems
when your printer not printing, problem to download printer drivers, configure
network and other issues. (For UK 0-855-709-2847), (For USA 1855 709 2847),
(For AUSTRALIA 1-855 709 2847) CANON printer service center number CANON
customer service number usa CANON telephone number CANON printer help number
CANON printer customer service number usa CANON service number CANON printer
customer service telephone number CANON help number CANON helpline number CANON
printer tech support telephone number CANON printers service center number
CANON customer care number CANON support Canada phone number CANON canada
support number CANON phone number canada CANON canada phone number CANON
service center contact number CANON canada contact number CANON contact number
Canada CANON service toll free number CANON customer care toll free number
CANON printer customer support phone number CANON printers support phone number
CANON customer support phone number CANON printer support CANON printer support
number CANON usa support phone number CANON support phone number CANON customer
service number CANON technical support numberCANON help phone number CANON
support phone number CANON customer service number CANON technical support
number CANON help phone number CANON contact number CANON customer service
phone number usa CANON printer customer support number CANON printers tech
support phone number CANON phone number support phone number for CANON CANON
printer tech support number CANON printers phone number phone number for CANON
printers CANON printer customer care phone number CANON customer support
telephone number CANON printers customer service phone number CANON printer
helpline phone number CANON support number usa CANON 855 number CANON customer
care phone number CANON printer technical support telephone number CANON
printers customer service number CANON printers customer care number CANON
printers contact number Dial @+855 709 2847@ CANON printer driver support
number, CANON printer toll free number, CANON printer customer care toll free
number, CANON printer support toll free number, @+ CANON customer support phone
number CANON printer support CANON printer support number CANON usa support
phone number CANON support phone number CANON customer service number CANON
technical support numberCANON help phone number CANON support phone number
CANON customer service number CANON technical support number CANON help phone
number CANON contact number CANON customer service phone number usa CANON
printer customer support number CANON printers tech support phone number CANON
phone number support phone number for CANON CANON printer tech support number
CANON printers phone number phone number for CANON printers CANON printer
customer care phone number CANON customer support telephone number CANON
printers customer service phone number CANON printer helpline phone number
CANON support number usa CANON 855 number CANON customer care phone number
CANON printer technical support telephone number CANON printers customer
service number CANON printers customer care number CANON printers contact
number Dial @+855 709 2847@ CANON printer driver support number, CANON printer
toll free number, CANON printer customer care toll free number, CANON printer
support toll free number, @+
>From gcc-bugs-return-533981-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 20:48:31 2016
Return-Path: <gcc-bugs-return-533981-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 64391 invoked by alias); 10 Aug 2016 20:48:29 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 64288 invoked by uid 48); 10 Aug 2016 20:48:17 -0000
From: "badgrl at codehot dot co.uk" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/73108] New: Get Help @+***1..855..709..2847**$$@@ Canon  Printer Technical Support Contact Number,
Date: Wed, 10 Aug 2016 20:48:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: 4.0.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: badgrl at codehot dot co.uk
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-73108-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01317.txt.bz2
Content-length: 7640

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73108

            Bug ID: 73108
           Summary: Get Help @+***1..855..709..2847**$$@@ Canon  Printer
                    Technical Support Contact Number,
           Product: gcc
           Version: 4.0.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ada
          Assignee: unassigned at gcc dot gnu.org
          Reporter: badgrl at codehot dot co.uk
  Target Milestone: ---

Created attachment 39127
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39127&action=edit
((moti))Call @@@++ USA I8557O92847 CANON  p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l CANON  h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a CANON  s.u.p.p.o.r.t p.h.o

((moti))Call @@@++ USA I8557O92847 CANON  p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l CANON  h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a CANON  s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa USA 1
I8557O92847 CANON  p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r
u.s.a. C.a.l.l CANON  h.e.l.p d.e.s.k n.u.m.b.e.r n.u.m.b.e.r C.a.n.a.d.a CANON
 s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa canada 1-1855-709-2847 USA, CANON 
printer Tech Support phone number,CANON  technical support phone number 1
I8557O92847 .CANON  Tech Support Number CANON  Tech CANON  tech support, CANON 
tech support number, CANON  tech support phone number, CANON  technical
support, CANON  technical support number, CANON  technical support phone
number, CANON  tech support number, CANON  support number, CANON  Tech support
phone number, CANON  support phone number, CANON  technical support phone
number, CANON  technical support number,Support Phone Number for CANON  printer
Phone Number for CANON  CustomerService Technical Support Telephone Number
CANON  printer support number CANON  CANON  printer tech support number CANON 
CANON  printer technical support number CANON  CANON  printer technical support
phone number CANON  CANON  printer customer service number CANON  CANON 
internet security technical support CANON  technical support phone number CANON
 CANON  tech support phone number CANON  CANON  customer support phone number
I-855-709-2847 CANON  CANON  printer support phone number CANON  CANON  support
phone CANON  tech support CANON  customer support CANON  phone support CANON 
support number CANON  CANON  technical support CANON  printer customer support
phone number CANON  CANON  printer tech support phone number CANON  contact
CANON  support CANON  printer technical support phone number ~!~I8557092847++
CANON  CANON  phone number CANON  tech support CANON  support ticket CANON 
customer support number CANON  CANON  tech support number CANON  CANON 
technical support number CANON  CANON  support center CANON  telephone support
call CANON  support CANON  printer support support CANON  CANON  billing
support CANON  printer technical support number CANON  support CANON  printer
CANON  online support CANON  contact support CANON  printer support number
CANON  CANON  printer customer support number CANON  CANON  printer tech
support number CANON  support for CANON  CANON  phone number CANON  CANON 
customer service phone number CANON  CANON  contact phone number CANON  CANON 
printer phone number CANON  CANON  printer customer service phone number CANON 
phone number CANON  for CANON  customer service CANON  software phone number
CANON  phone number CANON  for CANON  CANON  customer service telephone number
CANON  CANON  helpline phone number CANON  CANON  contact number CANON  CANON 
customer service number CANON  CANON  customer service phone number
~!~I8557092847++ CANON  us CANON  customer service phone number CANON  usa
CANON  telephone number CANON  CANON  phone number CANON  usa CANON  printer
contact number CANON  CANON  number CANON  CANON  contact number CANON  usa
CANON  printer helpline number CANON  CANON  helpline number CANON  CANON 
customer number CANON  CANON  printer customer service number CANON  CANON 
contact telephone number CANON  contact number CANON  for CANON  CANON 
software contact number CANON  CANON  toll free number CANON  CANON  telephone
number CANON  uk CANON  registration number CANON  CANON  toll free number
CANON  usa CANON  customer service CANON  software customer service contact
CANON  customer service CANON  customer service phone CANON  printer customer
service CANON  service CANON  printer technical support CANON  printer customer
support CANON  technical support reviews telephone CANON  printer CANON  tech
support phone number CANON  CANON  printer tech support phone number CANON 
CANON  printer customer service CANON  technical support phone number CANON 
CANON  printer free printer support CANON  customer service billing CANON 
customer service email address CANON  customer service reviews contact CANON 
customer service CANON  tech support number CANON  usa CANON  printer support
number CANON  CANON  printer contact number CANON  CANON  customer service
phone number CANON  CANON  technical support usa CANON  technical support
number CANON  CANON  tech support phone CANON  tech support number CANON  CANON
 customer service telephone number CANON  CANON  printer customer support
number CANON  CANON  printer phone number CANON  CANON  printer online support
CANON  customer service number CANON  CANON  tech support center CANON 
customer service CANON  software customer service CANON  customer care number
CANON  usa CANON  customer number CANON  CANON  customer support number CANON 
CANON  customer care number CANON  CANON  customer care toll free number CANON 
CANON  tech support CANON  technical support CANON  printer support CANON 
printer tech support CANON  support center CANON .com customer service CANON 
printer customer care number CANON  CANON  customer care CANON  phone number
CANON  phone number CANON  for CANON  customer service CANON  phone support
CANON  phone number CANON  tech support CANON  support phone number CANON 
contact CANON  by phone CANON  contact phone number CANON  CANON  helpline
phone number CANON  CANON  printer phone CANON  printer for phone CANON 
contact number CANON  CANON  contact support contact CANON  printer CANON 
contact number CANON  usa CANON  toll free number CANON  CANON  telephone
number CANON  CANON  toll free number CANON  usa CANON  printer support
services technical support for printer CANON  CANON  customer service phone
number CANON  usa CANON  printer customer care number CANON  usa CANON 
customer care number CANON  CANON  customer care center CANON  customer support
CANON  customer support phone CANON  customer help CANON  customer & technical
support CANON  customer portal CANON  customer care phone number CANON  usa
CANON  customer care email CANON  helpline CANON  tech support contact CANON 
customer care toll free CANON  printer customer service number CANON  CANON 
printer protection norton printer customer service number CANON  CANON 
software customer service number CANON  CANON  hotline customer service phone
number CANON  CANON  customer service phone number CANON  us how to contact
CANON  by email CANON  free phone support CANON  printer technical support
number CANON  CANON  printer technical support help desk phone number CANON 
CANON  technical support number CANON  toll free number CANON  CANON  printer
customer support phone number CANON  CANON  printer customer
>From gcc-bugs-return-533982-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 20:54:28 2016
Return-Path: <gcc-bugs-return-533982-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 71563 invoked by alias); 10 Aug 2016 20:54:28 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 71465 invoked by uid 48); 10 Aug 2016 20:54:16 -0000
From: "admaclark128 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug boehm-gc/73121] New: **MICROSOFT 18002132171 outlook express 18002132171 hot Contact
Date: Wed, 10 Aug 2016 20:54:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: boehm-gc
X-Bugzilla-Version: trans-mem
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: admaclark128 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73121-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01318.txt.bz2
Content-length: 15752

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73121

            Bug ID: 73121
           Summary: **MICROSOFT 18002132171 outlook express 18002132171
                    hot Contact
           Product: gcc
           Version: trans-mem
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: boehm-gc
          Assignee: unassigned at gcc dot gnu.org
          Reporter: admaclark128 at gmail dot com
  Target Milestone: ---

**MICROSOFT 18002132171 outlook express 18002132171 hot Contact

@@Call for help number +++18002132171 @usa Tech Support

@@Call for help number +++18002132171 @usa Tech Support

PHONE NUMBER @@@ 18002132171 @ MICROSOFT OFFICE 365
PHONE NUMBER MS TECHNICAL SUPPORT PHONE NUMBER

Phone Number @@@18002132171@ Microsoft Office 365 Phone Number Ms Technical
Support Phone Number
Number @@@18002132171@ Microsoft Office 365 Phone Number Ms Technical Support
Phone Number Technical Phone Number @@@18002132171@
Toll Free @@@18002132171@Office 365 Support Phone Number Office toll free
number office helpline phone number
Office 365 Helpline Phone Number ||@@@18002132171@||
Toll Free @@@18002132171@Office 365 Support Phone Number Office toll free
number office helpline phone number
Office 365 Customer Care Phone Number ||@@@18002132171@||
Microsoft Office 365 Toll Free Number ||@@@18002132171@||
https://answers.launchpad.net/inkscape/+question/333405
Toll Free +||18002132171|| Office 365 Support Phone Number Office toll free
number office helpline phone number
USA/CANADA Microsoft Office/Outlook 365 Phone Number @@@18002132171@ Microsoft
Helpline support phone number ms office toll Free phone number Microsoft 365
Help-18002132171 Microsoft 365 Help support phone number Microsoft office 365
toll free number USA-CANADA
Microsoft 365 Toll Free++18002132171++Number,Microsoft Office 365 Helpline
Phone Number
Outlook 365 Toll Free Number @@@18002132171@ Microsoft Outlook 365 Helpline
phone number ms office helpline phone number Toll Free @@@18002132171@
Microsoft Office Technical Support Number 1-8002905189. Internet. Myself Only.
Toll Free: @@@18002132171@ (USA) @@@18002132171@ (CANADA) Toll Free Support
Number
Microsoft 365 Toll Free +@@@18002132171@ Number,Microsoft Office 365 Helpline
Phone Number
Microsoft Office 365 support number@@@18002132171@ , Office 365
support,Microsoft Office support,Microsoft Office help Office 365 support
number,Microsoft Office customer service,Microsoft help number,@@@18002132171@
Microsoft 365 support,Microsoft Office 365 support Microsoft Office support
number@@@18002132171@ ,Office 365 phone support,*@@@18002132171@ Microsoft
Office tech support,Microsoft Office support phone number
Microsoft 365 Toll Free +@@@18002132171@ Number,Microsoft Office 365 Helpline
Phone Number
@@@18002132171@ Ms Office 365 Technical @@@18002132171@ ++ Support Phone Number
Microsoft Office 365 Phone Number @@@18002132171@ Microsoft Office 365 Tech
Support Phone Number, Microsoft Office Customer Service Phone Number Microsoft
Office Phone Number @@@18002132171@ Microsoft Office 365 Tech Support Phone
Number, Microsoft Office Customer Service Phone Number @@@18002132171@
Microsoft Office tech support phone number , Microsoft offce technical service
phone number ,Microsoft customer support phone number +18002905189
Microsoft 365 Toll Free +@@@18002132171@ Number,Microsoft Office 365 Helpline
Phone Number
MicrosoftOfficetechsupportphonenumber,Microsoftoffcetechnicalservicephonenumber,Microsoftcustomersupportphone_number)
Microsoft 365 Toll Free +@@@18002132171@ Number,Microsoft Office 365 Helpline
Phone NumberPHONE NUMBER @@@18002132171@ MICROSOFT OFFICE 365 PHONE NUMBER MS
TECHNICAL SUPPORT PHONE NUMBER

Phone Number @@@18002132171@ Microsoft Office 365 Phone Number Ms Technical
Support Phone Number
Number @@@18002132171@ Microsoft Office 365 Phone Number Ms Technical Support
Phone Number Technical Phone Number @@@18002132171@
Toll Free @@@18002132171@Office 365 Support Phone Number Office toll free
number office helpline phone number
Office 365 Helpline Phone Number ||@@@18002132171@||
Toll Free @@@18002132171@Office 365 Support Phone Number Office toll free
number office helpline phone number
Office 365 Customer Care Phone Number ||@@@18002132171@||
Microsoft Office 365 Toll Free Number ||@@@18002132171@||
@@@18002132171@
Toll Free +||18002132171|| Office 365 Support Phone Number Office toll free
number office helpline phone number
USA/CANADA Microsoft Office/Outlook 365 Phone Number @@@18002132171@ Microsoft
Helpline support phone number ms office toll Free phone number Microsoft 365
Help-18002132171 Microsoft 365 Help support phone number Microsoft office 365
toll free number USA-CANADA
Microsoft 365 Toll Free +@@@18002132171@ Number,Microsoft Office 365 Helpline
Phone Number
Outlook 365 Toll Free Number @@@18002132171@ Microsoft Outlook 365 Helpline
phone number ms office helpline phone number Toll Free @@@18002132171@
Microsoft Office Technical Support Number 1-8002905189. Internet. Myself Only.
Toll Free: @@@18002132171@ (USA) @@@18002132171@ (CANADA) Toll Free Support
Number
Microsoft 365 Toll Free +@@@18002132171@ Number,Microsoft Office 365 Helpline
Phone Number
Microsoft Office 365 support number@@@18002132171@ , Office 365
support,Microsoft Office support,Microsoft Office help Office 365 support
number,Microsoft Office customer service,Microsoft help number,@@@18002132171@
Microsoft 365 support,Microsoft Office 365 support Microsoft Office support
number@@@18002132171@ ,Office 365 phone support,*@@@18002132171@ Microsoft
Office tech support,Microsoft Office support phone number
Microsoft 365 Toll Free +@@@18002132171@ Number,Microsoft Office 365 Helpline
Phone Number
@@@18002132171@ Ms Office 365 Technical @@@18002132171@ ++ Support Phone Number
Microsoft Office 365 Phone Number @@@18002132171@ Microsoft Office 365 Tech
Support Phone Number, Microsoft Office Customer Service Phone Number Microsoft
Office Phone Number @@@18002132171@ Microsoft Office 365 Tech Support Phone
Number, Microsoft Office Customer Service Phone Number @@@18002132171@
Microsoft Office tech support phone number , Microsoft offce technical service
phone number ,Microsoft customer support phone number +18002905189
Microsoft 365 Toll Free +@@@18002132171@ Number,Microsoft Office 365 Helpline
Phone Number
MicrosoftOfficetechsupportphonenumber,Microsoftoffcetechnicalservicephonenumber,Microsoftcustomersupportphone_number)
Microsoft 365 Toll Free +@@@18002132171@ Number,Microsoft Office 365 Helpline
Phone NumberPHONE NUMBER @@@18002132171@ MICROSOFT OFFICE 365 PHONE NUMBER MS
TECHNICAL SUPPORT PHONE NUMBER

Phone Number @@@18002132171@ Microsoft Office 365 Phone Number Ms Technical
Support Phone Number
Number @@@18002132171@ Microsoft Office 365 Phone Number Ms Technical Support
Phone Number Technical Phone Number @@@18002132171@
Toll Free @@@18002132171@Office 365 Support Phone Number Office toll free
number office helpline phone number
Office 365 Helpline Phone Number ||@@@18002132171@||
Toll Free @@@18002132171@Office 365 Support Phone Number Office toll free
number office helpline phone number
Office 365 Customer Care Phone Number ||@@@18002132171@||
Microsoft Office 365 Toll Free Number ||@@@18002132171@||
@@@18002132171@
Toll Free +||18002132171|| Office 365 Support Phone Number Office toll free
number office helpline phone number
USA/CANADA Microsoft Office/Outlook 365 Phone Number @@@18002132171@ Microsoft
Helpline support phone number ms office toll Free phone number Microsoft 365
Help-18002132171 Microsoft 365 Help support phone number Microsoft office 365
toll free number USA-CANADA
Microsoft 365 Toll Free +@@@18002132171@ Number,Microsoft Office 365 Helpline
Phone Number
Outlook 365 Toll Free Number @@@18002132171@ Microsoft Outlook 365 Helpline
phone number ms office helpline phone number Toll Free @@@18002132171@
Microsoft Office Technical Support Number 1-8002905189. Internet. Myself Only.
Toll Free: @@@18002132171@ (USA) @@@18002132171@ (CANADA) Toll Free Support
Number
Microsoft 365 Toll Free +@@@18002132171@ Number,Microsoft Office 365 Helpline
Phone Number
Microsoft Office 365 support number@@@18002132171@ , Office 365
support,Microsoft Office support,Microsoft Office help Office 365 support
number,Microsoft Office customer service,Microsoft help number,@@@18002132171@
Microsoft 365 support,Microsoft Office 365 support Microsoft Office support
number@@@18002132171@ ,Office 365 phone support,*@@@18002132171@ Microsoft
Office tech support,Microsoft Office support phone number
Microsoft 365 Toll Free +@@@18002132171@ Number,Microsoft Office 365 Helpline
Phone Number
@@@18002132171@ Ms Office 365 Technical @@@18002132171@ ++ Support Phone Number
Microsoft Office 365 Phone Number @@@18002132171@ Microsoft Office 365 Tech
Support Phone Number, Microsoft Office Customer Service Phone Number Microsoft
Office Phone Number @@@18002132171@ Microsoft Office 365 Tech Support Phone
Number, Microsoft Office Customer Service Phone Number @@@18002132171@
Microsoft Office tech support phone number , Microsoft offce technical service
phone number ,Microsoft customer support phone number +18002905189
Microsoft 365 Toll Free +@@@18002132171@ Number,Microsoft Office 365 Helpline
Phone Number
MicrosoftOfficetechsupportphonenumber,Microsoftoffcetechnicalservicephonenumber,Microsoftcustomersupportphone_number)
Microsoft 365 Toll Free +@@@18002132171@ Number,Microsoft Office 365 Helpline
!@!@@@@@!!!@+++18002132171+++18002132171+++18002132171
@@@@@@@Call for help number +++18002132171 @usa Tech Support
@@Call for help number +++18002132171 @usa Tech Support
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
Phone NumberPHONE NUMBER @@@18002132171@ MICROSOFT OFFICE 365 PHONE NUMBER MS
TECHNICAL SUPPORT PHONE NUMBER

Phone Number @@@18002132171@ Microsoft Office 365 Phone Number Ms Technical
Support Phone Number
Number @@@18002132171@ Microsoft Office 365 Phone Number Ms Technical Support
Phone Number Technical Phone Number @@@18002132171@
Toll Free @@@18002132171@Office 365 Support Phone Number Office toll free
number office helpline phone number
Office 365 Helpline Phone Number ||@@@18002132171@||
Toll Free @@@18002132171@Office 365 Support Phone Number Office toll free
number office helpline phone number
Office 365 Customer Care Phone Number ||@@@18002132171@||
Microsoft Office 365 Toll Free Number ||@@@18002132171@||
@@@18002132171@
Toll Free +||18002132171|| Office 365 Support Phone Number Office toll free
number office helpline phone number
USA/CANADA Microsoft Office/Outlook 365 Phone Number @@@18002132171@ Microsoft
Helpline support phone number ms office toll Free phone number Microsoft 365
Help-18002132171 Microsoft 365 Help support phone number Microsoft office 365
toll free number USA-CANADA
Microsoft 365 Toll Free +@@@18002132171@ Number,Microsoft Office 365 Helpline
Phone Number
Outlook 365 Toll Free Number @@@18002132171@ Microsoft Outlook 365 Helpline
phone number ms office helpline phone number Toll Free @@@18002132171@
Microsoft Office Technical Support Number 1-8002905189. Internet. Myself Only.
Toll Free: @@@18002132171@ (USA) @@@18002132171@ (CANADA) Toll Free Support
Number
Microsoft 365 Toll Free +@@@18002132171@ Number,Microsoft Office 365 Helpline
Phone Number
Microsoft Office 365 support number@@@18002132171@ , Office 365
support,Microsoft Office support,Microsoft Office help Office 365 support
number,Microsoft Office customer service,Microsoft help number,@@@18002132171@
Microsoft 365 support,Microsoft Office 365 support Microsoft Office support
number@@@18002132171@ ,Office 365 phone support,*@@@18002132171@ Microsoft
Office tech support,Microsoft Office support phone number
Microsoft 365 Toll Free +@@@18002132171@ Number,Microsoft Office 365 Helpline
Phone Number
@@@18002132171@ Ms Office 365 Technical @@@18002132171@ ++ Support Phone Number
Microsoft Office 365 Phone Number @@@18002132171@ Microsoft Office 365 Tech
Support Phone Number, Microsoft Office Customer Service Phone Number Microsoft
Office Phone Number @@@18002132171@ Microsoft Office 365 Tech Support Phone
Number, Microsoft Office Customer Service Phone Number @@@18002132171@
Microsoft Office tech support phone number , Microsoft offce technical service
phone number ,Microsoft customer support phone number +18002905189
Microsoft 365 Toll Free +@@@18002132171@ Number,Microsoft Office 365 Helpline
Phone Number
MicrosoftOfficetechsupportphonenumber,Microsoftoffcetechnicalservicephonenumber,Microsoftcustomersupportphone_number)
Microsoft 365 Toll Free +@@@18002132171@ Number,Microsoft Office 365 Helpline
Phone NumberPHONE NUMBER @@@18002132171@ MICROSOFT OFFICE 365 PHONE NUMBER MS
TECHNICAL SUPPORT PHONE NUMBER

Phone Number @@@18002132171@ Microsoft Office 365 Phone Number Ms Technical
Support Phone Number
Number @@@18002132171@ Microsoft Office 365 Phone Number Ms Technical Support
Phone Number Technical Phone Number @@@18002132171@
Toll Free @@@18002132171@Office 365 Support Phone Number Office toll free
number office helpline phone number
Office 365 Helpline Phone Number ||@@@18002132171@||
Toll Free @@@18002132171@Office 365 Support Phone Number Office toll free
number office helpline phone number
Office 365 Customer Care Phone Number ||@@@18002132171@||
Microsoft Office 365 Toll Free Number ||@@@18002132171@||
@@@18002132171@
Toll Free +||18002132171|| Office 365 Support Phone Number Office toll free
number office helpline phone number
USA/CANADA Microsoft Office/Outlook 365 Phone Number @@@18002132171@ Microsoft
Helpline support phone number ms office toll Free phone number Microsoft 365
Help-18002132171 Microsoft 365 Help support phone number Microsoft office 365
toll free number USA-CANADA
Microsoft 365 Toll Free +@@@18002132171@ Number,Microsoft Office 365 Helpline
Phone Number
Outlook 365 Toll Free Number @@@18002132171@ Microsoft Outlook 365 Helpline
phone number ms office helpline phone number Toll Free @@@18002132171@
Microsoft Office Technical Support Number 1-8002905189. Internet. Myself Only.
Toll Free: @@@18002132171@ (USA) @@@18002132171@ (CANADA) Toll Free Support
Number
Microsoft 365 Toll Free +@@@18002132171@ Number,Microsoft Office 365 Helpline
Phone Number
Microsoft Office 365 support number@@@18002132171@ , Office 365
support,Microsoft Office support,Microsoft Office help Office 365 support
number,Microsoft Office customer service,Microsoft help number,@@@18002132171@
Microsoft 365 support,Microsoft Office 365 support Microsoft Office support
number@@@18002132171@ ,Office 365 phone support,*@@@18002132171@ Microsoft
Office tech support,Microsoft Office support phone number
Microsoft 365 Toll Free +@@@18002132171@ Number,Microsoft Office 365 Helpline
Phone Number
@@@18002132171@ Ms Office 365 Technical @@@18002132171@ ++ Support Phone Number
Microsoft Office 365 Phone Number @@@18002132171@ Microsoft Office 365 Tech
Support18002132171 Phone Number, Microsoft Office Customer Service Phone Number
Microsoft Office Phone Number @@@18002132171@ Microsoft Office 365 Tech Support
Phone Number, Microsoft Office Customer Service Phone Number @@@18002132171@
Microsoft Office tech support phone number , Microsoft offce technical service
phone number ,Microsoft customer support phone number +18002905189
Microsoft 365 Toll Free +@@@18002132171@ Number,Microsoft Office 365 Helpline
Phone Number
MicrosoftOfficetechsupportphonenumber,Microsoftoffcetechnicalservicephonenumber,Microsoftcustomersupportphone_number)
Microsoft 365 Toll Free +@@@18002132171@ Number,Microsoft Office 365 Helpline
Phone Number
>From gcc-bugs-return-533983-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 20:55:19 2016
Return-Path: <gcc-bugs-return-533983-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 73069 invoked by alias); 10 Aug 2016 20:55:18 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 72932 invoked by uid 48); 10 Aug 2016 20:55:06 -0000
From: "Whic1969 at cuvox dot de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/73123] New: CANADA 18002613851 Toll Free Support Number
Date: Wed, 10 Aug 2016 20:55:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: fortran-dev
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: Whic1969 at cuvox dot de
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73123-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01319.txt.bz2
Content-length: 19747

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73123

            Bug ID: 73123
           Summary: CANADA 18002613851 Toll Free Support Number
           Product: gcc
           Version: fortran-dev
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: Whic1969 at cuvox dot de
  Target Milestone: ---

Activate Windows 10/8 by Phone: 1800-261-3851 number usa/canada




Activate Windows 10/8 by Phone: 1800-261-3851 number usa/canada

Activate Windows 10/8 by Phone: 1800-261-3851 number usa/canada

Any one got a number for Microsoft:1800-261-3851 activation center

Activate Windows 10/8 by Phone: 1800-261-3851 number usa/canada

Issuse CALL technical 18002613851 MICROSOFT OFFICE SUPPORT Phone Number

18002613851@@MICROSOFT OFFICE SUPPORT Phone Numbe
microsoft technical support phone number
windows technical support phone number
microsoft office technical support phone number
technical support phone number
microsoft windows 10 technical 18002613851 support phone number
microsoft technical support phone
microsoft technical support phone number us
skype technical support phone number
phone number for microsoft technical support
microsoft word technical support phone number
microsoft technical support phone number windows 8
contact microsoft technical support by phone
phone number microsoft technical support
technical support microsoft phone number
windows 8 technical support phone number
microsoft technical help phone number
phone number for windows technical support
phone call from microsoft technical support
windows phone technical support
microsoft outlook support phone number
outlook support phone number
outlook tech support phone number
microsoft outlook tech support phone number
microsoft outlook customer support phone number
outlook customer support phone number
outlook technical support number
outlook email support phone number
microsoft outlook phone number
microsoft outlook support phone number us
microsoft outlook support number
microsoft outlook technical support number usa
microsoft outlook customer service phone number
microsoft outlook technical support number
outlook help phone number
microsoft outlook email support phone number
microsoft outlook help phone number
outlook customer service phone number
microsoft outlook 2013 tech support phone number
outlook support number
microsoft outlook help number
outlook customer service number
microsoft office outlook support phone number
outlook.com support phone number
phone number for microsoft outlook
outlook email tech support phone number
microsoft outlook customer service number
microsoft outlook contact number
outlook tech support number
phone number for microsoft outlook support
phone number for outlook support
microsoft outlook number
outlook customer support number
microsoft outlook tech support number
outlook help number
phone number for outlook
microsoft outlook tech support telephone number
outlook.com phone number
microsoft outlook email support number
microsoft outlook contact phone number
microsoft outlook email customer service number
outlook.com help phone number
outlook.com customer service phone number
phone number for outlook email
outlook.com support number
outlook email phone number
outlook email support number
outlook contact phone number
outlook helpline number
outlook customer service number us
phone number for outlook.com
outlook tech support number usa
microsoft tech support phone number
windows tech support phone number
tech support phone number
microsoft office tech support phone number
microsoft tech support phone number usa
microsoft windows tech support phone number
microsoft tech support number
phone number for microsoft tech support
windows 8 tech support phone number
microsoft phone number tech support
windows tech support number
microsoft tech support phone number for windows 8
skype tech support phone number
contact microsoft tech support phone number
microsoft tech support phone numbers
tech support microsoft phone number
microsoft windows 8 tech support phone number
microsoft office tech support phone numbers
microsoft tech phone number
microsoft word tech support phone number
surface tech support phone number
free tech support phone number
microsoft office tech support number
microsoft tech help phone number
phone number for windows tech support
phone number microsoft tech support
microsoft windows tech support number
microsoft 800 number tech support
microsoft tech support number us
microsoft tech support number usa
skype tech support number
windows phone tech support number
free tech support number
microsoft word tech support number
windows 8 tech support number
hotmail technical support phone number
hotmail support phone number
hotmail customer support phone number
hotmail technical support phone number usa
hotmail phone number
hotmail tech support phone number usa
microsoft hotmail support phone number
hotmail support number
hotmail customer service number
hotmail customer support number
hotmail contact number
hotmail help phone number
hotmail support phone number usa
hotmail tech support number
phone number for hotmail
contact hotmail support phone number
hotmail email support phone number
microsoft hotmail support phone number usa
hotmail phone number support
phone number for hotmail customer service
hotmail tech support number usa
hotmail service phone number
hotmail helpline phone number
phone number for hotmail support
hotmail.com support phone number
hotmail phone number customer service
microsoft hotmail support number
phone number for hotmail email support
hotmail customer service number usa
hotmail number customer service
hotmail helpline number
windows support phone number
microsoft windows support phone number
windows support number
microsoft windows support
microsoft windows support number
windows microsoft support phone number
contact windows support phone number
phone number for windows support
windows phone support phone number
windows phone number support
microsoft windows phone support
microsoft windows phone support number
windows phone number for support
phone number for microsoft windows support
windows surface support phone number
microsoft support number windows 8
microsoft support for windows 8
microsoft windows 8 support number
office 365 support phone number
office 365 technical support phone number
microsoft 365 support phone number
microsoft office 365 support phone number
office 365 technical support phone number us
microsoft 365 technical support phone number
microsoft 365 customer support phone number
microsoft office 365 customer support phone number
microsoft office 365 technical support phone number
office 365 customer support phone number
microsoft 365 phone number
office 365 phone support
office 365 support phone number usa
office 365 support phone number us
microsoft office 365 phone number
microsoft 365 support phone
microsoft support phone number office 365
microsoft office 365 help phone number
office 365 help phone number
office 365 business support phone number
microsoft office 365 customer service phone number
office 365 customer service phone number
phone number for microsoft office 365
office 365 billing support phone number
microsoft 365 customer service phone number
microsoft 365 help phone number
phone number for office 365
office 365 customer service phone
microsoft office 365 phone support
microsoft 365 phone support
microsoft outlook technical support
microsoft outlook support
microsoft outlook tech support
microsoft office outlook support
microsoft support for outlook
microsoft support outlook
microsoft office outlook support
microsoft support for outlook
microsoft outlook telephone support
support for microsoft outlook
support microsoft outlook
office 365 outlook support
microsoft office support phone number
microsoft office phone number
microsoft office support number
office support phone number
phone number for microsoft office
phone number for microsoft office support
microsoft office phone number support
phone number microsoft office
microsoft office phone support number
microsoft office 1800 number
microsoft office number support
phone number microsoft office support
microsoft customer service phone number
microsoft customer service
microsoft customer service number
microsoft customer service and support phone number
microsoft office customer service phone number
microsoft office customer service
microsoft customer service and support
microsoft office customer service number
microsoft phone number customer service
phone number for microsoft customer service
microsoft service phone number
microsoft phone numbers for customer service
customer service phone number for microsoft
microsoft customer service phone
microsoft customer service phone number united states
customer service for microsoft
phone number to microsoft customer service
customer service number for microsoft
contact microsoft customer service
microsoft exchange customer service phone number
what is the phone number to microsoft customer service
microsoft office phone number customer service
microsoft word customer service number
phone number of microsoft customer service
what is microsoft customer service number
microsoft word customer service phone number
microsoft number customer service
microsoft support services
microsoft office customer service phone
microsoft help phone number
microsoft help number
microsoft office help phone number
windows help phone number
microsoft office help number
microsoft help desk phone number us
phone number for microsoft help
skype help phone number
microsoft windows help phone number
microsoft phone number help
microsoft help center phone number
windows help and support phone number
microsoft account help number
windows help and support number
windows 8 help phone number
microsoft windows help number
microsoft technical support phone number usa
microsoft support phone number usa
microsoft office support phone number usa
microsoft phone number usa
microsoft help phone number usa
microsoft technical support number usa
microsoft customer service phone number usa
microsoft office customer service phone number usa
microsoft number usa
microsoft contact number usa
microsoft usa phone number
microsoft office contact number usa
microsoft customer service number usa
microsoft office customer service number usa
windows customer support phone number
microsoft windows customer support phone number
windows customer service phone number
windows customer service
windows 8 customer support phone number
windows customer service number
windows customer support
windows customer support number
microsoft windows customer service phone number
microsoft windows customer service
windows 8 customer service phone number
windows phone customer service
windows 8 customer support
windows phone number customer service
microsoft windows customer support
microsoft windows customer service number
windows phone customer service phone number
windows phone customer service number
windows phone customer support
windows customer service number usa
windows customer service telephone number
microsoft windows phone number for customer service
windows 8 customer support number
customer service windows
microsoft outlook email
microsoft email support phone number
microsoft support email
microsoft email support
microsoft outlook email help
microsoft outlook email support
microsoft customer service email
email microsoft support
microsoft outlook support email
microsoft email support number
microsoft email phone number
outlook microsoft email
microsoft technical support email
microsoft customer support email
microsoft tech support email
microsoft email customer service
microsoft email help
contact microsoft support phone number
microsoft contact phone number
microsoft contact number
contact microsoft
contact microsoft support
contact microsoft support phone
how to contact microsoft
microsoft office contact number
microsoft office contact
microsoft office contact phone number
contact microsoft technical support
contact microsoft office
contact microsoft phone number
contact microsoft support by phone
contact microsoft by phone
contact number for microsoft
contact microsoft windows
microsoft support contact number
how to contact microsoft support by phone
how to contact microsoft by phone
contact phone number for microsoft
microsoft contact support
how do i contact microsoft
contact microsoft office support
how to contact microsoft technical support
how do i contact microsoft support by phone
how to contact microsoft support
contact microsoft tech support
phone number to contact microsoft
microsoft contact support number
microsoft contact phone
phone number to contact microsoft support
microsoft contact phone numbers
microsoft contact numbers
contact number for microsoft support
microsoft technical support contact
microsoft windows contact phone number
contact microsoft customer support
microsoft technical support contact number
how do i contact microsoft support
how can i contact microsoft
microsoft phone contact
microsoft technical support
microsoft technical support number
technical support microsoft
technical support for microsoft
microsoft word technical support
microsoft technical assistance
microsoft outlook express
free microsoft outlook
microsoft outlook office
outlook microsoft
microsoft office with outlook
microsoft outlook business
microsoft outlook for business
microsoft outlook customer service
microsoft outlook customer support
outlook customer service
outlook customer support
outlook email customer service
microsoft outlook customer service phone
microsoft outlook email customer service
outlook customer support phone
outlook.com customer service
outlook.com customer support
microsoft customer support number
microsoft customer support
customer service technical support
ms support phone number
ms office support phone number
windows 8 support phone number
microsoft windows 8 support phone number
microsoft support phone number windows 8
microsoft support windows 8 phone number
phone number for microsoft windows 8 support
windows technical support
windows technical support number
microsoft windows technical support
microsoft windows technical support number
windows 8 technical support number
technical support windows
technical support for windows
microsoft account support phone number
microsoft account help phone number
microsoft account customer support phone number
microsoft account customer service phone number
microsoft account phone number support
phone number for microsoft account
microsoft office customer support phone number
microsoft office customer support
office 365 customer service
microsoft office customer support phone
microsoft office customer support number
office 365 customer service number
microsoft 365 support
microsoft office 365 support
microsoft office 365 support number
microsoft 365 customer service
microsoft outlook 365 help
microsoft 365 support number
microsoft office 365 technical support
microsoft outlook 365 support
microsoft 365 technical support
microsoft office 365 for business
microsoft 365 technical support number
microsoft 365 customer support
microsoft office 365 customer support
microsoft 365 customer service number
microsoft office 365 help number
microsoft support office 365
microsoft tech support
microsoft office tech support
microsoft tech support toll free
tech support microsoft
microsoft word tech support
tech support for microsoft
microsoft online tech support
windows helpline phone number
windows contact phone number
what is windows phone number
help microsoft outlook
hotmail technical support
hotmail customer support
hotmail phone support
hotmail support email
microsoft windows tech support
windows phone tech support
microsoft office technical support
office 365 technical support
microsoft office technical support telephone number
microsoft office technical support number
office 365 tech support phone number
microsoft 365 tech support phone number
microsoft office 365 tech support phone number
office 365 tech support phone number us
microsoft office 365 tech support
microsoft 365 tech support
office 365 tech support number
microsoft customer support phone
skype customer service phone
hotmail customer service phone
skype phone number customer service
phone number for microsoft customer support
microsoft customer phone number
surface customer service phone number
microsoft customer care phone number
microsoft helpline phone number
microsoft helpline number
microsoft office helpline number
microsoft account helpline
microsoft tech support phone
microsoft office tech support phone
phone # for microsoft tech support
microsoft phone tech support
windows support phone number us
microsoft windows phone number
windows microsoft phone number
phone number for microsoft windows
microsoft outlook windows
microsoft outlook for windows
microsoft windows outlook
contact microsoft outlook
contact microsoft outlook support
how to contact microsoft outlook support
contact microsoft outlook email support
how to contact microsoft outlook
microsoft technical support chat
microsoft tech support chat
microsoft 1 800 number
800 number for microsoft
1-800-microsoft phone number
microsoft 1-800 support number
microsoft support 800 number
windows technical support phone call
call from windows technical support
call windows technical support
call microsoft windows support
vanity toll free numbers
microsoft outlook phone support
outlook phone support
contact microsoft outlook by phone
microsoft outlook on phone
microsoft outlook phone
contact microsoft office 365
contact microsoft office 365 support phone number
contact office 365 support
microsoft office 365 support contact number
microsoft 365 contact phone number
office 365 contact number
microsoft office 365 contact
contact microsoft office 365 support
office 365 contact phone number
microsoft support phone number
microsoft phone number
microsoft support phone numbers
phone number for microsoft
phone number for microsoft support
microsoft support number
microsoft it support phone number
microsoft phone number support
microsoft phone numbers
microsoft phone support number
phone number to microsoft
what is microsoft phone number
phone number microsoft
what is microsoft support phone number
microsoft phone number for support
microsoft word support phone number
phone number microsoft support
number for microsoft
number to microsoft
what is microsoft number
microsoft number support
phone number to microsoft support
number for microsoft support
microsoft account support number
what is the phone number for microsoft support
what is the phone number for microsoft
microsoft word support number
microsoft.com support phone number
microsoft assistance phone number
microsoft number for support
microsoft support numbers
what is the number for microsoft
the number to microsoft
what is the number to microsoft
what is the microsoft phone number
the phone number for microsoft
phone number for microsoft billing
what is microsoft support number
the number for microsoft
phone number of microsoft
i need a phone number for microsoft support
what is the number for microsoft support
support number for microsoft
phone numbers
applecare phone number
online phone number
surface support phone number
phone numbers free
online phone numbers
o365 support phone number
support phone numbers
1888 phone number
microsoft support phone
microsoft phone support
microsoft office support phone
microsoft office phone support
phone for microsoft support
microsoft outlook technical support phone number
>From gcc-bugs-return-533984-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 21:03:40 2016
Return-Path: <gcc-bugs-return-533984-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 100830 invoked by alias); 10 Aug 2016 21:03:40 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 100676 invoked by uid 48); 10 Aug 2016 21:03:26 -0000
From: "wschmidt at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/72855] Long compile time due to integrity checking during dataflow analysis per loop
Date: Wed, 10 Aug 2016 21:03:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 5.4.1
X-Bugzilla-Keywords: compile-time-hog
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wschmidt at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72855-4-AkcXkmapic@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72855-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72855-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01320.txt.bz2
Content-length: 485

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72855

--- Comment #10 from Bill Schmidt <wschmidt at gcc dot gnu.org> ---
Some experiments on trunk:

- Using Bin's patch, I see compile time reduced to ~14 minutes.
- Using Richi's patch, I see compile time reduced to ~9 minutes.

So both are quite helpful compared to somewhere around 2 hours.

I'll plan to implement the pre-approved patch, but first I want to try to dig
into why flag_checking appears to have an unexpected value.
>From gcc-bugs-return-533985-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 21:09:52 2016
Return-Path: <gcc-bugs-return-533985-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 117398 invoked by alias); 10 Aug 2016 21:09:51 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 116271 invoked by uid 48); 10 Aug 2016 21:09:39 -0000
From: "gweberbv@t-online.de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/73142] New: Reading a namelist fails - my code worked until 4.8.2
Date: Wed, 10 Aug 2016 21:09:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: gweberbv@t-online.de
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-73142-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01321.txt.bz2
Content-length: 1334

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73142

            Bug ID: 73142
           Summary: Reading a namelist fails - my code worked until 4.8.2
           Product: gcc
           Version: 6.1.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: fortran
          Assignee: unassigned at gcc dot gnu.org
          Reporter: gweberbv@t-online.de
  Target Milestone: ---

Created attachment 39129
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39129&action=edit
Minimum example

Hi folks,

I am using the GCC package for Windows provided by www.equation.com. It looks
like after version 4.8.2 a bug was introduced in the reading of namelists. The
reading is rubbish when the data file has a certain format. But at least in
Windows when you open the data file in a common editor you see identical
content to a version of the data file, which can be read correctly.

Attached please find the minimum example of my code. FileA.dat will work,
FileB.dat doesn't. There is no such problem when using GCC 4.8.2 and older
versions.
That the bug was introduced is a pity because the code that does not work right
now is part of a major Monte Carlo program used in high energy physics.

I would really appreciate if someone could fix this issue.

Sincerely,
Günter
>From gcc-bugs-return-533986-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 21:10:12 2016
Return-Path: <gcc-bugs-return-533986-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 118612 invoked by alias); 10 Aug 2016 21:10:12 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 118237 invoked by uid 48); 10 Aug 2016 21:09:59 -0000
From: "shivangi120 at yopmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: =?UTF-8?B?W0J1ZyBib2VobS1nYy83MzE0M10gTmV3OiBtaGFuZGFyYSArMS4rLjgwMC4r?= =?UTF-8?B?Ljc1MC4rLjY1ODQgV2Vicm9vdCBBbnRpdmlydXMgU3VwcG9ydCBQaG9uZSBu?= =?UTF-8?B?dW1iZXLiq7jiq7gg4qu44qu4V2Vicm9vdCBBbnRpdmlydXMgdGVjaG5pY2Fs?= =?UTF-8?B?IHN1cHBvcnQ=?Date: Wed, 10 Aug 2016 21:10:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: boehm-gc
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: shivangi120 at yopmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73143-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01322.txt.bz2
Content-length: 14861

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73143

            Bug ID: 73143
           Summary: mhandara +1.+.800.+.750.+.6584 Webroot Antivirus
                    Support Phone number⫸⫸ ⫸⫸Webroot Antivirus technical
                    support
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: boehm-gc
          Assignee: unassigned at gcc dot gnu.org
          Reporter: shivangi120 at yopmail dot com
  Target Milestone: ---

1-800-7.5.0-6584 webroot T.e.c.h.n.i.c.a.l S.u.p.p.o.r.t P.h.o.n.e n.u.m.b.e.r
webroot p.h.o.n.e N.u.m.b.e.r
webroot HelpLiNe @+1800++750++6584 webroot support phone number.
webroot helpline phone number@~1800-750-6584 webroot tech Support Number
webroot antivirus customer service phone number.

USA-1800-750-6584) Technical support number
 AUS-1800-750-6584 Webroot Antivirus Technical Support
 1-800-750-6584 contact Webroot Antivirus customer service phone number
 UK- 800-750*6584 phone number for Webroot customer service
 AUS-1800-750-6584 phone number for Webroot Antivirus technical support
 Canada-1800-750-6584 phone number for Webroot Antivirus customer service
phone number for Webroot Antivirus technical support
phone number for Webroot security
Webroot Antivirus customer care phone number
Webroot Antivirus customer service billing
Webroot Antivirus customer service email address
Webroot Antivirus customer service live chat
Webroot Antivirus customer service telephone number
Webroot Antivirus customer support usa phone number
Webroot Antivirus help desk support phone number free in usa
Webroot Antivirus phone number customer service us
Webroot Antivirus phone number support
Webroot Antivirus support phone number
Webroot Antivirus tech support phone number free in usa
Webroot Antivirus tech support phone number
Webroot Antivirus technical support customer service
Webroot Antivirus technical support number
Webroot Antivirus telephone number
Webroot Antivirus toll free customer care number
Webroot Antivirus toll free number in usa
Webroot Antivirus contact phone number in usa
Webroot Antivirus customer service number
Webroot Antivirus customer service phone number
Webroot Antivirus customer service telephone number
Webroot Antivirus customer support number
Webroot Antivirus customer support phone number
Webroot Antivirus customer support phone number
Webroot Antivirus help desk phone number in usa
Webroot Antivirus phone number
Webroot Antivirus phone number support for technical issue in usa
Webroot Antivirus support phone number
Webroot Antivirus technical support help desk phone number
Webroot Antivirus technical support number
Webroot Antivirus technical support phone number
Webroot customer service number
Webroot customer service telephone number
Webroot customer services email
Webroot customer support email address
Webroot customer support number
Webroot customer support phone number
Webroot customer service phone number
Webroot internet security contact phone number
Webroot internet security customer service phone number
Webroot internet security phone number
Webroot internet security help phone number
Webroot internet security phone number in usa
Webroot internet security support phone number
Webroot internet security technical support
Webroot phone number customer service
Webroot phone numbers customer support
Webroot phone support number
Webroot security contact phone number
Webroot security phone number customer service
Webroot security support phone number
Webroot support contact number
Webroot support email address
Webroot support phone number
Webroot support telephone number
Webroot support telephone number usa
Webroot support telephone number
Webroot tech support number
Webroot tech support phone number
Webroot tech support phone number free
Webroot technical support phone number
Webroot technical support cutomer phone number
Webroot technical support phone number
Webroot technical support number free in usa
Webroot technical support number toll free number
Webroot technical support phone number
Webroot technologies phone number
Webroot telephone support number
Webroot Antivirus customer support phone number
Webroot Antivirus customer service phone number
Webroot customer support phone number
Webroot phone number customer service
Webroot technical support telephone number
 contact Webroot Antivirus customer service phone number
 customer service number for Webroot Antivirus
 phone number for Webroot Antivirus
 phone number for Webroot Antivirus customer service
 phone number for Webroot Antivirus support
 phone number for Webroot customer service
 phone number for Webroot customer service
 phone number for Webroot customer support
 phone number for Webroot tech support
 phone numberWebroot Antivirus customer service
Webroot Antivirus customer service number
Webroot Antivirus customer service phone
Webroot Antivirus customer service phone number
Webroot Antivirus customer service phone number us
Webroot Antivirus customer service telephone number
Webroot Antivirus customer support
Webroot Antivirus customer support number
Webroot Antivirus phone number customer service us
Webroot Antivirus phone number support
Webroot Antivirus phone support
Webroot Antivirus phone support number
Webroot Antivirus support phone number
Webroot Antivirus tech support phone number
Webroot Antivirus technical support
Webroot Antivirus technical support number
Webroot Antivirus technical support phone number
Webroot customer service phone number
Webroot customer support phone number
Webroot helpline phone number
Webroot internet security customer service
Webroot internet security customer service phone number
Webroot internet security help phone number
Webroot internet security phone number customer service
Webroot phone number customer service
Webroot phone number customer support
Webroot security customer service phone number
Webroot security phone number customer service
Webroot support phone number
Webroot support telephone number
Webroot tech support number
Webroot tech support phone number
Webroot technical support
Webroot technical support number
Webroot technical support phone number
Webroot Antivirus customer support phone number
Webroot Antivirus phone number customer service
Webroot Antivirus tech support number
Webroot customer service phone number
Webroot customer service phone numbers
Webroot internet security technical support
Webroot tech support phone number us
Webroot technical support telephone number
 contact Webroot Antivirus
 contact Webroot by phone
 contact Webroot customer service
 contact Webroot Antivirus customer service phone number
 contact Webroot Antivirus tech support usa
 customer serviceWebroot phone number
 downloadWebroot titanium
 dri Webroot customer service number
 dri Webroot customer service phone number
 dri Webroot phone number
 how to contact Webroot by email
 how to delete Webroot from mac
 micro trend customer service
 norton Antivirus customer service number
 phone number for Webroot customer service
 phone number for Webroot customer service
 phone number for Webroot customer support
 phone number for Webroot tech support
 phone number for Webroot technical support
 phone number for Webroot Antivirus technical support
 phone number for Webroot security
 phone number for Webroot support
 phone number for Webroot technical support
 phone number for Webroot Antivirus customer service
 phone number for Webroot customer service
 removeWebroot from mac
 technical support for AntivirusWebroot
 telephone number for Webroot technical support
 telephoneWebroot Antivirus
Webroot Antivirus contact number
Webroot Antivirus customer care
Webroot Antivirus customer care number
Webroot Antivirus customer care number usa
Webroot Antivirus customer service
Webroot Antivirus customer service number :idea: :evil: :D :) :lol: :( :o
:shock:
Webroot Antivirus customer service phone number
Webroot Antivirus customer service phone number usa
Webroot Antivirus customer service telephone number
Webroot Antivirus customer support
Webroot Antivirus customer support in usa
Webroot Antivirus customer support number
Webroot Antivirus customer support phone number
Webroot Antivirus for phone
Webroot Antivirus free Antivirus support
Webroot Antivirus help phone number
Webroot Antivirus helpline number
Webroot Antivirus online support
Webroot Antivirus phone
Webroot Antivirus phone number
Webroot Antivirus phone number in usa
Webroot Antivirus phone number usa
Webroot Antivirus phone support
Webroot Antivirus plus tech support
Webroot Antivirus protection
Webroot Antivirus support
Webroot Antivirus support number
Webroot Antivirus support phone number
Webroot Antivirus support services
Webroot Antivirus support telephone number
Webroot Antivirus tech support
Webroot Antivirus tech support phone number free in usa
Webroot Antivirus tech support number
Webroot Antivirus tech support phone number
Webroot Antivirus technical support
Webroot Antivirus technical support number
Webroot Antivirus technical support phone number
Webroot Antivirus toll free customer care number
Webroot Antivirus toll free number
Webroot Antivirus contact phone number in usa
Webroot Antivirus help desk phone number in usa
Webroot Antivirus phone number support for technical issue in usa
Webroot Antivirus support phone number
Webroot Antivirus technical support help desk phone number
Webroot Antivirus technical support phone number
Webroot contact number
Webroot contact number usa
Webroot contact phone number
Webroot contact support
Webroot contact number usa
Webroot contact phone number
Webroot contact phone number usa
Webroot customer & technical support
Webroot customer care
Webroot customer care center
Webroot customer care email
Webroot customer care number
Webroot customer care number
Webroot customer care number usa
Webroot customer care number usa toll free
Webroot customer care phone number usa
Webroot customer care tchnical support
Webroot customer care toll free
Webroot customer care toll free number
Webroot customer care usa
Webroot customer help
Webroot customer number
Webroot customer portal
Webroot customer service
Webroot customer service billing
Webroot customer service email address
Webroot customer service number
Webroot customer service phone
Webroot customer service phone number
Webroot customer service phone number us
Webroot customer service phone number usa
Webroot customer service reviews
Webroot customer service telephone number
Webroot customer service usa
Webroot customer support
Webroot customer support number
Webroot customer support phone
Webroot customer support phone number
Webroot customer service number
Webroot customer service number usa
Webroot customer service phone number
Webroot customer support number
Webroot customer support phone number
Webroot free phone support
Webroot gold support phone number
Webroot help desk phone number
Webroot help phone number
Webroot helpline
Webroot helpline phone number
Webroot hotline customer service phone number
Webroot internet security customer service
Webroot internet security phone number
Webroot internet security phone number in usa
Webroot lab usa customer service
Webroot labs usa customer serviceWebroot
Webroot phone number
Webroot phone number customer service
Webroot phone number support
Webroot phone number tech support
Webroot phone number technical support
Webroot phone numbers customer support
Webroot phone support
Webroot phone support number
Webroot phone number customer service
Webroot phone number support
Webroot phone number tech support
Webroot phone number usa
Webroot security contact phone number
Webroot security phone number
Webroot security support phone number
Webroot software customer service
Webroot software customer service number
Webroot support center
Webroot support contact number
Webroot support email address
Webroot support phone number
Webroot support telephone number
Webroot support number usa
Webroot support phone number
Webroot support phone number usa
Webroot tech support
Webroot tech support center
Webroot tech support contact
Webroot tech support number
Webroot tech support number usa
Webroot tech support phone
Webroot tech support phone number
Webroot tech support phone number free
Webroot tech support number
Webroot tech support number usa
Webroot tech support phone number
Webroot technical support
Webroot technical support number
Webroot technical support phone number
Webroot technical support phone number usa
Webroot technical support reviews
Webroot technical support usa
Webroot technical support phone number
Webroot technical support number
Webroot technical support number toll free number
Webroot technical support number usa
Webroot technical support phone number
Webroot technical support phone number usa
Webroot technologies phone number
Webroot telephone number
Webroot telephone support number
Webroot toll free number
Webroot toll free number usa
Webroot usa customer care for tech support
Webroot usa customer service
Webroot usa phone number
Webroot Antivirus customer service phone number
Webroot Antivirus customer service phone number
Webroot Antivirus customer support phone number
Webroot Antivirus customer support phone number
Webroot Antivirus technical support number
Webroot customer service phone number usa
Webroot internet security support phone number
Webroot.com customer service
Webroot Antivirus antispyware 2011
Webroot Antivirus customer support
Webroot Antivirus serial key
Webroot Antivirus serial number
Webroot Antivirus support
Webroot Antivirus technical support
Webroot business support
Webroot contact support
Webroot customer care number
Webroot customer service 844
Webroot customer service number
Webroot customer service phone number
Webroot customer service telephone number
Webroot customer support
Webroot grentry non payment
Webroot helpline support number
Webroot internet security customer service
Webroot internet security technical support
Webroot oem customer service
Webroot pc cillin technical support
Webroot phone support
Webroot removal tool download
Webroot subscription renewal
Webroot support contact
Webroot support hotline
Webroot support phone number
Webroot tech support phone number
Webroot technical support
Webroot technical support chat
Webroot technical support phone number
Webroot technical support phone number usa
Webroot telephone number
Webroot titanium Antivirus
Webroot titanium internet security
Webroot titanium maximum
Webroot titanium maximum security
Webroot titanium problems
Webroot titanium removal tool
Webroot titanium reviews
Webroot titanium support
Webroot virus removal service
 uninstallWebroot smart surfing for mac
 usa customer care number for Webroot Antivirus
>From gcc-bugs-return-533987-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 21:10:12 2016
Return-Path: <gcc-bugs-return-533987-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 118664 invoked by alias); 10 Aug 2016 21:10:12 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 118286 invoked by uid 48); 10 Aug 2016 21:10:00 -0000
From: "ravi11 at codehot dot co.uk" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73144] New: KODAK 1-8-5-5-7-0-9-2-8-4-7KODAK T-e-c-h s-u-p-p-o-r-t p-h-o-n-e n-u-m-b-e-r
Date: Wed, 10 Aug 2016 21:10:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: trans-mem
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ravi11 at codehot dot co.uk
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-73144-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01323.txt.bz2
Content-length: 7269

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73144

            Bug ID: 73144
           Summary: KODAK 1-8-5-5-7-0-9-2-8-4-7KODAK T-e-c-h s-u-p-p-o-r-t
                    p-h-o-n-e n-u-m-b-e-r
           Product: gcc
           Version: trans-mem
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: ravi11 at codehot dot co.uk
  Target Milestone: ---

Created attachment 39130
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39130&action=edit
((moti))Call @@@++ USA I8557O92847 KODAK p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l KODAK h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a KODAK s.u.p.p.o.r.t p.h.o.n.

((moti))Call @@@++ USA I8557O92847 KODAK p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l KODAK h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a KODAK s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa USA 1
I8557O92847 KODAK p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r
u.s.a. C.a.l.l KODAK h.e.l.p d.e.s.k n.u.m.b.e.r n.u.m.b.e.r C.a.n.a.d.a KODAK
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa canada 1-1855-709-2847 USA, KODAK printer
Tech Support phone number,KODAK technical support phone number 1 I8557O92847
.KODAK Tech Support Number KODAK Tech KODAK tech support, KODAK tech support
number, KODAK tech support phone number, KODAK technical support, KODAK
technical support number, KODAK technical support phone number, KODAK tech
support number, KODAK support number, KODAK Tech support phone number, KODAK
support phone number, KODAK technical support phone number, KODAK technical
support number,Support Phone Number for KODAK printer Phone Number for KODAK
CustomerService Technical Support Telephone Number KODAK printer support number
KODAK KODAK printer tech support number KODAK KODAK printer technical support
number KODAK KODAK printer technical support phone number KODAK KODAK printer
customer service number KODAK KODAK internet security technical support KODAK
technical support phone number KODAK KODAK tech support phone number KODAK
KODAK customer support phone number I-855-709-2847 KODAK KODAK printer support
phone number KODAK KODAK support phone KODAK tech support KODAK customer
support KODAK phone support KODAK support number KODAK KODAK technical support
KODAK printer customer support phone number KODAK KODAK printer tech support
phone number KODAK contact KODAK support KODAK printer technical support phone
number ~!~I8557092847++ KODAK KODAK phone number KODAK tech support KODAK
support ticket KODAK customer support number KODAK KODAK tech support number
KODAK KODAK technical support number KODAK KODAK support center KODAK telephone
support call KODAK support KODAK printer support support KODAK KODAK billing
support KODAK printer technical support number KODAK support KODAK printer
KODAK online support KODAK contact support KODAK printer support number KODAK
KODAK printer customer support number KODAK KODAK printer tech support number
KODAK support for KODAK KODAK phone number KODAK KODAK customer service phone
number KODAK KODAK contact phone number KODAK KODAK printer phone number KODAK
KODAK printer customer service phone number KODAK phone number KODAK for KODAK
customer service KODAK software phone number KODAK phone number KODAK for KODAK
KODAK customer service telephone number KODAK KODAK helpline phone number KODAK
KODAK contact number KODAK KODAK customer service number KODAK KODAK customer
service phone number ~!~I8557092847++ KODAK us KODAK customer service phone
number KODAK usa KODAK telephone number KODAK KODAK phone number KODAK usa
KODAK printer contact number KODAK KODAK number KODAK KODAK contact number
KODAK usa KODAK printer helpline number KODAK KODAK helpline number KODAK KODAK
customer number KODAK KODAK printer customer service number KODAK KODAK contact
telephone number KODAK contact number KODAK for KODAK KODAK software contact
number KODAK KODAK toll free number KODAK KODAK telephone number KODAK uk KODAK
registration number KODAK KODAK toll free number KODAK usa KODAK customer
service KODAK software customer service contact KODAK customer service KODAK
customer service phone KODAK printer customer service KODAK service KODAK
printer technical support KODAK printer customer support KODAK technical
support reviews telephone KODAK printer KODAK tech support phone number KODAK
KODAK printer tech support phone number KODAK KODAK printer customer service
KODAK technical support phone number KODAK KODAK printer free printer support
KODAK customer service billing KODAK customer service email address KODAK
customer service reviews contact KODAK customer service KODAK tech support
number KODAK usa KODAK printer support number KODAK KODAK printer contact
number KODAK KODAK customer service phone number KODAK KODAK technical support
usa KODAK technical support number KODAK KODAK tech support phone KODAK tech
support number KODAK KODAK customer service telephone number KODAK KODAK
printer customer support number KODAK KODAK printer phone number KODAK KODAK
printer online support KODAK customer service number KODAK KODAK tech support
center KODAK customer service KODAK software customer service KODAK customer
care number KODAK usa KODAK customer number KODAK KODAK customer support number
KODAK KODAK customer care number KODAK KODAK customer care toll free number
KODAK KODAK tech support KODAK technical support KODAK printer support KODAK
printer tech support KODAK support center KODAK.com customer service KODAK
printer customer care number KODAK KODAK customer care KODAK phone number KODAK
phone number KODAK for KODAK customer service KODAK phone support KODAK phone
number KODAK tech support KODAK support phone number KODAK contact KODAK by
phone KODAK contact phone number KODAK KODAK helpline phone number KODAK KODAK
printer phone KODAK printer for phone KODAK contact number KODAK KODAK contact
support contact KODAK printer KODAK contact number KODAK usa KODAK toll free
number KODAK KODAK telephone number KODAK KODAK toll free number KODAK usa
KODAK printer support services technical support for printer KODAK KODAK
customer service phone number KODAK usa KODAK printer customer care number
KODAK usa KODAK customer care number KODAK KODAK customer care center KODAK
customer support KODAK customer support phone KODAK customer help KODAK
customer & technical support KODAK customer portal KODAK customer care phone
number KODAK usa KODAK customer care email KODAK helpline KODAK tech support
contact KODAK customer care toll free KODAK printer customer service number
KODAK KODAK printer protection norton printer customer service number KODAK
KODAK software customer service number KODAK KODAK hotline customer service
phone number KODAK KODAK customer service phone number KODAK us how to contact
KODAK by email KODAK free phone support KODAK printer technical support number
KODAK KODAK printer technical support help desk phone number KODAK KODAK
technical support number KODAK toll free number KODAK KODAK printer customer
support phone number KODAK KODAK printer customer
>From gcc-bugs-return-533988-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 21:10:41 2016
Return-Path: <gcc-bugs-return-533988-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 120540 invoked by alias); 10 Aug 2016 21:10:41 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 120189 invoked by uid 48); 10 Aug 2016 21:10:30 -0000
From: "johnmaclan300 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/73145] New: Urgent canada 187 7 288 2779 gmail technical support phone number alaska albama
Date: Wed, 10 Aug 2016 21:10:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: trans-mem
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: johnmaclan300 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73145-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01324.txt.bz2
Content-length: 6165

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73145

            Bug ID: 73145
           Summary: Urgent canada 187 7 288 2779 gmail technical support
                    phone number alaska albama
           Product: gcc
           Version: trans-mem
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: johnmaclan300 at gmail dot com
  Target Milestone: ---

Gmail Support phone number 1.877-288-2779
Gmail support telephone number 1.877-288-2779
Gmail support phone number 1.877-288-2779
Gmail antivirus support phone number 1.877-288-2779 Gmail 360 Tech Support
Number @@!1-877-288-2779!! Gmail 360 Support Number
Gmail antivirus tech support phone number 1.877-288-2779
Gmail antivirus customer service phone number 1.877-288-2779
Gmail 360 technical support phone number 1.877-288-2779
symantec technical support phone number 1.877-288-2779
Gmail technical support phone number 1.877-288-2779
Gmail customer service telephone number 1.877-288-2779
Gmail antivirus phone number 1.877-288-2779
Gmail antivirus customer service phone number 1.877-288-2779
Gmail antivirus customer service Support Gmail 360 Tech Support Number
@@!1-877-288-2779!! Gmail 360 Support Number
Gmail antivirus phone number 1.877-288-2779
Gmail phone number 1.877-288-2779 cancel subscription Gmail technical support
phone number USA Gmail customer service phone number USA phone number for Gmail
technical support Gmail customer service number Gmail customer service phone
number USA Gmail support number Gmail technical support number USA Gmail 
customer service number phone number for Gmail support Gmail toll free number
Gmail help phone number Gmail  customer care number Gmail customer service
number USA contact Gmail technical support phone number of USA Gmail  Gmail 
help desk support Gmail  customer support phone number Gmail  support phone
number USA Gmail phone number support Gmail billing phone number Gmail address
Gmail call center Gmail chat for technical support Gmail help desk phone number
USA USA Gmail  help desk phone number Gmail  customer care number USA
Haguu(*(((( HELP+SUPPORT))))$$$$$1-877 -288-2779Gmail  helpline number, Gmail 
tech support phone number USA@@@@@@@1-877-288- 2779@@@@@@Gmail  Tech support
phone number, Gmail  support phone number1-877-288-2779 Gmail  Tech support
phone number,Template:1(877)(288)(2779) Gmail  Phone number USA, Canada,1
(877)(288)(2779) Gmail tech Support Phone Number, Gmail 360 Phone number,Gmail
Helpline number,Gmail  Phone Number: How to install {1(877)(288)(2779)) Gmail
Phone number USA, Canada, Gmail tech Support Phone Number, Gmail 360 Phone
number,Gmail Helpline number??? US Gmail tech support number 1(877)^
(288)^(2779) Gmail  tech support number Gmail  Gmail uninstaller free Gmail 
Gmail  Gmail  phone number support northon Gmail helpline Gmail  login how to
get phone numbers Gmail  Gmail  trial Gmail number Gmail log in Gmail  free
phone numbers free Gmail disk doctor Gmail systemworks Gmail  download internet
security Gmail virus removal Gmail account phone number Gmail live chat Gmail 
Gmail internet security login Gmail search Gmail software phone number anti
virus software Gmail tech support phone number free Gmail Gmail mobile Gmail
free Gmail  software Gmail free  Gmail  phone number customer service Gmail
online backup Gmail  phone support notron quick heal Gmail toll free number
#$#1(877)(288)(2779)*##$Gmail download manager Gmail identity safe download
Gmail  Gmail install Gmail internet security8018 Gmail anti virus phone number
phone number for Gmail customer service Gmail customer phone number Gmail
customer support phone number canada symantec removal tool Gmail safe search
Gmail price Gmail toolbar Gmail av Gmail  coupon Gmail nz phone number Gmail
877 number Gmail downloads Gmail  free trial Gmail internet security 2012 Gmail
cancellation phone number Gmail updates phone book phone numbers in USA
telephone number Gmail helpline number phone directory contact Gmail by phone
Gmail subscription Gmail ghost download Gmail com support phone number Gmail 
contact Gmail  contact number technical support phone number Gmail phone  Gmail
free Gmail support phone number us Gmail removal tool phone number for Gmail 
customer service Gmail update Gmail  number Gmail  phone number canada Gmail
phone support canada Gmail spyware toll free numbers Gmail store Gmail online
family find free phone numbers Gmail account  Gmail gratis Gmail  account Gmail
contact phone number Gmail system works Gmail internet security support phone
number symantec #$#1(877)(288)(2779)*##$Gmail Gmail utilities 86 contact Gmail 
Gmail s Gmail  renewal Gmail support phone number USA Gmail customer service
phone number billing Gmail internet security support USA number Gmail review
Gmail annual renewal free  Gmail anti virus Gmail Gmail renewal Gmail  online
trend  how to contact Gmail by phone Gmail anitvirus norotn support Gmail Gmail
security contact number us numbers Gmail phone support number Gmail technical
support number Gmail customer care Gmail help desk phone number contact Gmail 
by phone Gmail  tech support number Gmail  tech support Gmail customer service
Gmail anti virus software #$#1(877)(288)(2779)*##$Gmail anti virus protection
search for phone numbers Gmail activation what is Gmail Gmail full Gmail
support phone Gmail contact us Gmail renewal code  Gmail free symantec
technical support phone number Gmail security customer service phone number
Gmail USA Gmail security support tech support number  support install Gmail 
phone number for Gmail  support live chat phone numbers Gmail customer service
phone number USA phone number in us Gmail internet security 2010 Gmail ghost
15.0 symantec tech support phone number Gmail customer support phone number
vanity numbers phone number service Gmail my account login symantec technical
support Gmail  support number  Gmail symantec support number Gmail for phone
phone number of USA phone number
>From gcc-bugs-return-533989-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 21:10:50 2016
Return-Path: <gcc-bugs-return-533989-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 121088 invoked by alias); 10 Aug 2016 21:10:49 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 120554 invoked by uid 48); 10 Aug 2016 21:10:41 -0000
From: "ravi11 at codehot dot co.uk" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73147] New: @@@@how 1 855 709 2847 Kodak printer support phone number@@@***!!!! Kodak printer ****PrinTer call @@@@@
Date: Wed, 10 Aug 2016 21:10:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: trans-mem
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ravi11 at codehot dot co.uk
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73147-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01325.txt.bz2
Content-length: 6995

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73147

            Bug ID: 73147
           Summary: @@@@how 1 855 709 2847 Kodak printer support phone
                    number@@@***!!!! Kodak printer ****PrinTer call @@@@@
           Product: gcc
           Version: trans-mem
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: ravi11 at codehot dot co.uk
  Target Milestone: ---

((moti))Call @@@++ USA I8557O92847 KODAK p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l KODAK h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a KODAK s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa USA 1
I8557O92847 KODAK p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r
u.s.a. C.a.l.l KODAK h.e.l.p d.e.s.k n.u.m.b.e.r n.u.m.b.e.r C.a.n.a.d.a KODAK
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa canada 1-1855-709-2847 USA, KODAK printer
Tech Support phone number,KODAK technical support phone number 1 I8557O92847
.KODAK Tech Support Number KODAK Tech KODAK tech support, KODAK tech support
number, KODAK tech support phone number, KODAK technical support, KODAK
technical support number, KODAK technical support phone number, KODAK tech
support number, KODAK support number, KODAK Tech support phone number, KODAK
support phone number, KODAK technical support phone number, KODAK technical
support number,Support Phone Number for KODAK printer Phone Number for KODAK
CustomerService Technical Support Telephone Number KODAK printer support number
KODAK KODAK printer tech support number KODAK KODAK printer technical support
number KODAK KODAK printer technical support phone number KODAK KODAK printer
customer service number KODAK KODAK internet security technical support KODAK
technical support phone number KODAK KODAK tech support phone number KODAK
KODAK customer support phone number I-855-709-2847 KODAK KODAK printer support
phone number KODAK KODAK support phone KODAK tech support KODAK customer
support KODAK phone support KODAK support number KODAK KODAK technical support
KODAK printer customer support phone number KODAK KODAK printer tech support
phone number KODAK contact KODAK support KODAK printer technical support phone
number ~!~I8557092847++ KODAK KODAK phone number KODAK tech support KODAK
support ticket KODAK customer support number KODAK KODAK tech support number
KODAK KODAK technical support number KODAK KODAK support center KODAK telephone
support call KODAK support KODAK printer support support KODAK KODAK billing
support KODAK printer technical support number KODAK support KODAK printer
KODAK online support KODAK contact support KODAK printer support number KODAK
KODAK printer customer support number KODAK KODAK printer tech support number
KODAK support for KODAK KODAK phone number KODAK KODAK customer service phone
number KODAK KODAK contact phone number KODAK KODAK printer phone number KODAK
KODAK printer customer service phone number KODAK phone number KODAK for KODAK
customer service KODAK software phone number KODAK phone number KODAK for KODAK
KODAK customer service telephone number KODAK KODAK helpline phone number KODAK
KODAK contact number KODAK KODAK customer service number KODAK KODAK customer
service phone number ~!~I8557092847++ KODAK us KODAK customer service phone
number KODAK usa KODAK telephone number KODAK KODAK phone number KODAK usa
KODAK printer contact number KODAK KODAK number KODAK KODAK contact number
KODAK usa KODAK printer helpline number KODAK KODAK helpline number KODAK KODAK
customer number KODAK KODAK printer customer service number KODAK KODAK contact
telephone number KODAK contact number KODAK for KODAK KODAK software contact
number KODAK KODAK toll free number KODAK KODAK telephone number KODAK uk KODAK
registration number KODAK KODAK toll free number KODAK usa KODAK customer
service KODAK software customer service contact KODAK customer service KODAK
customer service phone KODAK printer customer service KODAK service KODAK
printer technical support KODAK printer customer support KODAK technical
support reviews telephone KODAK printer KODAK tech support phone number KODAK
KODAK printer tech support phone number KODAK KODAK printer customer service
KODAK technical support phone number KODAK KODAK printer free printer support
KODAK customer service billing KODAK customer service email address KODAK
customer service reviews contact KODAK customer service KODAK tech support
number KODAK usa KODAK printer support number KODAK KODAK printer contact
number KODAK KODAK customer service phone number KODAK KODAK technical support
usa KODAK technical support number KODAK KODAK tech support phone KODAK tech
support number KODAK KODAK customer service telephone number KODAK KODAK
printer customer support number KODAK KODAK printer phone number KODAK KODAK
printer online support KODAK customer service number KODAK KODAK tech support
center KODAK customer service KODAK software customer service KODAK customer
care number KODAK usa KODAK customer number KODAK KODAK customer support number
KODAK KODAK customer care number KODAK KODAK customer care toll free number
KODAK KODAK tech support KODAK technical support KODAK printer support KODAK
printer tech support KODAK support center KODAK.com customer service KODAK
printer customer care number KODAK KODAK customer care KODAK phone number KODAK
phone number KODAK for KODAK customer service KODAK phone support KODAK phone
number KODAK tech support KODAK support phone number KODAK contact KODAK by
phone KODAK contact phone number KODAK KODAK helpline phone number KODAK KODAK
printer phone KODAK printer for phone KODAK contact number KODAK KODAK contact
support contact KODAK printer KODAK contact number KODAK usa KODAK toll free
number KODAK KODAK telephone number KODAK KODAK toll free number KODAK usa
KODAK printer support services technical support for printer KODAK KODAK
customer service phone number KODAK usa KODAK printer customer care number
KODAK usa KODAK customer care number KODAK KODAK customer care center KODAK
customer support KODAK customer support phone KODAK customer help KODAK
customer & technical support KODAK customer portal KODAK customer care phone
number KODAK usa KODAK customer care email KODAK helpline KODAK tech support
contact KODAK customer care toll free KODAK printer customer service number
KODAK KODAK printer protection norton printer customer service number KODAK
KODAK software customer service number KODAK KODAK hotline customer service
phone number KODAK KODAK customer service phone number KODAK us how to contact
KODAK by email KODAK free phone support KODAK printer technical support number
KODAK KODAK printer technical support help desk phone number KODAK KODAK
technical support number KODAK toll free number KODAK KODAK printer customer
support phone number KODAK KODAK printer customer
>From gcc-bugs-return-533992-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 21:11:28 2016
Return-Path: <gcc-bugs-return-533992-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 122836 invoked by alias); 10 Aug 2016 21:11:27 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 122764 invoked by uid 48); 10 Aug 2016 21:11:21 -0000
From: "ravi11 at codehot dot co.uk" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73150] New: Get Help @+***1..855..709..2847**$$@@ Kodak Printer Technical Support Contact Number,
Date: Wed, 10 Aug 2016 21:11:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: trans-mem
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ravi11 at codehot dot co.uk
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-73150-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01328.txt.bz2
Content-length: 7278

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73150

            Bug ID: 73150
           Summary: Get Help @+***1..855..709..2847**$$@@ Kodak Printer
                    Technical Support Contact Number,
           Product: gcc
           Version: trans-mem
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: ravi11 at codehot dot co.uk
  Target Milestone: ---

Created attachment 39132
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39132&action=edit
((moti))Call @@@++ USA I8557O92847 KODAK p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l KODAK h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a KODAK s.u.p.p.o.r.t p.h.o.n.

((moti))Call @@@++ USA I8557O92847 KODAK p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l KODAK h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a KODAK s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa USA 1
I8557O92847 KODAK p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r
u.s.a. C.a.l.l KODAK h.e.l.p d.e.s.k n.u.m.b.e.r n.u.m.b.e.r C.a.n.a.d.a KODAK
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa canada 1-1855-709-2847 USA, KODAK printer
Tech Support phone number,KODAK technical support phone number 1 I8557O92847
.KODAK Tech Support Number KODAK Tech KODAK tech support, KODAK tech support
number, KODAK tech support phone number, KODAK technical support, KODAK
technical support number, KODAK technical support phone number, KODAK tech
support number, KODAK support number, KODAK Tech support phone number, KODAK
support phone number, KODAK technical support phone number, KODAK technical
support number,Support Phone Number for KODAK printer Phone Number for KODAK
CustomerService Technical Support Telephone Number KODAK printer support number
KODAK KODAK printer tech support number KODAK KODAK printer technical support
number KODAK KODAK printer technical support phone number KODAK KODAK printer
customer service number KODAK KODAK internet security technical support KODAK
technical support phone number KODAK KODAK tech support phone number KODAK
KODAK customer support phone number I-855-709-2847 KODAK KODAK printer support
phone number KODAK KODAK support phone KODAK tech support KODAK customer
support KODAK phone support KODAK support number KODAK KODAK technical support
KODAK printer customer support phone number KODAK KODAK printer tech support
phone number KODAK contact KODAK support KODAK printer technical support phone
number ~!~I8557092847++ KODAK KODAK phone number KODAK tech support KODAK
support ticket KODAK customer support number KODAK KODAK tech support number
KODAK KODAK technical support number KODAK KODAK support center KODAK telephone
support call KODAK support KODAK printer support support KODAK KODAK billing
support KODAK printer technical support number KODAK support KODAK printer
KODAK online support KODAK contact support KODAK printer support number KODAK
KODAK printer customer support number KODAK KODAK printer tech support number
KODAK support for KODAK KODAK phone number KODAK KODAK customer service phone
number KODAK KODAK contact phone number KODAK KODAK printer phone number KODAK
KODAK printer customer service phone number KODAK phone number KODAK for KODAK
customer service KODAK software phone number KODAK phone number KODAK for KODAK
KODAK customer service telephone number KODAK KODAK helpline phone number KODAK
KODAK contact number KODAK KODAK customer service number KODAK KODAK customer
service phone number ~!~I8557092847++ KODAK us KODAK customer service phone
number KODAK usa KODAK telephone number KODAK KODAK phone number KODAK usa
KODAK printer contact number KODAK KODAK number KODAK KODAK contact number
KODAK usa KODAK printer helpline number KODAK KODAK helpline number KODAK KODAK
customer number KODAK KODAK printer customer service number KODAK KODAK contact
telephone number KODAK contact number KODAK for KODAK KODAK software contact
number KODAK KODAK toll free number KODAK KODAK telephone number KODAK uk KODAK
registration number KODAK KODAK toll free number KODAK usa KODAK customer
service KODAK software customer service contact KODAK customer service KODAK
customer service phone KODAK printer customer service KODAK service KODAK
printer technical support KODAK printer customer support KODAK technical
support reviews telephone KODAK printer KODAK tech support phone number KODAK
KODAK printer tech support phone number KODAK KODAK printer customer service
KODAK technical support phone number KODAK KODAK printer free printer support
KODAK customer service billing KODAK customer service email address KODAK
customer service reviews contact KODAK customer service KODAK tech support
number KODAK usa KODAK printer support number KODAK KODAK printer contact
number KODAK KODAK customer service phone number KODAK KODAK technical support
usa KODAK technical support number KODAK KODAK tech support phone KODAK tech
support number KODAK KODAK customer service telephone number KODAK KODAK
printer customer support number KODAK KODAK printer phone number KODAK KODAK
printer online support KODAK customer service number KODAK KODAK tech support
center KODAK customer service KODAK software customer service KODAK customer
care number KODAK usa KODAK customer number KODAK KODAK customer support number
KODAK KODAK customer care number KODAK KODAK customer care toll free number
KODAK KODAK tech support KODAK technical support KODAK printer support KODAK
printer tech support KODAK support center KODAK.com customer service KODAK
printer customer care number KODAK KODAK customer care KODAK phone number KODAK
phone number KODAK for KODAK customer service KODAK phone support KODAK phone
number KODAK tech support KODAK support phone number KODAK contact KODAK by
phone KODAK contact phone number KODAK KODAK helpline phone number KODAK KODAK
printer phone KODAK printer for phone KODAK contact number KODAK KODAK contact
support contact KODAK printer KODAK contact number KODAK usa KODAK toll free
number KODAK KODAK telephone number KODAK KODAK toll free number KODAK usa
KODAK printer support services technical support for printer KODAK KODAK
customer service phone number KODAK usa KODAK printer customer care number
KODAK usa KODAK customer care number KODAK KODAK customer care center KODAK
customer support KODAK customer support phone KODAK customer help KODAK
customer & technical support KODAK customer portal KODAK customer care phone
number KODAK usa KODAK customer care email KODAK helpline KODAK tech support
contact KODAK customer care toll free KODAK printer customer service number
KODAK KODAK printer protection norton printer customer service number KODAK
KODAK software customer service number KODAK KODAK hotline customer service
phone number KODAK KODAK customer service phone number KODAK us how to contact
KODAK by email KODAK free phone support KODAK printer technical support number
KODAK KODAK printer technical support help desk phone number KODAK KODAK
technical support number KODAK toll free number KODAK KODAK printer customer
support phone number KODAK KODAK printer customer
>From gcc-bugs-return-533990-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 21:11:06 2016
Return-Path: <gcc-bugs-return-533990-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 122000 invoked by alias); 10 Aug 2016 21:11:05 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 121752 invoked by uid 48); 10 Aug 2016 21:11:00 -0000
From: "johnwilliam3392 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73148] New: Di@lAOLEMAIL 1 844 569 1583 AOL TECH SUPPORT PHONE NUMBER
Date: Wed, 10 Aug 2016 21:11:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: new-ra
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: johnwilliam3392 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73148-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01326.txt.bz2
Content-length: 11929

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73148

            Bug ID: 73148
           Summary: Di@lAOLEMAIL 1 844 569 1583 AOL TECH SUPPORT PHONE
                    NUMBER
           Product: gcc
           Version: new-ra
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: johnwilliam3392 at gmail dot com
  Target Milestone: ---

Dial for Email Issue 1 844 569 1583 Aol support phone number for helpline aol
mail technical support number 
AOL helpline phone number@~1844-569-1583 AOL tech Support Number aol customer
service phone number
AOL Security contact Number +1844-5691583**aol support phone number
usa+1-844-569-1583) Technical support number
CANADA+1844-569-1583 aol Technical Support
USA-1844-569-1583contact aol customer service phone number
AUS-1-844-569-1583 phone number for AOL customer service
UK-phone number for aol technical support
1-844-569-1583 phone number for aol customer service
phone number for aol technical support
phone number for AOL security
aol customer care phone number
aol customer service billing
aol customer service email address
aol customer service live chat
aol customer service telephone number
aol customer support usa phone number
aol help desk support phone number free in usa
aol phone number customer service us
aol phone number support
aol support phone number
aol tech support phone number free in usa
aol tech support phone number
aol technical support customer service
aol technical support number
aol telephone number
aol toll free customer care number
aol toll free number in usa
aol contact phone number in usa
aol customer service number
aol customer service phone number
aol customer service telephone number
aol customer support number
aol customer support phone number
aol customer support phone number
aol help desk phone number in usa
aol phone number
aol phone number support for technical issue in usa
aol support phone number
aol technical support help desk phone number
aol technical support number
aol technical support phone number
AOL customer service number
AOL customer service telephone number
AOL customer services email
AOL customer support email address
AOL customer support number
AOL customer support phone number
AOL customer service phone number
AOL internet security contact phone number
AOL internet security customer service phone number
AOL internet security phone number
AOL internet security help phone number
AOL internet security phone number in usa
AOL internet security support phone number
AOL internet security technical support
AOL phone number customer service
AOL phone numbers customer support
AOL phone support number
AOL security contact phone number
AOL security phone number customer service
AOL security support phone number
AOL support contact number
AOL support email address
AOL support phone number
AOL support telephone number
AOL support telephone number usa
AOL support telephone number
AOL tech support number
AOL tech support phone number
AOL tech support phone number free
AOL technical support phone number
AOL technical support cutomer phone number
AOL technical support phone number
AOL technical support number free in usa
AOL technical support number toll free number
AOL technical support phone number
AOL technologies phone number
AOL telephone support number
aol customer support phone number
aol customer service phone number
AOL customer support phone number
AOL phone number customer service
AOL technical support telephone number
contact aol customer service phone number
customer service number for aol
phone number for aol
phone number for aol customer service
phone number for aol support
phone number for AOL customer service
phone number for AOL customer service
phone number for AOL customer support
phone number for AOL tech support
phone number aol customer service
aol customer service number
aol customer service phone
aol customer service phone number
aol customer service phone number us
aol customer service telephone number
aol customer support
aol customer support number
aol phone number customer service us
aol phone number support
aol phone support
aol phone support number
aol support phone number
aol tech support phone number
aol technical support
aol technical support number
aol technical support phone number
AOL customer service phone number
AOL customer support phone number
AOL helpline phone number
AOL internet security customer service
AOL internet security customer service phone number
AOL internet security help phone number
AOL internet security phone number customer service
AOL phone number customer service
AOL phone number customer support
AOL security customer service phone number
AOL security phone number customer service
AOL support phone number
AOL support telephone number
AOL tech support number
AOL tech support phone number
AOL technical support
AOL technical support number
AOL technical support phone number
aol customer support phone number
aol phone number customer service
aol tech support number
AOL customer service phone number
AOL customer service phone numbers
AOL internet security technical support
AOL tech support phone number us
AOL technical support telephone number
contact aol
contact AOL by phone
contact AOL customer service
contact aol customer service phone number
contactaol tech support usa
customer service AOL phone number
download AOL titanium
dri AOL customer service number
dri AOL customer service phone number
dri AOL phone number
how to contact AOL by email
how to delete AOL from mac
micro trend customer service
aol customer service number
phone number for AOL customer service
phone number forAOL customer service
phone number forAOL customer support
phone number forAOL tech support
phone number forAOL technical support
phone number for aol technical support
phone number for AOL security
phone number for AOL support
phone number for AOL technical support
phone number for aol customer service
phone number for AOL customer service
remove AOL from mac
technical support for Printer AOL
telephone number forAOL technical support
telephone aol
aol contact number
aol customer care
aol customer care number
aol customer care number usa
aol customer service
aol customer service number :idea: :evil: :D :) :lol: :( :o :shock:
aol customer service phone number
aol customer service phone number usa
aol customer service telephone number
aol customer support
aol customer support in usa
aol customer support number
aol customer support phone number
aol for phone
aol free Printer support
aol help phone number
aol helpline number
aol online support
aol phone
aol phone number
aol phone number in usa
aol phone number usa
aol phone support
aol plus tech support
aol protection
aol support
aol support number
aol support phone number
aol support services
aol support telephone number
aol tech support
aol tech support phone number free in usa
aol tech support number
aol tech support phone number
aol technical support
aol technical support number
aol technical support phone number
aol toll free customer care number
aol toll free number
aol contact phone number in usa
aol help desk phone number in usa
aol phone number support for technical issue in usa
aol support phone number
aol technical support help desk phone number
aol technical support phone number
AOL contact number
AOL contact number usa
AOL contact phone number
AOL contact support
AOL contact number usa
AOL contact phone number
AOL contact phone number usa
AOL customer & technical support
AOL customer care
AOL customer care center
AOL customer care email
AOL customer care number
AOL customer care number
AOL customer care number usa
AOL customer care number usa toll free
AOL customer care phone number usa
AOL customer care tchnical support
AOL customer care toll free
AOL customer care toll free number
AOL customer care usa
AOL customer help
AOL customer number
AOL customer portal
AOL customer service
AOL customer service billing
AOL customer service email address
AOL customer service number
AOL customer service phone
AOL customer service phone number
AOL customer service phone number us
AOL customer service phone number usa
AOL customer service reviews
AOL customer service telephone number
AOL customer service usa
AOL customer support
AOL customer support number
AOL customer support phone
AOL customer support phone number
AOL customer service number
AOL customer service number usa
AOL customer service phone number
AOL customer support number
AOL customer support phone number
AOL free phone support
AOL gold support phone number
AOL help desk phone number
AOL help phone number
AOL helpline
AOL helpline phone number
AOL hotline customer service phone number
AOL internet security customer service
AOL internet security phone number
AOL internet security phone number in usa
AOL lab usa customer service
AOL labs usa customer serviceAOL
AOL phone number
AOL phone number customer service
AOL phone number support
AOL phone number tech support
AOL phone number technical support
AOL phone numbers customer support
AOL phone support
AOL phone support number
AOL phone number customer service
AOL phone number support
AOL phone number tech support
AOL phone number usa
AOL security contact phone number
AOL security phone number
AOL security support phone number
AOL software customer service
AOL software customer service number
AOL support center
AOL support contact number
AOL support email address
AOL support phone number
AOL support telephone number
AOL support number usa
AOL support phone number
AOL support phone number usa
AOL tech support
AOL tech support center
AOL tech support contact
AOL tech support number
AOL tech support number usa
AOL tech support phone
AOL tech support phone number
AOL tech support phone number free
AOL tech support number
AOL tech support number usa
AOL tech support phone number
AOL technical support
AOL technical support number
AOL technical support phone number
AOL technical support phone number usa
AOL technical support reviews
AOL technical support usa
AOL technical support phone number
AOL technical support number
AOL technical support number toll free number
AOL technical support number usa
AOL technical support phone number
AOL technical support phone number usa
AOL technologies phone number
AOL telephone number
AOL telephone support number
AOL toll free number
AOL toll free number usa
AOL usa customer care for tech support
AOL usa customer service
AOL usa phone number
aol customer service phone number
aol customer service phone number
aol customer support phone number
aol customer support phone number
aol technical support number
AOL customer service phone number usa
AOL internet security support phone number
AOL.com customer service
aol antispyware 2011
aol customer support
aol serial key
aol serial number
aol support
aol technical support
AOL business support
AOL contact support
AOL customer care number
AOL customer service 844
AOL customer service number
AOL customer service phone number
AOL customer service telephone number
AOL customer support
AOL grentry non payment
AOL helpline support number
AOL internet security customer service
AOL internet security technical support
AOL oem customer service
AOL pc cillin technical support
AOL phone support
AOL removal tool download
AOL subscription renewal
AOL support contact
AOL support hotline
AOL support phone number
AOL tech support phone number
AOL technical support
AOL technical support chat
AOL technical support phone number
AOL technical support phone number usa
AOL telephone number
AOL titanium Printer
AOL titanium internet security
AOL titanium maximum
AOL titanium maximum security
AOL titanium problems
AOL titanium removal tool
AOL titanium reviews
AOL titanium support
AOL virus removal service
uninstall AOL smart surfing for mac
usa customer care number for aol
>From gcc-bugs-return-533993-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 21:11:48 2016
Return-Path: <gcc-bugs-return-533993-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 124229 invoked by alias); 10 Aug 2016 21:11:47 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 123380 invoked by uid 48); 10 Aug 2016 21:11:35 -0000
From: "yaars0324 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug boehm-gc/73151] New: $^^!!! WEBROOT Support++1800+969++1649>>>>> WEBROOT Antivirus Support Phone Number,= WEBROOT tech support phone number<<<1800+969++1649> WEBROOT technical support number
Date: Wed, 10 Aug 2016 21:11:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: boehm-gc
X-Bugzilla-Version: lto
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: yaars0324 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73151-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01329.txt.bz2
Content-length: 8814

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73151

            Bug ID: 73151
           Summary: $^^!!! WEBROOT Support++1800+969++1649>>>>> WEBROOT
                    Antivirus Support Phone Number,= WEBROOT tech support
                    phone number<<<1800+969++1649> WEBROOT technical
                    support number
           Product: gcc
           Version: lto
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: boehm-gc
          Assignee: unassigned at gcc dot gnu.org
          Reporter: yaars0324 at gmail dot com
  Target Milestone: ---

$^^!!! WEBROOT Support++1800+969++1649>>>>> WEBROOT Antivirus Support Phone
Number,= WEBROOT tech support phone number<<<1800+969++1649> WEBROOT technical
support number

 WEBROOT Support++1800+969++1649>>>>> WEBROOT Antivirus Support Phone Number,=
WEBROOT tech support phone number<<<1800+969++1649> WEBROOT technical support
number

 WEBROOT Live Support and Help‎ 18(00-969-1649 @@ WEBROOT tech support phone
number
 WEBROOT Live Support and Help‎ 18(00-969-1649 @@ WEBROOT tech support phone
number
 WEBROOT Live Support and Help‎ 18(00-969-1649 WEBROOT 360 support phone number
usa
USA Canada>>>> 1 800-969-1649++ WEBROOT 360 support phone number 1
800-969-1649usa/canada WEBROOT 360 Tech Support Number @@!1-800-969-1649;!!
WEBROOT 360 Support Number
WikiGenes- @+++1800-969-1649++440 WEBROOT 360 support phone
number18009691649usa/canada
 WEBROOT antivirus technical support phone number 1.800-969-1649
hdfc toll free customer care number(((!1.800-969-1649)) WEBROOT 360 Tech
Support Number @@!1-800-969-1649!! WEBROOT 360 Support Number
 WEBROOT toll free customer care number 1.800-969-1649
 WEBROOT toll free customer care number 1.800-969-1649
 WEBROOT toll free customer care number 1.800-969-1649
 WEBROOT toll free customer care number 1.800-969-1649>>>>>
 WEBROOT technical support phone number ((1.800-969-1649))
 WEBROOT technical support number 1.800-969-1649
 WEBROOT technical support number 1.800-969-1649
symantec technical support number @@@@@@@@@@@@@@@@@ 1.800-969-1649
 WEBROOT antivirus technical support number 1.800-969-1649
 WEBROOT support phone number 1.800-969-1649
 WEBROOT locations WEBROOT 360 Tech Support Number @@!1-800-969-1649!! WEBROOT
360 Support Number WEBROOT 360 Tech Support Number @@!1-800-969-1649!! WEBROOT
360 Support Number
 WEBROOT customer service
 WEBROOT antivirus customer care__ WEBROOT Support phone number 1.800-969-1649
 WEBROOT customer support phone number 1.800-969-1649
 WEBROOT customer support phone number 1.800-969-1649
 WEBROOT antivirus customer support phone number 1.800-969-1649 WEBROOT
antivirus customer service phone number 1.800-969-1649
 WEBROOT antivirus technical support phone number 1.800-969-1649
 WEBROOT antivirus tech support phone number 1.800-969-1649
 WEBROOT antivirus phone number 1.800-969-1649 WEBROOT 360 Tech Support Number
@@!1-800-969-1649!! WEBROOT 360 Support Number
 WEBROOT security center phone number 1.800-969-1649
 WEBROOT support telephone number 1.800-969-1649
 WEBROOT 360 technical support phone number 1.800-969-1649
symantec technical support phone number 1.800-969-1649
 WEBROOT tech support phone number 1.800-969-1649 WEBROOT 360 Tech Support
Number @@!1-800-969-1649!! WEBROOT 360 Support Number
apple technical support phone number 1.800-969-1649 usa
microsoft technical support phone number 1.800-969-1649 usa
gmail technical support phone number 1.800-969-1649 usa
kaspersky technical support phone number 1.800-969-1649 usa
lenovo technical support phone number 1.800-969-1649 usa
epson technical support phone number 1.800-969-1649 usa
 WEBROOT technical support phone number 1.800-969-1649 WEBROOT 360 Tech Support
Number @@!1-800-969-1649!! WEBROOT 360 Support Number
 WEBROOT AntiVirus Customer Service Phone Number #1: 800-969-1649
 WEBROOT Phone number 1-800-969-1649 WEBROOT 360 phone number WEBROOT 360
support phone number
Free~* C@ll 1.800-969-1649 WEBROOT 360 technical support phone number usa
1.800-969-1649 WEBROOT 360 technical support phone number WEBROOT free call
~* C@ll 1.800-969-1649 WEBROOT 360 technical support phone number usa
1.800-969-1649 WEBROOT 360 technical support phone number WEBROOT free call
WEBROOT 360 Tech Support Number @@!1-800-969-1649!! WEBROOT 360 Support Number
PHONE support USA @1.800-969-1649 WEBROOT antivirus technical support phone
number
 WEBROOT locations
 WEBROOT online support
 WEBROOT Support phone number 1.800-969-1649
 WEBROOT customer care WEBROOT tech support phone number 1.800-969-1649
 WEBROOT tech support phone number 1.800-969-1649
 WEBROOT antivirus tech support phone number 1.800-969-1649
 WEBROOT locations WEBROOT 360 Tech Support Number @@!1-800-969-1649!! WEBROOT
360 Support Number
 WEBROOT Support phone number 1.800-969-1649
service WEBROOT com
 WEBROOT login
 WEBROOT technical support phone number 1.800-969-1649
 WEBROOT customer service
 WEBROOT Support phone number 1.800-969-1649
 WEBROOT support telephone number 1.800-969-1649
 WEBROOT support phone number 1.800-969-1649
 WEBROOT antivirus support phone number 1.800-969-1649 WEBROOT 360 Tech Support
Number @@!1-800-969-1649!! WEBROOT 360 Support Number
 WEBROOT antivirus tech support phone number 1.800-969-1649
 WEBROOT antivirus customer service phone number 1.800-969-1649
 WEBROOT 360 technical support phone number 1.800-969-1649
symantec technical support phone number 1.800-969-1649
 WEBROOT technical support phone number 1.800-969-1649
 WEBROOT customer service telephone number 1.800-969-1649
 WEBROOT antivirus phone number 1.800-969-1649
 WEBROOT antivirus customer service phone number 1.800-969-1649
 WEBROOT antivirus customer service Support WEBROOT 360 Tech Support Number
@@!1-800-969-1649!! WEBROOT 360 Support Number
 WEBROOT antivirus phone number 1.800-969-1649
 WEBROOT phone number 1.800-969-1649 cancel subscription
 WEBROOT technical support phone number 1.800-969-1649
 WEBROOT 800 phone number 1.800-969-1649
snapdeal toll free customer care number 1.800-969-1649
sbi toll free customer care number 1.800-969-1649
airtel toll free customer care number 1.800-969-1649
 WEBROOT customer service number 1.800-969-1649
 WEBROOT call center WEBROOT 360 Tech Support Number @@!1-800-969-1649!!
WEBROOT 360 Support Number
 WEBROOT customer service email address
 WEBROOT customer care no WEBROOT 360 Tech Support Number @@!1-800-969-1649!!
WEBROOT 360 Support Number
call WEBROOT support
chat with WEBROOT support
 WEBROOT customer support
 WEBROOT antivirus customer service number 1.800-969-1649
 WEBROOT WEBROOT 360 Tech Support Number @@!1-800-969-1649!! WEBROOT 360
Support Number
 WEBROOT call center
 WEBROOT hq
 WEBROOT office locations
 WEBROOT support site
 WEBROOT telephone number 1.800-969-1649 for customer support
 WEBROOT customer service contact number 1.800-969-1649
 WEBROOT customer care
 WEBROOT toll free number 1.800-969-1649
 WEBROOT security contact number 1.800-969-1649
contact Vipre
 WEBROOT headquarters WEBROOT 360 Tech Support Number @@!1-800-969-1649!!
WEBROOT 360 Support Number
 WEBROOT customer service chat
 WEBROOT customer service telephone number 1.800-969-1649
 WEBROOT Support phone number 1.800-969-1649
 WEBROOT customer support
 WEBROOT customer service refund
 WEBROOT login
 WEBROOT locations
 WEBROOT customer service number 1.800-969-1649 uk
 WEBROOT locations
 WEBROOT customer service email address
 WEBROOT support site WEBROOT 360 Tech Support Number @@!1-800-969-1649!!
WEBROOT 360 Support Number
 WEBROOT technical support phone number 1.800-969-1649
 WEBROOT technical support live chat
 WEBROOT technical support email address
 WEBROOT technical support number 1.800-969-1649
 WEBROOT technical support number 1.800-969-1649 WEBROOT 360 Tech Support
Number @@!1-800-969-1649!! WEBROOT 360 Support Number
symantec technical support number 1.800-969-1649
 WEBROOT antivirus technical support number 1.800-969-1649
 WEBROOT customer support phone number 1.800-969-1649
 WEBROOT customer support number 1.800-969-1649
 WEBROOT customer support number 1.800-969-1649 WEBROOT 360 Tech Support Number
@@!1-800-969-1649!! WEBROOT 360 Support Number
 WEBROOT antivirus customer support number 1.800-969-1649
 WEBROOT locations WEBROOT 360 Tech Support Number @@!1-800-969-1649!! WEBROOT
360 Support Number
 WEBROOT Support phone number 1.800-969-1649
 WEBROOT corporate phone number 1.800-969-1649 WEBROOT 360 Tech Support Number
@@!1-800-969-1649!! WEBROOT 360 Support Number
 WEBROOT customer service Support
 WEBROOT technical support phone number 1.800-969-1649
 WEBROOT tech support phone number 1.800-969-1649
 WEBROOT tech support number 1.800-969-1649
 WEBROOT tech support number 1.800-969-1649 FREE
>From gcc-bugs-return-533991-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 21:11:27 2016
Return-Path: <gcc-bugs-return-533991-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 122827 invoked by alias); 10 Aug 2016 21:11:27 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 122667 invoked by uid 48); 10 Aug 2016 21:11:18 -0000
From: "shobhitiqinfotech at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/73149] New: Get Help @+***1..855..709..2847**$$@@ Brother Printer Technical Support Contact Number,
Date: Wed, 10 Aug 2016 21:11:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: shobhitiqinfotech at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-73149-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01327.txt.bz2
Content-length: 8222

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73149

            Bug ID: 73149
           Summary: Get Help @+***1..855..709..2847**$$@@ Brother Printer
                    Technical Support Contact Number,
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: shobhitiqinfotech at gmail dot com
  Target Milestone: ---

Created attachment 39131
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39131&action=edit
((moti))Call @@@++ USA I8557O92847 BROTHER  p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l BROTHER  h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a BROTHER  s.u.p.p.o.r.t

((moti))Call @@@++ USA I8557O92847 BROTHER  p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l BROTHER  h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a BROTHER  s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa USA 1
I8557O92847 BROTHER  p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r
u.s.a. C.a.l.l BROTHER  h.e.l.p d.e.s.k n.u.m.b.e.r n.u.m.b.e.r C.a.n.a.d.a
BROTHER  s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa canada 1-1855-709-2847 USA,
BROTHER  printer Tech Support phone number,BROTHER  technical support phone
number 1 I8557O92847 .BROTHER  Tech Support Number BROTHER  Tech BROTHER  tech
support, BROTHER  tech support number, BROTHER  tech support phone number,
BROTHER  technical support, BROTHER  technical support number, BROTHER 
technical support phone number, BROTHER  tech support number, BROTHER  support
number, BROTHER  Tech support phone number, BROTHER  support phone number,
BROTHER  technical support phone number, BROTHER  technical support
number,Support Phone Number for BROTHER  printer Phone Number for BROTHER 
CustomerService Technical Support Telephone Number BROTHER  printer support
number BROTHER  BROTHER  printer tech support number BROTHER  BROTHER  printer
technical support number BROTHER  BROTHER  printer technical support phone
number BROTHER  BROTHER  printer customer service number BROTHER  BROTHER 
internet security technical support BROTHER  technical support phone number
BROTHER  BROTHER  tech support phone number BROTHER  BROTHER  customer support
phone number I-855-709-2847 BROTHER  BROTHER  printer support phone number
BROTHER  BROTHER  support phone BROTHER  tech support BROTHER  customer support
BROTHER  phone support BROTHER  support number BROTHER  BROTHER  technical
support BROTHER  printer customer support phone number BROTHER  BROTHER 
printer tech support phone number BROTHER  contact BROTHER  support BROTHER 
printer technical support phone number ~!~I8557092847++ BROTHER  BROTHER  phone
number BROTHER  tech support BROTHER  support ticket BROTHER  customer support
number BROTHER  BROTHER  tech support number BROTHER  BROTHER  technical
support number BROTHER  BROTHER  support center BROTHER  telephone support call
BROTHER  support BROTHER  printer support support BROTHER  BROTHER  billing
support BROTHER  printer technical support number BROTHER  support BROTHER 
printer BROTHER  online support BROTHER  contact support BROTHER  printer
support number BROTHER  BROTHER  printer customer support number BROTHER 
BROTHER  printer tech support number BROTHER  support for BROTHER  BROTHER 
phone number BROTHER  BROTHER  customer service phone number BROTHER  BROTHER 
contact phone number BROTHER  BROTHER  printer phone number BROTHER  BROTHER 
printer customer service phone number BROTHER  phone number BROTHER  for
BROTHER  customer service BROTHER  software phone number BROTHER  phone number
BROTHER  for BROTHER  BROTHER  customer service telephone number BROTHER 
BROTHER  helpline phone number BROTHER  BROTHER  contact number BROTHER 
BROTHER  customer service number BROTHER  BROTHER  customer service phone
number ~!~I8557092847++ BROTHER  us BROTHER  customer service phone number
BROTHER  usa BROTHER  telephone number BROTHER  BROTHER  phone number BROTHER 
usa BROTHER  printer contact number BROTHER  BROTHER  number BROTHER  BROTHER 
contact number BROTHER  usa BROTHER  printer helpline number BROTHER  BROTHER 
helpline number BROTHER  BROTHER  customer number BROTHER  BROTHER  printer
customer service number BROTHER  BROTHER  contact telephone number BROTHER 
contact number BROTHER  for BROTHER  BROTHER  software contact number BROTHER 
BROTHER  toll free number BROTHER  BROTHER  telephone number BROTHER  uk
BROTHER  registration number BROTHER  BROTHER  toll free number BROTHER  usa
BROTHER  customer service BROTHER  software customer service contact BROTHER 
customer service BROTHER  customer service phone BROTHER  printer customer
service BROTHER  service BROTHER  printer technical support BROTHER  printer
customer support BROTHER  technical support reviews telephone BROTHER  printer
BROTHER  tech support phone number BROTHER  BROTHER  printer tech support phone
number BROTHER  BROTHER  printer customer service BROTHER  technical support
phone number BROTHER  BROTHER  printer free printer support BROTHER  customer
service billing BROTHER  customer service email address BROTHER  customer
service reviews contact BROTHER  customer service BROTHER  tech support number
BROTHER  usa BROTHER  printer support number BROTHER  BROTHER  printer contact
number BROTHER  BROTHER  customer service phone number BROTHER  BROTHER 
technical support usa BROTHER  technical support number BROTHER  BROTHER  tech
support phone BROTHER  tech support number BROTHER  BROTHER  customer service
telephone number BROTHER  BROTHER  printer customer support number BROTHER 
BROTHER  printer phone number BROTHER  BROTHER  printer online support BROTHER 
customer service number BROTHER  BROTHER  tech support center BROTHER  customer
service BROTHER  software customer service BROTHER  customer care number
BROTHER  usa BROTHER  customer number BROTHER  BROTHER  customer support number
BROTHER  BROTHER  customer care number BROTHER  BROTHER  customer care toll
free number BROTHER  BROTHER  tech support BROTHER  technical support BROTHER 
printer support BROTHER  printer tech support BROTHER  support center BROTHER
.com customer service BROTHER  printer customer care number BROTHER  BROTHER 
customer care BROTHER  phone number BROTHER  phone number BROTHER  for BROTHER 
customer service BROTHER  phone support BROTHER  phone number BROTHER  tech
support BROTHER  support phone number BROTHER  contact BROTHER  by phone
BROTHER  contact phone number BROTHER  BROTHER  helpline phone number BROTHER 
BROTHER  printer phone BROTHER  printer for phone BROTHER  contact number
BROTHER  BROTHER  contact support contact BROTHER  printer BROTHER  contact
number BROTHER  usa BROTHER  toll free number BROTHER  BROTHER  telephone
number BROTHER  BROTHER  toll free number BROTHER  usa BROTHER  printer support
services technical support for printer BROTHER  BROTHER  customer service phone
number BROTHER  usa BROTHER  printer customer care number BROTHER  usa BROTHER 
customer care number BROTHER  BROTHER  customer care center BROTHER  customer
support BROTHER  customer support phone BROTHER  customer help BROTHER 
customer & technical support BROTHER  customer portal BROTHER  customer care
phone number BROTHER  usa BROTHER  customer care email BROTHER  helpline
BROTHER  tech support contact BROTHER  customer care toll free BROTHER  printer
customer service number BROTHER  BROTHER  printer protection norton printer
customer service number BROTHER  BROTHER  software customer service number
BROTHER  BROTHER  hotline customer service phone number BROTHER  BROTHER 
customer service phone number BROTHER  us how to contact BROTHER  by email
BROTHER  free phone support BROTHER  printer technical support number BROTHER 
BROTHER  printer technical support help desk phone number BROTHER  BROTHER 
technical support number BROTHER  toll free number BROTHER  BROTHER  printer
customer support phone number BROTHER  BROTHER  printer customer
>From gcc-bugs-return-533994-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 21:15:52 2016
Return-Path: <gcc-bugs-return-533994-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 127636 invoked by alias); 10 Aug 2016 21:15:52 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 127555 invoked by uid 48); 10 Aug 2016 21:15:48 -0000
From: "wschmidt at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72863] Powerpc64le: redundant swaps when using vec_vsx_ld/st
Date: Wed, 10 Aug 2016 21:15:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wschmidt at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: wschmidt at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: assigned_to attachments.created
Message-ID: <bug-72863-4-E38L0YolbH@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72863-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72863-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01330.txt.bz2
Content-length: 566

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72863

Bill Schmidt <wschmidt at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Assignee|unassigned at gcc dot gnu.org      |wschmidt at gcc dot gnu.org

--- Comment #4 from Bill Schmidt <wschmidt at gcc dot gnu.org> ---
Created attachment 39134
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39134&action=edit
Proposed patch

Attached patch fixes the problem.  Regstrap in progress.
>From gcc-bugs-return-533995-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 21:16:09 2016
Return-Path: <gcc-bugs-return-533995-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 128433 invoked by alias); 10 Aug 2016 21:16:09 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 128142 invoked by uid 48); 10 Aug 2016 21:15:56 -0000
From: "johnwilliam3392 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73171] New: Di@l GMAIL SUPPORT 1 844 569 1583 GMAIL TECH SUPPORT PHONE NUMBER
Date: Wed, 10 Aug 2016 21:16:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: new-ra
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: johnwilliam3392 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73171-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01331.txt.bz2
Content-length: 12751

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73171

            Bug ID: 73171
           Summary: Di@l GMAIL SUPPORT 1 844 569 1583 GMAIL TECH SUPPORT
                    PHONE NUMBER
           Product: gcc
           Version: new-ra
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: johnwilliam3392 at gmail dot com
  Target Milestone: ---

Di@l GMAIL SUPPORT 1 844 569 1583 GMAIL TECH SUPPORT PHONE NUMBER


Dial for Email Issue 1 844 569 1583 Gmail support phone number for helpline
Gmail mail technical support number 
GMAIL helpline phone number@~1844-569-1583 GMAIL tech Support Number Gmail
customer service phone number
GMAIL Security contact Number +1844-5691583**Gmail support phone number
usa+1-844-569-1583) Technical support number
CANADA+1844-569-1583 Gmail Technical Support
USA-1844-569-1583contact Gmail customer service phone number
AUS-1-844-569-1583 phone number for GMAIL customer service
UK-phone number for Gmail technical support
1-844-569-1583 phone number for Gmail customer service
phone number for Gmail technical support
phone number for GMAIL security
Gmail customer care phone number
Gmail customer service billing
Gmail customer service email address
Gmail customer service live chat
Gmail customer service telephone number
Gmail customer support usa phone number
Gmail help desk support phone number free in usa
Gmail phone number customer service us
Gmail phone number support
Gmail support phone number
Gmail tech support phone number free in usa
Gmail tech support phone number
Gmail technical support customer service
Gmail technical support number
Gmail telephone number
Gmail toll free customer care number
Gmail toll free number in usa
Gmail contact phone number in usa
Gmail customer service number
Gmail customer service phone number
Gmail customer service telephone number
Gmail customer support number
Gmail customer support phone number
Gmail customer support phone number
Gmail help desk phone number in usa
Gmail phone number
Gmail phone number support for technical issue in usa
Gmail support phone number
Gmail technical support help desk phone number
Gmail technical support number
Gmail technical support phone number
GMAIL customer service number
GMAIL customer service telephone number
GMAIL customer services email
GMAIL customer support email address
GMAIL customer support number
GMAIL customer support phone number
GMAIL customer service phone number
GMAIL internet security contact phone number
GMAIL internet security customer service phone number
GMAIL internet security phone number
GMAIL internet security help phone number
GMAIL internet security phone number in usa
GMAIL internet security support phone number
GMAIL internet security technical support
GMAIL phone number customer service
GMAIL phone numbers customer support
GMAIL phone support number
GMAIL security contact phone number
GMAIL security phone number customer service
GMAIL security support phone number
GMAIL support contact number
GMAIL support email address
GMAIL support phone number
GMAIL support telephone number
GMAIL support telephone number usa
GMAIL support telephone number
GMAIL tech support number
GMAIL tech support phone number
GMAIL tech support phone number free
GMAIL technical support phone number
GMAIL technical support cutomer phone number
GMAIL technical support phone number
GMAIL technical support number free in usa
GMAIL technical support number toll free number
GMAIL technical support phone number
GMAIL technologies phone number
GMAIL telephone support number
Gmail customer support phone number
Gmail customer service phone number
GMAIL customer support phone number
GMAIL phone number customer service
GMAIL technical support telephone number
contact Gmail customer service phone number
customer service number for Gmail
phone number for Gmail
phone number for Gmail customer service
phone number for Gmail support
phone number for GMAIL customer service
phone number for GMAIL customer service
phone number for GMAIL customer support
phone number for GMAIL tech support
phone number Gmail customer service
Gmail customer service number
Gmail customer service phone
Gmail customer service phone number
Gmail customer service phone number us
Gmail customer service telephone number
Gmail customer support
Gmail customer support number
Gmail phone number customer service us
Gmail phone number support
Gmail phone support
Gmail phone support number
Gmail support phone number
Gmail tech support phone number
Gmail technical support
Gmail technical support number
Gmail technical support phone number
GMAIL customer service phone number
GMAIL customer support phone number
GMAIL helpline phone number
GMAIL internet security customer service
GMAIL internet security customer service phone number
GMAIL internet security help phone number
GMAIL internet security phone number customer service
GMAIL phone number customer service
GMAIL phone number customer support
GMAIL security customer service phone number
GMAIL security phone number customer service
GMAIL support phone number
GMAIL support telephone number
GMAIL tech support number
GMAIL tech support phone number
GMAIL technical support
GMAIL technical support number
GMAIL technical support phone number
Gmail customer support phone number
Gmail phone number customer service
Gmail tech support number
GMAIL customer service phone number
GMAIL customer service phone numbers
GMAIL internet security technical support
GMAIL tech support phone number us
GMAIL technical support telephone number
contact Gmail
contact GMAIL by phone
contact GMAIL customer service
contact Gmail customer service phone number
contactGmail tech support usa
customer service GMAIL phone number
download GMAIL titanium
dri GMAIL customer service number
dri GMAIL customer service phone number
dri GMAIL phone number
how to contact GMAIL by email
how to delete GMAIL from mac
micro trend customer service
Gmail customer service number
phone number for GMAIL customer service
phone number forGMAIL customer service
phone number forGMAIL customer support
phone number forGMAIL tech support
phone number forGMAIL technical support
phone number for Gmail technical support
phone number for GMAIL security
phone number for GMAIL support
phone number for GMAIL technical support
phone number for Gmail customer service
phone number for GMAIL customer service
remove GMAIL from mac
technical support for Printer GMAIL
telephone number forGMAIL technical support
telephone Gmail
Gmail contact number
Gmail customer care
Gmail customer care number
Gmail customer care number usa
Gmail customer service
Gmail customer service number :idea: :evil: :D :) :lol: :( :o :shock:
Gmail customer service phone number
Gmail customer service phone number usa
Gmail customer service telephone number
Gmail customer support
Gmail customer support in usa
Gmail customer support number
Gmail customer support phone number
Gmail for phone
Gmail free Printer support
Gmail help phone number
Gmail helpline number
Gmail online support
Gmail phone
Gmail phone number
Gmail phone number in usa
Gmail phone number usa
Gmail phone support
Gmail plus tech support
Gmail protection
Gmail support
Gmail support number
Gmail support phone number
Gmail support services
Gmail support telephone number
Gmail tech support
Gmail tech support phone number free in usa
Gmail tech support number
Gmail tech support phone number
Gmail technical support
Gmail technical support number
Gmail technical support phone number
Gmail toll free customer care number
Gmail toll free number
Gmail contact phone number in usa
Gmail help desk phone number in usa
Gmail phone number support for technical issue in usa
Gmail support phone number
Gmail technical support help desk phone number
Gmail technical support phone number
GMAIL contact number
GMAIL contact number usa
GMAIL contact phone number
GMAIL contact support
GMAIL contact number usa
GMAIL contact phone number
GMAIL contact phone number usa
GMAIL customer & technical support
GMAIL customer care
GMAIL customer care center
GMAIL customer care email
GMAIL customer care number
GMAIL customer care number
GMAIL customer care number usa
GMAIL customer care number usa toll free
GMAIL customer care phone number usa
GMAIL customer care tchnical support
GMAIL customer care toll free
GMAIL customer care toll free number
GMAIL customer care usa
GMAIL customer help
GMAIL customer number
GMAIL customer portal
GMAIL customer service
GMAIL customer service billing
GMAIL customer service email address
GMAIL customer service number
GMAIL customer service phone
GMAIL customer service phone number
GMAIL customer service phone number us
GMAIL customer service phone number usa
GMAIL customer service reviews
GMAIL customer service telephone number
GMAIL customer service usa
GMAIL customer support
GMAIL customer support number
GMAIL customer support phone
GMAIL customer support phone number
GMAIL customer service number
GMAIL customer service number usa
GMAIL customer service phone number
GMAIL customer support number
GMAIL customer support phone number
GMAIL free phone support
GMAIL gold support phone number
GMAIL help desk phone number
GMAIL help phone number
GMAIL helpline
GMAIL helpline phone number
GMAIL hotline customer service phone number
GMAIL internet security customer service
GMAIL internet security phone number
GMAIL internet security phone number in usa
GMAIL lab usa customer service
GMAIL labs usa customer serviceGMAIL
GMAIL phone number
GMAIL phone number customer service
GMAIL phone number support
GMAIL phone number tech support
GMAIL phone number technical support
GMAIL phone numbers customer support
GMAIL phone support
GMAIL phone support number
GMAIL phone number customer service
GMAIL phone number support
GMAIL phone number tech support
GMAIL phone number usa
GMAIL security contact phone number
GMAIL security phone number
GMAIL security support phone number
GMAIL software customer service
GMAIL software customer service number
GMAIL support center
GMAIL support contact number
GMAIL support email address
GMAIL support phone number
GMAIL support telephone number
GMAIL support number usa
GMAIL support phone number
GMAIL support phone number usa
GMAIL tech support
GMAIL tech support center
GMAIL tech support contact
GMAIL tech support number
GMAIL tech support number usa
GMAIL tech support phone
GMAIL tech support phone number
GMAIL tech support phone number free
GMAIL tech support number
GMAIL tech support number usa
GMAIL tech support phone number
GMAIL technical support
GMAIL technical support number
GMAIL technical support phone number
GMAIL technical support phone number usa
GMAIL technical support reviews
GMAIL technical support usa
GMAIL technical support phone number
GMAIL technical support number
GMAIL technical support number toll free number
GMAIL technical support number usa
GMAIL technical support phone number
GMAIL technical support phone number usa
GMAIL technologies phone number
GMAIL telephone number
GMAIL telephone support number
GMAIL toll free number
GMAIL toll free number usa
GMAIL usa customer care for tech support
GMAIL usa customer service
GMAIL usa phone number
Gmail customer service phone number
Gmail customer service phone number
Gmail customer support phone number
Gmail customer support phone number
Gmail technical support number
GMAIL customer service phone number usa
GMAIL internet security support phone number
GMAIL.com customer service
Gmail antispyware 2011
Gmail customer support
Gmail serial key
Gmail serial number
Gmail support
Gmail technical support
GMAIL business support
GMAIL contact support
GMAIL customer care number
GMAIL customer service 844
GMAIL customer service number
GMAIL customer service phone number
GMAIL customer service telephone number
GMAIL customer support
GMAIL grentry non payment
GMAIL helpline support number
GMAIL internet security customer service
GMAIL internet security technical support
GMAIL oem customer service
GMAIL pc cillin technical support
GMAIL phone support
GMAIL removal tool download
GMAIL subscription renewal
GMAIL support contact
GMAIL support hotline
GMAIL support phone number
GMAIL tech support phone number
GMAIL technical support
GMAIL technical support chat
GMAIL technical support phone number
GMAIL technical support phone number usa
GMAIL telephone number
GMAIL titanium Printer
GMAIL titanium internet security
GMAIL titanium maximum
GMAIL titanium maximum security
GMAIL titanium problems
GMAIL titanium removal tool
GMAIL titanium reviews
GMAIL titanium support
GMAIL virus removal service
uninstall GMAIL smart surfing for mac
usa customer care number for Gmail
>From gcc-bugs-return-533996-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 21:21:07 2016
Return-Path: <gcc-bugs-return-533996-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 34500 invoked by alias); 10 Aug 2016 21:21:06 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 34375 invoked by uid 48); 10 Aug 2016 21:20:54 -0000
From: "dfghfghn at codehot dot co.uk" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/73187] New: CAll  Call @*$$@ ***I8557O92847*** LEXMARK  printer tech support phone number usa
Date: Wed, 10 Aug 2016 21:21:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dfghfghn at codehot dot co.uk
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-73187-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01332.txt.bz2
Content-length: 14576

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73187

            Bug ID: 73187
           Summary: CAll  Call @*$$@ ***I8557O92847*** LEXMARK  printer
                    tech support phone number usa
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ada
          Assignee: unassigned at gcc dot gnu.org
          Reporter: dfghfghn at codehot dot co.uk
  Target Milestone: ---

Created attachment 39136
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39136&action=edit
+1-855-709-2847) Technical support number 1-855-709-2847 EPSON Printer
Technical Support 1-855-709-2847 contact EPSON Printer customer service phone
number 1-855-709-2847 phone number for EPSON custom

+1-855-709-2847) Technical support number
1-855-709-2847 EPSON Printer Technical Support
1-855-709-2847 contact EPSON Printer customer service phone number
1-855-709-2847 phone number for EPSON customer service
1-855-709-2847 phone number for EPSON Printer technical support
1-855-709-2847 phone number for EPSON Printer customer service
phone number for EPSON Printer technical support
phone number for EPSON security
EPSON Printer customer care phone number
EPSON Printer customer service billing
EPSON Printer customer service email address
EPSON Printer customer service live chat
EPSON Printer customer service telephone number
EPSON Printer customer support usa phone number
EPSON Printer help desk support phone number free in usa
EPSON Printer phone number customer service us
EPSON Printer phone number support
EPSON Printer support phone number
EPSON Printer tech support phone number free in usa
EPSON Printer tech support phone number
EPSON Printer technical support customer service
EPSON Printer technical support number
EPSON Printer telephone number
EPSON Printer toll free customer care number
EPSON Printer toll free number in usa
EPSON Printer contact phone number in usa
EPSON Printer customer service number
EPSON Printer customer service phone number
EPSON Printer customer service telephone number
EPSON Printer customer support number
EPSON Printer customer support phone number
EPSON Printer customer support phone number
EPSON Printer help desk phone number in usa
EPSON Printer phone number
EPSON Printer phone number support for technical issue in usa
EPSON Printer support phone number
EPSON Printer technical support help desk phone number
EPSON Printer technical support number
EPSON Printer technical support phone number
EPSON customer service number
EPSON customer service telephone number
EPSON customer services email
EPSON customer support email address
EPSON customer support number
EPSON customer support phone number
EPSON customer service phone number
EPSON internet security contact phone number
EPSON internet security customer service phone number
EPSON internet security phone number
EPSON internet security help phone number
EPSON internet security phone number in usa
EPSON internet security support phone number
EPSON internet security technical support
EPSON phone number customer service
EPSON phone numbers customer support
EPSON phone support number
EPSON security contact phone number
EPSON security phone number customer service
EPSON security support phone number
EPSON support contact number
EPSON support email address
EPSON support phone number
EPSON support telephone number
EPSON support telephone number usa
EPSON support telephone number
EPSON tech support number
EPSON tech support phone number
EPSON tech support phone number free
EPSON technical support phone number
EPSON technical support cutomer phone number
EPSON technical support phone number
EPSON technical support number free in usa
EPSON technical support number toll free number
EPSON technical support phone number
EPSON technologies phone number
EPSON telephone support number
EPSON Printer customer support phone number
EPSON Printer customer service phone number
EPSON customer support phone number
EPSON phone number customer service
EPSON technical support telephone number
contact EPSON Printer customer service phone number
customer service number for EPSON Printer
phone number for EPSON Printer
phone number for EPSON Printer customer service
phone number for EPSON Printer support
phone number for EPSON customer service
phone number for EPSON customer service
phone number for EPSON customer support
phone number for EPSON tech support
phone number EPSON Printer customer service
EPSON Printer customer service number
EPSON Printer customer service phone
EPSON Printer customer service phone number
EPSON Printer customer service phone number us
EPSON Printer customer service telephone number
EPSON Printer customer support
EPSON Printer customer support number
EPSON Printer phone number customer service us
EPSON Printer phone number support
EPSON Printer phone support
EPSON Printer phone support number
EPSON Printer support phone number
EPSON Printer tech support phone number
EPSON Printer technical support
EPSON Printer technical support number
EPSON Printer technical support phone number
EPSON customer service phone number
EPSON customer support phone number
EPSON helpline phone number
EPSON internet security customer service
EPSON internet security customer service phone number
EPSON internet security help phone number
EPSON internet security phone number customer service
EPSON phone number customer service
EPSON phone number customer support
EPSON security customer service phone number
EPSON security phone number customer service
EPSON support phone number
EPSON support telephone number
EPSON tech support number
EPSON tech support phone number
EPSON technical support
EPSON technical support number
EPSON technical support phone number
EPSON Printer customer support phone number
EPSON Printer phone number customer service
EPSON Printer tech support number
EPSON customer service phone number
EPSON customer service phone numbers
EPSON internet security technical support
EPSON tech support phone number us
EPSON technical support telephone number
contact EPSON Printer
contact EPSON by phone
contact EPSON customer service
contact EPSON Printer customer service phone number
contactEPSON Printer tech support usa
customer service EPSON phone number
download EPSON titanium
dri EPSON customer service number
dri EPSON customer service phone number
dri EPSON phone number
how to contact EPSON by email
how to delete EPSON from mac
micro trend customer service
norton Printer customer service number
phone number for EPSON customer service
phone number forEPSON customer service
phone number forEPSON customer support
phone number forEPSON tech support
phone number forEPSON technical support
phone number for EPSON Printer technical support
phone number for EPSON security
phone number for EPSON support
phone number for EPSON technical support
phone number for EPSON Printer customer service
phone number for EPSON customer service
remove EPSON from mac
technical support for Printer EPSON
telephone number forEPSON technical support
telephone EPSON Printer
EPSON Printer contact number
EPSON Printer customer care
EPSON Printer customer care number
EPSON Printer customer care number usa
EPSON Printer customer service
EPSON Printer customer service number :idea: :evil: :D :) :lol: :( :o :shock:
EPSON Printer customer service phone number
EPSON Printer customer service phone number usa
EPSON Printer customer service telephone number
EPSON Printer customer support
EPSON Printer customer support in usa
EPSON Printer customer support number
EPSON Printer customer support phone number
EPSON Printer for phone
EPSON Printer free Printer support
EPSON Printer help phone number
EPSON Printer helpline number
EPSON Printer online support
EPSON Printer phone
EPSON Printer phone number
EPSON Printer phone number in usa
EPSON Printer phone number usa
EPSON Printer phone support
EPSON Printer plus tech support
EPSON Printer protection
EPSON Printer support
EPSON Printer support number
EPSON Printer support phone number
EPSON Printer support services
EPSON Printer support telephone number
EPSON Printer tech support
EPSON Printer tech support phone number free in usa
EPSON Printer tech support number
EPSON Printer tech support phone number
EPSON Printer technical support
EPSON Printer technical support number
EPSON Printer technical support phone number
EPSON Printer toll free customer care number
EPSON Printer toll free number
EPSON Printer contact phone number in usa
EPSON Printer help desk phone number in usa
EPSON Printer phone number support for technical issue in usa
EPSON Printer support phone number
EPSON Printer technical support help desk phone number
EPSON Printer technical support phone number
EPSON contact number
EPSON contact number usa
EPSON contact phone number
EPSON contact support
EPSON contact number usa
EPSON contact phone number
EPSON contact phone number usa
EPSON customer & technical support
EPSON customer care
EPSON customer care center
EPSON customer care email
EPSON customer care number
EPSON customer care number
EPSON customer care number usa
EPSON customer care number usa toll free
EPSON customer care phone number usa
EPSON customer care tchnical support
EPSON customer care toll free
EPSON customer care toll free number
EPSON customer care usa
EPSON customer help
EPSON customer number
EPSON customer portal
EPSON customer service
EPSON customer service billing
EPSON customer service email address
EPSON customer service number
EPSON customer service phone
EPSON customer service phone number
EPSON customer service phone number us
EPSON customer service phone number usa
EPSON customer service reviews
EPSON customer service telephone number
EPSON customer service usa
EPSON customer support
EPSON customer support number
EPSON customer support phone
EPSON customer support phone number
EPSON customer service number
EPSON customer service number usa
EPSON customer service phone number
EPSON customer support number
EPSON customer support phone number
EPSON free phone support
EPSON gold support phone number
EPSON help desk phone number
EPSON help phone number
EPSON helpline
EPSON helpline phone number
EPSON hotline customer service phone number
EPSON internet security customer service
EPSON internet security phone number
EPSON internet security phone number in usa
EPSON lab usa customer service
EPSON labs usa customer serviceEPSON
EPSON phone number
EPSON phone number customer service
EPSON phone number support
EPSON phone number tech support
EPSON phone number technical support
EPSON phone numbers customer support
EPSON phone support
EPSON phone support number
EPSON phone number customer service
EPSON phone number support
EPSON phone number tech support
EPSON phone number usa
EPSON security contact phone number
EPSON security phone number
EPSON security support phone number
EPSON software customer service
EPSON software customer service number
EPSON support center
EPSON support contact number
EPSON support email address
EPSON support phone number
EPSON support telephone number
EPSON support number usa
EPSON support phone number
EPSON support phone number usa
EPSON tech support
EPSON tech support center
EPSON tech support contact
EPSON tech support number
EPSON tech support number usa
EPSON tech support phone
EPSON tech support phone number
EPSON tech support phone number free
EPSON tech support number
EPSON tech support number usa
EPSON tech support phone number
EPSON technical support
EPSON technical support number
EPSON technical support phone number
EPSON technical support phone number usa
EPSON technical support reviews
EPSON technical support usa
EPSON technical support phone number
EPSON technical support number
EPSON technical support number toll free number
EPSON technical support number usa
EPSON technical support phone number
EPSON technical support phone number usa
EPSON technologies phone number
EPSON telephone number
EPSON telephone support number
EPSON toll free number
EPSON toll free number usa
EPSON usa customer care for tech support
EPSON usa customer service
EPSON usa phone number
EPSON Printer customer service phone number
EPSON Printer customer service phone number
EPSON Printer customer support phone number
EPSON Printer customer support phone number
EPSON Printer technical support number
EPSON customer service phone number usa
EPSON internet security support phone number
EPSON.com customer service
EPSON Printer antispyware 2011
EPSON Printer customer support
EPSON Printer serial key
EPSON Printer serial number
EPSON Printer support
EPSON Printer technical support
EPSON business support
EPSON contact support
EPSON customer care number
EPSON customer service 800
EPSON customer service number
EPSON customer service phone number
EPSON customer service telephone number
EPSON customer support
EPSON grentry non payment
EPSON helpline support number
EPSON internet security customer service
EPSON internet security technical support
EPSON oem customer service
EPSON pc cillin technical support
EPSON phone support
EPSON removal tool download
EPSON subscription renewal
EPSON support contact
EPSON support hotline
EPSON support phone number
EPSON tech support phone number
EPSON technical support
EPSON technical support chat
EPSON technical support phone number
EPSON technical support phone number usa
EPSON telephone number
EPSON titanium Printer
EPSON titanium internet security
EPSON titanium maximum
EPSON titanium maximum security
EPSON titanium problems
EPSON titanium removal tool
EPSON titanium reviews
EPSON titanium support
EPSON virus removal service
uninstall EPSON smart surfing for mac
usa customer care number for EPSON Printer
$#@!~_)(*&^%$#@!~+_)(*&^%$#@!~+_)(*&^%$#@!~+_)(*&^%%$#@!~+_)(*&^%$#@!()_~!@#$%^&*()+_)(*&^%$#@!~~!@#$%^&*()_++_)(*&^%$#@!~!@#$%^&*()_++++++_@!~~!@#$%^&*()_+~!@#$%^&*()_+~!@#$%^&*()_+~!@#$%^&*()_+~!@#$%^&*()_++_)(*&^%$#@!~+_)(*&^%$#@!~_)(*&^%$#@!~+_)(*&^%$#@!~+_)(*&^%$#@!~+_)(*&^%)(*&^%$#@!~!@#$%^&*()_+++_)(*&^%$#@!~~!@#$%^&*()_++++_)(*&^%$#@!~!@#$%^@!~~!@#$%^&*()_+~!@#$%^&*()_+~!@#$%^&*()_+~!@#$%^&*()_+~!@#$%^&*()_++_)(*&^%$#@!~+_)(*&^%$#@!~_)(*&^%$#@!~+_)(*&^%$#@!~+_)(*&^%$#@!~+_)(*&^%%$#@!~+_)(*&^%$#@!()_~!@#$%^&*()+_)(*&^%$#@!~~!@#$%^&*()_++_)(*&^%$#@!~~!@#$%^&*()_+_)(*&^%$#@!~+_)(*&^%$#@!~+_)(*&^%$#@!~~!@#$%^&*()_+~!@#$%^&*()_+~!@#$%^&*()_+~!@#$%^&*()_+~!@#$%^&*()_++_)(*&#@!~!@#$%^@!~~!@#$%^&*()_+~!@#$%^&*()_+~!@#$%^&*()_+~!@#$%^&*()_+~!@#$%^&*()_++_)(*&^%$#@!~+_)(*&^%$#@!~_)(*&^%$#@!~+_)(*&^%$#@!~+_)(*&^%$#@!~+_
>From gcc-bugs-return-533997-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 21:30:55 2016
Return-Path: <gcc-bugs-return-533997-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 65317 invoked by alias); 10 Aug 2016 21:30:55 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 65003 invoked by uid 48); 10 Aug 2016 21:30:43 -0000
From: "dheeru1 at codehot dot co.uk" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/73212] New: $@$@^^^1~855++=p9~2847@$$@$$^^^^*** EPSON printer technical support number.....
Date: Wed, 10 Aug 2016 21:30:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: 4.0.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dheeru1 at codehot dot co.uk
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-73212-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01333.txt.bz2
Content-length: 7275

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73212

            Bug ID: 73212
           Summary: $@$@^^^1~855++==709~2847@$$@$$^^^^*** EPSON printer
                    technical support number.....
           Product: gcc
           Version: 4.0.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ada
          Assignee: unassigned at gcc dot gnu.org
          Reporter: dheeru1 at codehot dot co.uk
  Target Milestone: ---

Created attachment 39139
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39139&action=edit
((moti))Call @@@++ USA I8557O92847 EPSON p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l EPSON h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a EPSON s.u.p.p.o.r.t p.h.o.n.

((moti))Call @@@++ USA I8557O92847 EPSON p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l EPSON h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a EPSON s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa USA 1
I8557O92847 EPSON p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r
u.s.a. C.a.l.l EPSON h.e.l.p d.e.s.k n.u.m.b.e.r n.u.m.b.e.r C.a.n.a.d.a EPSON
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa canada 1-1855-709-2847 USA, EPSON printer
Tech Support phone number,EPSON technical support phone number 1 I8557O92847
.EPSON Tech Support Number EPSON Tech EPSON tech support, EPSON tech support
number, EPSON tech support phone number, EPSON technical support, EPSON
technical support number, EPSON technical support phone number, EPSON tech
support number, EPSON support number, EPSON Tech support phone number, EPSON
support phone number, EPSON technical support phone number, EPSON technical
support number,Support Phone Number for EPSON printer Phone Number for EPSON
CustomerService Technical Support Telephone Number EPSON printer support number
EPSON EPSON printer tech support number EPSON EPSON printer technical support
number EPSON EPSON printer technical support phone number EPSON EPSON printer
customer service number EPSON EPSON internet security technical support EPSON
technical support phone number EPSON EPSON tech support phone number EPSON
EPSON customer support phone number I-855-709-2847 EPSON EPSON printer support
phone number EPSON EPSON support phone EPSON tech support EPSON customer
support EPSON phone support EPSON support number EPSON EPSON technical support
EPSON printer customer support phone number EPSON EPSON printer tech support
phone number EPSON contact EPSON support EPSON printer technical support phone
number ~!~I8557092847++ EPSON EPSON phone number EPSON tech support EPSON
support ticket EPSON customer support number EPSON EPSON tech support number
EPSON EPSON technical support number EPSON EPSON support center EPSON telephone
support call EPSON support EPSON printer support support EPSON EPSON billing
support EPSON printer technical support number EPSON support EPSON printer
EPSON online support EPSON contact support EPSON printer support number EPSON
EPSON printer customer support number EPSON EPSON printer tech support number
EPSON support for EPSON EPSON phone number EPSON EPSON customer service phone
number EPSON EPSON contact phone number EPSON EPSON printer phone number EPSON
EPSON printer customer service phone number EPSON phone number EPSON for EPSON
customer service EPSON software phone number EPSON phone number EPSON for EPSON
EPSON customer service telephone number EPSON EPSON helpline phone number EPSON
EPSON contact number EPSON EPSON customer service number EPSON EPSON customer
service phone number ~!~I8557092847++ EPSON us EPSON customer service phone
number EPSON usa EPSON telephone number EPSON EPSON phone number EPSON usa
EPSON printer contact number EPSON EPSON number EPSON EPSON contact number
EPSON usa EPSON printer helpline number EPSON EPSON helpline number EPSON EPSON
customer number EPSON EPSON printer customer service number EPSON EPSON contact
telephone number EPSON contact number EPSON for EPSON EPSON software contact
number EPSON EPSON toll free number EPSON EPSON telephone number EPSON uk EPSON
registration number EPSON EPSON toll free number EPSON usa EPSON customer
service EPSON software customer service contact EPSON customer service EPSON
customer service phone EPSON printer customer service EPSON service EPSON
printer technical support EPSON printer customer support EPSON technical
support reviews telephone EPSON printer EPSON tech support phone number EPSON
EPSON printer tech support phone number EPSON EPSON printer customer service
EPSON technical support phone number EPSON EPSON printer free printer support
EPSON customer service billing EPSON customer service email address EPSON
customer service reviews contact EPSON customer service EPSON tech support
number EPSON usa EPSON printer support number EPSON EPSON printer contact
number EPSON EPSON customer service phone number EPSON EPSON technical support
usa EPSON technical support number EPSON EPSON tech support phone EPSON tech
support number EPSON EPSON customer service telephone number EPSON EPSON
printer customer support number EPSON EPSON printer phone number EPSON EPSON
printer online support EPSON customer service number EPSON EPSON tech support
center EPSON customer service EPSON software customer service EPSON customer
care number EPSON usa EPSON customer number EPSON EPSON customer support number
EPSON EPSON customer care number EPSON EPSON customer care toll free number
EPSON EPSON tech support EPSON technical support EPSON printer support EPSON
printer tech support EPSON support center EPSON.com customer service EPSON
printer customer care number EPSON EPSON customer care EPSON phone number EPSON
phone number EPSON for EPSON customer service EPSON phone support EPSON phone
number EPSON tech support EPSON support phone number EPSON contact EPSON by
phone EPSON contact phone number EPSON EPSON helpline phone number EPSON EPSON
printer phone EPSON printer for phone EPSON contact number EPSON EPSON contact
support contact EPSON printer EPSON contact number EPSON usa EPSON toll free
number EPSON EPSON telephone number EPSON EPSON toll free number EPSON usa
EPSON printer support services technical support for printer EPSON EPSON
customer service phone number EPSON usa EPSON printer customer care number
EPSON usa EPSON customer care number EPSON EPSON customer care center EPSON
customer support EPSON customer support phone EPSON customer help EPSON
customer & technical support EPSON customer portal EPSON customer care phone
number EPSON usa EPSON customer care email EPSON helpline EPSON tech support
contact EPSON customer care toll free EPSON printer customer service number
EPSON EPSON printer protection norton printer customer service number EPSON
EPSON software customer service number EPSON EPSON hotline customer service
phone number EPSON EPSON customer service phone number EPSON us how to contact
EPSON by email EPSON free phone support EPSON printer technical support number
EPSON EPSON printer technical support help desk phone number EPSON EPSON
technical support number EPSON toll free number EPSON EPSON printer customer
support phone number EPSON EPSON printer customer
>From gcc-bugs-return-533998-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 21:31:42 2016
Return-Path: <gcc-bugs-return-533998-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 66457 invoked by alias); 10 Aug 2016 21:31:42 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 66395 invoked by uid 48); 10 Aug 2016 21:31:38 -0000
From: "anlauf at gmx dot de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/73142] Reading a namelist fails - my code worked until 4.8.2
Date: Wed, 10 Aug 2016 21:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: anlauf at gmx dot de
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-73142-4-TN8RsLqGY2@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73142-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73142-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01334.txt.bz2
Content-length: 493

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73142

Harald Anlauf <anlauf at gmx dot de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |anlauf at gmx dot de

--- Comment #1 from Harald Anlauf <anlauf at gmx dot de> ---
Are you aware that your namelist input files are not standard-conforming?

Namelists should be terminated with "/", not "&END".
>From gcc-bugs-return-533999-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 21:41:18 2016
Return-Path: <gcc-bugs-return-533999-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 26010 invoked by alias); 10 Aug 2016 21:41:18 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 10032 invoked by uid 48); 10 Aug 2016 21:41:05 -0000
From: "refrihacla at throwam dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/73233] New: @@@@how 1 800 790 9186 Hp printer support phone number@@@***!!!! hp printer ****PrinTer call @@@@@
Date: Wed, 10 Aug 2016 21:41:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 4.2.4
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: refrihacla at throwam dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73233-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01335.txt.bz2
Content-length: 12424

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73233

            Bug ID: 73233
           Summary: @@@@how 1 800 790 9186 Hp printer support phone
                    number@@@***!!!! hp printer ****PrinTer call @@@@@
           Product: gcc
           Version: 4.2.4
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: refrihacla at throwam dot com
  Target Milestone: ---

hp Security contact Number +1800-7909186**hp Printer support phone number
usa+1-800-790-9186) Technical support number
CANADA+1800-790-9186 hp Printer Technical Support
USA-1800-445-2790contact hp Printer customer service phone number
AUS-1-800-059-007 phone number for hp customer service
UK-800-810-1018 phone number for hp Printer technical support
1-800-790-9186 phone number for hp Printer customer service
phone number for hp Printer technical support
phone number for hp security
hp Printer customer care phone number
hp Printer customer service billing
hp Printer customer service email address
hp Printer customer service live chat
hp Printer customer service telephone number
hp Printer customer support usa phone number
hp Printer help desk support phone number free in usa
hp Printer phone number customer service us
hp Printer phone number support
hp Printer support phone number
hp Printer tech support phone number free in usa
hp Printer tech support phone number
hp Printer technical support customer service
hp Printer technical support number
hp Printer telephone number
hp Printer toll free customer care number
hp Printer toll free number in usa
hp Printer contact phone number in usa
hp Printer customer service number
hp Printer customer service phone number
hp Printer customer service telephone number
hp Printer customer support number
hp Printer customer support phone number
hp Printer customer support phone number
hp Printer help desk phone number in usa
hp Printer phone number
hp Printer phone number support for technical issue in usa
hp Printer support phone number
hp Printer technical support help desk phone number
hp Printer technical support number
hp Printer technical support phone number
hp customer service number
hp customer service telephone number
hp customer services email
hp customer support email address
hp customer support number
hp customer support phone number
hp customer service phone number
hp internet security contact phone number
hp internet security customer service phone number
hp internet security phone number
hp internet security help phone number
hp internet security phone number in usa
hp internet security support phone number
hp internet security technical support
hp phone number customer service
hp phone numbers customer support
hp phone support number
hp security contact phone number
hp security phone number customer service
hp security support phone number
hp support contact number
hp support email address
hp support phone number
hp support telephone number
hp support telephone number usa
hp support telephone number
hp tech support number
hp tech support phone number
hp tech support phone number free
hp technical support phone number
hp technical support cutomer phone number
hp technical support phone number
hp technical support number free in usa
hp technical support number toll free number
hp technical support phone number
hp technologies phone number
hp telephone support number
hp Printer customer support phone number
hp Printer customer service phone number
hp customer support phone number
hp phone number customer service
hp technical support telephone number
contact hp Printer customer service phone number
customer service number for hp Printer
phone number for hp Printer
phone number for hp Printer customer service
phone number for hp Printer support
phone number for hp customer service
phone number for hp customer service
phone number for hp customer support
phone number for hp tech support
phone number hp Printer customer service
hp Printer customer service number
hp Printer customer service phone
hp Printer customer service phone number
hp Printer customer service phone number us
hp Printer customer service telephone number
hp Printer customer support
hp Printer customer support number
hp Printer phone number customer service us
hp Printer phone number support
hp Printer phone support
hp Printer phone support number
hp Printer support phone number
hp Printer tech support phone number
hp Printer technical support
hp Printer technical support number
hp Printer technical support phone number
hp customer service phone number
hp customer support phone number
hp helpline phone number
hp internet security customer service
hp internet security customer service phone number
hp internet security help phone number
hp internet security phone number customer service
hp phone number customer service
hp phone number customer support
hp security customer service phone number
hp security phone number customer service
hp support phone number
hp support telephone number
hp tech support number
hp tech support phone number
hp technical support
hp technical support number
hp technical support phone number
hp Printer customer support phone number
hp Printer phone number customer service
hp Printer tech support number
hp customer service phone number
hp customer service phone numbers
hp internet security technical support
hp tech support phone number us
hp technical support telephone number
contact hp Printer
contact hp by phone
contact hp customer service
contact hp Printer customer service phone number
contacthp Printer tech support usa
customer service hp phone number
download hp titanium
dri hp customer service number
dri hp customer service phone number
dri hp phone number
how to contact hp by email
how to delete hp from mac
micro trend customer service
hp Printer customer service number
phone number for hp customer service
phone number forhp customer service
phone number forhp customer support
phone number forhp tech support
phone number forhp technical support
phone number for hp Printer technical support
phone number for hp security
phone number for hp support
phone number for hp technical support
phone number for hp Printer customer service
phone number for hp customer service
remove hp from mac
technical support for Printer hp
telephone number forhp technical support
telephone hp Printer
hp Printer contact number
hp Printer customer care
hp Printer customer care number
hp Printer customer care number usa
hp Printer customer service
hp Printer customer service number :idea: :evil: :D :) :lol: :( :o :shock:
hp Printer customer service phone number
hp Printer customer service phone number usa
hp Printer customer service telephone number
hp Printer customer support
hp Printer customer support in usa
hp Printer customer support number
hp Printer customer support phone number
hp Printer for phone
hp Printer free Printer support
hp Printer help phone number
hp Printer helpline number
hp Printer online support
hp Printer phone
hp Printer phone number
hp Printer phone number in usa
hp Printer phone number usa
hp Printer phone support
hp Printer plus tech support
hp Printer protection
hp Printer support
hp Printer support number
hp Printer support phone number
hp Printer support services
hp Printer support telephone number
hp Printer tech support
hp Printer tech support phone number free in usa
hp Printer tech support number
hp Printer tech support phone number
hp Printer technical support
hp Printer technical support number
hp Printer technical support phone number
hp Printer toll free customer care number
hp Printer toll free number
hp Printer contact phone number in usa
hp Printer help desk phone number in usa
hp Printer phone number support for technical issue in usa
hp Printer support phone number
hp Printer technical support help desk phone number
hp Printer technical support phone number
hp contact number
hp contact number usa
hp contact phone number
hp contact support
hp contact number usa
hp contact phone number
hp contact phone number usa
hp customer & technical support
hp customer care
hp customer care center
hp customer care email
hp customer care number
hp customer care number
hp customer care number usa
hp customer care number usa toll free
hp customer care phone number usa
hp customer care tchnical support
hp customer care toll free
hp customer care toll free number
hp customer care usa
hp customer help
hp customer number
hp customer portal
hp customer service
hp customer service billing
hp customer service email address
hp customer service number
hp customer service phone
hp customer service phone number
hp customer service phone number us
hp customer service phone number usa
hp customer service reviews
hp customer service telephone number
hp customer service usa
hp customer support
hp customer support number
hp customer support phone
hp customer support phone number
hp customer service number
hp customer service number usa
hp customer service phone number
hp customer support number
hp customer support phone number
hp free phone support
hp gold support phone number
hp help desk phone number
hp help phone number
hp helpline
hp helpline phone number
hp hotline customer service phone number
hp internet security customer service
hp internet security phone number
hp internet security phone number in usa
hp lab usa customer service
hp labs usa customer servicehp
hp phone number
hp phone number customer service
hp phone number support
hp phone number tech support
hp phone number technical support
hp phone numbers customer support
hp phone support
hp phone support number
hp phone number customer service
hp phone number support
hp phone number tech support
hp phone number usa
hp security contact phone number
hp security phone number
hp security support phone number
hp software customer service
hp software customer service number
hp support center
hp support contact number
hp support email address
hp support phone number
hp support telephone number
hp support number usa
hp support phone number
hp support phone number usa
hp tech support
hp tech support center
hp tech support contact
hp tech support number
hp tech support number usa
hp tech support phone
hp tech support phone number
hp tech support phone number free
hp tech support number
hp tech support number usa
hp tech support phone number
hp technical support
hp technical support number
hp technical support phone number
hp technical support phone number usa
hp technical support reviews
hp technical support usa
hp technical support phone number
hp technical support number
hp technical support number toll free number
hp technical support number usa
hp technical support phone number
hp technical support phone number usa
hp technologies phone number
hp telephone number
hp telephone support number
hp toll free number
hp toll free number usa
hp usa customer care for tech support
hp usa customer service
hp usa phone number
hp Printer customer service phone number
hp Printer customer service phone number
hp Printer customer support phone number
hp Printer customer support phone number
hp Printer technical support number
hp customer service phone number usa
hp internet security support phone number
hp.com customer service
hp Printer antispyware 2011
hp Printer customer support
hp Printer serial key
hp Printer serial number
hp Printer support
hp Printer technical support
hp business support
hp contact support
hp customer care number
hp customer service 800
hp customer service number
hp customer service phone number
hp customer service telephone number
hp customer support
hp grentry non payment
hp helpline support number
hp internet security customer service
hp internet security technical support
hp oem customer service
hp pc cillin technical support
hp phone support
hp removal tool download
hp subscription renewal
hp support contact
hp support hotline
hp support phone number
hp tech support phone number
hp technical support
hp technical support chat
hp technical support phone number
hp technical support phone number usa
hp telephone number
hp titanium Printer
hp titanium internet security
hp titanium maximum
hp titanium maximum security
hp titanium problems
hp titanium removal tool
hp titanium reviews
hp titanium support
hp virus removal service
uninstall hp smart surfing for mac
usa customer care number for hp Printer
>From gcc-bugs-return-534000-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 21:42:32 2016
Return-Path: <gcc-bugs-return-534000-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 40591 invoked by alias); 10 Aug 2016 21:42:32 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 40475 invoked by uid 48); 10 Aug 2016 21:42:19 -0000
From: "gweberbv@t-online.de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/73142] Reading a namelist fails - my code worked until 4.8.2
Date: Wed, 10 Aug 2016 21:42:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: gweberbv@t-online.de
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-73142-4-VAnWO54Dni@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73142-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73142-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01336.txt.bz2
Content-length: 1342

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73142

--- Comment #2 from Günter Weber <gweberbv@t-online.de> ---
Dear Harald,

no, I wasn't aware of that. But using "/" does not fix the issue.

Maybe it is instructive to look at the code that produces a data file which
will then fail when you try to read it using namelist. (In the minimum example
I considered only QCAP, as the error occurs already there).

      subroutine wtscpr
      implicit none
      integer i, j
      include 'pegscommons/cpcom.f'
      open(UNIT=31,FILE='pgs5job.ssl',STATUS='unknown')
      write(31,'(1H ,A)') '&SCPRDT'
      write(31,'(1H ,A)') 'QCAP='
      write(31,'((1H ,7(F9.2,A)))') (QCAP(I),',',I=1,31)
      write(31,'(1H ,A,I5)') 'MXRAW=',MXRAW
      Write(31,'(1H ,A)') 'ELECNI='
      write(31,'((1H ,7(1PE9.3,A)))') (ELECNI(I),',',I=1,MXRAW)
      write(31,'(1H ,A,I5)') 'MXSHEL=',MXSHEL
      write(31,'(1H ,A)') 'NSHELL='
      write(31,'((1H ,14(I4,A)))') (NSHELL(I),',',I=1,MXRAW)
      write(31,'(1H ,A)') 'CAPIN='
      write(31,'((1H ,5(1PE11.5,A)))') (CAPIN(I),',',I=1,MXRAW)
      write(31,'(1H ,A)') 'SCPROF='
      do i=1,MXRAW+1
        write(31,'((1H ,7(1PE9.3,A)))') (SCPROF(j,i),',',j=1,31)
      end do
      write(31,'(1H ,A)') '/END'
      endfile 31
      close(31)
      return
      end
>From gcc-bugs-return-534001-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 21:45:54 2016
Return-Path: <gcc-bugs-return-534001-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 44504 invoked by alias); 10 Aug 2016 21:45:53 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 44295 invoked by uid 48); 10 Aug 2016 21:45:40 -0000
From: "kargl at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/73142] Reading a namelist fails - my code worked until 4.8.2
Date: Wed, 10 Aug 2016 21:45:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: kargl at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-73142-4-afMhU5gpWm@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73142-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73142-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01337.txt.bz2
Content-length: 1143

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73142

--- Comment #3 from kargl at gcc dot gnu.org ---
(In reply to Günter Weber from comment #0)
> 
> I am using the GCC package for Windows provided by www.equation.com. It
> looks like after version 4.8.2 a bug was introduced in the reading of
> namelists. The reading is rubbish when the data file has a certain format.
> But at least in Windows when you open the data file in a common editor you
> see identical content to a version of the data file, which can be read
> correctly.

The files are not identical. fileA.dat terminates lines
with a line with a LF.  fileB.dat terminates lines with
a CRLF.

With gfortran 5.4.1 I can read fileA.dat.  Reading fileB.dat
generates

  At line 14 of file minimum_example.f (unit = 31, file = 'fileB.dat')
  Fortran runtime error: Cannot match namelist object name 30.00

With gfortran 6.1.1, I get the same results as with 5.4.1, except
the built executable aborts with a backtrace.

With gfortran 7.0.0, both files can be read.  So, the bug is
fixed on trunk.  You can update to trunk or ensure your files
have the format of fileA.dat.
>From gcc-bugs-return-534002-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 21:46:11 2016
Return-Path: <gcc-bugs-return-534002-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 45275 invoked by alias); 10 Aug 2016 21:46:11 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 45015 invoked by uid 48); 10 Aug 2016 21:45:59 -0000
From: "ravi12 at codehot dot co.uk" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73244] New: @@@@how 1 855 709 2847 Canon printer support phone number@@@***!!!! Canon printer ****PrinTer call @@@@@
Date: Wed, 10 Aug 2016 21:46:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: trans-mem
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ravi12 at codehot dot co.uk
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-73244-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01338.txt.bz2
Content-length: 7297

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73244

            Bug ID: 73244
           Summary: @@@@how 1 855 709 2847 Canon printer support phone
                    number@@@***!!!! Canon printer ****PrinTer call @@@@@
           Product: gcc
           Version: trans-mem
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: ravi12 at codehot dot co.uk
  Target Milestone: ---

Created attachment 39141
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39141&action=edit
((moti))Call @@@++ USA I8557O92847 CANON p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l CANON h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a CANON s.u.p.p.o.r.t p.h.o.n.

((moti))Call @@@++ USA I8557O92847 CANON p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l CANON h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a CANON s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa USA 1
I8557O92847 CANON p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r
u.s.a. C.a.l.l CANON h.e.l.p d.e.s.k n.u.m.b.e.r n.u.m.b.e.r C.a.n.a.d.a CANON
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa canada 1-1855-709-2847 USA, CANON printer
Tech Support phone number,CANON technical support phone number 1 I8557O92847
.CANON Tech Support Number CANON Tech CANON tech support, CANON tech support
number, CANON tech support phone number, CANON technical support, CANON
technical support number, CANON technical support phone number, CANON tech
support number, CANON support number, CANON Tech support phone number, CANON
support phone number, CANON technical support phone number, CANON technical
support number,Support Phone Number for CANON printer Phone Number for CANON
CustomerService Technical Support Telephone Number CANON printer support number
CANON CANON printer tech support number CANON CANON printer technical support
number CANON CANON printer technical support phone number CANON CANON printer
customer service number CANON CANON internet security technical support CANON
technical support phone number CANON CANON tech support phone number CANON
CANON customer support phone number I-855-709-2847 CANON CANON printer support
phone number CANON CANON support phone CANON tech support CANON customer
support CANON phone support CANON support number CANON CANON technical support
CANON printer customer support phone number CANON CANON printer tech support
phone number CANON contact CANON support CANON printer technical support phone
number ~!~I8557092847++ CANON CANON phone number CANON tech support CANON
support ticket CANON customer support number CANON CANON tech support number
CANON CANON technical support number CANON CANON support center CANON telephone
support call CANON support CANON printer support support CANON CANON billing
support CANON printer technical support number CANON support CANON printer
CANON online support CANON contact support CANON printer support number CANON
CANON printer customer support number CANON CANON printer tech support number
CANON support for CANON CANON phone number CANON CANON customer service phone
number CANON CANON contact phone number CANON CANON printer phone number CANON
CANON printer customer service phone number CANON phone number CANON for CANON
customer service CANON software phone number CANON phone number CANON for CANON
CANON customer service telephone number CANON CANON helpline phone number CANON
CANON contact number CANON CANON customer service number CANON CANON customer
service phone number ~!~I8557092847++ CANON us CANON customer service phone
number CANON usa CANON telephone number CANON CANON phone number CANON usa
CANON printer contact number CANON CANON number CANON CANON contact number
CANON usa CANON printer helpline number CANON CANON helpline number CANON CANON
customer number CANON CANON printer customer service number CANON CANON contact
telephone number CANON contact number CANON for CANON CANON software contact
number CANON CANON toll free number CANON CANON telephone number CANON uk CANON
registration number CANON CANON toll free number CANON usa CANON customer
service CANON software customer service contact CANON customer service CANON
customer service phone CANON printer customer service CANON service CANON
printer technical support CANON printer customer support CANON technical
support reviews telephone CANON printer CANON tech support phone number CANON
CANON printer tech support phone number CANON CANON printer customer service
CANON technical support phone number CANON CANON printer free printer support
CANON customer service billing CANON customer service email address CANON
customer service reviews contact CANON customer service CANON tech support
number CANON usa CANON printer support number CANON CANON printer contact
number CANON CANON customer service phone number CANON CANON technical support
usa CANON technical support number CANON CANON tech support phone CANON tech
support number CANON CANON customer service telephone number CANON CANON
printer customer support number CANON CANON printer phone number CANON CANON
printer online support CANON customer service number CANON CANON tech support
center CANON customer service CANON software customer service CANON customer
care number CANON usa CANON customer number CANON CANON customer support number
CANON CANON customer care number CANON CANON customer care toll free number
CANON CANON tech support CANON technical support CANON printer support CANON
printer tech support CANON support center CANON.com customer service CANON
printer customer care number CANON CANON customer care CANON phone number CANON
phone number CANON for CANON customer service CANON phone support CANON phone
number CANON tech support CANON support phone number CANON contact CANON by
phone CANON contact phone number CANON CANON helpline phone number CANON CANON
printer phone CANON printer for phone CANON contact number CANON CANON contact
support contact CANON printer CANON contact number CANON usa CANON toll free
number CANON CANON telephone number CANON CANON toll free number CANON usa
CANON printer support services technical support for printer CANON CANON
customer service phone number CANON usa CANON printer customer care number
CANON usa CANON customer care number CANON CANON customer care center CANON
customer support CANON customer support phone CANON customer help CANON
customer & technical support CANON customer portal CANON customer care phone
number CANON usa CANON customer care email CANON helpline CANON tech support
contact CANON customer care toll free CANON printer customer service number
CANON CANON printer protection norton printer customer service number CANON
CANON software customer service number CANON CANON hotline customer service
phone number CANON CANON customer service phone number CANON us how to contact
CANON by email CANON free phone support CANON printer technical support number
CANON CANON printer technical support help desk phone number CANON CANON
technical support number CANON toll free number CANON CANON printer customer
support phone number CANON CANON printer customer
>From gcc-bugs-return-534003-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 21:47:29 2016
Return-Path: <gcc-bugs-return-534003-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 46650 invoked by alias); 10 Aug 2016 21:47:29 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 46342 invoked by uid 48); 10 Aug 2016 21:47:17 -0000
From: "ravi12 at codehot dot co.uk" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73246] New: Get Help @+***1..855..709..2847**$$@@ Canon Printer Technical Support Contact Number,
Date: Wed, 10 Aug 2016 21:47:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: trans-mem
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ravi12 at codehot dot co.uk
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-73246-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01339.txt.bz2
Content-length: 7278

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73246

            Bug ID: 73246
           Summary: Get Help @+***1..855..709..2847**$$@@ Canon Printer
                    Technical Support Contact Number,
           Product: gcc
           Version: trans-mem
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: ravi12 at codehot dot co.uk
  Target Milestone: ---

Created attachment 39142
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39142&action=edit
((moti))Call @@@++ USA I8557O92847 CANON p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l CANON h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a CANON s.u.p.p.o.r.t p.h.o.n.

((moti))Call @@@++ USA I8557O92847 CANON p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l CANON h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a CANON s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa USA 1
I8557O92847 CANON p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r
u.s.a. C.a.l.l CANON h.e.l.p d.e.s.k n.u.m.b.e.r n.u.m.b.e.r C.a.n.a.d.a CANON
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa canada 1-1855-709-2847 USA, CANON printer
Tech Support phone number,CANON technical support phone number 1 I8557O92847
.CANON Tech Support Number CANON Tech CANON tech support, CANON tech support
number, CANON tech support phone number, CANON technical support, CANON
technical support number, CANON technical support phone number, CANON tech
support number, CANON support number, CANON Tech support phone number, CANON
support phone number, CANON technical support phone number, CANON technical
support number,Support Phone Number for CANON printer Phone Number for CANON
CustomerService Technical Support Telephone Number CANON printer support number
CANON CANON printer tech support number CANON CANON printer technical support
number CANON CANON printer technical support phone number CANON CANON printer
customer service number CANON CANON internet security technical support CANON
technical support phone number CANON CANON tech support phone number CANON
CANON customer support phone number I-855-709-2847 CANON CANON printer support
phone number CANON CANON support phone CANON tech support CANON customer
support CANON phone support CANON support number CANON CANON technical support
CANON printer customer support phone number CANON CANON printer tech support
phone number CANON contact CANON support CANON printer technical support phone
number ~!~I8557092847++ CANON CANON phone number CANON tech support CANON
support ticket CANON customer support number CANON CANON tech support number
CANON CANON technical support number CANON CANON support center CANON telephone
support call CANON support CANON printer support support CANON CANON billing
support CANON printer technical support number CANON support CANON printer
CANON online support CANON contact support CANON printer support number CANON
CANON printer customer support number CANON CANON printer tech support number
CANON support for CANON CANON phone number CANON CANON customer service phone
number CANON CANON contact phone number CANON CANON printer phone number CANON
CANON printer customer service phone number CANON phone number CANON for CANON
customer service CANON software phone number CANON phone number CANON for CANON
CANON customer service telephone number CANON CANON helpline phone number CANON
CANON contact number CANON CANON customer service number CANON CANON customer
service phone number ~!~I8557092847++ CANON us CANON customer service phone
number CANON usa CANON telephone number CANON CANON phone number CANON usa
CANON printer contact number CANON CANON number CANON CANON contact number
CANON usa CANON printer helpline number CANON CANON helpline number CANON CANON
customer number CANON CANON printer customer service number CANON CANON contact
telephone number CANON contact number CANON for CANON CANON software contact
number CANON CANON toll free number CANON CANON telephone number CANON uk CANON
registration number CANON CANON toll free number CANON usa CANON customer
service CANON software customer service contact CANON customer service CANON
customer service phone CANON printer customer service CANON service CANON
printer technical support CANON printer customer support CANON technical
support reviews telephone CANON printer CANON tech support phone number CANON
CANON printer tech support phone number CANON CANON printer customer service
CANON technical support phone number CANON CANON printer free printer support
CANON customer service billing CANON customer service email address CANON
customer service reviews contact CANON customer service CANON tech support
number CANON usa CANON printer support number CANON CANON printer contact
number CANON CANON customer service phone number CANON CANON technical support
usa CANON technical support number CANON CANON tech support phone CANON tech
support number CANON CANON customer service telephone number CANON CANON
printer customer support number CANON CANON printer phone number CANON CANON
printer online support CANON customer service number CANON CANON tech support
center CANON customer service CANON software customer service CANON customer
care number CANON usa CANON customer number CANON CANON customer support number
CANON CANON customer care number CANON CANON customer care toll free number
CANON CANON tech support CANON technical support CANON printer support CANON
printer tech support CANON support center CANON.com customer service CANON
printer customer care number CANON CANON customer care CANON phone number CANON
phone number CANON for CANON customer service CANON phone support CANON phone
number CANON tech support CANON support phone number CANON contact CANON by
phone CANON contact phone number CANON CANON helpline phone number CANON CANON
printer phone CANON printer for phone CANON contact number CANON CANON contact
support contact CANON printer CANON contact number CANON usa CANON toll free
number CANON CANON telephone number CANON CANON toll free number CANON usa
CANON printer support services technical support for printer CANON CANON
customer service phone number CANON usa CANON printer customer care number
CANON usa CANON customer care number CANON CANON customer care center CANON
customer support CANON customer support phone CANON customer help CANON
customer & technical support CANON customer portal CANON customer care phone
number CANON usa CANON customer care email CANON helpline CANON tech support
contact CANON customer care toll free CANON printer customer service number
CANON CANON printer protection norton printer customer service number CANON
CANON software customer service number CANON CANON hotline customer service
phone number CANON CANON customer service phone number CANON us how to contact
CANON by email CANON free phone support CANON printer technical support number
CANON CANON printer technical support help desk phone number CANON CANON
technical support number CANON toll free number CANON CANON printer customer
support phone number CANON CANON printer customer
>From gcc-bugs-return-534004-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 21:50:26 2016
Return-Path: <gcc-bugs-return-534004-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 74130 invoked by alias); 10 Aug 2016 21:50:26 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 73950 invoked by uid 48); 10 Aug 2016 21:50:13 -0000
From: "ravi12 at codehot dot co.uk" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/73251] New: jass1@codehot.co.uk18557092847 Epson printer tech support
Date: Wed, 10 Aug 2016 21:50:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: trans-mem
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ravi12 at codehot dot co.uk
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-73251-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01340.txt.bz2
Content-length: 7257

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73251

            Bug ID: 73251
           Summary: jass1 at codehot dot co.uk18557092847 Epson printer tech
                    support
           Product: gcc
           Version: trans-mem
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ada
          Assignee: unassigned at gcc dot gnu.org
          Reporter: ravi12 at codehot dot co.uk
  Target Milestone: ---

Created attachment 39143
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39143&action=edit
((moti))Call @@@++ USA I8557O92847 CANON p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l CANON h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a CANON s.u.p.p.o.r.t p.h.o.n.

((moti))Call @@@++ USA I8557O92847 CANON p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l CANON h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a CANON s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa USA 1
I8557O92847 CANON p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r
u.s.a. C.a.l.l CANON h.e.l.p d.e.s.k n.u.m.b.e.r n.u.m.b.e.r C.a.n.a.d.a CANON
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa canada 1-1855-709-2847 USA, CANON printer
Tech Support phone number,CANON technical support phone number 1 I8557O92847
.CANON Tech Support Number CANON Tech CANON tech support, CANON tech support
number, CANON tech support phone number, CANON technical support, CANON
technical support number, CANON technical support phone number, CANON tech
support number, CANON support number, CANON Tech support phone number, CANON
support phone number, CANON technical support phone number, CANON technical
support number,Support Phone Number for CANON printer Phone Number for CANON
CustomerService Technical Support Telephone Number CANON printer support number
CANON CANON printer tech support number CANON CANON printer technical support
number CANON CANON printer technical support phone number CANON CANON printer
customer service number CANON CANON internet security technical support CANON
technical support phone number CANON CANON tech support phone number CANON
CANON customer support phone number I-855-709-2847 CANON CANON printer support
phone number CANON CANON support phone CANON tech support CANON customer
support CANON phone support CANON support number CANON CANON technical support
CANON printer customer support phone number CANON CANON printer tech support
phone number CANON contact CANON support CANON printer technical support phone
number ~!~I8557092847++ CANON CANON phone number CANON tech support CANON
support ticket CANON customer support number CANON CANON tech support number
CANON CANON technical support number CANON CANON support center CANON telephone
support call CANON support CANON printer support support CANON CANON billing
support CANON printer technical support number CANON support CANON printer
CANON online support CANON contact support CANON printer support number CANON
CANON printer customer support number CANON CANON printer tech support number
CANON support for CANON CANON phone number CANON CANON customer service phone
number CANON CANON contact phone number CANON CANON printer phone number CANON
CANON printer customer service phone number CANON phone number CANON for CANON
customer service CANON software phone number CANON phone number CANON for CANON
CANON customer service telephone number CANON CANON helpline phone number CANON
CANON contact number CANON CANON customer service number CANON CANON customer
service phone number ~!~I8557092847++ CANON us CANON customer service phone
number CANON usa CANON telephone number CANON CANON phone number CANON usa
CANON printer contact number CANON CANON number CANON CANON contact number
CANON usa CANON printer helpline number CANON CANON helpline number CANON CANON
customer number CANON CANON printer customer service number CANON CANON contact
telephone number CANON contact number CANON for CANON CANON software contact
number CANON CANON toll free number CANON CANON telephone number CANON uk CANON
registration number CANON CANON toll free number CANON usa CANON customer
service CANON software customer service contact CANON customer service CANON
customer service phone CANON printer customer service CANON service CANON
printer technical support CANON printer customer support CANON technical
support reviews telephone CANON printer CANON tech support phone number CANON
CANON printer tech support phone number CANON CANON printer customer service
CANON technical support phone number CANON CANON printer free printer support
CANON customer service billing CANON customer service email address CANON
customer service reviews contact CANON customer service CANON tech support
number CANON usa CANON printer support number CANON CANON printer contact
number CANON CANON customer service phone number CANON CANON technical support
usa CANON technical support number CANON CANON tech support phone CANON tech
support number CANON CANON customer service telephone number CANON CANON
printer customer support number CANON CANON printer phone number CANON CANON
printer online support CANON customer service number CANON CANON tech support
center CANON customer service CANON software customer service CANON customer
care number CANON usa CANON customer number CANON CANON customer support number
CANON CANON customer care number CANON CANON customer care toll free number
CANON CANON tech support CANON technical support CANON printer support CANON
printer tech support CANON support center CANON.com customer service CANON
printer customer care number CANON CANON customer care CANON phone number CANON
phone number CANON for CANON customer service CANON phone support CANON phone
number CANON tech support CANON support phone number CANON contact CANON by
phone CANON contact phone number CANON CANON helpline phone number CANON CANON
printer phone CANON printer for phone CANON contact number CANON CANON contact
support contact CANON printer CANON contact number CANON usa CANON toll free
number CANON CANON telephone number CANON CANON toll free number CANON usa
CANON printer support services technical support for printer CANON CANON
customer service phone number CANON usa CANON printer customer care number
CANON usa CANON customer care number CANON CANON customer care center CANON
customer support CANON customer support phone CANON customer help CANON
customer & technical support CANON customer portal CANON customer care phone
number CANON usa CANON customer care email CANON helpline CANON tech support
contact CANON customer care toll free CANON printer customer service number
CANON CANON printer protection norton printer customer service number CANON
CANON software customer service number CANON CANON hotline customer service
phone number CANON CANON customer service phone number CANON us how to contact
CANON by email CANON free phone support CANON printer technical support number
CANON CANON printer technical support help desk phone number CANON CANON
technical support number CANON toll free number CANON CANON printer customer
support phone number CANON CANON printer customer
>From gcc-bugs-return-534005-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 21:54:55 2016
Return-Path: <gcc-bugs-return-534005-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 85323 invoked by alias); 10 Aug 2016 21:54:55 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 85191 invoked by uid 48); 10 Aug 2016 21:54:42 -0000
From: "adhemerval.zanella at linaro dot org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug sanitizer/71042] libtsan requires __pointer_chk_guard@GLIBC_PRIVATE (6)
Date: Wed, 10 Aug 2016 21:54:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: sanitizer
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: adhemerval.zanella at linaro dot org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71042-4-0sENVJP1XT@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71042-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71042-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01341.txt.bz2
Content-length: 213

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71042

--- Comment #10 from Adhemerval Zanella <adhemerval.zanella at linaro dot org> ---
I just pushed r278292 on compiler-rt and I think it should fix the issue.
>From gcc-bugs-return-534006-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 22:05:03 2016
Return-Path: <gcc-bugs-return-534006-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 103777 invoked by alias); 10 Aug 2016 22:05:02 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 103645 invoked by uid 48); 10 Aug 2016 22:04:54 -0000
From: "dukagazolu at lackmail dot ru" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/73266] New: @@@@@18443055565 hp printer support@@ ph0ne number@@@@
Date: Wed, 10 Aug 2016 22:05:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: trans-mem
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dukagazolu at lackmail dot ru
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73266-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01342.txt.bz2
Content-length: 4210

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73266

            Bug ID: 73266
           Summary: @@@@@18443055565 hp printer support@@ ph0ne number@@@@
           Product: gcc
           Version: trans-mem
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: dukagazolu at lackmail dot ru
  Target Milestone: ---

HP printer helpline number 1844-305-5565 india, HP uk helpline… number
1844-305-5565 Customer (7) HP customer service number 1844-305-5565, HP
customer service phone number 1844-305-5565, HP customer support number
1844-305-5565, HP pixma customer service phone number 1844-305-5565, HP
customer support phone number 1844-305-5565, phone number 1844-305-5565 HP
customer service, HP fax machine customer support number 1844-305-5565 Printer
Phone (15) HP printer support phone number 1844-305-5565, HP printer support
phone, HP printer tech support phone number 1844-305-5565, HP printer phone
support, HP printers phone number 1844-305-5565, HP printers tech support phone
number 1844-305-5565, HP printer phone number 1844-305-5565, HP printers
support phone number 1844-305-5565, phone number 1844-305-5565 for HP printer
support, phone number 1844-305-5565 for HP printers, brother printer support
phone number 1844-305-5565, brother printer tech support phone number
1844-305-5565, brother printer technical support phone number 1844-305-5565,
brother printer tech support phone, brother printer phone support number
1844-305-5565 Center Printer (19) HP printer service center, HP printers
service center, HP printer service center phone number 1844-305-5565, HP
printer service center number 1844-305-5565, HP printers service center number
1844-305-5565, HP printer repair center, HP printer service centers, service
center printer HP, service center for HP printer, HP printers repair center,
service center HP printer, HP printer call center number 1844-305-5565, HP
printer service center locations, HP printer service center mumbai, authorized
HP printer repair centers, HP printer repair center locations, HP printer
repair centers, HP printer service center singapore, HP printer call center
number 1844-305-5565 india HP Care (38) HP customer care number 1844-305-5565,
HP customer care, HP printer customer care, HP printers customer care number
1844-305-5565, HP printer customer care number 1844-305-5565, HP customer care
no, HP printers customer care, HP customer care center, HP printers customer
care no, HP customer care center contact number 1844-305-5565, HP printer
customer care no, HP care center, customer care number 1844-305-5565 of HP
printer, HP customer care phone number 1844-305-5565, HP care, HP customer care
HP customer care, HP customer care number 1844-305-5565 india, HP printers
india customer care, HP printer customer care Contact HP (25) HP contact number
1844-305-5565, HP contact, contact HP, contact HP customer support, HP support
contact, contact HP support, contact HP support phone number 1844-305-5565, HP
contact support, HP support contact number 1844-305-5565, contact HP customer
service, HP contact phone number 1844-305-5565, contact HP by phone, HP
contacts, HP contact details, HP Uk contact number 1844-305-5565, HP camera
contact number 1844-305-5565, HP contact info, how to contact HP customer
service, HP contact number 1844-305-5565 Uk, HP camera contact… HP Toll (21) HP
toll free number 1844-305-5565, HP toll free no, HP toll free, HP toll free
tech support, HP customer care number 1844-305-5565 toll free, HP service toll
free number 1844-305-5565, HP toll free number 1844-305-5565 HP customer care
toll free number 1844-305-5565, HP toll free number 1844-305-5565 in, HP toll
free, HP toll free number 1844-305-5565 in, HP service center toll free number
1844-305-5565, HP scanner toll free number 1844-305-5565, HP toll free number
1844-305-5565, HP i toll free no, HP camera toll free number 1844-305-5565, HP
toll free number 1844-305-5565, HP customer care toll free number
1844-305-5565, HP toll free HP toll free no Uk…
>From gcc-bugs-return-534007-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 22:10:22 2016
Return-Path: <gcc-bugs-return-534007-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 115831 invoked by alias); 10 Aug 2016 22:10:22 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 115599 invoked by uid 48); 10 Aug 2016 22:10:09 -0000
From: "yogi.kumar9781 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug boehm-gc/73277] New: 18885273401 avg tech support number 18885273401
Date: Wed, 10 Aug 2016 22:10:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: boehm-gc
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: yogi.kumar9781 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73277-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01343.txt.bz2
Content-length: 4423

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73277

            Bug ID: 73277
           Summary: 18885273401 avg tech support number 18885273401
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: boehm-gc
          Assignee: unassigned at gcc dot gnu.org
          Reporter: yogi.kumar9781 at gmail dot com
  Target Milestone: ---

avg technical support number 18885273401 
avg technical phone number support number 18885273401
avg tech support number 18885273401
avg technical support phone number 18885273401
avg technical support number 18885273401 free
avg technical support number 18885273401 toll free
avg technical support number 18885273401 call USA
avg technical support number 18885273401 for america
avg technical support number 18885273401 
avg technical phone number support number 18885273401
avg tech support number 18885273401
avg technical support phone number 18885273401
avg technical support number 18885273401 free
avg technical support number 18885273401 toll free
avg technical support number 18885273401 call USA
avg technical support number 18885273401 for america
avg tech support number 18885273401
avg tech number 18885273401
avg tech support phone number 18885273401
avg tech support USA number 18885273401
avg tech support number usa call 18885273401
avg tech support number for usa 18885273401avg technical support number
18885273401 
avg technical phone number support number 18885273401
avg tech support number 18885273401
avg technical support phone number 18885273401
avg technical support number 18885273401 free
avg technical support number 18885273401 toll free
avg technical support number 18885273401 call USA
avg technical support number 18885273401 for america
avg technical support number 18885273401 
avg technical phone number support number 18885273401
avg tech support number 18885273401
avg technical support phone number 18885273401
avg technical support number 18885273401 free
avg technical support number 18885273401 toll free
avg technical support number 18885273401 call USA
avg technical support number 18885273401 for america
avg tech support number 18885273401
avg tech number 18885273401
avg tech support phone number 18885273401
avg tech support USA number 18885273401
avg tech support number usa call 18885273401
avg tech support number for usa 18885273401avg technical support number
18885273401 
avg technical phone number support number 18885273401
avg tech support number 18885273401
avg technical support phone number 18885273401
avg technical support number 18885273401 free
avg technical support number 18885273401 toll free
avg technical support number 18885273401 call USA
avg technical support number 18885273401 for america
avg technical support number 18885273401 
avg technical phone number support number 18885273401
avg tech support number 18885273401
avg technical support phone number 18885273401
avg technical support number 18885273401 free
avg technical support number 18885273401 toll free
avg technical support number 18885273401 call USA
avg technical support number 18885273401 for america
avg tech support number 18885273401
avg tech number 18885273401
avg tech support phone number 18885273401
avg tech support USA number 18885273401
avg tech support number usa call 18885273401
avg tech support number for usa 18885273401avg technical support number
18885273401 
avg technical phone number support number 18885273401
avg tech support number 18885273401
avg technical support phone number 18885273401
avg technical support number 18885273401 free
avg technical support number 18885273401 toll free
avg technical support number 18885273401 call USA
avg technical support number 18885273401 for america
avg technical support number 18885273401 
avg technical phone number support number 18885273401
avg tech support number 18885273401
avg technical support phone number 18885273401
avg technical support number 18885273401 free
avg technical support number 18885273401 toll free
avg technical support number 18885273401 call USA
avg technical support number 18885273401 for america
avg tech support number 18885273401
avg tech number 18885273401
avg tech support phone number 18885273401
avg tech support USA number 18885273401
avg tech support number usa call 18885273401
avg tech support number for usa 18885273401
>From gcc-bugs-return-534008-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 22:11:09 2016
Return-Path: <gcc-bugs-return-534008-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 117475 invoked by alias); 10 Aug 2016 22:11:08 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 117107 invoked by uid 48); 10 Aug 2016 22:11:03 -0000
From: "shobhitgargseo at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/73281] New: suvidha 1-855-709-2847 BROTHER PRINTER TEeCHNICAL SUPPORT NUMBER
Date: Wed, 10 Aug 2016 22:11:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: 4.0.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: shobhitgargseo at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-73281-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01344.txt.bz2
Content-length: 5829

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73281

            Bug ID: 73281
           Summary: suvidha 1-855-709-2847 BROTHER PRINTER TEeCHNICAL
                    SUPPORT NUMBER
           Product: gcc
           Version: 4.0.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ada
          Assignee: unassigned at gcc dot gnu.org
          Reporter: shobhitgargseo at gmail dot com
  Target Milestone: ---

Created attachment 39149
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39149&action=edit
suvidha 1-855-709-2847 BROTHER PRINTER TECHNICAL SUPPORT NUMBER
??1-855-709-2847??      BROTHER Printer phone number ??1-855-709-2847?? BROTHER
Printer support number ??1-855-709-2847??       BROTHER Printer tec

suvidha 1-855-709-2847 BROTHER PRINTER TECHNICAL SUPPORT NUMBER
??1-855-709-2847??      BROTHER Printer phone number
??1-855-709-2847??      BROTHER Printer support number
??1-855-709-2847??      BROTHER Printer tech support number
??1-855-709-2847??      BROTHER Printer technicalsupport number
??1-855-709-2847??      BROTHER Printer customer support number
??1-855-709-2847??      BROTHER Printer customer service number
??1-855-709-2847??      BROTHER Printer customer care number
??1-855-709-2847??      BROTHER Printer toll free number
??1-855-709-2847??      BROTHER Printer helpdesk number
??1-855-709-2847??      BROTHER Printer contact number
??1-855-709-2847??      BROTHER Printer telephone number
??1-855-709-2847??      BROTHER Printer support phone number
??1-855-709-2847??      BROTHER Printer tech support phone number
??1-855-709-2847??      BROTHER Printer technicalsupport phone number
??1-855-709-2847??      BROTHER Printer customer support phone number
??1-855-709-2847??      BROTHER Printer customer service phone number
??1-855-709-2847??      BROTHER Printer customer care phone number
??1-855-709-2847??      BROTHER Printer toll free phone number
??1-855-709-2847??      BROTHER Printer helpdesk phone number
??1-855-709-2847??      BROTHER Printer contact phone number
??1-855-709-2847??      BROTHER Printer phone number
??1-855-709-2847??      BROTHER Printer support number
??1-855-709-2847??      BROTHER Printer tech support number
??1-855-709-2847??      BROTHER Printer technicalsupport number
??1-855-709-2847??      BROTHER Printer customer support number
??1-855-709-2847??      BROTHER Printer customer service number
??1-855-709-2847??      BROTHER Printer customer care number
??1-855-709-2847??      BROTHER Printer toll free number
??1-855-709-2847??      BROTHER Printer helpdesk number
??1-855-709-2847??      BROTHER Printer contact number
??1-855-709-2847??      BROTHER Printer telephone number
??1-855-709-2847??      BROTHER Printer phone number
??1-855-709-2847??      BROTHER Printer support number
??1-855-709-2847??      BROTHER Printer tech support number
??1-855-709-2847??      BROTHER Printer technicalsupport number
??1-855-709-2847??      BROTHER Printer customer support number
??1-855-709-2847??      BROTHER Printer customer service number
??1-855-709-2847??      BROTHER Printer customer care number
??1-855-709-2847??      BROTHER Printer toll free number
??1-855-709-2847??      BROTHER Printer helpdesk number
??1-855-709-2847??      BROTHER Printer contact number
??1-855-709-2847??      BROTHER Printer telephone number
??1-855-709-2847??      BROTHER Printer support phone number
??1-855-709-2847??      BROTHER Printer tech support phone number
??1-855-709-2847??      BROTHER Printer technicalsupport phone number
??1-855-709-2847??      BROTHER Printer customer support phone number
??1-855-709-2847??      BROTHER Printer customer service phone number
??1-855-709-2847??      BROTHER Printer customer care phone number
??1-855-709-2847??      BROTHER Printer toll free phone number
??1-855-709-2847??      BROTHER Printer helpdesk phone number
??1-855-709-2847??      BROTHER Printer contact phone number
??1-855-709-2847??      BROTHER Printer support phone number
??1-855-709-2847??      BROTHER Printer tech support phone number
??1-855-709-2847??      BROTHER Printer technicalsupport phone number
??1-855-709-2847??      BROTHER Printer customer support phone number
??1-855-709-2847??      BROTHER Printer customer service phone number
??1-855-709-2847??      BROTHER Printer customer care phone number
??1-855-709-2847??      BROTHER Printer toll free phone number
??1-855-709-2847??      BROTHER Printer helpdesk phone number
??1-855-709-2847??      BROTHER Printer contact phone number
??1-855-709-2847??      phone number BROTHER Printer support 
??1-855-709-2847??      phone number BROTHER Printer tech support 
??1-855-709-2847??      phone number BROTHER Printer technicalsupport 
??1-855-709-2847??      phone number BROTHER Printer customer support 
??1-855-709-2847??      phone number BROTHER Printer customer service 
??1-855-709-2847??      phone number BROTHER Printer customer care 
??1-855-709-2847??      phone number BROTHER Printer toll free 
??1-855-709-2847??      phone number BROTHER Printer helpdesk 
??1-855-709-2847??      phone number BROTHER Printer contact 
??1-855-709-2847??      BROTHER Printer  phone number
??1-855-709-2847??      BROTHER Printer  support number
??1-855-709-2847??      BROTHER Printer  tech support number
??1-855-709-2847??      BROTHER Printer  technicalsupport number
??1-855-709-2847??      BROTHER Printer  customer support number
??1-855-709-2847??      BROTHER Printer  customer service number
??1-855-709-2847??      BROTHER Printer  customer care number
??1-855-709-2847??      BROTHER Printer  toll free number
??1-855-709-2847??      BROTHER Printer  helpdesk number
??1-855-709-2847??      BROTHER Printer  contact number
??1-855-709-2847??      BROTHER Printer  telephone number
>From gcc-bugs-return-534009-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 22:13:03 2016
Return-Path: <gcc-bugs-return-534009-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 5001 invoked by alias); 10 Aug 2016 22:13:03 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 4879 invoked by uid 48); 10 Aug 2016 22:12:50 -0000
From: "drepper.fsp+rhbz at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/73285] New: perhaps avoid duplication?
Date: Wed, 10 Aug 2016 22:13:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: drepper.fsp+rhbz at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73285-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01345.txt.bz2
Content-length: 841

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73285

            Bug ID: 73285
           Summary: perhaps avoid duplication?
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: tree-optimization
          Assignee: unassigned at gcc dot gnu.org
          Reporter: drepper.fsp+rhbz at gmail dot com
  Target Milestone: ---

For some architectures functions with different interfaces generate identical
code.  For instance, on x86-64 (not the old x86 ABI):

double f1(int a, double b)
{
  return a + b;
}
double f2(double a, int b)
{
  return a + b;
}

Obviously the reason is that the parameters are stored in the same registers
for both functions.

Perhaps this could be recognized and the compiler could avoid generating the
code twice?
>From gcc-bugs-return-534010-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 22:15:44 2016
Return-Path: <gcc-bugs-return-534010-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 17947 invoked by alias); 10 Aug 2016 22:15:44 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 17461 invoked by uid 48); 10 Aug 2016 22:15:27 -0000
From: "yogi.kumar9781 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/73292] New: globel tech !! avg tech number 18885273401
Date: Wed, 10 Aug 2016 22:15:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: yogi.kumar9781 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73292-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01346.txt.bz2
Content-length: 9415

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73292

            Bug ID: 73292
           Summary: globel tech !! avg tech number 18885273401
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: yogi.kumar9781 at gmail dot com
  Target Milestone: ---

avg technical support number 18885273401 
avg technical phone number support number 18885273401
avg tech support number 18885273401
avg technical support phone number 18885273401
avg technical support number 18885273401 free
avg technical support number 18885273401 toll free
avg technical support number 18885273401 call USA
avg technical support number 18885273401 for america
avg technical support number 18885273401 
avg technical phone number support number 18885273401
avg tech support number 18885273401
avg technical support phone number 18885273401
avg technical support number 18885273401 free
avg technical support number 18885273401 toll free
avg technical support number 18885273401 call USA
avg technical support number 18885273401 for america
avg tech support number 18885273401
avg tech number 18885273401
avg tech support phone number 18885273401
avg tech support USA number 18885273401
avg tech support number usa call 18885273401
avg tech support number for usa 18885273401

avg technical support number 18885273401 
avg technical phone number support number 18885273401
avg tech support number 18885273401
avg technical support phone number 18885273401
avg technical support number 18885273401 free
avg technical support number 18885273401 toll free
avg technical support number 18885273401 call USA
avg technical support number 18885273401 for america
avg technical support number 18885273401 
avg technical phone number support number 18885273401
avg tech support number 18885273401
avg technical support phone number 18885273401
avg technical support number 18885273401 free
avg technical support number 18885273401 toll free
avg technical support number 18885273401 call USA
avg technical support number 18885273401 for america
avg tech support number 18885273401
avg tech number 18885273401
avg tech support phone number 18885273401
avg tech support USA number 18885273401
avg tech support number usa call 18885273401
avg tech support number for usa 18885273401

avg technical support number 18885273401 
avg technical phone number support number 18885273401
avg tech support number 18885273401
avg technical support phone number 18885273401
avg technical support number 18885273401 free
avg technical support number 18885273401 toll free
avg technical support number 18885273401 call USA
avg technical support number 18885273401 for america
avg technical support number 18885273401 
avg technical phone number support number 18885273401
avg tech support number 18885273401
avg technical support phone number 18885273401
avg technical support number 18885273401 free
avg technical support number 18885273401 toll free
avg technical support number 18885273401 call USA
avg technical support number 18885273401 for america
avg tech support number 18885273401
avg tech number 18885273401
avg tech support phone number 18885273401
avg tech support USA number 18885273401
avg tech support number usa call 18885273401
avg tech support number for usa 18885273401

avg technical support number 18885273401 
avg technical phone number support number 18885273401
avg tech support number 18885273401
avg technical support phone number 18885273401
avg technical support number 18885273401 free
avg technical support number 18885273401 toll free
avg technical support number 18885273401 call USA
avg technical support number 18885273401 for america
avg technical support number 18885273401 
avg technical phone number support number 18885273401
avg tech support number 18885273401
avg technical support phone number 18885273401
avg technical support number 18885273401 free
avg technical support number 18885273401 toll free
avg technical support number 18885273401 call USA
avg technical support number 18885273401 for america
avg tech support number 18885273401
avg tech number 18885273401
avg tech support phone number 18885273401
avg tech support USA number 18885273401
avg tech support number usa call 18885273401
avg tech support number for usa 18885273401

avg technical support number 18885273401 
avg technical phone number support number 18885273401
avg tech support number 18885273401
avg technical support phone number 18885273401
avg technical support number 18885273401 free
avg technical support number 18885273401 toll free
avg technical support number 18885273401 call USA
avg technical support number 18885273401 for america
avg technical support number 18885273401 
avg technical phone number support number 18885273401
avg tech support number 18885273401
avg technical support phone number 18885273401
avg technical support number 18885273401 free
avg technical support number 18885273401 toll free
avg technical support number 18885273401 call USA
avg technical support number 18885273401 for america
avg tech support number 18885273401
avg tech number 18885273401
avg tech support phone number 18885273401
avg tech support USA number 18885273401
avg tech support number usa call 18885273401
avg tech support number for usa 18885273401

avg technical support number 18885273401 
avg technical phone number support number 18885273401
avg tech support number 18885273401
avg technical support phone number 18885273401
avg technical support number 18885273401 free
avg technical support number 18885273401 toll free
avg technical support number 18885273401 call USA
avg technical support number 18885273401 for america
avg technical support number 18885273401 
avg technical phone number support number 18885273401
avg tech support number 18885273401
avg technical support phone number 18885273401
avg technical support number 18885273401 free
avg technical support number 18885273401 toll free
avg technical support number 18885273401 call USA
avg technical support number 18885273401 for america
avg tech support number 18885273401
avg tech number 18885273401
avg tech support phone number 18885273401
avg tech support USA number 18885273401
avg tech support number usa call 18885273401
avg tech support number for usa 18885273401

avg technical support number 18885273401 
avg technical phone number support number 18885273401
avg tech support number 18885273401
avg technical support phone number 18885273401
avg technical support number 18885273401 free
avg technical support number 18885273401 toll free
avg technical support number 18885273401 call USA
avg technical support number 18885273401 for america
avg technical support number 18885273401 
avg technical phone number support number 18885273401
avg tech support number 18885273401
avg technical support phone number 18885273401
avg technical support number 18885273401 free
avg technical support number 18885273401 toll free
avg technical support number 18885273401 call USA
avg technical support number 18885273401 for america
avg tech support number 18885273401
avg tech number 18885273401
avg tech support phone number 18885273401
avg tech support USA number 18885273401
avg tech support number usa call 18885273401
avg tech support number for usa 18885273401

avg technical support number 18885273401 
avg technical phone number support number 18885273401
avg tech support number 18885273401
avg technical support phone number 18885273401
avg technical support number 18885273401 free
avg technical support number 18885273401 toll free
avg technical support number 18885273401 call USA
avg technical support number 18885273401 for america
avg technical support number 18885273401 
avg technical phone number support number 18885273401
avg tech support number 18885273401
avg technical support phone number 18885273401
avg technical support number 18885273401 free
avg technical support number 18885273401 toll free
avg technical support number 18885273401 call USA
avg technical support number 18885273401 for america
avg tech support number 18885273401
avg tech number 18885273401
avg tech support phone number 18885273401
avg tech support USA number 18885273401
avg tech support number usa call 18885273401
avg tech support number for usa 18885273401

avg technical support number 18885273401 
avg technical phone number support number 18885273401
avg tech support number 18885273401
avg technical support phone number 18885273401
avg technical support number 18885273401 free
avg technical support number 18885273401 toll free
avg technical support number 18885273401 call USA
avg technical support number 18885273401 for america
avg technical support number 18885273401 
avg technical phone number support number 18885273401
avg tech support number 18885273401
avg technical support phone number 18885273401
avg technical support number 18885273401 free
avg technical support number 18885273401 toll free
avg technical support number 18885273401 call USA
avg technical support number 18885273401 for america
avg tech support number 18885273401
avg tech number 18885273401
avg tech support phone number 18885273401
avg tech support USA number 18885273401
avg tech support number usa call 18885273401
avg tech support number for usa 18885273401
>From gcc-bugs-return-534011-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 22:16:10 2016
Return-Path: <gcc-bugs-return-534011-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 19062 invoked by alias); 10 Aug 2016 22:16:09 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 18755 invoked by uid 48); 10 Aug 2016 22:15:53 -0000
From: "47jbfz+5btsw9cso20iu9 at sharklasers dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: =?UTF-8?B?W0J1ZyB3ZWIvNzMyOTNdIE5ldzogQ0FOQURBLyBVU0EgKysrKzEuKy44MDAu?= =?UTF-8?B?Ky40NDUuKy4yNzkwIFdlYnJvb3QgQW50aXZpcnVzIFN1cHBvcnQgUGhvbmUg?= =?UTF-8?B?bnVtYmVy4qu44qu4IOKruOKruFdlYnJvb3QgdGVjaG5pY2FsIHN1cHBvcnQg?= =?UTF-8?B?cGhvbmUgbnVtYmVy?Date: Wed, 10 Aug 2016 22:16:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: web
X-Bugzilla-Version: 3.4.6
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: 47jbfz+5btsw9cso20iu9 at sharklasers dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73293-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01347.txt.bz2
Content-length: 15029

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73293

            Bug ID: 73293
           Summary: CANADA/ USA ++++1.+.800.+.445.+.2790 Webroot Antivirus
                    Support Phone number⫸⫸ ⫸⫸Webroot technical support
                    phone number
           Product: gcc
           Version: 3.4.6
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: web
          Assignee: unassigned at gcc dot gnu.org
          Reporter: 47jbfz+5btsw9cso20iu9 at sharklasers dot com
  Target Milestone: ---

CANADA/ USA ++++1.+.800.+.445.+.2790 Webroot Antivirus Support Phone number⫸⫸
⫸⫸Webroot technical support phone number

1-800-4.4.S-279O webroot T.e.c.h.n.i.c.a.l S.u.p.p.o.r.t P.h.o.n.e n.u.m.b.e.r
webroot p.h.o.n.e N.u.m.b.e.r
webroot HelpLiNe @+1800++445++2790 webroot support phone number.
webroot helpline phone number@~1800-445-2790 webroot tech Support Number
webroot antivirus customer service phone number.

USA-1800-445-2790) Technical support number
 AUS-1800-059-007 Webroot Antivirus Technical Support
 1-800-445-2790 contact Webroot Antivirus customer service phone number
 UK- 800-810*1018 phone number for Webroot customer service
 AUS-1800-059-007 phone number for Webroot Antivirus technical support
 Canada-1800-445-2790 phone number for Webroot Antivirus customer service
phone number for Webroot Antivirus technical support
phone number for Webroot security
Webroot Antivirus customer care phone number
Webroot Antivirus customer service billing
Webroot Antivirus customer service email address
Webroot Antivirus customer service live chat
Webroot Antivirus customer service telephone number
Webroot Antivirus customer support usa phone number
Webroot Antivirus help desk support phone number free in usa
Webroot Antivirus phone number customer service us
Webroot Antivirus phone number support
Webroot Antivirus support phone number
Webroot Antivirus tech support phone number free in usa
Webroot Antivirus tech support phone number
Webroot Antivirus technical support customer service
Webroot Antivirus technical support number
Webroot Antivirus telephone number
Webroot Antivirus toll free customer care number
Webroot Antivirus toll free number in usa
Webroot Antivirus contact phone number in usa
Webroot Antivirus customer service number
Webroot Antivirus customer service phone number
Webroot Antivirus customer service telephone number
Webroot Antivirus customer support number
Webroot Antivirus customer support phone number
Webroot Antivirus customer support phone number
Webroot Antivirus help desk phone number in usa
Webroot Antivirus phone number
Webroot Antivirus phone number support for technical issue in usa
Webroot Antivirus support phone number
Webroot Antivirus technical support help desk phone number
Webroot Antivirus technical support number
Webroot Antivirus technical support phone number
Webroot customer service number
Webroot customer service telephone number
Webroot customer services email
Webroot customer support email address
Webroot customer support number
Webroot customer support phone number
Webroot customer service phone number
Webroot internet security contact phone number
Webroot internet security customer service phone number
Webroot internet security phone number
Webroot internet security help phone number
Webroot internet security phone number in usa
Webroot internet security support phone number
Webroot internet security technical support
Webroot phone number customer service
Webroot phone numbers customer support
Webroot phone support number
Webroot security contact phone number
Webroot security phone number customer service
Webroot security support phone number
Webroot support contact number
Webroot support email address
Webroot support phone number
Webroot support telephone number
Webroot support telephone number usa
Webroot support telephone number
Webroot tech support number
Webroot tech support phone number
Webroot tech support phone number free
Webroot technical support phone number
Webroot technical support cutomer phone number
Webroot technical support phone number
Webroot technical support number free in usa
Webroot technical support number toll free number
Webroot technical support phone number
Webroot technologies phone number
Webroot telephone support number
Webroot Antivirus customer support phone number
Webroot Antivirus customer service phone number
Webroot customer support phone number
Webroot phone number customer service
Webroot technical support telephone number
 contact Webroot Antivirus customer service phone number
 customer service number for Webroot Antivirus
 phone number for Webroot Antivirus
 phone number for Webroot Antivirus customer service
 phone number for Webroot Antivirus support
 phone number for Webroot customer service
 phone number for Webroot customer service
 phone number for Webroot customer support
 phone number for Webroot tech support
 phone numberWebroot Antivirus customer service
Webroot Antivirus customer service number
Webroot Antivirus customer service phone
Webroot Antivirus customer service phone number
Webroot Antivirus customer service phone number us
Webroot Antivirus customer service telephone number
Webroot Antivirus customer support
Webroot Antivirus customer support number
Webroot Antivirus phone number customer service us
Webroot Antivirus phone number support
Webroot Antivirus phone support
Webroot Antivirus phone support number
Webroot Antivirus support phone number
Webroot Antivirus tech support phone number
Webroot Antivirus technical support
Webroot Antivirus technical support number
Webroot Antivirus technical support phone number
Webroot customer service phone number
Webroot customer support phone number
Webroot helpline phone number
Webroot internet security customer service
Webroot internet security customer service phone number
Webroot internet security help phone number
Webroot internet security phone number customer service
Webroot phone number customer service
Webroot phone number customer support
Webroot security customer service phone number
Webroot security phone number customer service
Webroot support phone number
Webroot support telephone number
Webroot tech support number
Webroot tech support phone number
Webroot technical support
Webroot technical support number
Webroot technical support phone number
Webroot Antivirus customer support phone number
Webroot Antivirus phone number customer service
Webroot Antivirus tech support number
Webroot customer service phone number
Webroot customer service phone numbers
Webroot internet security technical support
Webroot tech support phone number us
Webroot technical support telephone number
 contact Webroot Antivirus
 contact Webroot by phone
 contact Webroot customer service
 contact Webroot Antivirus customer service phone number
 contact Webroot Antivirus tech support usa
 customer serviceWebroot phone number
 downloadWebroot titanium
 dri Webroot customer service number
 dri Webroot customer service phone number
 dri Webroot phone number
 how to contact Webroot by email
 how to delete Webroot from mac
 micro trend customer service
 norton Antivirus customer service number
 phone number for Webroot customer service
 phone number for Webroot customer service
 phone number for Webroot customer support
 phone number for Webroot tech support
 phone number for Webroot technical support
 phone number for Webroot Antivirus technical support
 phone number for Webroot security
 phone number for Webroot support
 phone number for Webroot technical support
 phone number for Webroot Antivirus customer service
 phone number for Webroot customer service
 removeWebroot from mac
 technical support for AntivirusWebroot
 telephone number for Webroot technical support
 telephoneWebroot Antivirus
Webroot Antivirus contact number
Webroot Antivirus customer care
Webroot Antivirus customer care number
Webroot Antivirus customer care number usa
Webroot Antivirus customer service
Webroot Antivirus customer service number :idea: :evil: :D :) :lol: :( :o
:shock:
Webroot Antivirus customer service phone number
Webroot Antivirus customer service phone number usa
Webroot Antivirus customer service telephone number
Webroot Antivirus customer support
Webroot Antivirus customer support in usa
Webroot Antivirus customer support number
Webroot Antivirus customer support phone number
Webroot Antivirus for phone
Webroot Antivirus free Antivirus support
Webroot Antivirus help phone number
Webroot Antivirus helpline number
Webroot Antivirus online support
Webroot Antivirus phone
Webroot Antivirus phone number
Webroot Antivirus phone number in usa
Webroot Antivirus phone number usa
Webroot Antivirus phone support
Webroot Antivirus plus tech support
Webroot Antivirus protection
Webroot Antivirus support
Webroot Antivirus support number
Webroot Antivirus support phone number
Webroot Antivirus support services
Webroot Antivirus support telephone number
Webroot Antivirus tech support
Webroot Antivirus tech support phone number free in usa
Webroot Antivirus tech support number
Webroot Antivirus tech support phone number
Webroot Antivirus technical support
Webroot Antivirus technical support number
Webroot Antivirus technical support phone number
Webroot Antivirus toll free customer care number
Webroot Antivirus toll free number
Webroot Antivirus contact phone number in usa
Webroot Antivirus help desk phone number in usa
Webroot Antivirus phone number support for technical issue in usa
Webroot Antivirus support phone number
Webroot Antivirus technical support help desk phone number
Webroot Antivirus technical support phone number
Webroot contact number
Webroot contact number usa
Webroot contact phone number
Webroot contact support
Webroot contact number usa
Webroot contact phone number
Webroot contact phone number usa
Webroot customer & technical support
Webroot customer care
Webroot customer care center
Webroot customer care email
Webroot customer care number
Webroot customer care number
Webroot customer care number usa
Webroot customer care number usa toll free
Webroot customer care phone number usa
Webroot customer care tchnical support
Webroot customer care toll free
Webroot customer care toll free number
Webroot customer care usa
Webroot customer help
Webroot customer number
Webroot customer portal
Webroot customer service
Webroot customer service billing
Webroot customer service email address
Webroot customer service number
Webroot customer service phone
Webroot customer service phone number
Webroot customer service phone number us
Webroot customer service phone number usa
Webroot customer service reviews
Webroot customer service telephone number
Webroot customer service usa
Webroot customer support
Webroot customer support number
Webroot customer support phone
Webroot customer support phone number
Webroot customer service number
Webroot customer service number usa
Webroot customer service phone number
Webroot customer support number
Webroot customer support phone number
Webroot free phone support
Webroot gold support phone number
Webroot help desk phone number
Webroot help phone number
Webroot helpline
Webroot helpline phone number
Webroot hotline customer service phone number
Webroot internet security customer service
Webroot internet security phone number
Webroot internet security phone number in usa
Webroot lab usa customer service
Webroot labs usa customer serviceWebroot
Webroot phone number
Webroot phone number customer service
Webroot phone number support
Webroot phone number tech support
Webroot phone number technical support
Webroot phone numbers customer support
Webroot phone support
Webroot phone support number
Webroot phone number customer service
Webroot phone number support
Webroot phone number tech support
Webroot phone number usa
Webroot security contact phone number
Webroot security phone number
Webroot security support phone number
Webroot software customer service
Webroot software customer service number
Webroot support center
Webroot support contact number
Webroot support email address
Webroot support phone number
Webroot support telephone number
Webroot support number usa
Webroot support phone number
Webroot support phone number usa
Webroot tech support
Webroot tech support center
Webroot tech support contact
Webroot tech support number
Webroot tech support number usa
Webroot tech support phone
Webroot tech support phone number
Webroot tech support phone number free
Webroot tech support number
Webroot tech support number usa
Webroot tech support phone number
Webroot technical support
Webroot technical support number
Webroot technical support phone number
Webroot technical support phone number usa
Webroot technical support reviews
Webroot technical support usa
Webroot technical support phone number
Webroot technical support number
Webroot technical support number toll free number
Webroot technical support number usa
Webroot technical support phone number
Webroot technical support phone number usa
Webroot technologies phone number
Webroot telephone number
Webroot telephone support number
Webroot toll free number
Webroot toll free number usa
Webroot usa customer care for tech support
Webroot usa customer service
Webroot usa phone number
Webroot Antivirus customer service phone number
Webroot Antivirus customer service phone number
Webroot Antivirus customer support phone number
Webroot Antivirus customer support phone number
Webroot Antivirus technical support number
Webroot customer service phone number usa
Webroot internet security support phone number
Webroot.com customer service
Webroot Antivirus antispyware 2011
Webroot Antivirus customer support
Webroot Antivirus serial key
Webroot Antivirus serial number
Webroot Antivirus support
Webroot Antivirus technical support
Webroot business support
Webroot contact support
Webroot customer care number
Webroot customer service 844
Webroot customer service number
Webroot customer service phone number
Webroot customer service telephone number
Webroot customer support
Webroot grentry non payment
Webroot helpline support number
Webroot internet security customer service
Webroot internet security technical support
Webroot oem customer service
Webroot pc cillin technical support
Webroot phone support
Webroot removal tool download
Webroot subscription renewal
Webroot support contact
Webroot support hotline
Webroot support phone number
Webroot tech support phone number
Webroot technical support
Webroot technical support chat
Webroot technical support phone number
Webroot technical support phone number usa
Webroot telephone number
Webroot titanium Antivirus
Webroot titanium internet security
Webroot titanium maximum
Webroot titanium maximum security
Webroot titanium problems
Webroot titanium removal tool
Webroot titanium reviews
Webroot titanium support
Webroot virus removal service
 uninstallWebroot smart surfing for mac
 usa customer care number for Webroot Antivirus
>From gcc-bugs-return-534012-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 22:19:59 2016
Return-Path: <gcc-bugs-return-534012-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 29714 invoked by alias); 10 Aug 2016 22:19:59 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 29574 invoked by uid 48); 10 Aug 2016 22:19:46 -0000
From: "anden1972 at einrot dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73296] New: Icloud
Date: Wed, 10 Aug 2016 22:19:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: trans-mem
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: anden1972 at einrot dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73296-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01348.txt.bz2
Content-length: 8665

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73296

            Bug ID: 73296
           Summary: Icloud
           Product: gcc
           Version: trans-mem
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: anden1972 at einrot dot com
  Target Milestone: ---

Support & Service Call -)) 1800 681 7208 )))GMX Tech support phone number GMX
support Phone number  %%2$$ GMX customer support phone number +1800-681-7208
GMX customer service number,1800^681^7208 GMX helpdesk phone number, GMX
customer care number, 1800*681*7208 GMX support phone number,@@@@ GMX password
recovery phone number, 1800::681::7208 GMX customer care phone number, GMX
customer service number GMX official phone number 1800**681**7208 @$@$
+1800 681 7208 GMX EMAIL SUPPORT NUMBER 1800 681 7208 GMX customer care number
GMX support phone number 1800 681 7208 GMX customer care number 1800 681 7208
GMX helpdesk phone number 1800 681 7208 GMX EMAIL SUPPORT HELPDESK GMX Email
helpdesk number GMX Password recovery phone number GMX tech support number 1800
681 7208 GMX Technical support number 1800-681-7208 GMX EMAIL SUPPORT NUMBER
1800-681-7208 GMX customer care number GMX support phone number 1800-681-7208
GMX customer care number 1800-681-7208 GMX helpdesk phone number 1800-681-7208
GMX EMAIL SUPPORT HELPDESK GMX Email helpdesk number GMX Password recovery
phone number GMX tech support number 1800-681-7208 GMX Technical support number
@@/CANADA +1800 681 7208 GMX EMAIL SUPPORT NUMBER 1800 681 7208 GMX customer
care number GMX support phone number 1800 681 7208 GMX customer care number
1800 681 7208 GMX helpdesk phone number 1800 681 7208 GMX EMAIL SUPPORT
HELPDESK GMX Email helpdesk number GMX Password recovery phone number GMX tech
support number 1800 681 7208 GMX Technical support number 1800-681-7208 GMX
EMAIL SUPPORT NUMBER 1800-681-7208 GMX customer care number GMX support phone
number 1800-681-7208 GMX customer care number 1800-681-7208 GMX helpdesk phone
number 1800-681-7208 GMX EMAIL SUPPORT HELPDESK GMX Email helpdesk number GMX
Password recovery phone number GMX tech support number 1800-681-7208 GMX
Technical support number @@/CANADA +1800 681 7208 GMX EMAIL SUPPORT NUMBER 1800
681 7208 GMX customer care number GMX support phone number 1800 681 7208 GMX
customer care number 1800 681 7208 GMX helpdesk phone number 1800 681 7208 GMX
EMAIL SUPPORT HELPDESK GMX Email helpdesk number GMX Password recovery phone
number GMX tech support number 1800 681 7208 GMX Technical support number
1800-681-7208 GMX EMAIL SUPPORT NUMBER 1800-681-7208 GMX customer care number
GMX support phone number 1800-681-7208 GMX customer care number 1800-681-7208
GMX helpdesk phone number 1800-681-7208 GMX EMAIL SUPPORT HELPDESK GMX Email
helpdesk number GMX Password recovery phone number GMX tech support number
1800-681-7208 GMX Technical support number @@/CANADA +1800 681 7208 GMX EMAIL
SUPPORT NUMBER 1800 681 7208 GMX customer care number GMX support phone number
1800 681 7208 GMX customer care number 1800 681 7208 GMX helpdesk phone number
1800 681 7208 GMX EMAIL SUPPORT HELPDESK GMX Email helpdesk number GMX Password
recovery phone number GMX tech support number 1800 681 7208 GMX Technical
support number 1800-681-7208 GMX EMAIL SUPPORT NUMBER 1800-681-7208 GMX
customer care number GMX support phone number 1800-681-7208 GMX customer care
number 1800-681-7208 GMX helpdesk phone number 1800-681-7208 GMX EMAIL SUPPORT
HELPDESK GMX Email helpdesk number GMX Password recovery phone number GMX tech
support number 1800-681-7208 GMX Technical support number @@/CANADA +1800 681
7208 GMX EMAIL SUPPORT NUMBER 1800 681 7208 GMX customer care number GMX
support phone number 1800 681 7208 GMX customer care number 1800 681 7208 GMX
helpdesk phone number 1800 681 7208 GMX EMAIL SUPPORT HELPDESK GMX Email
helpdesk number GMX Password recovery phone number GMX tech support number 1800
681 7208 GMX Technical support number 1800-681-7208 GMX EMAIL SUPPORT NUMBER
1800-681-7208 GMX customer care number GMX support phone number 1800-681-7208
GMX customer care number 1800-681-7208 GMX helpdesk phone number 1800-681-7208
GMX EMAIL SUPPORT HELPDESK GMX Email helpdesk number GMX Password recovery
phone number GMX tech support number 1800-681-7208 GMX Technical support number
@@/CANADA +1800 681 7208 GMX EMAIL SUPPORT NUMBER 1800 681 7208 GMX customer
care number GMX support phone number 1800 681 7208 GMX customer care number
1800 681 7208 GMX helpdesk phone number 1800 681 7208 GMX EMAIL SUPPORT
HELPDESK GMX Email helpdesk number GMX Password recovery phone number GMX tech
support number 1800 681 7208 GMX Technical support number 1800-681-7208 GMX
EMAIL SUPPORT NUMBER 1800-681-7208 GMX customer care number GMX support phone
number 1800-681-7208 GMX customer care number 1800-681-7208 GMX helpdesk phone
number 1800-681-7208 GMX EMAIL SUPPORT HELPDESK GMX Email helpdesk number GMX
Password recovery phone number GMX tech support number 1800-681-7208 GMX
Technical support number @@/CANADA GMX customer service number GMX call center
GMX customer service Email address GMX customer care no GMX Email technical
support phone number GMX Email tech support phone number GMX Email customer
service phone number GMX 360 technical support phone number symantec technical
support phone number GMX technical support phone number GMX customer service
telephone number GMX Email phone number GMX Email customer service phone number
GMX Email customer service Helpdesk GMX Email phone number GMX phone number
cancel subscription GMX technical support phone number GMX 1800 phone number
American airlines toll free customer care number Jetairways toll free customer
care number Microsot toll free customer care number Apple toll free customer
care number Google toll free customer care number Bank of america toll free
customer care number flipkart toll free customer care number GMX toll free
customer care number GMX technical support phone number GMX technical support
number GMX technical support number symantec technical support number GMX Email
technical support number GMX locations GMX online support GMX Helpdesk phone
number GMX customer care GMX tech support phone number GMX tech support phone
number GMX Email tech support phone number GMX locations GMX Helpdesk phone
number service GMX com GMX login GMX technical support phone number GMX
customer service GMX Helpdesk phone number GMX support telephone number GMX
support phone number GMX Email support phone number GMX support phone number
GMX locations GMX customer service GMX customer care GMX Helpdesk phone number
GMX customer support phone number GMX customer support phone number GMX Email
customer support phone number GMX Email customer service phone number GMX Email
technical support phone number GMX Email tech support phone number GMX Email
phone number GMX security center phone number GMX support telephone number GMX
360 technical support phone number symantec technical support phone number GMX
tech support phone number apple technical support phone number @@ microsoft
technical support phone number @@ GMX technical support phone number @@
kaspersky technical support phone number @@ lenovo technical support phone
number @@ epson technical support phone number @@ GMX technical support phone
number call GMX support chat with GMX support GMX customer support GMX Email
customer service number GMX address GMX call center GMX hq GMX office locations
GMX support site GMX telephone number for customer support GMX customer service
contact number GMX customer care GMX toll free number GMX security contact
number contact Vipre GMX headquarters GMX customer service chat GMX customer
service telephone number GMX Helpdesk phone number GMX customer support GMX
customer service GMX login GMX locations GMX customer service number GMX
locations GMX customer service Email address GMX support site GMX technical
support phone number GMX technical support live chat GMX technical support
Email address GMX technical support number GMX technical support number
symantec technical support number GMX Email technical support number GMX
customer support phone number GMX customer support number GMX customer support
number GMX Email customer support number GMX locations GMX Helpdesk phone
number GMX corporate phone number GMX customer service Helpdesk GMX technical
support phone number GMX tech support phone number GMX tech support number GMX
tech support number
>From gcc-bugs-return-534013-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 22:25:40 2016
Return-Path: <gcc-bugs-return-534013-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 55002 invoked by alias); 10 Aug 2016 22:25:40 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 54284 invoked by uid 48); 10 Aug 2016 22:25:27 -0000
From: "shobhitphp at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/73304] New: suvidha printErR1-855-709-2847 BROTHER PRINTER TECHNICAL SUPPORT NUMBER
Date: Wed, 10 Aug 2016 22:25:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: 4.0.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: shobhitphp at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-73304-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01349.txt.bz2
Content-length: 5832

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73304

            Bug ID: 73304
           Summary: suvidha printErR1-855-709-2847 BROTHER PRINTER
                    TECHNICAL SUPPORT NUMBER
           Product: gcc
           Version: 4.0.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ada
          Assignee: unassigned at gcc dot gnu.org
          Reporter: shobhitphp at gmail dot com
  Target Milestone: ---

Created attachment 39151
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39151&action=edit
suvidha 1-855-709-2847 BROTHER PRINTER TECHNICAL SUPPORT NUMBER
??1-855-709-2847??      BROTHER Printer phone number ??1-855-709-2847?? BROTHER
Printer support number ??1-855-709-2847??       BROTHER Printer tec

suvidha 1-855-709-2847 BROTHER PRINTER TECHNICAL SUPPORT NUMBER
??1-855-709-2847??      BROTHER Printer phone number
??1-855-709-2847??      BROTHER Printer support number
??1-855-709-2847??      BROTHER Printer tech support number
??1-855-709-2847??      BROTHER Printer technicalsupport number
??1-855-709-2847??      BROTHER Printer customer support number
??1-855-709-2847??      BROTHER Printer customer service number
??1-855-709-2847??      BROTHER Printer customer care number
??1-855-709-2847??      BROTHER Printer toll free number
??1-855-709-2847??      BROTHER Printer helpdesk number
??1-855-709-2847??      BROTHER Printer contact number
??1-855-709-2847??      BROTHER Printer telephone number
??1-855-709-2847??      BROTHER Printer support phone number
??1-855-709-2847??      BROTHER Printer tech support phone number
??1-855-709-2847??      BROTHER Printer technicalsupport phone number
??1-855-709-2847??      BROTHER Printer customer support phone number
??1-855-709-2847??      BROTHER Printer customer service phone number
??1-855-709-2847??      BROTHER Printer customer care phone number
??1-855-709-2847??      BROTHER Printer toll free phone number
??1-855-709-2847??      BROTHER Printer helpdesk phone number
??1-855-709-2847??      BROTHER Printer contact phone number
??1-855-709-2847??      BROTHER Printer phone number
??1-855-709-2847??      BROTHER Printer support number
??1-855-709-2847??      BROTHER Printer tech support number
??1-855-709-2847??      BROTHER Printer technicalsupport number
??1-855-709-2847??      BROTHER Printer customer support number
??1-855-709-2847??      BROTHER Printer customer service number
??1-855-709-2847??      BROTHER Printer customer care number
??1-855-709-2847??      BROTHER Printer toll free number
??1-855-709-2847??      BROTHER Printer helpdesk number
??1-855-709-2847??      BROTHER Printer contact number
??1-855-709-2847??      BROTHER Printer telephone number
??1-855-709-2847??      BROTHER Printer phone number
??1-855-709-2847??      BROTHER Printer support number
??1-855-709-2847??      BROTHER Printer tech support number
??1-855-709-2847??      BROTHER Printer technicalsupport number
??1-855-709-2847??      BROTHER Printer customer support number
??1-855-709-2847??      BROTHER Printer customer service number
??1-855-709-2847??      BROTHER Printer customer care number
??1-855-709-2847??      BROTHER Printer toll free number
??1-855-709-2847??      BROTHER Printer helpdesk number
??1-855-709-2847??      BROTHER Printer contact number
??1-855-709-2847??      BROTHER Printer telephone number
??1-855-709-2847??      BROTHER Printer support phone number
??1-855-709-2847??      BROTHER Printer tech support phone number
??1-855-709-2847??      BROTHER Printer technicalsupport phone number
??1-855-709-2847??      BROTHER Printer customer support phone number
??1-855-709-2847??      BROTHER Printer customer service phone number
??1-855-709-2847??      BROTHER Printer customer care phone number
??1-855-709-2847??      BROTHER Printer toll free phone number
??1-855-709-2847??      BROTHER Printer helpdesk phone number
??1-855-709-2847??      BROTHER Printer contact phone number
??1-855-709-2847??      BROTHER Printer support phone number
??1-855-709-2847??      BROTHER Printer tech support phone number
??1-855-709-2847??      BROTHER Printer technicalsupport phone number
??1-855-709-2847??      BROTHER Printer customer support phone number
??1-855-709-2847??      BROTHER Printer customer service phone number
??1-855-709-2847??      BROTHER Printer customer care phone number
??1-855-709-2847??      BROTHER Printer toll free phone number
??1-855-709-2847??      BROTHER Printer helpdesk phone number
??1-855-709-2847??      BROTHER Printer contact phone number
??1-855-709-2847??      phone number BROTHER Printer support 
??1-855-709-2847??      phone number BROTHER Printer tech support 
??1-855-709-2847??      phone number BROTHER Printer technicalsupport 
??1-855-709-2847??      phone number BROTHER Printer customer support 
??1-855-709-2847??      phone number BROTHER Printer customer service 
??1-855-709-2847??      phone number BROTHER Printer customer care 
??1-855-709-2847??      phone number BROTHER Printer toll free 
??1-855-709-2847??      phone number BROTHER Printer helpdesk 
??1-855-709-2847??      phone number BROTHER Printer contact 
??1-855-709-2847??      BROTHER Printer  phone number
??1-855-709-2847??      BROTHER Printer  support number
??1-855-709-2847??      BROTHER Printer  tech support number
??1-855-709-2847??      BROTHER Printer  technicalsupport number
??1-855-709-2847??      BROTHER Printer  customer support number
??1-855-709-2847??      BROTHER Printer  customer service number
??1-855-709-2847??      BROTHER Printer  customer care number
??1-855-709-2847??      BROTHER Printer  toll free number
??1-855-709-2847??      BROTHER Printer  helpdesk number
??1-855-709-2847??      BROTHER Printer  contact number
??1-855-709-2847??      BROTHER Printer  telephone number
>From gcc-bugs-return-534014-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 22:26:40 2016
Return-Path: <gcc-bugs-return-534014-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 56182 invoked by alias); 10 Aug 2016 22:26:40 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 56098 invoked by uid 48); 10 Aug 2016 22:26:27 -0000
From: "casandra.johnson007 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/73306] New: Call Now!! Tech Support Experts +1 800-213-2171 Support for Microsoft Toll Free Call Now!!
Date: Wed, 10 Aug 2016 22:26:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: fortran-dev
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: casandra.johnson007 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73306-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01350.txt.bz2
Content-length: 53573

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73306

            Bug ID: 73306
           Summary: Call Now!! Tech Support Experts +1 800-213-2171
                    Support for Microsoft Toll Free Call Now!!
           Product: gcc
           Version: fortran-dev
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: casandra.johnson007 at gmail dot com
  Target Milestone: ---

Call 24x7 Live +1 800-213-2171 Microsoft Customer Care Phone Number
Note:- We are third party independent Microsoft tech support service provider.
We are not affiliated any Company. 
Supported Services:- 
microsoft customer care phone number
microsoft customer support phone number
microsoft server support number
microsoft 1800 customer support
microsoft customer service phone number
microsoft tech support phone number for windows 10
microsoft help desk phone number
microsoft answer desk phone number
microsoft tech support phone number
microsoft tech support phone number for windows 7
microsoft tech support phone number for windows 8
outlook technical support from microsoft technician 
outlook technical support phone number
outlook email support phone number
outlook customer service phone number
microsoft outlook customer support phone number
outlook problems not receiving emails 
how to recover mails from outlook 2010, outlook 2003,outlook 2007
recover deleted emails outlook 2007 without exchange
how to recover deleted emails in outlook 2007 psd
browser problems with windows 8
my browser is not working windows 8 laptop
microsoft help desk phone number us
office 365 login not working in chrome
office 365 login not working
microsoft helpline number usa 
microsoft toll free number usa
microsoft tech support toll free
microsoft tech support phone number
toll free number for microsoft technical support
outlook technical support phone number 
microsoft office technical support phone number
Microsoft Outlook Technical Support
Customer Support Microsoft Outlook
Microsoft Outlook Contacts number
microsoft office outlook help and support
microsoft office outlook 2007 help and support
Microsoft Outlook Customer Support
Outlook Support Helpline Number
Outlook Tech Support Services
technical support for outlook phone number 
microsoft outlook technical support phone number
microsoft outlook email technical support number 
microsoft outlook email technical support number 
microsoft office outlook support phone number 
microsoft office outlook support phone number
windows 8 customer service phone number
microsoft contact number
microsoft customer care calls
microsoft customer care contact
microsoft customer care contact number
microsoft customer care help
microsoft customer care help desk
microsoft customer care help desk number
microsoft customer care help number
microsoft customer care helpline
microsoft customer care helpline number
microsoft customer care number
microsoft customer care number for usa
microsoft customer care phone
microsoft customer care phone number
microsoft customer care telephone
microsoft customer care telephone number
microsoft customer care toll free
microsoft customer care toll free number
microsoft customer care toll free phone
microsoft customer care toll free phone number
microsoft customer care toll free telephone
microsoft customer care toll free telephone number
microsoft customer service
microsoft customer service calls
microsoft customer service contact
microsoft customer service contact number
microsoft customer service help
microsoft customer service help desk
microsoft customer service help desk number
microsoft customer service help number
microsoft customer service helpline
microsoft customer service helpline number
microsoft customer service number
microsoft customer service phone
microsoft customer service phone number
microsoft customer service telephone
microsoft customer service telephone number
microsoft customer service toll free
microsoft customer service toll free number
microsoft customer service toll free phone
microsoft customer service toll free phone number
microsoft customer service toll free telephone
microsoft customer service toll free telephone number
microsoft customer support
microsoft customer support calls
microsoft customer support contact
microsoft customer support contact number
microsoft customer support help
microsoft customer support help desk
microsoft customer support help desk number
microsoft customer support help number
microsoft customer support helpline
microsoft customer support helpline number
microsoft customer support number
microsoft customer support phone
microsoft customer support phone number
microsoft customer support telephone
microsoft customer support telephone number
microsoft customer support toll free
microsoft customer support toll free number
microsoft customer support toll free phone
microsoft customer support toll free phone number
microsoft customer support toll free telephone
microsoft customer support toll free telephone number
microsoft help
microsoft help desk
microsoft help desk number
microsoft help number
microsoft helpline
microsoft helpline number
microsoft helpline phone
microsoft helpline phone number
microsoft helpline telephone
microsoft helpline telephone number
microsoft issues phone number
microsoft number
microsoft number for usa
microsoft phone
microsoft phone number
microsoft points 
microsoft points euro 2012
microsoft points game
microsoft points in pound
microsoft points instant
microsoft points tesco
1-800 microsoft support
microsoft tech support
microsoft tech support calls
microsoft tech support help
microsoft tech support help desk
microsoft tech support help desk number
microsoft tech support help number
microsoft tech support helpline
microsoft tech support helpline number
microsoft tech support number
microsoft tech support phone
microsoft tech support phone number
microsoft tech support telephone
microsoft tech support telephone number
microsoft tech support toll free
microsoft tech support toll free number
microsoft tech support toll free phone
microsoft tech support toll free phone number
microsoft tech support toll free telephone
microsoft tech support toll free telephone number
microsoft technical issues calls
microsoft technical issues contact
microsoft technical issues contact number
microsoft technical issues help
microsoft technical issues help desk
microsoft technical issues help desk number
microsoft technical issues help number
microsoft technical issues helpline
microsoft technical issues helpline number
microsoft technical issues number
microsoft technical issues phone
microsoft technical issues phone number
microsoft technical issues telephone
microsoft technical issues telephone number
microsoft technical issues toll free
microsoft technical issues toll free number
microsoft technical issues toll free phone
microsoft technical issues toll free phone number
microsoft technical issues toll free telephone
microsoft technical issues toll free telephone number
microsoft technical problem
microsoft technical problem calls
microsoft technical problem contact
microsoft technical problem contact number
microsoft technical problem help
microsoft technical problem help desk
microsoft technical problem help desk number
microsoft technical problem help number
microsoft technical problem helpline
microsoft technical problem helpline number
microsoft technical problem number
microsoft technical problem phone
microsoft technical problem phone number
microsoft technical problem telephone
microsoft technical problem telephone number
microsoft technical problem toll free
microsoft technical problem toll free number
microsoft technical problem toll free phone
microsoft technical problem toll free phone number
microsoft technical problem toll free telephone
microsoft technical problem toll free telephone number
microsoft technical support
microsoft technical support calls
microsoft technical support contact
microsoft technical support contact number
microsoft technical support help
microsoft technical support help desk
microsoft technical support help desk number
microsoft technical support help number
microsoft technical support helpline
microsoft technical support helpline number
microsoft technical support number
microsoft technical support phone
microsoft technical support phone number
microsoft technical support telephone
microsoft technical support telephone number
microsoft technical support toll free
microsoft technical support toll free number
microsoft technical support toll free phone
microsoft technical support toll free phone number
microsoft technical support toll free telephone
microsoft technical support toll free telephone number
microsoft telephone
microsoft telephone number
microsoft toll free
microsoft toll free number
microsoft toll free phone
microsoft toll free phone number
microsoft toll free telephone
microsoft toll free telephone number
number for microsoft
number for microsoft support
1800 number for microsoft support
1-800-microsoft phone number
800 number for microsof tech support
800 number for microsoft
800 number for microsoft office
800 number for microsoft support
800 number for microsoft tech support
800 number for microsoft windows
800 number for microsoft windows 
800 number to microsoft 
800 microsoft toll free number 
800 number for microsoft support
800 number for microsoft technical support
contact microsoft 1-800
contact microsoft 1-800 
microsoft 0800 number
microsoft 1  800 phone number
microsoft 1 800
microsoft 1 800 number
microsoft 1 800 phone number
microsoft 1 800 support
microsoft calls
microsoft contact
microsoft contact number
microsoft customer care
microsoft customer care calls
microsoft customer care contact
microsoft customer care contact number
microsoft customer care help
microsoft customer care help desk 
microsoft customer care help desk number
microsoft customer care help number
microsoft customer care number
microsoft customer care phone
microsoft customer care phone number
microsoft customer care telephone
microsoft customer care telephone number
microsoft customer care toll free
microsoft customer care toll free number
microsoft customer care toll free phone
microsoft customer care toll free phone number
microsoft customer care toll free telephone
microsoft customer care toll free telephone number
microsoft customer service
microsoft customer service calls
microsoft customer service contact
microsoft customer service contact number
microsoft customer service help
microsoft customer service help desk
microsoft customer service help desk number
microsoft customer service help number
microsoft customer service helpline
microsoft customer service helpline number
microsoft customer service number
microsoft customer service phone
microsoft customer service phone number
microsoft customer service telephone
microsoft customer service telephone number
microsoft customer service toll free
microsoft customer service toll free number
microsoft customer service toll free phone
microsoft customer service toll free phone number
microsoft customer service toll free telephone
microsoft customer service toll free telephone number
microsoft customer support
microsoft customer support calls
microsoft customer support contact
microsoft customer support contact number
microsoft customer support help
microsoft customer support help desk
microsoft customer support help desk number
microsoft customer support help number
microsoft customer support helpline
microsoft customer support helpline number
microsoft customer support number
microsoft customer support phone
microsoft customer support phone number
microsoft customer support telephone
microsoft customer support telephone number
microsoft customer support toll free
microsoft customer support toll free number
microsoft customer support toll free phone
microsoft customer support toll free phone number
microsoft customer support toll free telephone
microsoft customer support toll free telephone number
microsoft help
microsoft help desk
microsoft help desk number
microsoft help number
microsoft helpline
microsoft helpline number
microsoft helpline phone
microsoft helpline phone number
microsoft helpline telephone
microsoft helpline telephone number
microsoft number
microsoft 1-800 number
microsoft number activation
microsoft number canada
microsoft numbers
microsoft numbers for free
microsoft 1-800 numbers toll free
microsoft phone
microsoft phone number
microsoft 1-800 phone number
microsoft support number
microsoft 1-800 support number
microsoft 1-800 support number 
microsoft tech support
microsoft tech support calls
microsoft tech support contact
microsoft tech support contact number
microsoft tech support help
microsoft tech support help desk
microsoft tech support help desk number
microsoft tech support help number
microsoft tech support helpline
microsoft tech support helpline number
microsoft tech support number
microsoft tech support phone
microsoft tech support phone number
microsoft tech support telephone
microsoft tech support telephone number
microsoft tech support toll free
microsoft tech support toll free number
microsoft tech support toll free phone
microsoft tech support toll free phone number
microsoft tech support toll free telephone
microsoft tech support toll free telephone number
microsoft technical issues calls
microsoft technical issues contact
microsoft technical issues contact number
microsoft technical issues help
microsoft technical issues help desk
microsoft technical issues help desk number
microsoft technical issues help number
microsoft technical issues helpline
microsoft technical issues helpline number
microsoft technical issues number
microsoft technical issues phone
microsoft technical issues phone number
microsoft technical issues telephone
microsoft technical issues telephone number
microsoft technical issues toll free
microsoft technical issues toll free number
microsoft technical issues toll free phone
microsoft technical issues toll free phone number
microsoft technical issues toll free telephone
microsoft technical issues toll free telephone number
microsoft technical support
microsoft technical support calls
microsoft technical support contact
microsoft technical support contact number
microsoft technical support help
microsoft technical support help desk
microsoft technical support help desk number
microsoft technical support help number
microsoft technical support helpline
microsoft technical support helpline number
microsoft technical support number
microsoft technical support phone
microsoft technical support phone number
microsoft technical support telephone
microsoft technical support telephone number
microsoft technical support toll free
microsoft technical support toll free number
microsoft technical support toll free phone
microsoft technical support toll free phone number
microsoft technical support toll free telephone number
microsoft telephone
microsoft telephone number
microsoft toll free
microsoft toll free calls
microsoft toll free number
microsoft toll free phone
microsoft toll free phone number
microsoft toll free telephone
microsoft toll free telephone number
microsoft 800 desktop
microsoft 800 drivers
microsoft 800 keyboard 
microsoft 800 keyboard reviews
microsoft 800 mouse 
microsoft 800 number
microsoft 800 number customer service
microsoft 800 number for activation
microsoft 800 number support
microsoft 800 number tech suport
microsoft 800 number tech support
microsoft 800 numbers toll free
microsoft 800 phone number
microsoft 800 tech support
microsoft 800 toll free number
microsoft 800 toll free numbers
microsoft 800 wireless mouse and keyboard
microsoft account phone number support
microsoft activation phone number thailand
microsoft biling 800 number
microsoft billing 800 number
microsoft contact number 1800
microsoft office 1 800 number
microsoft office 1-800
microsoft office 1-800 
microsoft office number
microsoft office 1-800 number
microsoft office 365 800 number
microsoft office 800 number
microsoft office 800 support number
microsoft office activation 800 number
microsoft office for mac 800 number
microsoft office phone number customer support
microsoft office phone number support
microsoft office phone number template
microsoft office support 800 number
microsoft phone number customer service
microsoft phone number customer support
microsoft phone number for activation
microsoft phone number for activation problems
microsoft phone number support
microsoft phone number support uk
microsoft phone number tin the uk
microsoft phone number to activate windows 7
microsoft phone number to get product key
microsoft phone number uk customer service
microsoft store number
microsoft store 800 number
microsoft support 1-800 number 
microsoft support 800 number
microsoft support number 800 
microsoft support phone number 800
microsoft tech support 1-800
microsoft tech support 800 number
microsoft toll free  helpline number
microsoft toll free number
microsoft toll free 800
microsoft toll free 800 number
microsoft toll free activation number
microsoft toll free hotline
microsoft toll free number usa
microsoft toll free numbers
microsoft toll free tech support number 
microsoft toll free teech support number
microsoft uk phone number tech support
microsoft windows 1-800
microsoft windows number
microsoft windows 800 number
microsoft wireless office 800
microsoft word 800 number
microsoft word phone number support
microsoft word phone number tabs
microsoft 0800 activation number
microsoft 0800 hotline
microsoft 0800 number uk
microsoft customer service 0800 number
microsoft office 1-800 
microsoft office 1-800 support
toll free 800 microsoft numbers
microsoft 800 number
microsoft office 800 number
1 800 microsoft
microsoft 800 phone number
microsoft 1 800 number
800 number for microsoft
1-800-microsoft phone number
Let Us Help With Microsoft +1 800-213-2171 Outlook Technical Support Help Desk
Phone Number


Note:- We are third party independent Microsoft outlook tech support service
provider. We are not affiliated any Company. 

Supported Services:-

Top priority keywords
microsoft outlook tech support phone number
microsoft outlook customer service number
microsoft outlook customer service phone number
microsoft outlook support phone number
microsoft outlook help phone number
microsoft office customer service phone number
microsoft vista customer service phone number
microsoft zune customer service phone number
microsoft outlook customer care number
microsoft outlook customer service telephone number
microsoft outlook customer service phone number
microsoft outlook customer support phone number
microsoft outlook help and support phone number
phone number for microsoft outlook technical support
outlook express phone number
outlook express support phone number
microsoft outlook express phone number
ms outlook express calendar
ms outlook express backup
ms outlook express for windows 7
ms outlook express 2010 free download


2nd priority keywords

microsoft outlook 2007 support number
microsoft outlook 2010 support phone number
microsoft microsoft outlook 2010 technical support 
microsoft outlook 2010 technical support phone number
microsoft outlook 2013 technical support number
microsoft outlook 365 technical support phone number
microsoft outlook contact number
microsoft outlook customer service
microsoft outlook customer service number
microsoft outlook customer service phone number
microsoft outlook customer support
microsoft outlook customer support number
microsoft outlook customer support phone number
microsoft outlook email sign in support number
microsoft outlook email signature support number
microsoft outlook email support number
microsoft outlook email support phone number
microsoft outlook email technical support number
microsoft outlook express tech support phone number
microsoft outlook exprss technical support phone number
microsoft outlook help desk phone number
microsoft outlook help phone number
microsoft outlook help support
microsoft outlook phone number support
microsoft outlook phone support
microsoft outlook support contact phone number
microsoft outlook support number
microsoft outlook support phone
microsoft outlook support phone number
microsoft outlook support telephone number
microsoft outlook tech support number
microsoft outlook tech support phone number
microsoft outlook technical support
microsoft outlook technical support number
Call microsoft Call outlook customer care number
Call microsoft outlook customer care number india
microsoft microsoft outlook customer care number 
microsoft microsoft outlook customer care  number
microsoft microsoft outlook customer service
microsoft microsoft outlook customer service contact number
microsoft microsoft outlook customer service number
microsoft microsoft outlook customer service number us
microsoft microsoft outlook customer service number usa
microsoft microsoft outlook customer service phone
microsoft microsoft outlook customer service phone number
microsoft microsoft outlook customer service phone number usa
microsoft microsoft outlook customer service telephone number
microsoft microsoft outlook customer service toll free number
microsoft microsoft outlook customer service usa
microsoft microsoft outlook customer support
microsoft microsoft outlook customer support contact number
microsoft microsoft outlook customer support email
microsoft microsoft outlook customer support number
microsoft microsoft outlook customer support phone
microsoft microsoft outlook customer support phone number
Microsoft microsoft outlook customer support phone number 
microsoft microsoft outlook customer support phone  number
microsoft microsoft outlook customer support telephone number
microsoft microsoft outlook email access tech seupport phone nubmmer
microsoft microsoft outlook email customer service
microsoft microsoft outlook email customer service number
microsoft microsoft outlook email help
microsoft microsoft outlook email help and support number
microsoft microsoft outlook email help phone number
Microsoft microsoft outlook email phone number
microsoft microsoft outlook email search not working
microsoft microsoft outlook email sign in support number
microsoft microsoft outlook email signature support number
microsoft microsoft outlook email support number
microsoft microsoft outlook email support phone number
microsoft microsoft outlook email support 
microsoft microsoft outlook email technical support
microsoft microsoft outlook email technical support number
microsoft microsoft outlook email technical support number 
microsoft microsoft outlook entourage for mac
Microsoft microsoft outlook express support phone number
microsoft microsoft outlook express tech support phone number
Microsoft microsoft outlook express technical support number
microsoft microsoft outlook express technical support phone number
microsoft microsoft outlook express techsupport phone number
microsoft outlook email signature support number
 microsoft outlook email technical support number 
office microsoft outlook support phone number
office microsoft outlook support phone number
microsoft outlook 2007 support number
microsoft outlook 2007 support number
microsoft outlook 2010 support phone number
microsoft outlook 2010 support phone number
microsoft outlook 2010 technical support 
microsoft outlook 2010 technical support 
microsoft outlook 2010 technical support phone number
microsoft outlook 2010 technical support phone number
microsoft outlook 2013 technical support number
microsoft outlook 2013 technical support number
microsoft outlook 365 technical support phone number
microsoft outlook 365 technical support phone number
microsoft outlook contact number
microsoft outlook contact number
microsoft outlook customer service
microsoft outlook customer service
microsoft outlook customer service number
microsoft outlook customer service number
microsoft outlook customer service phone number
microsoft outlook customer service phone number
microsoft outlook customer support
microsoft outlook customer support
microsoft outlook customer support number
microsoft outlook customer support number
microsoft outlook customer support phone number
microsoft outlook customer support phone number
microsoft outlook email sign in support number
microsoft outlook email sign in support number
microsoft outlook email signature support number
microsoft outlook email signature support number
microsoft outlook email support number
microsoft outlook email support number
microsoft outlook email support phone number
microsoft outlook email support phone number
microsoft outlook email technical support number
microsoft outlook email technical support number
microsoft outlook express tech support phone number
microsoft outlook express tech support phone number
microsoft outlook exprss technical support phone number
microsoft outlook exprss technical support phone number
microsoft outlook help desk phone number
microsoft outlook help desk phone number
microsoft outlook help phone number
microsoft outlook help phone number
microsoft outlook help support
microsoft outlook help support
microsoft outlook phone number support
microsoft outlook phone number support
microsoft outlook phone support
microsoft outlook phone support
microsoft outlook support contact phone number
microsoft outlook support contact phone number
microsoft outlook support number
microsoft outlook support number
microsoft outlook support phone
microsoft outlook support phone
microsoft outlook support phone number
microsoft outlook support phone number
microsoft outlook support telephone number
microsoft outlook support telephone number
microsoft outlook tech support number
microsoft outlook tech support number
microsoft outlook tech support phone number
microsoft outlook tech support phone number
microsoft outlook technical support
microsoft outlook technical support
microsoft outlook technical support number
microsoft outlook technical support number
microsoft outlook technical support phone number
microsoft outlook technical support phone number
support outlook
microsoft outlook 2010 support phone number
 microsoft outlook 2010 support phone number
 microsoft outlook 2010 technical support phone number
 microsoft outlook 2010 technical support phone number
 microsoft outlook customer support phone number
 microsoft outlook customer support phone number
 microsoft outlook express technical support  number
 microsoft outlook express technical support  number
 microsoft outlook express technical support phone number
 microsoft outlook express technical support phone number
 microsoft outlook help number
 microsoft outlook technical support phone number
 microsoft outlook technical support phone number
 microsoft outlook technical support telephone number
 microsoft outlook technical support telephone number
 outlook.com customer support phone number
 outlook.com customer support phone number
 outlook.com support number
 outlook.com support number
 outlook.com support phone number
 outlook.com support phone number
 phone number formicrosoft outlook support
 phone number formicrosoft outlook support
 phone number formicrosoft outlook technical support
 phone number formicrosoft outlook technical support
 phone number for microsoft outlook support
 phone number for microsoft outlook support
 microsoft outlook customer service contact number 
 microsoft outlook customer service contact number 
 microsoft outlook customer service phone number
 microsoft outlook customer service phone number
 microsoft outlook customer service toll free number 
 microsoft outlook customer service toll free number 
 microsoft outlook customer support contact number 
 microsoft outlook customer support contact number 
 microsoft outlook customer support telephone number 
 microsoft outlook customer support telephone number 
 microsoft outlook tech support contact number
 microsoft outlook tech support contact number
 microsoft outlook tech support phone number
 microsoft outlook tech support phone number
 microsoft outlook tech support telephone number
 microsoft outlook tech support telephone number
 microsoft outlook tech support toll free number
 microsoft outlook tech support toll free number
 microsoft outlook technical support contact number
 microsoft outlook technical support contact number
 microsoft outlook technical support phone number
 microsoft outlook technical support phone number
 microsoft outlook technical support telephone  number
 microsoft outlook technical support telephone  number
 outlook customer service contact number
 outlook customer service contact number
 outlook customer service contact number 
 outlook customer service contact number 
 outlook customer service phone number
 outlook customer service phone number
 outlook customer service phone number 
 outlook customer service phone number 
 outlook customer service telephone number
 outlook customer service telephone number
 outlook customer service telephone number 
 outlook customer service telephone number 
 outlook customer service toll free number
 outlook customer service toll free number
 outlook customer service toll free number 
 outlook customer service toll free number 
 outlook customer support contact number
 outlook customer support contact number
 outlook customer support contact number  
 outlook customer support contact number  
 outlook customer support phone number
 outlook customer support phone number
 outlook customer support telephone number 
 outlook customer support telephone number 
 outlook customer support toll free number 
 outlook customer support toll free number 
 outlook tech support contact number
 outlook tech support contact number
 outlook tech support phone number
 outlook tech support phone number
 outlook tech support telephone number
 outlook tech support telephone number
 outlook tech support toll free number
 outlook tech support toll free number
 outlook technical support contact number
 outlook technical support contact number
 outlook technical support phone number
 outlook technical support phone number
 outlook technical support telephone  number
 outlook technical support telephone  number
 outlook technical support toll free number
 outlook technical support toll free number
microsoft microsoft outlook 10 help and support phone number
microsoft microsoft outlook 2003 configuration for gamil
microsoft microsoft outlook 2003 configuration 
microsoft microsoft outlook 2003 help
microsoft microsoft outlook 2003 help and support number
microsoft microsoft outlook 2003 not receiving emails
microsoft microsoft outlook 2003 not responding
microsoft microsoft outlook 2003 support
Microsoft microsoft outlook 2003 support phone number
microsoft microsoft outlook 2003 support phone numer
microsoft microsoft outlook 2003 technical support
microsoft microsoft outlook 2003 updates for windows 7
microsoft microsoft outlook 2007
microsoft microsoft outlook 2007 configuration for gmail account
microsoft microsoft outlook 2007 configuration for yahoo
microsoft microsoft outlook 2007 configuration pdf
microsoft microsoft outlook 2007 download
microsoft microsoft outlook 2007 email setup
microsoft microsoft outlook 2007 help
microsoft microsoft outlook 2007 not opening
microsoft microsoft outlook 2007 not receiving emails
microsoft microsoft outlook 2007 not responding
microsoft microsoft outlook 2007 not sending emails
microsoft microsoft outlook 2007 not working
microsoft microsoft outlook 2007 problems
microsoft microsoft outlook 2007 support
microsoft microsoft outlook 2007 support
microsoft microsoft outlook 2010 customer service phone number
microsoft microsoft outlook 2010 email setup
microsoft microsoft outlook 2010 free download full version
microsoft microsoft outlook 2010 help
microsoft microsoft outlook 2010 help and support numebre
microsoft microsoft outlook 2010 help desk
microsoft microsoft outlook 2010 not receiving emails
microsoft microsoft outlook 2010 not responding
microsoft microsoft outlook 2010 not sending emails
microsoft microsoft outlook 2010 problems
microsoft microsoft outlook 2010 search not working
microsoft microsoft outlook 2010 send receive error
microsoft microsoft outlook 2010 send receive settings
microsoft microsoft outlook 2010 setup
microsoft microsoft outlook 2010 support
microsoft microsoft outlook 2010 support
Microsoft microsoft outlook 2010 support phone number
microsoft microsoft outlook 2010 sync issues
microsoft microsoft outlook 2010 tech support phone number
microsoft microsoft outlook 2010 technical support
microsoft microsoft outlook 2010 technical support phone number
microsoft microsoft outlook 2010 technical support 
microsoft microsoft outlook 2010 template shortcut
microsoft microsoft outlook 2010 test questions
microsoft microsoft outlook 2010 troubleshooting
microsoft microsoft outlook 2010 tutorial
microsoft microsoft outlook 2010 updates windows 7
Microsoft microsoft outlook 2010 won’t open
Microsoft microsoft outlook 2010 won’t open loading profile
Microsoft microsoft outlook 2010 won’t open processing
microsoft microsoft outlook 2010 won't open
microsoft microsoft outlook 2010 won't open loading profile
microsoft microsoft outlook 2010 won't open processing
microsoft microsoft outlook 2010  customer service phone number
Microsoft microsoft outlook 2013 calendar issues 
microsoft microsoft outlook 2013 free download
Microsoft microsoft outlook 2013 imap issues
microsoft microsoft outlook 2013 issues
microsoft microsoft outlook 2013 not receiving emails
microsoft microsoft outlook 2013 not responding
microsoft microsoft outlook 2013 not sending emails
microsoft microsoft outlook 2013 not working
Microsoft microsoft outlook 2013 problem
Microsoft microsoft outlook 2013 problem sending email
microsoft microsoft outlook 2013 problems
microsoft microsoft outlook 2013 support
Microsoft microsoft outlook 2013 support phone number
Microsoft microsoft outlook 2013 sync issues
microsoft microsoft outlook 2013 tech support phone number
Microsoft microsoft outlook 2013 technical support
Microsoft microsoft outlook 2013 technical support number
Microsoft microsoft outlook 2013 technical support phone number us
Microsoft microsoft outlook 2013 technical support phone number Usa
Microsoft microsoft outlook 2013 troubleshoot
microsoft microsoft outlook 2013 troubleshooting
microsoft microsoft outlook 365 billing phone number
microsoft microsoft outlook 365 customer support
microsoft microsoft outlook 365 help
microsoft microsoft outlook 365 help
microsoft microsoft outlook 365 help
microsoft microsoft outlook 365 office
microsoft microsoft outlook 365 Online Support
microsoft microsoft outlook 365 support
microsoft microsoft outlook 365 support
microsoft microsoft outlook 365 support
microsoft microsoft outlook 365 technical support
microsoft microsoft outlook 365 technical support number
microsoft microsoft outlook 365 technical support phone number
microsoft microsoft outlook tech support contact number
microsoft microsoft outlook tech support number
microsoft microsoft outlook tech support phone
microsoft microsoft outlook tech support phone number
microsoft microsoft outlook tech support phone number usa
microsoft microsoft outlook tech support phone number 
Microsoft microsoft outlook tech support phone numbers
microsoft microsoft outlook tech support telephone number
microsoft microsoft outlook tech support toll free number
microsoft microsoft outlook tech support 
microsoft microsoft outlook techical support australia
microsoft microsoft outlook techical support number australia
microsoft microsoft outlook techinal support number
microsoft microsoft outlook technical help and suppport phone number
microsoft microsoft outlook technical issues
microsoft microsoft outlook technical issues +troubleshooting
microsoft microsoft outlook technical issues and conflict
microsoft microsoft outlook technical issues and conflict support phone number
microsoft microsoft outlook technical issues and need to close
microsoft microsoft outlook technical issues and need to close tech support
number
microsoft microsoft outlook technical issues and service
microsoft microsoft outlook technical issues and service phone number
microsoft microsoft outlook technical issues and solution contact number
microsoft microsoft outlook technical issues and solution phone number
microsoft microsoft outlook technical issues and solution ppt
microsoft microsoft outlook technical issues and solutions
microsoft microsoft outlook technical issues and solutions pdf
microsoft microsoft outlook technical issues and solutions tech support phone
number
microsoft microsoft outlook technical issues company service
microsoft microsoft outlook technical issues company service phone number
microsoft microsoft outlook technical issues contact number
microsoft microsoft outlook technical issues contact person
microsoft microsoft outlook technical issues contact phone number
microsoft microsoft outlook technical issues customer support
microsoft microsoft outlook technical issues customer support phone number
microsoft microsoft outlook technical issues phone number
microsoft microsoft outlook technical issues problem solving
microsoft microsoft outlook technical issues problem solving phone number
microsoft microsoft outlook technical issues services
microsoft microsoft outlook technical issues services phonen number
microsoft microsoft outlook technical issues support
microsoft microsoft outlook technical issues support number
microsoft microsoft outlook technical issues support number usa
microsoft microsoft outlook technical issues support phone number
microsoft microsoft outlook technical issues support problem solving
microsoft microsoft outlook technical issues support usa
microsoft microsoft outlook technical issues today
microsoft microsoft outlook technical issues with email
microsoft microsoft outlook technical issues with email phone number
microsoft microsoft outlook technical issues with phone
microsoft microsoft outlook technical problems
microsoft microsoft outlook technical questions
microsoft microsoft outlook technical support
microsoft microsoft outlook technical support australia
microsoft microsoft outlook technical support canada
microsoft microsoft outlook technical support contact number
microsoft microsoft outlook technical support number
Microsoft microsoft outlook Technical Support Number 
microsoft microsoft outlook technical support number australia
Microsoft microsoft outlook Technical Support Number UK
Microsoft microsoft outlook technical support number us
microsoft microsoft outlook technical support number usa
microsoft microsoft outlook technical support number 
microsoft microsoft outlook technical support phone number
microsoft microsoft outlook technical support phone number usa
microsoft microsoft outlook technical support telephone  number
microsoft microsoft outlook technical support telephone number
microsoft microsoft outlook technical support toll free number
Invoke Microsoft +1 800-213-2171 Technical Help and Support Number Only from
Microsoft Certified Technicians 
Social Link:
https://www.linkedin.com/company/let-people-call-1800-213-2171-microsoft-outlook-customer-service-tech-support-phone-number
Social Link:
https://www.facebook.com/Call18002132171MicrosoftOutlookCustomerCareNumber/
Description:-
You are uninterrupted appropriator of Microsoft office 800 and need better
administration identified with your issues then ping to Microsoft 800 number
where our Microsoft guaranteed fancier are constantly expectation for your
backing. Our Microsoft support toll free number is 1-800-213-2171 for USA.
Resolution of your problem is our prime target and for connecting with our
experts ping to our Microsoft toll free tech support number 1-800-213-2171 and
get core quality solution. Our Microsoft office 800 number 1800-213-2171 is for
USA and it is available anywhere, anytime.
Our services are as follows:-
ü  Setup and installation of Microsoft office 800 on your PC.
ü  Fancier support.
ü  Quick and 24*7 response by our maestro.
ü  The solution of all types of issues related to Microsoft office 800.


Supported Keywords:-
microsoft outlook technical support phone number, microsoft technical support
phone number, windows technical support phone number, microsoft office
technical support phone number, technical support phone number, microsoft
windows technical support phone number, microsoft technical support phone,
microsoft technical support phone number us, skype technical support phone
number, phone number for microsoft technical support, microsoft word technical
support phone number, microsoft technical support phone number windows 8,
contact microsoft technical support by phone, phone number microsoft technical
support, technical support microsoft phone number, windows 8 technical support
phone number, microsoft technical help phone number, phone number for windows
technical support, phone call from microsoft technical support, windows phone
technical support, microsoft outlook support phone number, outlook support
phone number, outlook tech support phone number, microsoft outlook tech support
phone number, microsoft outlook customer support phone number, outlook customer
support phone number, outlook technical support number, outlook email support
phone number, microsoft outlook phone number, microsoft outlook support phone
number us, microsoft outlook support number, microsoft outlook technical
support number usa, microsoft outlook customer service phone number, microsoft
outlook technical support number, outlook help phone number, microsoft outlook
email support phone number, microsoft outlook help phone number, outlook
customer service phone number, microsoft outlook 2013 tech support phone
number, outlook support number, microsoft outlook help number, outlook customer
service number, microsoft office outlook support phone number, outlook.com
support phone number, phone number for microsoft outlook, outlook email tech
support phone number, microsoft outlook customer service number, microsoft
outlook contact number, outlook tech support number, phone number for microsoft
outlook support, phone number for outlook support, microsoft outlook number,
outlook customer support number, microsoft outlook tech support number, outlook
help number, phone number for outlook, microsoft outlook tech support telephone
number, outlook.com phone number, microsoft outlook email support number,
microsoft outlook contact phone number, microsoft outlook email customer
service number, outlook.com help phone number, outlook.com customer service
phone number, phone number for outlook email, outlook.com support number,
outlook email phone number, outlook email support number, outlook contact phone
number, outlook helpline number, outlook customer service number us, phone
number for outlook.com, outlook tech support number usa, microsoft tech support
phone number, windows tech support phone number, tech support phone number,
microsoft office tech support phone number, microsoft tech support phone number
usa, microsoft windows tech support phone number, microsoft tech support
number, phone number for microsoft tech support, windows 8 tech support phone
number, microsoft phone number tech support, windows tech support number,
microsoft tech support phone number for windows 8, skype tech support phone
number, contact microsoft tech support phone number, microsoft tech support
phone numbers, tech support microsoft phone number, microsoft windows 8 tech
support phone number, microsoft office tech support phone numbers, microsoft
tech phone number, microsoft word tech support phone number, surface tech
support phone number, free tech support phone number, microsoft office tech
support number, microsoft tech help phone number, phone number for windows tech
support, phone number microsoft tech support, microsoft windows tech support
number, microsoft 800 number tech support, microsoft tech support number us,
microsoft tech support number usa, skype tech support number, windows phone
tech support number, free tech support number, microsoft word tech support
number, windows 8 tech support number, hotmail technical support phone number,
hotmail support phone number, hotmail customer support phone number, hotmail
technical support phone number usa, hotmail phone number, hotmail tech support
phone number usa, microsoft hotmail support phone number, hotmail support
number, hotmail customer service number, hotmail customer support number,
hotmail contact number, hotmail help phone number, hotmail support phone number
usa, hotmail tech support number, phone number for hotmail, contact hotmail
support phone number, hotmail email support phone number, microsoft hotmail
support phone number usa, hotmail phone number support, phone number for
hotmail customer service, hotmail tech support number usa, hotmail service
phone number, hotmail helpline phone number, phone number for hotmail support,
hotmail.com support phone number, hotmail phone number customer service,
microsoft hotmail support number, phone number for hotmail email support,
hotmail customer service number usa, hotmail number customer service, hotmail
helpline number, windows support phone number, microsoft windows support phone
number, windows support number, microsoft windows support, microsoft windows
support number, windows microsoft support phone number, contact windows support
phone number, phone number for windows support, windows phone support phone
number, windows phone number support, microsoft windows phone support,
microsoft windows phone support number, windows phone number for support, phone
number for microsoft windows support, windows surface support phone number,
microsoft support number windows 8, microsoft support for windows 8, microsoft
windows 8 support number, office 365 support phone number, office 365 technical
support phone number, microsoft 365 support phone number, microsoft office 365
support phone number, office 365 technical support phone number us, microsoft
365 technical support phone number, microsoft 365 customer support phone
number, microsoft office 365 customer support phone number, microsoft office
365 technical support phone number, office 365 customer support phone number,
microsoft 365 phone number, office 365 phone support, office 365 support phone
number usa, office 365 support phone number us, microsoft office 365 phone
number, microsoft 365 support phone, microsoft support phone number office 365,
microsoft office 365 help phone number, office 365 help phone number, office
365 business support phone number, microsoft office 365 customer service phone
number, office 365 customer service phone number, phone number for microsoft
office 365, office 365 billing support phone number, microsoft 365 customer
service phone number, microsoft 365 help phone number, phone number for office
365, office 365 customer service phone, microsoft office 365 phone support,
microsoft 365 phone support, microsoft outlook technical support, microsoft
outlook support, microsoft outlook tech support, microsoft office outlook
support, microsoft support for outlook, microsoft support outlook, microsoft
outlook telephone support, support for microsoft outlook, support microsoft
outlook, office 365 outlook support, microsoft office support phone number,
microsoft office phone number, microsoft office support number, office support
phone number, phone number for microsoft office, phone number for microsoft
office support, microsoft office phone number support, phone number microsoft
office, microsoft office phone support number, microsoft office 1800 number,
microsoft office number support, phone number microsoft office support,
microsoft customer service phone number, microsoft customer service, microsoft
customer service number, microsoft customer service and support phone number,
microsoft office customer service phone number, microsoft office customer
service, microsoft customer service and support, microsoft office customer
service number, microsoft phone number customer service, phone number for
microsoft customer service, microsoft service phone number, microsoft phone
numbers for customer service, customer service phone number for microsoft,
microsoft customer service phone, microsoft customer service phone number
united states, customer service for microsoft, phone number to microsoft
customer service, customer service number for microsoft, contact microsoft
customer service, microsoft exchange customer service phone number, what is the
phone number to microsoft customer service, microsoft office phone number
customer service, microsoft word customer service number, phone number of
microsoft customer service, what is microsoft customer service number,
microsoft word customer service phone number, microsoft number customer
service, microsoft support services, microsoft office customer service phone,
microsoft help phone number, microsoft help number, microsoft office help phone
number, windows help phone number, microsoft office help number, microsoft help
desk phone number us, phone number for microsoft help, skype help phone number,
microsoft windows help phone number, microsoft phone number help, microsoft
help center phone number, windows help and support phone number, microsoft
account help number, windows help and support number, windows 8 help phone
number, microsoft windows help number, microsoft technical support phone number
usa, microsoft support phone number usa, microsoft office support phone number
usa, microsoft phone number usa, microsoft help phone number usa, microsoft
technical support number usa, microsoft customer service phone number usa,
microsoft office customer service phone number usa, microsoft number usa,
microsoft contact number usa, microsoft usa phone number, microsoft office
contact number usa, microsoft customer service number usa, microsoft office
customer service number usa, windows customer support phone number, microsoft
windows customer support phone number, windows customer service phone number,
windows customer service, windows 8 customer support phone number, windows
customer service number, windows customer support, windows customer support
number, microsoft windows customer service phone number, microsoft windows
customer service, windows 8 customer service phone number, windows phone
customer service, windows 8 customer support, windows phone number customer
service, microsoft windows customer support, microsoft windows customer service
number, windows phone customer service phone number, windows phone customer
service number, windows phone customer support, windows customer service number
usa, windows customer service telephone number, microsoft windows phone number
for customer service, windows 8 customer support number, customer service
windows, microsoft outlook email, microsoft email support phone number,
microsoft support email, microsoft email support, microsoft outlook email help,
microsoft outlook email support, microsoft customer service email, email
microsoft support, microsoft outlook support email, microsoft email support
number, microsoft email phone number, outlook microsoft email, microsoft
technical support email, microsoft customer support email, microsoft tech
support email, microsoft email customer service, microsoft email help, contact
microsoft support phone number, microsoft contact phone number, microsoft
contact number, contact microsoft, contact microsoft support, contact microsoft
support phone, how to contact microsoft, microsoft office contact number,
microsoft office contact, microsoft office contact phone number, contact
microsoft technical support, contact microsoft office, contact microsoft phone
number, contact microsoft support by phone, contact microsoft by phone, contact
number for microsoft, contact microsoft windows, microsoft support contact
number, how to contact microsoft support by phone, how to contact microsoft by
phone, contact phone number for microsoft, microsoft contact support, how do i
contact microsoft, contact microsoft office support, how to contact microsoft
technical support, how do i contact microsoft support by phone, how to contact
microsoft support, contact microsoft tech support, phone number to contact
microsoft, microsoft contact support number, microsoft contact phone, phone
number to contact microsoft support, microsoft contact phone numbers, microsoft
contact numbers, contact number for microsoft support, microsoft technical
support contact, microsoft windows contact phone number, contact microsoft
customer support, microsoft technical support contact numberCall Our +1
800-213-2171 Tech Suppor Experts 24/7 For Help with Microsoft Outlook Remote
Support Number
Disclaimer - an independent technical support provider company offering online
support services for all brand products such as Microsoft Products.
>From gcc-bugs-return-534015-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 22:37:26 2016
Return-Path: <gcc-bugs-return-534015-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 111112 invoked by alias); 10 Aug 2016 22:37:26 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 110997 invoked by uid 48); 10 Aug 2016 22:37:13 -0000
From: "abcdef at yopmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug boehm-gc/73325] New: Kejriwal 1 877 435 8667 Aol mail support phone number for helpline aol mail mail technical support number
Date: Wed, 10 Aug 2016 22:37:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: boehm-gc
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: critical
X-Bugzilla-Who: abcdef at yopmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73325-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01351.txt.bz2
Content-length: 8779

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73325

            Bug ID: 73325
           Summary: Kejriwal 1 877 435 8667 Aol mail support phone number
                    for helpline aol mail mail technical support number
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: critical
          Priority: P3
         Component: boehm-gc
          Assignee: unassigned at gcc dot gnu.org
          Reporter: abcdef at yopmail dot com
  Target Milestone: ---

Kejriwal 1 877 435 8667 Aol mail support phone number for helpline aol mail
mail technical support number

CANADA+1877-435-8667 aol mail Technical Support
USA-1877-435-8667contact aol mail customer service phone number

aol mail customer care phone number
aol mail customer service billing
aol mail customer service email address
aol mail customer service live chat
aol mail customer service telephone number
aol mail customer support usa phone number
aol mail help desk support phone number free in usa
aol mail phone number customer service us
aol mail phone number support
aol mail support phone number
aol mail tech support phone number free in usa
aol mail tech support phone number
aol mail technical support customer service
aol mail technical support number
aol mail telephone number
aol mail toll free customer care number
aol mail toll free number in usa
aol mail contact phone number in usa
aol mail customer service number
aol mail customer service phone number
aol mail customer service telephone number
aol mail customer support number
aol mail customer support phone number
aol mail customer support phone number
aol mail help desk phone number in usa
aol mail phone number
aol mail phone number support for technical issue in usa
aol mail support phone number
aol mail technical support help desk phone number
aol mail technical support number
aol mail technical support phone number
aol mail customer service number
aol mail customer service telephone number
aol mail customer services email
aol mail customer support email address
aol mail customer support number
aol mail customer support phone number
aol mail customer service phone number
aol mail internet security contact phone number
aol mail internet security customer service phone number
aol mail internet security phone number
aol mail internet security help phone number
aol mail internet security phone number in usa
aol mail internet security support phone number
aol mail internet security technical support
aol mail phone number customer service
aol mail phone numbers customer support
aol mail phone support number
aol mail security contact phone number
aol mail security phone number customer service
aol mail security support phone number
aol mail support contact number
aol mail support email address
aol mail support phone number
aol mail support telephone number
aol mail support telephone number usa
aol mail support telephone number
aol mail tech support number
aol mail tech support phone number
aol mail tech support phone number free
aol mail technical support phone number
aol mail technical support cutomer phone number
aol mail technical support phone number
aol mail technical support number free in usa
aol mail technical support number toll free number
aol mail technical support phone number
aol mail technologies phone number
aol mail telephone support number
aol mail customer support phone number
aol mail customer service phone number
aol mail customer support phone number
aol mail phone number customer service
aol mail technical support telephone number
contact aol mail customer service phone number
customer service number for aol mail
phone number for aol mail
phone number for aol mail customer service
phone number for aol mail support
phone number for aol mail customer service
phone number for aol mail customer service
phone number for aol mail customer support
phone number for aol mail tech support
phone number aol mail customer service
aol mail customer service number
aol mail customer service phone
aol mail customer service phone number
aol mail customer service phone number us
aol mail customer service telephone number
aol mail customer support
aol mail customer support number
aol mail phone number customer service us
aol mail phone number support
aol mail phone support
aol mail phone support number
aol mail support phone number
aol mail tech support phone number
aol mail technical support
aol mail technical support number
aol mail technical support phone number
aol mail customer service phone number
aol mail customer support phone number
aol mail helpline phone number
aol mail internet security customer service
aol mail internet security customer service phone number
aol mail internet security help phone number
aol mail internet security phone number customer service
aol mail phone number customer service
aol mail phone number customer support
aol mail security customer service phone number
aol mail security phone number customer service
aol mail support phone number
aol mail support telephone number
aol mail tech support number
aol mail tech support phone number
aol mail technical support
aol mail technical support number
aol mail technical support phone number
aol mail customer support phone number
aol mail phone number customer service
aol mail tech support number
aol mail customer service phone number
aol mail customer service phone numbers
aol mail internet security technical support
aol mail tech support phone number us
aol mail technical support telephone number
contact aol mail
contact aol mail by phone
contact aol mail customer service
contact aol mail customer service phone number
contactaol mail tech support usa
customer service aol mail phone number
download aol mail titanium
dri aol mail customer service number
dri aol mail customer service phone number
dri aol mail phone number
how to contact aol mail by email
how to delete aol mail from mac
micro trend customer service
aol mail customer service number
phone number for aol mail customer service
phone number foraol mail customer service
phone number foraol mail customer support
phone number foraol mail tech support
phone number foraol mail technical support
phone number for aol mail technical support
phone number for aol mail security
phone number for aol mail support
phone number for aol mail technical support
phone number for aol mail customer service
phone number for aol mail customer service
remove aol mail from mac
technical support for Printer aol mail
telephone number foraol mail technical support
telephone aol mail
aol mail contact number
aol mail customer care
aol mail customer care number
aol mail customer care number usa
aol mail customer service
aol mail customer service number :idea: :evil: :D :) :lol: :( :o :shock:
aol mail customer service phone number
aol mail customer service phone number usa
aol mail customer service telephone number
aol mail customer support
aol mail customer support in usa
aol mail customer support number
aol mail customer support phone number
aol mail for phone
aol mail free Printer support
aol mail help phone number
aol mail helpline number
aol mail online support
aol mail phone
aol mail phone number
aol mail phone number in usa
aol mail phone number usa
aol mail phone support
aol mail plus tech support
aol mail protection
aol mail support
aol mail support number
aol mail support phone number
aol mail support services
aol mail support telephone number
aol mail tech support
aol mail tech support phone number free in usa
aol mail tech support number
aol mail tech support phone number
aol mail technical support
aol mail technical support number
aol mail technical support phone number
aol mail toll free customer care number
aol mail toll free number
aol mail contact phone number in usa
aol mail help desk phone number in usa
aol mail phone number support for technical issue in usa
aol mail support phone number
aol mail technical support help desk phone number
aol mail technical support phone number
aol mail contact number
aol mail contact number usa
aol mail contact phone number
aol mail contact support
aol mail contact number usa
aol mail contact phone number
aol mail contact phone number usa
aol mail customer & technical support
aol mail customer care
aol mail customer care center
aol mail customer care email
aol mail customer care number
aol mail customer care number
aol mail customer care number usa
aol mail customer care number usa toll free
aol mail customer care phone number usa
aol mail customer care tchnical support
aol mail customer care toll free
aol mail customer care toll free number
aol mail customer care usa
aol mail customer help
aol mail customer number
aol mail customer portal
aol mail customer service
aol mail customer service billing
>From gcc-bugs-return-534016-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 22:41:00 2016
Return-Path: <gcc-bugs-return-534016-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 125679 invoked by alias); 10 Aug 2016 22:40:59 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 125564 invoked by uid 48); 10 Aug 2016 22:40:45 -0000
From: "gweberbv@t-online.de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/73142] Reading a namelist fails - my code worked until 4.8.2
Date: Wed, 10 Aug 2016 22:40:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: gweberbv@t-online.de
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-73142-4-RTQn0nBOpD@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73142-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73142-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01352.txt.bz2
Content-length: 219

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73142

--- Comment #4 from Günter Weber <gweberbv@t-online.de> ---
This means the issue is already solved and will be fixed in a 'standard' GCC
release in the future?
>From gcc-bugs-return-534017-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 22:41:54 2016
Return-Path: <gcc-bugs-return-534017-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 126666 invoked by alias); 10 Aug 2016 22:41:53 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 126584 invoked by uid 48); 10 Aug 2016 22:41:41 -0000
From: "anden1973 at einrot dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73337] New: Self support @.1800.681.7208` @ SAMSUNGsupport Phone Number SAMSUNGtechnical support number SAMSUNGcustomer support phone number
Date: Wed, 10 Aug 2016 22:41:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: trans-mem
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: anden1973 at einrot dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73337-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01353.txt.bz2
Content-length: 9621

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73337

            Bug ID: 73337
           Summary: Self support @.1800.681.7208` @ SAMSUNGsupport Phone
                    Number SAMSUNGtechnical support number SAMSUNGcustomer
                    support phone number
           Product: gcc
           Version: trans-mem
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: anden1973 at einrot dot com
  Target Milestone: ---

Support & Service Call -)) 1800 681 7208 )))SAMSUNGTech support phone number
SAMSUNGsupport Phone number  %%2$$ SAMSUNGcustomer support phone number
+1800-681-7208 SAMSUNGcustomer service number,1800^681^7208 SAMSUNGhelpdesk
phone number, SAMSUNGcustomer care number, 1800*681*7208 SAMSUNGsupport phone
number,@@@@ SAMSUNGpassword recovery phone number, 1800::681::7208
SAMSUNGcustomer care phone number, SAMSUNGcustomer service number
SAMSUNGofficial phone number 1800**681**7208 @$@$
+1800 681 7208 SAMSUNGPRINTER SUPPORT NUMBER 1800 681 7208 SAMSUNGcustomer care
number SAMSUNGsupport phone number 1800 681 7208 SAMSUNGcustomer care number
1800 681 7208 SAMSUNGhelpdesk phone number 1800 681 7208 SAMSUNGPRINTER SUPPORT
HELPDESK SAMSUNGPRINTER helpdesk number SAMSUNGPassword recovery phone number
SAMSUNGtech support number 1800 681 7208 SAMSUNGTechnical support number
1800-681-7208 SAMSUNGPRINTER SUPPORT NUMBER 1800-681-7208 SAMSUNGcustomer care
number SAMSUNGsupport phone number 1800-681-7208 SAMSUNGcustomer care number
1800-681-7208 SAMSUNGhelpdesk phone number 1800-681-7208 SAMSUNGPRINTER SUPPORT
HELPDESK SAMSUNGPRINTER helpdesk number SAMSUNGPassword recovery phone number
SAMSUNGtech support number 1800-681-7208 SAMSUNGTechnical support number
@@/CANADA +1800 681 7208 SAMSUNGPRINTER SUPPORT NUMBER 1800 681 7208
SAMSUNGcustomer care number SAMSUNGsupport phone number 1800 681 7208
SAMSUNGcustomer care number 1800 681 7208 SAMSUNGhelpdesk phone number 1800 681
7208 SAMSUNGPRINTER SUPPORT HELPDESK SAMSUNGPRINTER helpdesk number
SAMSUNGPassword recovery phone number SAMSUNGtech support number 1800 681 7208
SAMSUNGTechnical support number 1800-681-7208 SAMSUNGPRINTER SUPPORT NUMBER
1800-681-7208 SAMSUNGcustomer care number SAMSUNGsupport phone number
1800-681-7208 SAMSUNGcustomer care number 1800-681-7208 SAMSUNGhelpdesk phone
number 1800-681-7208 SAMSUNGPRINTER SUPPORT HELPDESK SAMSUNGPRINTER helpdesk
number SAMSUNGPassword recovery phone number SAMSUNGtech support number
1800-681-7208 SAMSUNGTechnical support number @@/CANADA +1800 681 7208
SAMSUNGPRINTER SUPPORT NUMBER 1800 681 7208 SAMSUNGcustomer care number
SAMSUNGsupport phone number 1800 681 7208 SAMSUNGcustomer care number 1800 681
7208 SAMSUNGhelpdesk phone number 1800 681 7208 SAMSUNGPRINTER SUPPORT HELPDESK
SAMSUNGPRINTER helpdesk number SAMSUNGPassword recovery phone number
SAMSUNGtech support number 1800 681 7208 SAMSUNGTechnical support number
1800-681-7208 SAMSUNGPRINTER SUPPORT NUMBER 1800-681-7208 SAMSUNGcustomer care
number SAMSUNGsupport phone number 1800-681-7208 SAMSUNGcustomer care number
1800-681-7208 SAMSUNGhelpdesk phone number 1800-681-7208 SAMSUNGPRINTER SUPPORT
HELPDESK SAMSUNGPRINTER helpdesk number SAMSUNGPassword recovery phone number
SAMSUNGtech support number 1800-681-7208 SAMSUNGTechnical support number
@@/CANADA +1800 681 7208 SAMSUNGPRINTER SUPPORT NUMBER 1800 681 7208
SAMSUNGcustomer care number SAMSUNGsupport phone number 1800 681 7208
SAMSUNGcustomer care number 1800 681 7208 SAMSUNGhelpdesk phone number 1800 681
7208 SAMSUNGPRINTER SUPPORT HELPDESK SAMSUNGPRINTER helpdesk number
SAMSUNGPassword recovery phone number SAMSUNGtech support number 1800 681 7208
SAMSUNGTechnical support number 1800-681-7208 SAMSUNGPRINTER SUPPORT NUMBER
1800-681-7208 SAMSUNGcustomer care number SAMSUNGsupport phone number
1800-681-7208 SAMSUNGcustomer care number 1800-681-7208 SAMSUNGhelpdesk phone
number 1800-681-7208 SAMSUNGPRINTER SUPPORT HELPDESK SAMSUNGPRINTER helpdesk
number SAMSUNGPassword recovery phone number SAMSUNGtech support number
1800-681-7208 SAMSUNGTechnical support number @@/CANADA +1800 681 7208
SAMSUNGPRINTER SUPPORT NUMBER 1800 681 7208 SAMSUNGcustomer care number
SAMSUNGsupport phone number 1800 681 7208 SAMSUNGcustomer care number 1800 681
7208 SAMSUNGhelpdesk phone number 1800 681 7208 SAMSUNGPRINTER SUPPORT HELPDESK
SAMSUNGPRINTER helpdesk number SAMSUNGPassword recovery phone number
SAMSUNGtech support number 1800 681 7208 SAMSUNGTechnical support number
1800-681-7208 SAMSUNGPRINTER SUPPORT NUMBER 1800-681-7208 SAMSUNGcustomer care
number SAMSUNGsupport phone number 1800-681-7208 SAMSUNGcustomer care number
1800-681-7208 SAMSUNGhelpdesk phone number 1800-681-7208 SAMSUNGPRINTER SUPPORT
HELPDESK SAMSUNGPRINTER helpdesk number SAMSUNGPassword recovery phone number
SAMSUNGtech support number 1800-681-7208 SAMSUNGTechnical support number
@@/CANADA +1800 681 7208 SAMSUNGPRINTER SUPPORT NUMBER 1800 681 7208
SAMSUNGcustomer care number SAMSUNGsupport phone number 1800 681 7208
SAMSUNGcustomer care number 1800 681 7208 SAMSUNGhelpdesk phone number 1800 681
7208 SAMSUNGPRINTER SUPPORT HELPDESK SAMSUNGPRINTER helpdesk number
SAMSUNGPassword recovery phone number SAMSUNGtech support number 1800 681 7208
SAMSUNGTechnical support number 1800-681-7208 SAMSUNGPRINTER SUPPORT NUMBER
1800-681-7208 SAMSUNGcustomer care number SAMSUNGsupport phone number
1800-681-7208 SAMSUNGcustomer care number 1800-681-7208 SAMSUNGhelpdesk phone
number 1800-681-7208 SAMSUNGPRINTER SUPPORT HELPDESK SAMSUNGPRINTER helpdesk
number SAMSUNGPassword recovery phone number SAMSUNGtech support number
1800-681-7208 SAMSUNGTechnical support number @@/CANADA SAMSUNGcustomer service
number SAMSUNGcall center SAMSUNGcustomer service PRINTER address
SAMSUNGcustomer care no SAMSUNGPRINTER technical support phone number
SAMSUNGPRINTER tech support phone number SAMSUNGPRINTER customer service phone
number SAMSUNG360 technical support phone number symantec technical support
phone number SAMSUNGtechnical support phone number SAMSUNGcustomer service
telephone number SAMSUNGPRINTER phone number SAMSUNGPRINTER customer service
phone number SAMSUNGPRINTER customer service Helpdesk SAMSUNGPRINTER phone
number SAMSUNGphone number cancel subscription SAMSUNGtechnical support phone
number SAMSUNG1800 phone number American airlines toll free customer care
number Jetairways toll free customer care number Microsot toll free customer
care number Apple toll free customer care number Google toll free customer care
number Bank of america toll free customer care number flipkart toll free
customer care number SAMSUNGtoll free customer care number SAMSUNGtechnical
support phone number SAMSUNGtechnical support number SAMSUNGtechnical support
number symantec technical support number SAMSUNGPRINTER technical support
number SAMSUNGlocations SAMSUNGonline support SAMSUNGHelpdesk phone number
SAMSUNGcustomer care SAMSUNGtech support phone number SAMSUNGtech support phone
number SAMSUNGPRINTER tech support phone number SAMSUNGlocations
SAMSUNGHelpdesk phone number service SAMSUNGcom SAMSUNGlogin SAMSUNGtechnical
support phone number SAMSUNGcustomer service SAMSUNGHelpdesk phone number
SAMSUNGsupport telephone number SAMSUNGsupport phone number SAMSUNGPRINTER
support phone number SAMSUNGsupport phone number SAMSUNGlocations
SAMSUNGcustomer service SAMSUNGcustomer care SAMSUNGHelpdesk phone number
SAMSUNGcustomer support phone number SAMSUNGcustomer support phone number
SAMSUNGPRINTER customer support phone number SAMSUNGPRINTER customer service
phone number SAMSUNGPRINTER technical support phone number SAMSUNGPRINTER tech
support phone number SAMSUNGPRINTER phone number SAMSUNGsecurity center phone
number SAMSUNGsupport telephone number SAMSUNG360 technical support phone
number symantec technical support phone number SAMSUNGtech support phone number
apple technical support phone number @@ microsoft technical support phone
number @@ SAMSUNGtechnical support phone number @@ kaspersky technical support
phone number @@ lenovo technical support phone number @@ samsung technical
support phone number @@ SAMSUNGtechnical support phone number call
SAMSUNGsupport chat with SAMSUNGsupport SAMSUNGcustomer support SAMSUNGPRINTER
customer service number SAMSUNGaddress SAMSUNGcall center SAMSUNGhq
SAMSUNGoffice locations SAMSUNGsupport site SAMSUNGtelephone number for
customer support SAMSUNGcustomer service contact number SAMSUNGcustomer care
SAMSUNGtoll free number SAMSUNGsecurity contact number contact Vipre
SAMSUNGheadquarters SAMSUNGcustomer service chat SAMSUNGcustomer service
telephone number SAMSUNGHelpdesk phone number SAMSUNGcustomer support
SAMSUNGcustomer service SAMSUNGlogin SAMSUNGlocations SAMSUNGcustomer service
number SAMSUNGlocations SAMSUNGcustomer service PRINTER address SAMSUNGsupport
site SAMSUNGtechnical support phone number SAMSUNGtechnical support live chat
SAMSUNGtechnical support PRINTER address SAMSUNGtechnical support number
SAMSUNGtechnical support number symantec technical support number
SAMSUNGPRINTER technical support number SAMSUNGcustomer support phone number
SAMSUNGcustomer support number SAMSUNGcustomer support number SAMSUNGPRINTER
customer support number SAMSUNGlocations SAMSUNGHelpdesk phone number
SAMSUNGcorporate phone number SAMSUNGcustomer service Helpdesk SAMSUNGtechnical
support phone number SAMSUNGtech support phone number SAMSUNGtech support
number SAMSUNGtech support number
>From gcc-bugs-return-534018-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 22:43:46 2016
Return-Path: <gcc-bugs-return-534018-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 128467 invoked by alias); 10 Aug 2016 22:43:46 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 128236 invoked by uid 48); 10 Aug 2016 22:43:33 -0000
From: "myrah8 at ov3u841 dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73341] New: CONATACT TRENDMICRO ANTIVIRUS 1 800 681 7208 TRENDMICRO TECH SUPPORT PHONE NUMBER
Date: Wed, 10 Aug 2016 22:43:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: lno
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: myrah8 at ov3u841 dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73341-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01354.txt.bz2
Content-length: 14691

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73341

            Bug ID: 73341
           Summary: CONATACT TRENDMICRO ANTIVIRUS 1 800 681 7208
                    TRENDMICRO TECH SUPPORT PHONE NUMBER
           Product: gcc
           Version: lno
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: myrah8 at ov3u841 dot com
  Target Milestone: ---

CONATACT TRENDMICRO ANTIVIRUS 1 800 681 7208 TRENDMICRO TECH SUPPORT PHONE
NUMBER


cow 1 800 681 7208 Trendmicro support phone number for helpline trendmicro
antivirus technical support number 
TRENDMICRO helpline phone number@~1800-681-7208 TRENDMICRO tech Support Number
trendmicro customer service phone number
TRENDMICRO Security contact Number +1800-6817208**trendmicro support phone
number
usa+1-800-681-7208) Technical support number
CANADA+1800-681-7208 trendmicro Technical Support
USA-1800-681-7208 contact trendmicro customer service phone number
AUS-1-800-681-7208 phone number for TRENDMICRO customer service
UK-800-810-7208 phone number for trendmicro technical support
1-800-681-7208 phone number for trendmicro customer service
phone number for trendmicro technical support
phone number for TRENDMICRO security
trendmicro customer care phone number
trendmicro customer service billing
trendmicro customer service eantivirus address
trendmicro customer service live chat
trendmicro customer service telephone number
trendmicro customer support usa phone number
trendmicro help desk support phone number free in usa
trendmicro phone number customer service us
trendmicro phone number support
trendmicro support phone number
trendmicro tech support phone number free in usa
trendmicro tech support phone number
trendmicro technical support customer service
trendmicro technical support number
trendmicro telephone number
trendmicro toll free customer care number
trendmicro toll free number in usa
trendmicro contact phone number in usa
trendmicro customer service number
trendmicro customer service phone number
trendmicro customer service telephone number
trendmicro customer support number
trendmicro customer support phone number
trendmicro customer support phone number
trendmicro help desk phone number in usa
trendmicro phone number
trendmicro phone number support for technical issue in usa
trendmicro support phone number
trendmicro technical support help desk phone number
trendmicro technical support number
trendmicro technical support phone number
TRENDMICRO customer service number
TRENDMICRO customer service telephone number
TRENDMICRO customer services eantivirus
TRENDMICRO customer support eantivirus address
TRENDMICRO customer support number
TRENDMICRO customer support phone number
TRENDMICRO customer service phone number
TRENDMICRO internet security contact phone number
TRENDMICRO internet security customer service phone number
TRENDMICRO internet security phone number
TRENDMICRO internet security help phone number
TRENDMICRO internet security phone number in usa
TRENDMICRO internet security support phone number
TRENDMICRO internet security technical support
TRENDMICRO phone number customer service
TRENDMICRO phone numbers customer support
TRENDMICRO phone support number
TRENDMICRO security contact phone number
TRENDMICRO security phone number customer service
TRENDMICRO security support phone number
TRENDMICRO support contact number
TRENDMICRO support eantivirus address
TRENDMICRO support phone number
TRENDMICRO support telephone number
TRENDMICRO support telephone number usa
TRENDMICRO support telephone number
TRENDMICRO tech support number
TRENDMICRO tech support phone number
TRENDMICRO tech support phone number free
TRENDMICRO technical support phone number
TRENDMICRO technical support cutomer phone number
TRENDMICRO technical support phone number
TRENDMICRO technical support number free in usa
TRENDMICRO technical support number toll free number
TRENDMICRO technical support phone number
TRENDMICRO technologies phone number
TRENDMICRO telephone support number
trendmicro customer support phone number
trendmicro customer service phone number
TRENDMICRO customer support phone number
TRENDMICRO phone number customer service
TRENDMICRO technical support telephone number
contact trendmicro customer service phone number
customer service number for trendmicro
phone number for trendmicro
phone number for trendmicro customer service
phone number for trendmicro support
phone number for TRENDMICRO customer service
phone number for TRENDMICRO customer service
phone number for TRENDMICRO customer support
phone number for TRENDMICRO tech support
phone number trendmicro customer service
trendmicro customer service number
trendmicro customer service phone
trendmicro customer service phone number
trendmicro customer service phone number us
trendmicro customer service telephone number
trendmicro customer support
trendmicro customer support number
trendmicro phone number customer service us
trendmicro phone number support
trendmicro phone support
trendmicro phone support number
trendmicro support phone number
trendmicro tech support phone number
trendmicro technical support
trendmicro technical support number
trendmicro technical support phone number
TRENDMICRO customer service phone number
TRENDMICRO customer support phone number
TRENDMICRO helpline phone number
TRENDMICRO internet security customer service
TRENDMICRO internet security customer service phone number
TRENDMICRO internet security help phone number
TRENDMICRO internet security phone number customer service
TRENDMICRO phone number customer service
TRENDMICRO phone number customer support
TRENDMICRO security customer service phone number
TRENDMICRO security phone number customer service
TRENDMICRO support phone number
TRENDMICRO support telephone number
TRENDMICRO tech support number
TRENDMICRO tech support phone number
TRENDMICRO technical support
TRENDMICRO technical support number
TRENDMICRO technical support phone number
trendmicro customer support phone number
trendmicro phone number customer service
trendmicro tech support number
TRENDMICRO customer service phone number
TRENDMICRO customer service phone numbers
TRENDMICRO internet security technical support
TRENDMICRO tech support phone number us
TRENDMICRO technical support telephone number
contact trendmicro
contact TRENDMICRO by phone
contact TRENDMICRO customer service
contact trendmicro customer service phone number
contacttrendmicro tech support usa
customer service TRENDMICRO phone number
download TRENDMICRO titanium
dri TRENDMICRO customer service number
dri TRENDMICRO customer service phone number
dri TRENDMICRO phone number
how to contact TRENDMICRO by eantivirus
how to delete TRENDMICRO from mac
micro trend customer service
trendmicro customer service number
phone number for TRENDMICRO customer service
phone number forTRENDMICRO customer service
phone number forTRENDMICRO customer support
phone number forTRENDMICRO tech support
phone number forTRENDMICRO technical support
phone number for trendmicro technical support
phone number for TRENDMICRO security
phone number for TRENDMICRO support
phone number for TRENDMICRO technical support
phone number for trendmicro customer service
phone number for TRENDMICRO customer service
remove TRENDMICRO from mac
technical support for Printer TRENDMICRO
telephone number forTRENDMICRO technical support
telephone trendmicro
trendmicro contact number
trendmicro customer care
trendmicro customer care number
trendmicro customer care number usa
trendmicro customer service
trendmicro customer service number :idea: :evil: :D :) :lol: :( :o :shock:
trendmicro customer service phone number
trendmicro customer service phone number usa
trendmicro customer service telephone number
trendmicro customer support
trendmicro customer support in usa
trendmicro customer support number
trendmicro customer support phone number
trendmicro for phone
trendmicro free Printer support
trendmicro help phone number
trendmicro helpline number
trendmicro online support
trendmicro phone
trendmicro phone number
trendmicro phone number in usa
trendmicro phone number usa
trendmicro phone support
trendmicro plus tech support
trendmicro protection
trendmicro support
trendmicro support number
trendmicro support phone number
trendmicro support services
trendmicro support telephone number
trendmicro tech support
trendmicro tech support phone number free in usa
trendmicro tech support number
trendmicro tech support phone number
trendmicro technical support
trendmicro technical support number
trendmicro technical support phone number
trendmicro toll free customer care number
trendmicro toll free number
trendmicro contact phone number in usa
trendmicro help desk phone number in usa
trendmicro phone number support for technical issue in usa
trendmicro support phone number
trendmicro technical support help desk phone number
trendmicro technical support phone number
TRENDMICRO contact number
TRENDMICRO contact number usa
TRENDMICRO contact phone number
TRENDMICRO contact support
TRENDMICRO contact number usa
TRENDMICRO contact phone number
TRENDMICRO contact phone number usa
TRENDMICRO customer & technical support
TRENDMICRO customer care
TRENDMICRO customer care center
TRENDMICRO customer care eantivirus
TRENDMICRO customer care number
TRENDMICRO customer care number
TRENDMICRO customer care number usa
TRENDMICRO customer care number usa toll free
TRENDMICRO customer care phone number usa
TRENDMICRO customer care tchnical support
TRENDMICRO customer care toll free
TRENDMICRO customer care toll free number
TRENDMICRO customer care usa
TRENDMICRO customer help
TRENDMICRO customer number
TRENDMICRO customer portal
TRENDMICRO customer service
TRENDMICRO customer service billing
TRENDMICRO customer service eantivirus address
TRENDMICRO customer service number
TRENDMICRO customer service phone
TRENDMICRO customer service phone number
TRENDMICRO customer service phone number us
TRENDMICRO customer service phone number usa
TRENDMICRO customer service reviews
TRENDMICRO customer service telephone number
TRENDMICRO customer service usa
TRENDMICRO customer support
TRENDMICRO customer support number
TRENDMICRO customer support phone
TRENDMICRO customer support phone number
TRENDMICRO customer service number
TRENDMICRO customer service number usa
TRENDMICRO customer service phone number
TRENDMICRO customer support number
TRENDMICRO customer support phone number
TRENDMICRO free phone support
TRENDMICRO gold support phone number
TRENDMICRO help desk phone number
TRENDMICRO help phone number
TRENDMICRO helpline
TRENDMICRO helpline phone number
TRENDMICRO hotline customer service phone number
TRENDMICRO internet security customer service
TRENDMICRO internet security phone number
TRENDMICRO internet security phone number in usa
TRENDMICRO lab usa customer service
TRENDMICRO labs usa customer serviceTRENDMICRO
TRENDMICRO phone number
TRENDMICRO phone number customer service
TRENDMICRO phone number support
TRENDMICRO phone number tech support
TRENDMICRO phone number technical support
TRENDMICRO phone numbers customer support
TRENDMICRO phone support
TRENDMICRO phone support number
TRENDMICRO phone number customer service
TRENDMICRO phone number support
TRENDMICRO phone number tech support
TRENDMICRO phone number usa
TRENDMICRO security contact phone number
TRENDMICRO security phone number
TRENDMICRO security support phone number
TRENDMICRO software customer service
TRENDMICRO software customer service number
TRENDMICRO support center
TRENDMICRO support contact number
TRENDMICRO support eantivirus address
TRENDMICRO support phone number
TRENDMICRO support telephone number
TRENDMICRO support number usa
TRENDMICRO support phone number
TRENDMICRO support phone number usa
TRENDMICRO tech support
TRENDMICRO tech support center
TRENDMICRO tech support contact
TRENDMICRO tech support number
TRENDMICRO tech support number usa
TRENDMICRO tech support phone
TRENDMICRO tech support phone number
TRENDMICRO tech support phone number free
TRENDMICRO tech support number
TRENDMICRO tech support number usa
TRENDMICRO tech support phone number
TRENDMICRO technical support
TRENDMICRO technical support number
TRENDMICRO technical support phone number
TRENDMICRO technical support phone number usa
TRENDMICRO technical support reviews
TRENDMICRO technical support usa
TRENDMICRO technical support phone number
TRENDMICRO technical support number
TRENDMICRO technical support number toll free number
TRENDMICRO technical support number usa
TRENDMICRO technical support phone number
TRENDMICRO technical support phone number usa
TRENDMICRO technologies phone number
TRENDMICRO telephone number
TRENDMICRO telephone support number
TRENDMICRO toll free number
TRENDMICRO toll free number usa
TRENDMICRO usa customer care for tech support
TRENDMICRO usa customer service
TRENDMICRO usa phone number
trendmicro customer service phone number
trendmicro customer service phone number
trendmicro customer support phone number
trendmicro customer support phone number
trendmicro technical support number
TRENDMICRO customer service phone number usa
TRENDMICRO internet security support phone number
TRENDMICRO.com customer service
trendmicro antispyware 2011
trendmicro customer support
trendmicro serial key
trendmicro serial number
trendmicro support
trendmicro technical support
TRENDMICRO business support
TRENDMICRO contact support
TRENDMICRO customer care number
TRENDMICRO customer service 800
TRENDMICRO customer service number
TRENDMICRO customer service phone number
TRENDMICRO customer service telephone number
TRENDMICRO customer support
TRENDMICRO grentry non payment
TRENDMICRO helpline support number
TRENDMICRO internet security customer service
TRENDMICRO internet security technical support
TRENDMICRO oem customer service
TRENDMICRO pc cillin technical support
TRENDMICRO phone support
TRENDMICRO removal tool download
TRENDMICRO subscription renewal
TRENDMICRO support contact
TRENDMICRO support hotline
TRENDMICRO support phone number
TRENDMICRO tech support phone number
TRENDMICRO technical support
TRENDMICRO technical support chat
TRENDMICRO technical support phone number
TRENDMICRO technical support phone number usa
TRENDMICRO telephone number
TRENDMICRO titanium Printer
TRENDMICRO titanium internet security
TRENDMICRO titanium maximum
TRENDMICRO titanium maximum security
TRENDMICRO titanium problems
TRENDMICRO titanium removal tool
TRENDMICRO titanium reviews
TRENDMICRO titanium support
TRENDMICRO virus removal service
uninstall TRENDMICRO smart surfing for mac
usa customer care number for trendmicro
>From gcc-bugs-return-534021-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 22:46:52 2016
Return-Path: <gcc-bugs-return-534021-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 13957 invoked by alias); 10 Aug 2016 22:46:52 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 13206 invoked by uid 48); 10 Aug 2016 22:46:39 -0000
From: "anden1973 at einrot dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73351] New: Self support @.1800.681.7208` @ ACERsupport Phone Number ACERtechnical support number ACERcustomer support phone number
Date: Wed, 10 Aug 2016 22:46:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: c++-concepts
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: anden1973 at einrot dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73351-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01357.txt.bz2
Content-length: 8920

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73351

            Bug ID: 73351
           Summary: Self support @.1800.681.7208` @ ACERsupport Phone
                    Number ACERtechnical support number ACERcustomer
                    support phone number
           Product: gcc
           Version: c++-concepts
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: anden1973 at einrot dot com
  Target Milestone: ---

Support & Service Call -)) 1800 681 7208 )))ACERTech support phone number
ACERsupport Phone number  %%2$$ ACERcustomer support phone number
+1800-681-7208 ACERcustomer service number,1800^681^7208 ACERhelpdesk phone
number, ACERcustomer care number, 1800*681*7208 ACERsupport phone number,@@@@
ACERpassword recovery phone number, 1800::681::7208 ACERcustomer care phone
number, ACERcustomer service number ACERofficial phone number 1800**681**7208
@$@$
+1800 681 7208 ACERPRINTER SUPPORT NUMBER 1800 681 7208 ACERcustomer care
number ACERsupport phone number 1800 681 7208 ACERcustomer care number 1800 681
7208 ACERhelpdesk phone number 1800 681 7208 ACERPRINTER SUPPORT HELPDESK
ACERPRINTER helpdesk number ACERPassword recovery phone number ACERtech support
number 1800 681 7208 ACERTechnical support number 1800-681-7208 ACERPRINTER
SUPPORT NUMBER 1800-681-7208 ACERcustomer care number ACERsupport phone number
1800-681-7208 ACERcustomer care number 1800-681-7208 ACERhelpdesk phone number
1800-681-7208 ACERPRINTER SUPPORT HELPDESK ACERPRINTER helpdesk number
ACERPassword recovery phone number ACERtech support number 1800-681-7208
ACERTechnical support number @@/CANADA +1800 681 7208 ACERPRINTER SUPPORT
NUMBER 1800 681 7208 ACERcustomer care number ACERsupport phone number 1800 681
7208 ACERcustomer care number 1800 681 7208 ACERhelpdesk phone number 1800 681
7208 ACERPRINTER SUPPORT HELPDESK ACERPRINTER helpdesk number ACERPassword
recovery phone number ACERtech support number 1800 681 7208 ACERTechnical
support number 1800-681-7208 ACERPRINTER SUPPORT NUMBER 1800-681-7208
ACERcustomer care number ACERsupport phone number 1800-681-7208 ACERcustomer
care number 1800-681-7208 ACERhelpdesk phone number 1800-681-7208 ACERPRINTER
SUPPORT HELPDESK ACERPRINTER helpdesk number ACERPassword recovery phone number
ACERtech support number 1800-681-7208 ACERTechnical support number @@/CANADA
+1800 681 7208 ACERPRINTER SUPPORT NUMBER 1800 681 7208 ACERcustomer care
number ACERsupport phone number 1800 681 7208 ACERcustomer care number 1800 681
7208 ACERhelpdesk phone number 1800 681 7208 ACERPRINTER SUPPORT HELPDESK
ACERPRINTER helpdesk number ACERPassword recovery phone number ACERtech support
number 1800 681 7208 ACERTechnical support number 1800-681-7208 ACERPRINTER
SUPPORT NUMBER 1800-681-7208 ACERcustomer care number ACERsupport phone number
1800-681-7208 ACERcustomer care number 1800-681-7208 ACERhelpdesk phone number
1800-681-7208 ACERPRINTER SUPPORT HELPDESK ACERPRINTER helpdesk number
ACERPassword recovery phone number ACERtech support number 1800-681-7208
ACERTechnical support number @@/CANADA +1800 681 7208 ACERPRINTER SUPPORT
NUMBER 1800 681 7208 ACERcustomer care number ACERsupport phone number 1800 681
7208 ACERcustomer care number 1800 681 7208 ACERhelpdesk phone number 1800 681
7208 ACERPRINTER SUPPORT HELPDESK ACERPRINTER helpdesk number ACERPassword
recovery phone number ACERtech support number 1800 681 7208 ACERTechnical
support number 1800-681-7208 ACERPRINTER SUPPORT NUMBER 1800-681-7208
ACERcustomer care number ACERsupport phone number 1800-681-7208 ACERcustomer
care number 1800-681-7208 ACERhelpdesk phone number 1800-681-7208 ACERPRINTER
SUPPORT HELPDESK ACERPRINTER helpdesk number ACERPassword recovery phone number
ACERtech support number 1800-681-7208 ACERTechnical support number @@/CANADA
+1800 681 7208 ACERPRINTER SUPPORT NUMBER 1800 681 7208 ACERcustomer care
number ACERsupport phone number 1800 681 7208 ACERcustomer care number 1800 681
7208 ACERhelpdesk phone number 1800 681 7208 ACERPRINTER SUPPORT HELPDESK
ACERPRINTER helpdesk number ACERPassword recovery phone number ACERtech support
number 1800 681 7208 ACERTechnical support number 1800-681-7208 ACERPRINTER
SUPPORT NUMBER 1800-681-7208 ACERcustomer care number ACERsupport phone number
1800-681-7208 ACERcustomer care number 1800-681-7208 ACERhelpdesk phone number
1800-681-7208 ACERPRINTER SUPPORT HELPDESK ACERPRINTER helpdesk number
ACERPassword recovery phone number ACERtech support number 1800-681-7208
ACERTechnical support number @@/CANADA +1800 681 7208 ACERPRINTER SUPPORT
NUMBER 1800 681 7208 ACERcustomer care number ACERsupport phone number 1800 681
7208 ACERcustomer care number 1800 681 7208 ACERhelpdesk phone number 1800 681
7208 ACERPRINTER SUPPORT HELPDESK ACERPRINTER helpdesk number ACERPassword
recovery phone number ACERtech support number 1800 681 7208 ACERTechnical
support number 1800-681-7208 ACERPRINTER SUPPORT NUMBER 1800-681-7208
ACERcustomer care number ACERsupport phone number 1800-681-7208 ACERcustomer
care number 1800-681-7208 ACERhelpdesk phone number 1800-681-7208 ACERPRINTER
SUPPORT HELPDESK ACERPRINTER helpdesk number ACERPassword recovery phone number
ACERtech support number 1800-681-7208 ACERTechnical support number @@/CANADA
ACERcustomer service number ACERcall center ACERcustomer service PRINTER
address ACERcustomer care no ACERPRINTER technical support phone number
ACERPRINTER tech support phone number ACERPRINTER customer service phone number
ACER360 technical support phone number symantec technical support phone number
ACERtechnical support phone number ACERcustomer service telephone number
ACERPRINTER phone number ACERPRINTER customer service phone number ACERPRINTER
customer service Helpdesk ACERPRINTER phone number ACERphone number cancel
subscription ACERtechnical support phone number ACER1800 phone number American
airlines toll free customer care number Jetairways toll free customer care
number Microsot toll free customer care number Apple toll free customer care
number Google toll free customer care number Bank of america toll free customer
care number flipkart toll free customer care number ACERtoll free customer care
number ACERtechnical support phone number ACERtechnical support number
ACERtechnical support number symantec technical support number ACERPRINTER
technical support number ACERlocations ACERonline support ACERHelpdesk phone
number ACERcustomer care ACERtech support phone number ACERtech support phone
number ACERPRINTER tech support phone number ACERlocations ACERHelpdesk phone
number service ACERcom ACERlogin ACERtechnical support phone number
ACERcustomer service ACERHelpdesk phone number ACERsupport telephone number
ACERsupport phone number ACERPRINTER support phone number ACERsupport phone
number ACERlocations ACERcustomer service ACERcustomer care ACERHelpdesk phone
number ACERcustomer support phone number ACERcustomer support phone number
ACERPRINTER customer support phone number ACERPRINTER customer service phone
number ACERPRINTER technical support phone number ACERPRINTER tech support
phone number ACERPRINTER phone number ACERsecurity center phone number
ACERsupport telephone number ACER360 technical support phone number symantec
technical support phone number ACERtech support phone number apple technical
support phone number @@ microsoft technical support phone number @@
ACERtechnical support phone number @@ kaspersky technical support phone number
@@ lenovo technical support phone number @@ acer technical support phone number
@@ ACERtechnical support phone number call ACERsupport chat with ACERsupport
ACERcustomer support ACERPRINTER customer service number ACERaddress ACERcall
center ACERhq ACERoffice locations ACERsupport site ACERtelephone number for
customer support ACERcustomer service contact number ACERcustomer care ACERtoll
free number ACERsecurity contact number contact Vipre ACERheadquarters
ACERcustomer service chat ACERcustomer service telephone number ACERHelpdesk
phone number ACERcustomer support ACERcustomer service ACERlogin ACERlocations
ACERcustomer service number ACERlocations ACERcustomer service PRINTER address
ACERsupport site ACERtechnical support phone number ACERtechnical support live
chat ACERtechnical support PRINTER address ACERtechnical support number
ACERtechnical support number symantec technical support number ACERPRINTER
technical support number ACERcustomer support phone number ACERcustomer support
number ACERcustomer support number ACERPRINTER customer support number
ACERlocations ACERHelpdesk phone number ACERcorporate phone number ACERcustomer
service Helpdesk ACERtechnical support phone number ACERtech support phone
number ACERtech support number ACERtech support number
>From gcc-bugs-return-534019-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 22:46:02 2016
Return-Path: <gcc-bugs-return-534019-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 12185 invoked by alias); 10 Aug 2016 22:46:02 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 12053 invoked by uid 48); 10 Aug 2016 22:45:57 -0000
From: "wschmidt at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72863] Powerpc64le: redundant swaps when using vec_vsx_ld/st
Date: Wed, 10 Aug 2016 22:46:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wschmidt at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: wschmidt at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72863-4-BRVsn40lpi@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72863-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72863-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01355.txt.bz2
Content-length: 203

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72863

--- Comment #5 from Bill Schmidt <wschmidt at gcc dot gnu.org> ---
Regstrap passes.  I'll prepare the formal patch tomorrow.  Thanks for the
report!
>From gcc-bugs-return-534020-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 22:46:43 2016
Return-Path: <gcc-bugs-return-534020-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 13251 invoked by alias); 10 Aug 2016 22:46:42 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 13153 invoked by uid 48); 10 Aug 2016 22:46:29 -0000
From: "wenzel@mitsuba-renderer.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/73350] New: AVX512: GCC optimizes away rounding flags
Date: Wed, 10 Aug 2016 22:46:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wenzel@mitsuba-renderer.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73350-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01356.txt.bz2
Content-length: 3220

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73350

            Bug ID: 73350
           Summary: AVX512: GCC optimizes away rounding flags
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: target
          Assignee: unassigned at gcc dot gnu.org
          Reporter: wenzel@mitsuba-renderer.org
  Target Milestone: ---

The AVX512 instruction set introduced the ability to specify a rounding flag
for almost every arithmetic operation that is subject to rounding. This is
extremely useful because it eliminates the need to mess around with the MXCSR
control register when using tools like interval arithmetic that need control of
rounding.

Unfortunately, support for this is currently broken in GCC. Specifically, the
GCC optimizer does not seem to distinguish between function variants with
different rounding modes and ends up merging them during common subexpression
elimination.

Consider the simple program attached below, which computes "1 + pi" with +inf
and -inf rounding modes and then prints the difference of these values. The
expected output is:

$ g++ test.c -o test -mavx512f -O0 -fomit-frame-pointer -fomit-frame-pointer &&
./test
-4.76837e-07

At optimization level, -O1, this currently stops working (tested with GCC
trunk):

$ g++ test.c -o test -mavx512f -O0 -fomit-frame-pointer -fomit-frame-pointer &&
./test
-4.76837e-07

Looking at the assembly, there are two surprising things: first, common
subexpression elimination seems to have (partially) merged the two additions.
The second add is still generated but its result is never used.

The other weird thing is that GCC decides to fill a mask register with '-1' and
then use the masked versions of these operations instead of using the unmasked
versions, which use a "-1" mask by default.

_main:
        leaq    8(%rsp), %r10
        andq    $-64, %rsp
        pushq   -8(%r10)
        pushq   %rbp
        movq    %rsp, %rbp
        pushq   %r10
        subq    $40, %rsp
        movl    $-1, %eax
        kmovw   %eax, %k1
        vbroadcastss    LC0(%rip), %zmm1
        vbroadcastss    LC1(%rip), %zmm2
        vaddps  {rd-sae}, %zmm2, %zmm1, %zmm0{%k1}{z} <------ Why use mask?
        vaddps  {ru-sae}, %zmm2, %zmm1, %zmm1{%k1}{z}
        vsubss  %xmm0, %xmm0, %xmm0                   <------ xmm0 ??????
        vcvtss2sd       %xmm0, %xmm0, %xmm0
        leaq    LC2(%rip), %rdi
        movl    $1, %eax
        call    _printf
        movl    $0, %eax
        addq    $40, %rsp
        popq    %r10
        popq    %rbp
        leaq    -8(%r10), %rsp
        ret

// ============== Program to reproduce ============

#include <stdio.h>
#include <math.h>
#include <immintrin.h>

int main(int argc, char *argv[]) {
    __m512 a = _mm512_set1_ps((float) M_PI);
    __m512 b = _mm512_set1_ps((float) 1.f);

    __m512 result1 = _mm512_add_round_ps(a, b, (_MM_FROUND_TO_NEG_INF |
_MM_FROUND_NO_EXC));
    __m512 result2 = _mm512_add_round_ps(a, b, (_MM_FROUND_TO_POS_INF |
_MM_FROUND_NO_EXC));

    printf("%g\n", result1[0] - result2[0]);

    return 0;
}
>From gcc-bugs-return-534022-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 23:04:46 2016
Return-Path: <gcc-bugs-return-534022-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 49888 invoked by alias); 10 Aug 2016 23:04:46 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 46365 invoked by uid 48); 10 Aug 2016 23:04:33 -0000
From: "sanjay2809319 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73373] New: CONATACT AVAST ANTIVIRUS 1 800 681 7208 AVAST TECH SUPPORT PHONE NUMBER
Date: Wed, 10 Aug 2016 23:04:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: sanjay2809319 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73373-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01358.txt.bz2
Content-length: 12801

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73373

            Bug ID: 73373
           Summary: CONATACT AVAST ANTIVIRUS 1 800 681 7208 AVAST TECH
                    SUPPORT PHONE NUMBER
           Product: gcc
           Version: 6.1.0
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: sanjay2809319 at gmail dot com
  Target Milestone: ---

CONATACT AVAST ANTIVIRUS 1 800 681 7208 AVAST TECH SUPPORT PHONE NUMBER


cow 1 800 681 7208 Avast support phone number for helpline avast antivirus
technical support number 
AVAST helpline phone number@~1800-681-7208 AVAST tech Support Number avast
customer service phone number
AVAST Security contact Number +1800-6817208**avast support phone number
usa+1-800-681-7208) Technical support number
CANADA+1800-681-7208 avast Technical Support
USA-1800-681-7208 contact avast customer service phone number
AUS-1-800-681-7208 phone number for AVAST customer service
UK-800-810-7208 phone number for avast technical support
1-800-681-7208 phone number for avast customer service
phone number for avast technical support
phone number for AVAST security
avast customer care phone number
avast customer service billing
avast customer service eantivirus address
avast customer service live chat
avast customer service telephone number
avast customer support usa phone number
avast help desk support phone number free in usa
avast phone number customer service us
avast phone number support
avast support phone number
avast tech support phone number free in usa
avast tech support phone number
avast technical support customer service
avast technical support number
avast telephone number
avast toll free customer care number
avast toll free number in usa
avast contact phone number in usa
avast customer service number
avast customer service phone number
avast customer service telephone number
avast customer support number
avast customer support phone number
avast customer support phone number
avast help desk phone number in usa
avast phone number
avast phone number support for technical issue in usa
avast support phone number
avast technical support help desk phone number
avast technical support number
avast technical support phone number
AVAST customer service number
AVAST customer service telephone number
AVAST customer services eantivirus
AVAST customer support eantivirus address
AVAST customer support number
AVAST customer support phone number
AVAST customer service phone number
AVAST internet security contact phone number
AVAST internet security customer service phone number
AVAST internet security phone number
AVAST internet security help phone number
AVAST internet security phone number in usa
AVAST internet security support phone number
AVAST internet security technical support
AVAST phone number customer service
AVAST phone numbers customer support
AVAST phone support number
AVAST security contact phone number
AVAST security phone number customer service
AVAST security support phone number
AVAST support contact number
AVAST support eantivirus address
AVAST support phone number
AVAST support telephone number
AVAST support telephone number usa
AVAST support telephone number
AVAST tech support number
AVAST tech support phone number
AVAST tech support phone number free
AVAST technical support phone number
AVAST technical support cutomer phone number
AVAST technical support phone number
AVAST technical support number free in usa
AVAST technical support number toll free number
AVAST technical support phone number
AVAST technologies phone number
AVAST telephone support number
avast customer support phone number
avast customer service phone number
AVAST customer support phone number
AVAST phone number customer service
AVAST technical support telephone number
contact avast customer service phone number
customer service number for avast
phone number for avast
phone number for avast customer service
phone number for avast support
phone number for AVAST customer service
phone number for AVAST customer service
phone number for AVAST customer support
phone number for AVAST tech support
phone number avast customer service
avast customer service number
avast customer service phone
avast customer service phone number
avast customer service phone number us
avast customer service telephone number
avast customer support
avast customer support number
avast phone number customer service us
avast phone number support
avast phone support
avast phone support number
avast support phone number
avast tech support phone number
avast technical support
avast technical support number
avast technical support phone number
AVAST customer service phone number
AVAST customer support phone number
AVAST helpline phone number
AVAST internet security customer service
AVAST internet security customer service phone number
AVAST internet security help phone number
AVAST internet security phone number customer service
AVAST phone number customer service
AVAST phone number customer support
AVAST security customer service phone number
AVAST security phone number customer service
AVAST support phone number
AVAST support telephone number
AVAST tech support number
AVAST tech support phone number
AVAST technical support
AVAST technical support number
AVAST technical support phone number
avast customer support phone number
avast phone number customer service
avast tech support number
AVAST customer service phone number
AVAST customer service phone numbers
AVAST internet security technical support
AVAST tech support phone number us
AVAST technical support telephone number
contact avast
contact AVAST by phone
contact AVAST customer service
contact avast customer service phone number
contactavast tech support usa
customer service AVAST phone number
download AVAST titanium
dri AVAST customer service number
dri AVAST customer service phone number
dri AVAST phone number
how to contact AVAST by eantivirus
how to delete AVAST from mac
micro trend customer service
avast customer service number
phone number for AVAST customer service
phone number forAVAST customer service
phone number forAVAST customer support
phone number forAVAST tech support
phone number forAVAST technical support
phone number for avast technical support
phone number for AVAST security
phone number for AVAST support
phone number for AVAST technical support
phone number for avast customer service
phone number for AVAST customer service
remove AVAST from mac
technical support for Printer AVAST
telephone number forAVAST technical support
telephone avast
avast contact number
avast customer care
avast customer care number
avast customer care number usa
avast customer service
avast customer service number :idea: :evil: :D :) :lol: :( :o :shock:
avast customer service phone number
avast customer service phone number usa
avast customer service telephone number
avast customer support
avast customer support in usa
avast customer support number
avast customer support phone number
avast for phone
avast free Printer support
avast help phone number
avast helpline number
avast online support
avast phone
avast phone number
avast phone number in usa
avast phone number usa
avast phone support
avast plus tech support
avast protection
avast support
avast support number
avast support phone number
avast support services
avast support telephone number
avast tech support
avast tech support phone number free in usa
avast tech support number
avast tech support phone number
avast technical support
avast technical support number
avast technical support phone number
avast toll free customer care number
avast toll free number
avast contact phone number in usa
avast help desk phone number in usa
avast phone number support for technical issue in usa
avast support phone number
avast technical support help desk phone number
avast technical support phone number
AVAST contact number
AVAST contact number usa
AVAST contact phone number
AVAST contact support
AVAST contact number usa
AVAST contact phone number
AVAST contact phone number usa
AVAST customer & technical support
AVAST customer care
AVAST customer care center
AVAST customer care eantivirus
AVAST customer care number
AVAST customer care number
AVAST customer care number usa
AVAST customer care number usa toll free
AVAST customer care phone number usa
AVAST customer care tchnical support
AVAST customer care toll free
AVAST customer care toll free number
AVAST customer care usa
AVAST customer help
AVAST customer number
AVAST customer portal
AVAST customer service
AVAST customer service billing
AVAST customer service eantivirus address
AVAST customer service number
AVAST customer service phone
AVAST customer service phone number
AVAST customer service phone number us
AVAST customer service phone number usa
AVAST customer service reviews
AVAST customer service telephone number
AVAST customer service usa
AVAST customer support
AVAST customer support number
AVAST customer support phone
AVAST customer support phone number
AVAST customer service number
AVAST customer service number usa
AVAST customer service phone number
AVAST customer support number
AVAST customer support phone number
AVAST free phone support
AVAST gold support phone number
AVAST help desk phone number
AVAST help phone number
AVAST helpline
AVAST helpline phone number
AVAST hotline customer service phone number
AVAST internet security customer service
AVAST internet security phone number
AVAST internet security phone number in usa
AVAST lab usa customer service
AVAST labs usa customer serviceAVAST
AVAST phone number
AVAST phone number customer service
AVAST phone number support
AVAST phone number tech support
AVAST phone number technical support
AVAST phone numbers customer support
AVAST phone support
AVAST phone support number
AVAST phone number customer service
AVAST phone number support
AVAST phone number tech support
AVAST phone number usa
AVAST security contact phone number
AVAST security phone number
AVAST security support phone number
AVAST software customer service
AVAST software customer service number
AVAST support center
AVAST support contact number
AVAST support eantivirus address
AVAST support phone number
AVAST support telephone number
AVAST support number usa
AVAST support phone number
AVAST support phone number usa
AVAST tech support
AVAST tech support center
AVAST tech support contact
AVAST tech support number
AVAST tech support number usa
AVAST tech support phone
AVAST tech support phone number
AVAST tech support phone number free
AVAST tech support number
AVAST tech support number usa
AVAST tech support phone number
AVAST technical support
AVAST technical support number
AVAST technical support phone number
AVAST technical support phone number usa
AVAST technical support reviews
AVAST technical support usa
AVAST technical support phone number
AVAST technical support number
AVAST technical support number toll free number
AVAST technical support number usa
AVAST technical support phone number
AVAST technical support phone number usa
AVAST technologies phone number
AVAST telephone number
AVAST telephone support number
AVAST toll free number
AVAST toll free number usa
AVAST usa customer care for tech support
AVAST usa customer service
AVAST usa phone number
avast customer service phone number
avast customer service phone number
avast customer support phone number
avast customer support phone number
avast technical support number
AVAST customer service phone number usa
AVAST internet security support phone number
AVAST.com customer service
avast antispyware 2011
avast customer support
avast serial key
avast serial number
avast support
avast technical support
AVAST business support
AVAST contact support
AVAST customer care number
AVAST customer service 800
AVAST customer service number
AVAST customer service phone number
AVAST customer service telephone number
AVAST customer support
AVAST grentry non payment
AVAST helpline support number
AVAST internet security customer service
AVAST internet security technical support
AVAST oem customer service
AVAST pc cillin technical support
AVAST phone support
AVAST removal tool download
AVAST subscription renewal
AVAST support contact
AVAST support hotline
AVAST support phone number
AVAST tech support phone number
AVAST technical support
AVAST technical support chat
AVAST technical support phone number
AVAST technical support phone number usa
AVAST telephone number
AVAST titanium Printer
AVAST titanium internet security
AVAST titanium maximum
AVAST titanium maximum security
AVAST titanium problems
AVAST titanium removal tool
AVAST titanium reviews
AVAST titanium support
AVAST virus removal service
uninstall AVAST smart surfing for mac
usa customer care number for avast
>From gcc-bugs-return-534023-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 23:06:07 2016
Return-Path: <gcc-bugs-return-534023-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 53487 invoked by alias); 10 Aug 2016 23:06:06 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 53358 invoked by uid 48); 10 Aug 2016 23:05:54 -0000
From: "sanjay2809319 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73376] New: CONATACT AVIRA ANTIVIRUS 1 800 681 7208 AVIRA TECH SUPPORT PHONE NUMBER
Date: Wed, 10 Aug 2016 23:06:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: tree-ssa
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: sanjay2809319 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73376-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01359.txt.bz2
Content-length: 12804

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73376

            Bug ID: 73376
           Summary: CONATACT AVIRA ANTIVIRUS 1 800 681 7208 AVIRA TECH
                    SUPPORT PHONE NUMBER
           Product: gcc
           Version: tree-ssa
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: sanjay2809319 at gmail dot com
  Target Milestone: ---

CONATACT AVIRA ANTIVIRUS 1 800 681 7208 AVIRA TECH SUPPORT PHONE NUMBER


cow 1 800 681 7208 Avira support phone number for helpline avira antivirus
technical support number 
AVIRA helpline phone number@~1800-681-7208 AVIRA tech Support Number avira
customer service phone number
AVIRA Security contact Number +1800-6817208**avira support phone number
usa+1-800-681-7208) Technical support number
CANADA+1800-681-7208 avira Technical Support
USA-1800-681-7208 contact avira customer service phone number
AUS-1-800-681-7208 phone number for AVIRA customer service
UK-800-810-7208 phone number for avira technical support
1-800-681-7208 phone number for avira customer service
phone number for avira technical support
phone number for AVIRA security
avira customer care phone number
avira customer service billing
avira customer service eantivirus address
avira customer service live chat
avira customer service telephone number
avira customer support usa phone number
avira help desk support phone number free in usa
avira phone number customer service us
avira phone number support
avira support phone number
avira tech support phone number free in usa
avira tech support phone number
avira technical support customer service
avira technical support number
avira telephone number
avira toll free customer care number
avira toll free number in usa
avira contact phone number in usa
avira customer service number
avira customer service phone number
avira customer service telephone number
avira customer support number
avira customer support phone number
avira customer support phone number
avira help desk phone number in usa
avira phone number
avira phone number support for technical issue in usa
avira support phone number
avira technical support help desk phone number
avira technical support number
avira technical support phone number
AVIRA customer service number
AVIRA customer service telephone number
AVIRA customer services eantivirus
AVIRA customer support eantivirus address
AVIRA customer support number
AVIRA customer support phone number
AVIRA customer service phone number
AVIRA internet security contact phone number
AVIRA internet security customer service phone number
AVIRA internet security phone number
AVIRA internet security help phone number
AVIRA internet security phone number in usa
AVIRA internet security support phone number
AVIRA internet security technical support
AVIRA phone number customer service
AVIRA phone numbers customer support
AVIRA phone support number
AVIRA security contact phone number
AVIRA security phone number customer service
AVIRA security support phone number
AVIRA support contact number
AVIRA support eantivirus address
AVIRA support phone number
AVIRA support telephone number
AVIRA support telephone number usa
AVIRA support telephone number
AVIRA tech support number
AVIRA tech support phone number
AVIRA tech support phone number free
AVIRA technical support phone number
AVIRA technical support cutomer phone number
AVIRA technical support phone number
AVIRA technical support number free in usa
AVIRA technical support number toll free number
AVIRA technical support phone number
AVIRA technologies phone number
AVIRA telephone support number
avira customer support phone number
avira customer service phone number
AVIRA customer support phone number
AVIRA phone number customer service
AVIRA technical support telephone number
contact avira customer service phone number
customer service number for avira
phone number for avira
phone number for avira customer service
phone number for avira support
phone number for AVIRA customer service
phone number for AVIRA customer service
phone number for AVIRA customer support
phone number for AVIRA tech support
phone number avira customer service
avira customer service number
avira customer service phone
avira customer service phone number
avira customer service phone number us
avira customer service telephone number
avira customer support
avira customer support number
avira phone number customer service us
avira phone number support
avira phone support
avira phone support number
avira support phone number
avira tech support phone number
avira technical support
avira technical support number
avira technical support phone number
AVIRA customer service phone number
AVIRA customer support phone number
AVIRA helpline phone number
AVIRA internet security customer service
AVIRA internet security customer service phone number
AVIRA internet security help phone number
AVIRA internet security phone number customer service
AVIRA phone number customer service
AVIRA phone number customer support
AVIRA security customer service phone number
AVIRA security phone number customer service
AVIRA support phone number
AVIRA support telephone number
AVIRA tech support number
AVIRA tech support phone number
AVIRA technical support
AVIRA technical support number
AVIRA technical support phone number
avira customer support phone number
avira phone number customer service
avira tech support number
AVIRA customer service phone number
AVIRA customer service phone numbers
AVIRA internet security technical support
AVIRA tech support phone number us
AVIRA technical support telephone number
contact avira
contact AVIRA by phone
contact AVIRA customer service
contact avira customer service phone number
contactavira tech support usa
customer service AVIRA phone number
download AVIRA titanium
dri AVIRA customer service number
dri AVIRA customer service phone number
dri AVIRA phone number
how to contact AVIRA by eantivirus
how to delete AVIRA from mac
micro trend customer service
avira customer service number
phone number for AVIRA customer service
phone number forAVIRA customer service
phone number forAVIRA customer support
phone number forAVIRA tech support
phone number forAVIRA technical support
phone number for avira technical support
phone number for AVIRA security
phone number for AVIRA support
phone number for AVIRA technical support
phone number for avira customer service
phone number for AVIRA customer service
remove AVIRA from mac
technical support for Printer AVIRA
telephone number forAVIRA technical support
telephone avira
avira contact number
avira customer care
avira customer care number
avira customer care number usa
avira customer service
avira customer service number :idea: :evil: :D :) :lol: :( :o :shock:
avira customer service phone number
avira customer service phone number usa
avira customer service telephone number
avira customer support
avira customer support in usa
avira customer support number
avira customer support phone number
avira for phone
avira free Printer support
avira help phone number
avira helpline number
avira online support
avira phone
avira phone number
avira phone number in usa
avira phone number usa
avira phone support
avira plus tech support
avira protection
avira support
avira support number
avira support phone number
avira support services
avira support telephone number
avira tech support
avira tech support phone number free in usa
avira tech support number
avira tech support phone number
avira technical support
avira technical support number
avira technical support phone number
avira toll free customer care number
avira toll free number
avira contact phone number in usa
avira help desk phone number in usa
avira phone number support for technical issue in usa
avira support phone number
avira technical support help desk phone number
avira technical support phone number
AVIRA contact number
AVIRA contact number usa
AVIRA contact phone number
AVIRA contact support
AVIRA contact number usa
AVIRA contact phone number
AVIRA contact phone number usa
AVIRA customer & technical support
AVIRA customer care
AVIRA customer care center
AVIRA customer care eantivirus
AVIRA customer care number
AVIRA customer care number
AVIRA customer care number usa
AVIRA customer care number usa toll free
AVIRA customer care phone number usa
AVIRA customer care tchnical support
AVIRA customer care toll free
AVIRA customer care toll free number
AVIRA customer care usa
AVIRA customer help
AVIRA customer number
AVIRA customer portal
AVIRA customer service
AVIRA customer service billing
AVIRA customer service eantivirus address
AVIRA customer service number
AVIRA customer service phone
AVIRA customer service phone number
AVIRA customer service phone number us
AVIRA customer service phone number usa
AVIRA customer service reviews
AVIRA customer service telephone number
AVIRA customer service usa
AVIRA customer support
AVIRA customer support number
AVIRA customer support phone
AVIRA customer support phone number
AVIRA customer service number
AVIRA customer service number usa
AVIRA customer service phone number
AVIRA customer support number
AVIRA customer support phone number
AVIRA free phone support
AVIRA gold support phone number
AVIRA help desk phone number
AVIRA help phone number
AVIRA helpline
AVIRA helpline phone number
AVIRA hotline customer service phone number
AVIRA internet security customer service
AVIRA internet security phone number
AVIRA internet security phone number in usa
AVIRA lab usa customer service
AVIRA labs usa customer serviceAVIRA
AVIRA phone number
AVIRA phone number customer service
AVIRA phone number support
AVIRA phone number tech support
AVIRA phone number technical support
AVIRA phone numbers customer support
AVIRA phone support
AVIRA phone support number
AVIRA phone number customer service
AVIRA phone number support
AVIRA phone number tech support
AVIRA phone number usa
AVIRA security contact phone number
AVIRA security phone number
AVIRA security support phone number
AVIRA software customer service
AVIRA software customer service number
AVIRA support center
AVIRA support contact number
AVIRA support eantivirus address
AVIRA support phone number
AVIRA support telephone number
AVIRA support number usa
AVIRA support phone number
AVIRA support phone number usa
AVIRA tech support
AVIRA tech support center
AVIRA tech support contact
AVIRA tech support number
AVIRA tech support number usa
AVIRA tech support phone
AVIRA tech support phone number
AVIRA tech support phone number free
AVIRA tech support number
AVIRA tech support number usa
AVIRA tech support phone number
AVIRA technical support
AVIRA technical support number
AVIRA technical support phone number
AVIRA technical support phone number usa
AVIRA technical support reviews
AVIRA technical support usa
AVIRA technical support phone number
AVIRA technical support number
AVIRA technical support number toll free number
AVIRA technical support number usa
AVIRA technical support phone number
AVIRA technical support phone number usa
AVIRA technologies phone number
AVIRA telephone number
AVIRA telephone support number
AVIRA toll free number
AVIRA toll free number usa
AVIRA usa customer care for tech support
AVIRA usa customer service
AVIRA usa phone number
avira customer service phone number
avira customer service phone number
avira customer support phone number
avira customer support phone number
avira technical support number
AVIRA customer service phone number usa
AVIRA internet security support phone number
AVIRA.com customer service
avira antispyware 2011
avira customer support
avira serial key
avira serial number
avira support
avira technical support
AVIRA business support
AVIRA contact support
AVIRA customer care number
AVIRA customer service 800
AVIRA customer service number
AVIRA customer service phone number
AVIRA customer service telephone number
AVIRA customer support
AVIRA grentry non payment
AVIRA helpline support number
AVIRA internet security customer service
AVIRA internet security technical support
AVIRA oem customer service
AVIRA pc cillin technical support
AVIRA phone support
AVIRA removal tool download
AVIRA subscription renewal
AVIRA support contact
AVIRA support hotline
AVIRA support phone number
AVIRA tech support phone number
AVIRA technical support
AVIRA technical support chat
AVIRA technical support phone number
AVIRA technical support phone number usa
AVIRA telephone number
AVIRA titanium Printer
AVIRA titanium internet security
AVIRA titanium maximum
AVIRA titanium maximum security
AVIRA titanium problems
AVIRA titanium removal tool
AVIRA titanium reviews
AVIRA titanium support
AVIRA virus removal service
uninstall AVIRA smart surfing for mac
usa customer care number for avira
>From gcc-bugs-return-534024-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 23:07:26 2016
Return-Path: <gcc-bugs-return-534024-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 57635 invoked by alias); 10 Aug 2016 23:07:25 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 55128 invoked by uid 48); 10 Aug 2016 23:07:13 -0000
From: "sanjay2809319 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73381] New: CONATACT BULLGUARD ANTIVIRUS 1 800 681 7208 BULLGUARD TECH SUPPORT PHONE NUMBER
Date: Wed, 10 Aug 2016 23:07:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: trans-mem
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: sanjay2809319 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73381-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01360.txt.bz2
Content-length: 14325

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73381

            Bug ID: 73381
           Summary: CONATACT BULLGUARD ANTIVIRUS 1 800 681 7208 BULLGUARD
                    TECH SUPPORT PHONE NUMBER
           Product: gcc
           Version: trans-mem
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: sanjay2809319 at gmail dot com
  Target Milestone: ---

CONATACT BULLGUARD ANTIVIRUS 1 800 681 7208 BULLGUARD TECH SUPPORT PHONE NUMBER


cow 1 800 681 7208 Bullguard support phone number for helpline bullguard
antivirus technical support number 
BULLGUARD helpline phone number@~1800-681-7208 BULLGUARD tech Support Number
bullguard customer service phone number
BULLGUARD Security contact Number +1800-6817208**bullguard support phone number
usa+1-800-681-7208) Technical support number
CANADA+1800-681-7208 bullguard Technical Support
USA-1800-681-7208 contact bullguard customer service phone number
AUS-1-800-681-7208 phone number for BULLGUARD customer service
UK-800-810-7208 phone number for bullguard technical support
1-800-681-7208 phone number for bullguard customer service
phone number for bullguard technical support
phone number for BULLGUARD security
bullguard customer care phone number
bullguard customer service billing
bullguard customer service eantivirus address
bullguard customer service live chat
bullguard customer service telephone number
bullguard customer support usa phone number
bullguard help desk support phone number free in usa
bullguard phone number customer service us
bullguard phone number support
bullguard support phone number
bullguard tech support phone number free in usa
bullguard tech support phone number
bullguard technical support customer service
bullguard technical support number
bullguard telephone number
bullguard toll free customer care number
bullguard toll free number in usa
bullguard contact phone number in usa
bullguard customer service number
bullguard customer service phone number
bullguard customer service telephone number
bullguard customer support number
bullguard customer support phone number
bullguard customer support phone number
bullguard help desk phone number in usa
bullguard phone number
bullguard phone number support for technical issue in usa
bullguard support phone number
bullguard technical support help desk phone number
bullguard technical support number
bullguard technical support phone number
BULLGUARD customer service number
BULLGUARD customer service telephone number
BULLGUARD customer services eantivirus
BULLGUARD customer support eantivirus address
BULLGUARD customer support number
BULLGUARD customer support phone number
BULLGUARD customer service phone number
BULLGUARD internet security contact phone number
BULLGUARD internet security customer service phone number
BULLGUARD internet security phone number
BULLGUARD internet security help phone number
BULLGUARD internet security phone number in usa
BULLGUARD internet security support phone number
BULLGUARD internet security technical support
BULLGUARD phone number customer service
BULLGUARD phone numbers customer support
BULLGUARD phone support number
BULLGUARD security contact phone number
BULLGUARD security phone number customer service
BULLGUARD security support phone number
BULLGUARD support contact number
BULLGUARD support eantivirus address
BULLGUARD support phone number
BULLGUARD support telephone number
BULLGUARD support telephone number usa
BULLGUARD support telephone number
BULLGUARD tech support number
BULLGUARD tech support phone number
BULLGUARD tech support phone number free
BULLGUARD technical support phone number
BULLGUARD technical support cutomer phone number
BULLGUARD technical support phone number
BULLGUARD technical support number free in usa
BULLGUARD technical support number toll free number
BULLGUARD technical support phone number
BULLGUARD technologies phone number
BULLGUARD telephone support number
bullguard customer support phone number
bullguard customer service phone number
BULLGUARD customer support phone number
BULLGUARD phone number customer service
BULLGUARD technical support telephone number
contact bullguard customer service phone number
customer service number for bullguard
phone number for bullguard
phone number for bullguard customer service
phone number for bullguard support
phone number for BULLGUARD customer service
phone number for BULLGUARD customer service
phone number for BULLGUARD customer support
phone number for BULLGUARD tech support
phone number bullguard customer service
bullguard customer service number
bullguard customer service phone
bullguard customer service phone number
bullguard customer service phone number us
bullguard customer service telephone number
bullguard customer support
bullguard customer support number
bullguard phone number customer service us
bullguard phone number support
bullguard phone support
bullguard phone support number
bullguard support phone number
bullguard tech support phone number
bullguard technical support
bullguard technical support number
bullguard technical support phone number
BULLGUARD customer service phone number
BULLGUARD customer support phone number
BULLGUARD helpline phone number
BULLGUARD internet security customer service
BULLGUARD internet security customer service phone number
BULLGUARD internet security help phone number
BULLGUARD internet security phone number customer service
BULLGUARD phone number customer service
BULLGUARD phone number customer support
BULLGUARD security customer service phone number
BULLGUARD security phone number customer service
BULLGUARD support phone number
BULLGUARD support telephone number
BULLGUARD tech support number
BULLGUARD tech support phone number
BULLGUARD technical support
BULLGUARD technical support number
BULLGUARD technical support phone number
bullguard customer support phone number
bullguard phone number customer service
bullguard tech support number
BULLGUARD customer service phone number
BULLGUARD customer service phone numbers
BULLGUARD internet security technical support
BULLGUARD tech support phone number us
BULLGUARD technical support telephone number
contact bullguard
contact BULLGUARD by phone
contact BULLGUARD customer service
contact bullguard customer service phone number
contactbullguard tech support usa
customer service BULLGUARD phone number
download BULLGUARD titanium
dri BULLGUARD customer service number
dri BULLGUARD customer service phone number
dri BULLGUARD phone number
how to contact BULLGUARD by eantivirus
how to delete BULLGUARD from mac
micro trend customer service
bullguard customer service number
phone number for BULLGUARD customer service
phone number forBULLGUARD customer service
phone number forBULLGUARD customer support
phone number forBULLGUARD tech support
phone number forBULLGUARD technical support
phone number for bullguard technical support
phone number for BULLGUARD security
phone number for BULLGUARD support
phone number for BULLGUARD technical support
phone number for bullguard customer service
phone number for BULLGUARD customer service
remove BULLGUARD from mac
technical support for Printer BULLGUARD
telephone number forBULLGUARD technical support
telephone bullguard
bullguard contact number
bullguard customer care
bullguard customer care number
bullguard customer care number usa
bullguard customer service
bullguard customer service number :idea: :evil: :D :) :lol: :( :o :shock:
bullguard customer service phone number
bullguard customer service phone number usa
bullguard customer service telephone number
bullguard customer support
bullguard customer support in usa
bullguard customer support number
bullguard customer support phone number
bullguard for phone
bullguard free Printer support
bullguard help phone number
bullguard helpline number
bullguard online support
bullguard phone
bullguard phone number
bullguard phone number in usa
bullguard phone number usa
bullguard phone support
bullguard plus tech support
bullguard protection
bullguard support
bullguard support number
bullguard support phone number
bullguard support services
bullguard support telephone number
bullguard tech support
bullguard tech support phone number free in usa
bullguard tech support number
bullguard tech support phone number
bullguard technical support
bullguard technical support number
bullguard technical support phone number
bullguard toll free customer care number
bullguard toll free number
bullguard contact phone number in usa
bullguard help desk phone number in usa
bullguard phone number support for technical issue in usa
bullguard support phone number
bullguard technical support help desk phone number
bullguard technical support phone number
BULLGUARD contact number
BULLGUARD contact number usa
BULLGUARD contact phone number
BULLGUARD contact support
BULLGUARD contact number usa
BULLGUARD contact phone number
BULLGUARD contact phone number usa
BULLGUARD customer & technical support
BULLGUARD customer care
BULLGUARD customer care center
BULLGUARD customer care eantivirus
BULLGUARD customer care number
BULLGUARD customer care number
BULLGUARD customer care number usa
BULLGUARD customer care number usa toll free
BULLGUARD customer care phone number usa
BULLGUARD customer care tchnical support
BULLGUARD customer care toll free
BULLGUARD customer care toll free number
BULLGUARD customer care usa
BULLGUARD customer help
BULLGUARD customer number
BULLGUARD customer portal
BULLGUARD customer service
BULLGUARD customer service billing
BULLGUARD customer service eantivirus address
BULLGUARD customer service number
BULLGUARD customer service phone
BULLGUARD customer service phone number
BULLGUARD customer service phone number us
BULLGUARD customer service phone number usa
BULLGUARD customer service reviews
BULLGUARD customer service telephone number
BULLGUARD customer service usa
BULLGUARD customer support
BULLGUARD customer support number
BULLGUARD customer support phone
BULLGUARD customer support phone number
BULLGUARD customer service number
BULLGUARD customer service number usa
BULLGUARD customer service phone number
BULLGUARD customer support number
BULLGUARD customer support phone number
BULLGUARD free phone support
BULLGUARD gold support phone number
BULLGUARD help desk phone number
BULLGUARD help phone number
BULLGUARD helpline
BULLGUARD helpline phone number
BULLGUARD hotline customer service phone number
BULLGUARD internet security customer service
BULLGUARD internet security phone number
BULLGUARD internet security phone number in usa
BULLGUARD lab usa customer service
BULLGUARD labs usa customer serviceBULLGUARD
BULLGUARD phone number
BULLGUARD phone number customer service
BULLGUARD phone number support
BULLGUARD phone number tech support
BULLGUARD phone number technical support
BULLGUARD phone numbers customer support
BULLGUARD phone support
BULLGUARD phone support number
BULLGUARD phone number customer service
BULLGUARD phone number support
BULLGUARD phone number tech support
BULLGUARD phone number usa
BULLGUARD security contact phone number
BULLGUARD security phone number
BULLGUARD security support phone number
BULLGUARD software customer service
BULLGUARD software customer service number
BULLGUARD support center
BULLGUARD support contact number
BULLGUARD support eantivirus address
BULLGUARD support phone number
BULLGUARD support telephone number
BULLGUARD support number usa
BULLGUARD support phone number
BULLGUARD support phone number usa
BULLGUARD tech support
BULLGUARD tech support center
BULLGUARD tech support contact
BULLGUARD tech support number
BULLGUARD tech support number usa
BULLGUARD tech support phone
BULLGUARD tech support phone number
BULLGUARD tech support phone number free
BULLGUARD tech support number
BULLGUARD tech support number usa
BULLGUARD tech support phone number
BULLGUARD technical support
BULLGUARD technical support number
BULLGUARD technical support phone number
BULLGUARD technical support phone number usa
BULLGUARD technical support reviews
BULLGUARD technical support usa
BULLGUARD technical support phone number
BULLGUARD technical support number
BULLGUARD technical support number toll free number
BULLGUARD technical support number usa
BULLGUARD technical support phone number
BULLGUARD technical support phone number usa
BULLGUARD technologies phone number
BULLGUARD telephone number
BULLGUARD telephone support number
BULLGUARD toll free number
BULLGUARD toll free number usa
BULLGUARD usa customer care for tech support
BULLGUARD usa customer service
BULLGUARD usa phone number
bullguard customer service phone number
bullguard customer service phone number
bullguard customer support phone number
bullguard customer support phone number
bullguard technical support number
BULLGUARD customer service phone number usa
BULLGUARD internet security support phone number
BULLGUARD.com customer service
bullguard antispyware 2011
bullguard customer support
bullguard serial key
bullguard serial number
bullguard support
bullguard technical support
BULLGUARD business support
BULLGUARD contact support
BULLGUARD customer care number
BULLGUARD customer service 800
BULLGUARD customer service number
BULLGUARD customer service phone number
BULLGUARD customer service telephone number
BULLGUARD customer support
BULLGUARD grentry non payment
BULLGUARD helpline support number
BULLGUARD internet security customer service
BULLGUARD internet security technical support
BULLGUARD oem customer service
BULLGUARD pc cillin technical support
BULLGUARD phone support
BULLGUARD removal tool download
BULLGUARD subscription renewal
BULLGUARD support contact
BULLGUARD support hotline
BULLGUARD support phone number
BULLGUARD tech support phone number
BULLGUARD technical support
BULLGUARD technical support chat
BULLGUARD technical support phone number
BULLGUARD technical support phone number usa
BULLGUARD telephone number
BULLGUARD titanium Printer
BULLGUARD titanium internet security
BULLGUARD titanium maximum
BULLGUARD titanium maximum security
BULLGUARD titanium problems
BULLGUARD titanium removal tool
BULLGUARD titanium reviews
BULLGUARD titanium support
BULLGUARD virus removal service
uninstall BULLGUARD smart surfing for mac
usa customer care number for bullguard
>From gcc-bugs-return-534025-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 23:08:32 2016
Return-Path: <gcc-bugs-return-534025-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 85780 invoked by alias); 10 Aug 2016 23:08:32 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 85593 invoked by uid 48); 10 Aug 2016 23:08:19 -0000
From: "sanjay2809319 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73383] New: CONATACT BITDEFENDER ANTIVIRUS 1 800 681 7208 BITDEFENDER TECH SUPPORT PHONE NUMBER
Date: Wed, 10 Aug 2016 23:08:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: lto
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: sanjay2809319 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73383-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01361.txt.bz2
Content-length: 15073

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73383

            Bug ID: 73383
           Summary: CONATACT BITDEFENDER ANTIVIRUS 1 800 681 7208
                    BITDEFENDER TECH SUPPORT PHONE NUMBER
           Product: gcc
           Version: lto
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: sanjay2809319 at gmail dot com
  Target Milestone: ---

CONATACT BITDEFENDER ANTIVIRUS 1 800 681 7208 BITDEFENDER TECH SUPPORT PHONE
NUMBER


cow 1 800 681 7208 Bitdefender support phone number for helpline bitdefender
antivirus technical support number 
BITDEFENDER helpline phone number@~1800-681-7208 BITDEFENDER tech Support
Number bitdefender customer service phone number
BITDEFENDER Security contact Number +1800-6817208**bitdefender support phone
number
usa+1-800-681-7208) Technical support number
CANADA+1800-681-7208 bitdefender Technical Support
USA-1800-681-7208 contact bitdefender customer service phone number
AUS-1-800-681-7208 phone number for BITDEFENDER customer service
UK-800-810-7208 phone number for bitdefender technical support
1-800-681-7208 phone number for bitdefender customer service
phone number for bitdefender technical support
phone number for BITDEFENDER security
bitdefender customer care phone number
bitdefender customer service billing
bitdefender customer service eantivirus address
bitdefender customer service live chat
bitdefender customer service telephone number
bitdefender customer support usa phone number
bitdefender help desk support phone number free in usa
bitdefender phone number customer service us
bitdefender phone number support
bitdefender support phone number
bitdefender tech support phone number free in usa
bitdefender tech support phone number
bitdefender technical support customer service
bitdefender technical support number
bitdefender telephone number
bitdefender toll free customer care number
bitdefender toll free number in usa
bitdefender contact phone number in usa
bitdefender customer service number
bitdefender customer service phone number
bitdefender customer service telephone number
bitdefender customer support number
bitdefender customer support phone number
bitdefender customer support phone number
bitdefender help desk phone number in usa
bitdefender phone number
bitdefender phone number support for technical issue in usa
bitdefender support phone number
bitdefender technical support help desk phone number
bitdefender technical support number
bitdefender technical support phone number
BITDEFENDER customer service number
BITDEFENDER customer service telephone number
BITDEFENDER customer services eantivirus
BITDEFENDER customer support eantivirus address
BITDEFENDER customer support number
BITDEFENDER customer support phone number
BITDEFENDER customer service phone number
BITDEFENDER internet security contact phone number
BITDEFENDER internet security customer service phone number
BITDEFENDER internet security phone number
BITDEFENDER internet security help phone number
BITDEFENDER internet security phone number in usa
BITDEFENDER internet security support phone number
BITDEFENDER internet security technical support
BITDEFENDER phone number customer service
BITDEFENDER phone numbers customer support
BITDEFENDER phone support number
BITDEFENDER security contact phone number
BITDEFENDER security phone number customer service
BITDEFENDER security support phone number
BITDEFENDER support contact number
BITDEFENDER support eantivirus address
BITDEFENDER support phone number
BITDEFENDER support telephone number
BITDEFENDER support telephone number usa
BITDEFENDER support telephone number
BITDEFENDER tech support number
BITDEFENDER tech support phone number
BITDEFENDER tech support phone number free
BITDEFENDER technical support phone number
BITDEFENDER technical support cutomer phone number
BITDEFENDER technical support phone number
BITDEFENDER technical support number free in usa
BITDEFENDER technical support number toll free number
BITDEFENDER technical support phone number
BITDEFENDER technologies phone number
BITDEFENDER telephone support number
bitdefender customer support phone number
bitdefender customer service phone number
BITDEFENDER customer support phone number
BITDEFENDER phone number customer service
BITDEFENDER technical support telephone number
contact bitdefender customer service phone number
customer service number for bitdefender
phone number for bitdefender
phone number for bitdefender customer service
phone number for bitdefender support
phone number for BITDEFENDER customer service
phone number for BITDEFENDER customer service
phone number for BITDEFENDER customer support
phone number for BITDEFENDER tech support
phone number bitdefender customer service
bitdefender customer service number
bitdefender customer service phone
bitdefender customer service phone number
bitdefender customer service phone number us
bitdefender customer service telephone number
bitdefender customer support
bitdefender customer support number
bitdefender phone number customer service us
bitdefender phone number support
bitdefender phone support
bitdefender phone support number
bitdefender support phone number
bitdefender tech support phone number
bitdefender technical support
bitdefender technical support number
bitdefender technical support phone number
BITDEFENDER customer service phone number
BITDEFENDER customer support phone number
BITDEFENDER helpline phone number
BITDEFENDER internet security customer service
BITDEFENDER internet security customer service phone number
BITDEFENDER internet security help phone number
BITDEFENDER internet security phone number customer service
BITDEFENDER phone number customer service
BITDEFENDER phone number customer support
BITDEFENDER security customer service phone number
BITDEFENDER security phone number customer service
BITDEFENDER support phone number
BITDEFENDER support telephone number
BITDEFENDER tech support number
BITDEFENDER tech support phone number
BITDEFENDER technical support
BITDEFENDER technical support number
BITDEFENDER technical support phone number
bitdefender customer support phone number
bitdefender phone number customer service
bitdefender tech support number
BITDEFENDER customer service phone number
BITDEFENDER customer service phone numbers
BITDEFENDER internet security technical support
BITDEFENDER tech support phone number us
BITDEFENDER technical support telephone number
contact bitdefender
contact BITDEFENDER by phone
contact BITDEFENDER customer service
contact bitdefender customer service phone number
contactbitdefender tech support usa
customer service BITDEFENDER phone number
download BITDEFENDER titanium
dri BITDEFENDER customer service number
dri BITDEFENDER customer service phone number
dri BITDEFENDER phone number
how to contact BITDEFENDER by eantivirus
how to delete BITDEFENDER from mac
micro trend customer service
bitdefender customer service number
phone number for BITDEFENDER customer service
phone number forBITDEFENDER customer service
phone number forBITDEFENDER customer support
phone number forBITDEFENDER tech support
phone number forBITDEFENDER technical support
phone number for bitdefender technical support
phone number for BITDEFENDER security
phone number for BITDEFENDER support
phone number for BITDEFENDER technical support
phone number for bitdefender customer service
phone number for BITDEFENDER customer service
remove BITDEFENDER from mac
technical support for Printer BITDEFENDER
telephone number forBITDEFENDER technical support
telephone bitdefender
bitdefender contact number
bitdefender customer care
bitdefender customer care number
bitdefender customer care number usa
bitdefender customer service
bitdefender customer service number :idea: :evil: :D :) :lol: :( :o :shock:
bitdefender customer service phone number
bitdefender customer service phone number usa
bitdefender customer service telephone number
bitdefender customer support
bitdefender customer support in usa
bitdefender customer support number
bitdefender customer support phone number
bitdefender for phone
bitdefender free Printer support
bitdefender help phone number
bitdefender helpline number
bitdefender online support
bitdefender phone
bitdefender phone number
bitdefender phone number in usa
bitdefender phone number usa
bitdefender phone support
bitdefender plus tech support
bitdefender protection
bitdefender support
bitdefender support number
bitdefender support phone number
bitdefender support services
bitdefender support telephone number
bitdefender tech support
bitdefender tech support phone number free in usa
bitdefender tech support number
bitdefender tech support phone number
bitdefender technical support
bitdefender technical support number
bitdefender technical support phone number
bitdefender toll free customer care number
bitdefender toll free number
bitdefender contact phone number in usa
bitdefender help desk phone number in usa
bitdefender phone number support for technical issue in usa
bitdefender support phone number
bitdefender technical support help desk phone number
bitdefender technical support phone number
BITDEFENDER contact number
BITDEFENDER contact number usa
BITDEFENDER contact phone number
BITDEFENDER contact support
BITDEFENDER contact number usa
BITDEFENDER contact phone number
BITDEFENDER contact phone number usa
BITDEFENDER customer & technical support
BITDEFENDER customer care
BITDEFENDER customer care center
BITDEFENDER customer care eantivirus
BITDEFENDER customer care number
BITDEFENDER customer care number
BITDEFENDER customer care number usa
BITDEFENDER customer care number usa toll free
BITDEFENDER customer care phone number usa
BITDEFENDER customer care tchnical support
BITDEFENDER customer care toll free
BITDEFENDER customer care toll free number
BITDEFENDER customer care usa
BITDEFENDER customer help
BITDEFENDER customer number
BITDEFENDER customer portal
BITDEFENDER customer service
BITDEFENDER customer service billing
BITDEFENDER customer service eantivirus address
BITDEFENDER customer service number
BITDEFENDER customer service phone
BITDEFENDER customer service phone number
BITDEFENDER customer service phone number us
BITDEFENDER customer service phone number usa
BITDEFENDER customer service reviews
BITDEFENDER customer service telephone number
BITDEFENDER customer service usa
BITDEFENDER customer support
BITDEFENDER customer support number
BITDEFENDER customer support phone
BITDEFENDER customer support phone number
BITDEFENDER customer service number
BITDEFENDER customer service number usa
BITDEFENDER customer service phone number
BITDEFENDER customer support number
BITDEFENDER customer support phone number
BITDEFENDER free phone support
BITDEFENDER gold support phone number
BITDEFENDER help desk phone number
BITDEFENDER help phone number
BITDEFENDER helpline
BITDEFENDER helpline phone number
BITDEFENDER hotline customer service phone number
BITDEFENDER internet security customer service
BITDEFENDER internet security phone number
BITDEFENDER internet security phone number in usa
BITDEFENDER lab usa customer service
BITDEFENDER labs usa customer serviceBITDEFENDER
BITDEFENDER phone number
BITDEFENDER phone number customer service
BITDEFENDER phone number support
BITDEFENDER phone number tech support
BITDEFENDER phone number technical support
BITDEFENDER phone numbers customer support
BITDEFENDER phone support
BITDEFENDER phone support number
BITDEFENDER phone number customer service
BITDEFENDER phone number support
BITDEFENDER phone number tech support
BITDEFENDER phone number usa
BITDEFENDER security contact phone number
BITDEFENDER security phone number
BITDEFENDER security support phone number
BITDEFENDER software customer service
BITDEFENDER software customer service number
BITDEFENDER support center
BITDEFENDER support contact number
BITDEFENDER support eantivirus address
BITDEFENDER support phone number
BITDEFENDER support telephone number
BITDEFENDER support number usa
BITDEFENDER support phone number
BITDEFENDER support phone number usa
BITDEFENDER tech support
BITDEFENDER tech support center
BITDEFENDER tech support contact
BITDEFENDER tech support number
BITDEFENDER tech support number usa
BITDEFENDER tech support phone
BITDEFENDER tech support phone number
BITDEFENDER tech support phone number free
BITDEFENDER tech support number
BITDEFENDER tech support number usa
BITDEFENDER tech support phone number
BITDEFENDER technical support
BITDEFENDER technical support number
BITDEFENDER technical support phone number
BITDEFENDER technical support phone number usa
BITDEFENDER technical support reviews
BITDEFENDER technical support usa
BITDEFENDER technical support phone number
BITDEFENDER technical support number
BITDEFENDER technical support number toll free number
BITDEFENDER technical support number usa
BITDEFENDER technical support phone number
BITDEFENDER technical support phone number usa
BITDEFENDER technologies phone number
BITDEFENDER telephone number
BITDEFENDER telephone support number
BITDEFENDER toll free number
BITDEFENDER toll free number usa
BITDEFENDER usa customer care for tech support
BITDEFENDER usa customer service
BITDEFENDER usa phone number
bitdefender customer service phone number
bitdefender customer service phone number
bitdefender customer support phone number
bitdefender customer support phone number
bitdefender technical support number
BITDEFENDER customer service phone number usa
BITDEFENDER internet security support phone number
BITDEFENDER.com customer service
bitdefender antispyware 2011
bitdefender customer support
bitdefender serial key
bitdefender serial number
bitdefender support
bitdefender technical support
BITDEFENDER business support
BITDEFENDER contact support
BITDEFENDER customer care number
BITDEFENDER customer service 800
BITDEFENDER customer service number
BITDEFENDER customer service phone number
BITDEFENDER customer service telephone number
BITDEFENDER customer support
BITDEFENDER grentry non payment
BITDEFENDER helpline support number
BITDEFENDER internet security customer service
BITDEFENDER internet security technical support
BITDEFENDER oem customer service
BITDEFENDER pc cillin technical support
BITDEFENDER phone support
BITDEFENDER removal tool download
BITDEFENDER subscription renewal
BITDEFENDER support contact
BITDEFENDER support hotline
BITDEFENDER support phone number
BITDEFENDER tech support phone number
BITDEFENDER technical support
BITDEFENDER technical support chat
BITDEFENDER technical support phone number
BITDEFENDER technical support phone number usa
BITDEFENDER telephone number
BITDEFENDER titanium Printer
BITDEFENDER titanium internet security
BITDEFENDER titanium maximum
BITDEFENDER titanium maximum security
BITDEFENDER titanium problems
BITDEFENDER titanium removal tool
BITDEFENDER titanium reviews
BITDEFENDER titanium support
BITDEFENDER virus removal service
uninstall BITDEFENDER smart surfing for mac
usa customer care number for bitdefender
>From gcc-bugs-return-534026-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 23:08:36 2016
Return-Path: <gcc-bugs-return-534026-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 86197 invoked by alias); 10 Aug 2016 23:08:36 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 85639 invoked by uid 48); 10 Aug 2016 23:08:23 -0000
From: "kargl at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/73142] Reading a namelist fails - my code worked until 4.8.2
Date: Wed, 10 Aug 2016 23:08:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: kargl at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-73142-4-QeaWJ6zcY5@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73142-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73142-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01362.txt.bz2
Content-length: 707

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73142

kargl at gcc dot gnu.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |kargl at gcc dot gnu.org

--- Comment #5 from kargl at gcc dot gnu.org ---
(In reply to Günter Weber from comment #4)
> This means the issue is already solved and will be fixed in a 'standard' GCC
> release in the future?

Yes.  When gcc 7.0 is release the bug will be fixed.
If you can convince whoever fixed the bug on trunk
(probably jerryd) to backport the patch, it will be
fixed on a future release on the 6-branch is done.
>From gcc-bugs-return-534027-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 23:12:59 2016
Return-Path: <gcc-bugs-return-534027-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 113774 invoked by alias); 10 Aug 2016 23:12:58 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 113378 invoked by uid 55); 10 Aug 2016 23:12:45 -0000
From: "amodra at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/71680] [7 Regression] ICE: Max. number of generated reload insns per insn is achieved (90) w/ -Os -mlra
Date: Wed, 10 Aug 2016 23:12:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: patch, ra
X-Bugzilla-Severity: normal
X-Bugzilla-Who: amodra at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: amodra at gmail dot com
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71680-4-PhchU9B5mB@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71680-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71680-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01363.txt.bz2
Content-length: 3423

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71680

--- Comment #17 from Alan Modra <amodra at gcc dot gnu.org> ---
Author: amodra
Date: Wed Aug 10 23:12:11 2016
New Revision: 239342

URL: https://gcc.gnu.org/viewcvs?rev=239342&root=gcc&view=rev
Log:
[LRA] Reload of slow mems

pr71680.c -m64 -O1 -mlra, ira output showing two problem insns.
(insn 7 5 26 3 (set (reg:SI 159 [ a ])
        (mem/c:SI (reg/f:DI 158) [1 a+0 S4 A8])) pr71680.c:13 464
{*movsi_internal1}
     (expr_list:REG_EQUIV (mem/c:SI (reg/f:DI 158) [1 a+0 S4 A8])
        (nil)))
(insn 26 7 27 3 (set (reg:DI 162)
        (unspec:DI [
                (fix:SI (subreg:SF (reg:SI 159 [ a ]) 0))
            ] UNSPEC_FCTIWZ)) pr71680.c:13 372 {fctiwz_sf}
     (expr_list:REG_DEAD (reg:SI 159 [ a ])
        (nil)))
Insn 26 requires that reg 159 be of class FLOAT_REGS.

first lra action:
deleting insn with uid = 7.
Changing pseudo 159 in operand 1 of insn 26 on equiv [r158:DI]
      Creating newreg=164, assigning class ALL_REGS to subreg reg r164
   26: r162:DI=unspec[fix(r164:SI#0)] 7
      REG_DEAD r159:SI
    Inserting subreg reload before:
   30: r164:SI=[r158:DI]
[snip]
      Change to class FLOAT_REGS for r164

Well, that didn't do much.  lra tried the equiv mem, found that didn't
work, and had to reload.  Effectively getting back to the two original
insns but r159 replaced with r164.  simplify_operand_subreg did not do
anything in this case because SLOW_UNALIGNED_ACCESS was true (wrongly
for power8, but that's beside the point).  So now we have, using
abbreviated rtl notation:
r164:SI=[r158:DI]
r162:DI=unspec[fix(r164:SI)]
The problem here is that the first insn isn't valid, due to the rs6000
backend not supporting SImode in fprs, and r164 must be an fpr to make
the second insn valid.

next lra action:
      Creating newreg=165 from oldreg=164, assigning class GENERAL_REGS to r165
   30: r165:SI=[r158:DI]
    Inserting insn reload after:
   31: r164:SI=r165:SI
so now we have
r165:SI=[r158:DI]
r164:SI=r165:SI
r162:DI=unspec[fix(r164:SI)]

This ought to be good on power8, except for one little thing.
r165 is GENERAL_REGS so the first insn is good, a gpr load from mem.
r164 is FLOAT_REGS, making the last insn good, a fctiwz.
The second insn ought to be a sldi, mtvsrd, xscvspdpn combination, but
that is only supported for SFmode.  So lra continue on reloading the
second insn, but in vain because it never tries anything other than
SImode and as noted above, SImode is not valid in fprs.

What this patch does is arrange to emit the two reloads needed for the
SLOW_UNALIGNED_ACCESS case at once, moving the subreg to the second
insn in order to switch modes, producing:

r164:SI=[r158:DI]
r165:SF=r164:SI#0
r162:DI=unspec[fix(r165:SF)]

I've also tidied a couple of other things:
1) "old" is unnecessary as it duplicated "operand".
2) Rejecting mem subregs due to SLOW_UNALIGNED_ACCESS only makes sense
if the original mode was not slow.

        PR target/71680
        * lra-constraints.c (simplify_operand_subreg): Allow subreg
        mode for mem when SLOW_UNALIGNED_ACCESS if inner mode is also
        slow.  Emit two reloads for slow mem case, first loading in
        fast innermode, then converting to required mode.
testsuite/
        * gcc.target/powerpc/pr71680.c: New.

Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/lra-constraints.c
    trunk/gcc/testsuite/ChangeLog
>From gcc-bugs-return-534028-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 23:14:54 2016
Return-Path: <gcc-bugs-return-534028-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 117694 invoked by alias); 10 Aug 2016 23:14:54 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 117595 invoked by uid 48); 10 Aug 2016 23:14:41 -0000
From: "kanav at ov3u841 dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73390] New: CONATACT ZONEALARM ANTIVIRUS 1 800 681 7208 ZONEALARM TECH SUPPORT PHONE NUMBER
Date: Wed, 10 Aug 2016 23:14:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: lno
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: kanav at ov3u841 dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73390-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01364.txt.bz2
Content-length: 14313

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73390

            Bug ID: 73390
           Summary: CONATACT ZONEALARM ANTIVIRUS 1 800 681 7208 ZONEALARM
                    TECH SUPPORT PHONE NUMBER
           Product: gcc
           Version: lno
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: kanav at ov3u841 dot com
  Target Milestone: ---

CONATACT ZONEALARM ANTIVIRUS 1 800 681 7208 ZONEALARM TECH SUPPORT PHONE NUMBER


cow 1 800 681 7208 Zonealarm support phone number for helpline zonealarm
antivirus technical support number 
ZONEALARM helpline phone number@~1800-681-7208 ZONEALARM tech Support Number
zonealarm customer service phone number
ZONEALARM Security contact Number +1800-6817208**zonealarm support phone number
usa+1-800-681-7208) Technical support number
CANADA+1800-681-7208 zonealarm Technical Support
USA-1800-681-7208 contact zonealarm customer service phone number
AUS-1-800-681-7208 phone number for ZONEALARM customer service
UK-800-810-7208 phone number for zonealarm technical support
1-800-681-7208 phone number for zonealarm customer service
phone number for zonealarm technical support
phone number for ZONEALARM security
zonealarm customer care phone number
zonealarm customer service billing
zonealarm customer service eantivirus address
zonealarm customer service live chat
zonealarm customer service telephone number
zonealarm customer support usa phone number
zonealarm help desk support phone number free in usa
zonealarm phone number customer service us
zonealarm phone number support
zonealarm support phone number
zonealarm tech support phone number free in usa
zonealarm tech support phone number
zonealarm technical support customer service
zonealarm technical support number
zonealarm telephone number
zonealarm toll free customer care number
zonealarm toll free number in usa
zonealarm contact phone number in usa
zonealarm customer service number
zonealarm customer service phone number
zonealarm customer service telephone number
zonealarm customer support number
zonealarm customer support phone number
zonealarm customer support phone number
zonealarm help desk phone number in usa
zonealarm phone number
zonealarm phone number support for technical issue in usa
zonealarm support phone number
zonealarm technical support help desk phone number
zonealarm technical support number
zonealarm technical support phone number
ZONEALARM customer service number
ZONEALARM customer service telephone number
ZONEALARM customer services eantivirus
ZONEALARM customer support eantivirus address
ZONEALARM customer support number
ZONEALARM customer support phone number
ZONEALARM customer service phone number
ZONEALARM internet security contact phone number
ZONEALARM internet security customer service phone number
ZONEALARM internet security phone number
ZONEALARM internet security help phone number
ZONEALARM internet security phone number in usa
ZONEALARM internet security support phone number
ZONEALARM internet security technical support
ZONEALARM phone number customer service
ZONEALARM phone numbers customer support
ZONEALARM phone support number
ZONEALARM security contact phone number
ZONEALARM security phone number customer service
ZONEALARM security support phone number
ZONEALARM support contact number
ZONEALARM support eantivirus address
ZONEALARM support phone number
ZONEALARM support telephone number
ZONEALARM support telephone number usa
ZONEALARM support telephone number
ZONEALARM tech support number
ZONEALARM tech support phone number
ZONEALARM tech support phone number free
ZONEALARM technical support phone number
ZONEALARM technical support cutomer phone number
ZONEALARM technical support phone number
ZONEALARM technical support number free in usa
ZONEALARM technical support number toll free number
ZONEALARM technical support phone number
ZONEALARM technologies phone number
ZONEALARM telephone support number
zonealarm customer support phone number
zonealarm customer service phone number
ZONEALARM customer support phone number
ZONEALARM phone number customer service
ZONEALARM technical support telephone number
contact zonealarm customer service phone number
customer service number for zonealarm
phone number for zonealarm
phone number for zonealarm customer service
phone number for zonealarm support
phone number for ZONEALARM customer service
phone number for ZONEALARM customer service
phone number for ZONEALARM customer support
phone number for ZONEALARM tech support
phone number zonealarm customer service
zonealarm customer service number
zonealarm customer service phone
zonealarm customer service phone number
zonealarm customer service phone number us
zonealarm customer service telephone number
zonealarm customer support
zonealarm customer support number
zonealarm phone number customer service us
zonealarm phone number support
zonealarm phone support
zonealarm phone support number
zonealarm support phone number
zonealarm tech support phone number
zonealarm technical support
zonealarm technical support number
zonealarm technical support phone number
ZONEALARM customer service phone number
ZONEALARM customer support phone number
ZONEALARM helpline phone number
ZONEALARM internet security customer service
ZONEALARM internet security customer service phone number
ZONEALARM internet security help phone number
ZONEALARM internet security phone number customer service
ZONEALARM phone number customer service
ZONEALARM phone number customer support
ZONEALARM security customer service phone number
ZONEALARM security phone number customer service
ZONEALARM support phone number
ZONEALARM support telephone number
ZONEALARM tech support number
ZONEALARM tech support phone number
ZONEALARM technical support
ZONEALARM technical support number
ZONEALARM technical support phone number
zonealarm customer support phone number
zonealarm phone number customer service
zonealarm tech support number
ZONEALARM customer service phone number
ZONEALARM customer service phone numbers
ZONEALARM internet security technical support
ZONEALARM tech support phone number us
ZONEALARM technical support telephone number
contact zonealarm
contact ZONEALARM by phone
contact ZONEALARM customer service
contact zonealarm customer service phone number
contactzonealarm tech support usa
customer service ZONEALARM phone number
download ZONEALARM titanium
dri ZONEALARM customer service number
dri ZONEALARM customer service phone number
dri ZONEALARM phone number
how to contact ZONEALARM by eantivirus
how to delete ZONEALARM from mac
micro trend customer service
zonealarm customer service number
phone number for ZONEALARM customer service
phone number forZONEALARM customer service
phone number forZONEALARM customer support
phone number forZONEALARM tech support
phone number forZONEALARM technical support
phone number for zonealarm technical support
phone number for ZONEALARM security
phone number for ZONEALARM support
phone number for ZONEALARM technical support
phone number for zonealarm customer service
phone number for ZONEALARM customer service
remove ZONEALARM from mac
technical support for Printer ZONEALARM
telephone number forZONEALARM technical support
telephone zonealarm
zonealarm contact number
zonealarm customer care
zonealarm customer care number
zonealarm customer care number usa
zonealarm customer service
zonealarm customer service number :idea: :evil: :D :) :lol: :( :o :shock:
zonealarm customer service phone number
zonealarm customer service phone number usa
zonealarm customer service telephone number
zonealarm customer support
zonealarm customer support in usa
zonealarm customer support number
zonealarm customer support phone number
zonealarm for phone
zonealarm free Printer support
zonealarm help phone number
zonealarm helpline number
zonealarm online support
zonealarm phone
zonealarm phone number
zonealarm phone number in usa
zonealarm phone number usa
zonealarm phone support
zonealarm plus tech support
zonealarm protection
zonealarm support
zonealarm support number
zonealarm support phone number
zonealarm support services
zonealarm support telephone number
zonealarm tech support
zonealarm tech support phone number free in usa
zonealarm tech support number
zonealarm tech support phone number
zonealarm technical support
zonealarm technical support number
zonealarm technical support phone number
zonealarm toll free customer care number
zonealarm toll free number
zonealarm contact phone number in usa
zonealarm help desk phone number in usa
zonealarm phone number support for technical issue in usa
zonealarm support phone number
zonealarm technical support help desk phone number
zonealarm technical support phone number
ZONEALARM contact number
ZONEALARM contact number usa
ZONEALARM contact phone number
ZONEALARM contact support
ZONEALARM contact number usa
ZONEALARM contact phone number
ZONEALARM contact phone number usa
ZONEALARM customer & technical support
ZONEALARM customer care
ZONEALARM customer care center
ZONEALARM customer care eantivirus
ZONEALARM customer care number
ZONEALARM customer care number
ZONEALARM customer care number usa
ZONEALARM customer care number usa toll free
ZONEALARM customer care phone number usa
ZONEALARM customer care tchnical support
ZONEALARM customer care toll free
ZONEALARM customer care toll free number
ZONEALARM customer care usa
ZONEALARM customer help
ZONEALARM customer number
ZONEALARM customer portal
ZONEALARM customer service
ZONEALARM customer service billing
ZONEALARM customer service eantivirus address
ZONEALARM customer service number
ZONEALARM customer service phone
ZONEALARM customer service phone number
ZONEALARM customer service phone number us
ZONEALARM customer service phone number usa
ZONEALARM customer service reviews
ZONEALARM customer service telephone number
ZONEALARM customer service usa
ZONEALARM customer support
ZONEALARM customer support number
ZONEALARM customer support phone
ZONEALARM customer support phone number
ZONEALARM customer service number
ZONEALARM customer service number usa
ZONEALARM customer service phone number
ZONEALARM customer support number
ZONEALARM customer support phone number
ZONEALARM free phone support
ZONEALARM gold support phone number
ZONEALARM help desk phone number
ZONEALARM help phone number
ZONEALARM helpline
ZONEALARM helpline phone number
ZONEALARM hotline customer service phone number
ZONEALARM internet security customer service
ZONEALARM internet security phone number
ZONEALARM internet security phone number in usa
ZONEALARM lab usa customer service
ZONEALARM labs usa customer serviceZONEALARM
ZONEALARM phone number
ZONEALARM phone number customer service
ZONEALARM phone number support
ZONEALARM phone number tech support
ZONEALARM phone number technical support
ZONEALARM phone numbers customer support
ZONEALARM phone support
ZONEALARM phone support number
ZONEALARM phone number customer service
ZONEALARM phone number support
ZONEALARM phone number tech support
ZONEALARM phone number usa
ZONEALARM security contact phone number
ZONEALARM security phone number
ZONEALARM security support phone number
ZONEALARM software customer service
ZONEALARM software customer service number
ZONEALARM support center
ZONEALARM support contact number
ZONEALARM support eantivirus address
ZONEALARM support phone number
ZONEALARM support telephone number
ZONEALARM support number usa
ZONEALARM support phone number
ZONEALARM support phone number usa
ZONEALARM tech support
ZONEALARM tech support center
ZONEALARM tech support contact
ZONEALARM tech support number
ZONEALARM tech support number usa
ZONEALARM tech support phone
ZONEALARM tech support phone number
ZONEALARM tech support phone number free
ZONEALARM tech support number
ZONEALARM tech support number usa
ZONEALARM tech support phone number
ZONEALARM technical support
ZONEALARM technical support number
ZONEALARM technical support phone number
ZONEALARM technical support phone number usa
ZONEALARM technical support reviews
ZONEALARM technical support usa
ZONEALARM technical support phone number
ZONEALARM technical support number
ZONEALARM technical support number toll free number
ZONEALARM technical support number usa
ZONEALARM technical support phone number
ZONEALARM technical support phone number usa
ZONEALARM technologies phone number
ZONEALARM telephone number
ZONEALARM telephone support number
ZONEALARM toll free number
ZONEALARM toll free number usa
ZONEALARM usa customer care for tech support
ZONEALARM usa customer service
ZONEALARM usa phone number
zonealarm customer service phone number
zonealarm customer service phone number
zonealarm customer support phone number
zonealarm customer support phone number
zonealarm technical support number
ZONEALARM customer service phone number usa
ZONEALARM internet security support phone number
ZONEALARM.com customer service
zonealarm antispyware 2011
zonealarm customer support
zonealarm serial key
zonealarm serial number
zonealarm support
zonealarm technical support
ZONEALARM business support
ZONEALARM contact support
ZONEALARM customer care number
ZONEALARM customer service 800
ZONEALARM customer service number
ZONEALARM customer service phone number
ZONEALARM customer service telephone number
ZONEALARM customer support
ZONEALARM grentry non payment
ZONEALARM helpline support number
ZONEALARM internet security customer service
ZONEALARM internet security technical support
ZONEALARM oem customer service
ZONEALARM pc cillin technical support
ZONEALARM phone support
ZONEALARM removal tool download
ZONEALARM subscription renewal
ZONEALARM support contact
ZONEALARM support hotline
ZONEALARM support phone number
ZONEALARM tech support phone number
ZONEALARM technical support
ZONEALARM technical support chat
ZONEALARM technical support phone number
ZONEALARM technical support phone number usa
ZONEALARM telephone number
ZONEALARM titanium Printer
ZONEALARM titanium internet security
ZONEALARM titanium maximum
ZONEALARM titanium maximum security
ZONEALARM titanium problems
ZONEALARM titanium removal tool
ZONEALARM titanium reviews
ZONEALARM titanium support
ZONEALARM virus removal service
uninstall ZONEALARM smart surfing for mac
usa customer care number for zonealarm
>From gcc-bugs-return-534029-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 23:16:15 2016
Return-Path: <gcc-bugs-return-534029-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 128482 invoked by alias); 10 Aug 2016 23:16:15 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 127850 invoked by uid 48); 10 Aug 2016 23:16:02 -0000
From: "kanav at ov3u841 dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73400] New: CONATACT VIPRE ANTIVIRUS 1 800 681 7208 VIPRE TECH SUPPORT PHONE NUMBER
Date: Wed, 10 Aug 2016 23:16:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: hsa
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: kanav at ov3u841 dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73400-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01365.txt.bz2
Content-length: 12793

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73400

            Bug ID: 73400
           Summary: CONATACT VIPRE ANTIVIRUS 1 800 681 7208 VIPRE TECH
                    SUPPORT PHONE NUMBER
           Product: gcc
           Version: hsa
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: kanav at ov3u841 dot com
  Target Milestone: ---

CONATACT VIPRE ANTIVIRUS 1 800 681 7208 VIPRE TECH SUPPORT PHONE NUMBER


cow 1 800 681 7208 Vipre support phone number for helpline vipre antivirus
technical support number 
VIPRE helpline phone number@~1800-681-7208 VIPRE tech Support Number vipre
customer service phone number
VIPRE Security contact Number +1800-6817208**vipre support phone number
usa+1-800-681-7208) Technical support number
CANADA+1800-681-7208 vipre Technical Support
USA-1800-681-7208 contact vipre customer service phone number
AUS-1-800-681-7208 phone number for VIPRE customer service
UK-800-810-7208 phone number for vipre technical support
1-800-681-7208 phone number for vipre customer service
phone number for vipre technical support
phone number for VIPRE security
vipre customer care phone number
vipre customer service billing
vipre customer service eantivirus address
vipre customer service live chat
vipre customer service telephone number
vipre customer support usa phone number
vipre help desk support phone number free in usa
vipre phone number customer service us
vipre phone number support
vipre support phone number
vipre tech support phone number free in usa
vipre tech support phone number
vipre technical support customer service
vipre technical support number
vipre telephone number
vipre toll free customer care number
vipre toll free number in usa
vipre contact phone number in usa
vipre customer service number
vipre customer service phone number
vipre customer service telephone number
vipre customer support number
vipre customer support phone number
vipre customer support phone number
vipre help desk phone number in usa
vipre phone number
vipre phone number support for technical issue in usa
vipre support phone number
vipre technical support help desk phone number
vipre technical support number
vipre technical support phone number
VIPRE customer service number
VIPRE customer service telephone number
VIPRE customer services eantivirus
VIPRE customer support eantivirus address
VIPRE customer support number
VIPRE customer support phone number
VIPRE customer service phone number
VIPRE internet security contact phone number
VIPRE internet security customer service phone number
VIPRE internet security phone number
VIPRE internet security help phone number
VIPRE internet security phone number in usa
VIPRE internet security support phone number
VIPRE internet security technical support
VIPRE phone number customer service
VIPRE phone numbers customer support
VIPRE phone support number
VIPRE security contact phone number
VIPRE security phone number customer service
VIPRE security support phone number
VIPRE support contact number
VIPRE support eantivirus address
VIPRE support phone number
VIPRE support telephone number
VIPRE support telephone number usa
VIPRE support telephone number
VIPRE tech support number
VIPRE tech support phone number
VIPRE tech support phone number free
VIPRE technical support phone number
VIPRE technical support cutomer phone number
VIPRE technical support phone number
VIPRE technical support number free in usa
VIPRE technical support number toll free number
VIPRE technical support phone number
VIPRE technologies phone number
VIPRE telephone support number
vipre customer support phone number
vipre customer service phone number
VIPRE customer support phone number
VIPRE phone number customer service
VIPRE technical support telephone number
contact vipre customer service phone number
customer service number for vipre
phone number for vipre
phone number for vipre customer service
phone number for vipre support
phone number for VIPRE customer service
phone number for VIPRE customer service
phone number for VIPRE customer support
phone number for VIPRE tech support
phone number vipre customer service
vipre customer service number
vipre customer service phone
vipre customer service phone number
vipre customer service phone number us
vipre customer service telephone number
vipre customer support
vipre customer support number
vipre phone number customer service us
vipre phone number support
vipre phone support
vipre phone support number
vipre support phone number
vipre tech support phone number
vipre technical support
vipre technical support number
vipre technical support phone number
VIPRE customer service phone number
VIPRE customer support phone number
VIPRE helpline phone number
VIPRE internet security customer service
VIPRE internet security customer service phone number
VIPRE internet security help phone number
VIPRE internet security phone number customer service
VIPRE phone number customer service
VIPRE phone number customer support
VIPRE security customer service phone number
VIPRE security phone number customer service
VIPRE support phone number
VIPRE support telephone number
VIPRE tech support number
VIPRE tech support phone number
VIPRE technical support
VIPRE technical support number
VIPRE technical support phone number
vipre customer support phone number
vipre phone number customer service
vipre tech support number
VIPRE customer service phone number
VIPRE customer service phone numbers
VIPRE internet security technical support
VIPRE tech support phone number us
VIPRE technical support telephone number
contact vipre
contact VIPRE by phone
contact VIPRE customer service
contact vipre customer service phone number
contactvipre tech support usa
customer service VIPRE phone number
download VIPRE titanium
dri VIPRE customer service number
dri VIPRE customer service phone number
dri VIPRE phone number
how to contact VIPRE by eantivirus
how to delete VIPRE from mac
micro trend customer service
vipre customer service number
phone number for VIPRE customer service
phone number forVIPRE customer service
phone number forVIPRE customer support
phone number forVIPRE tech support
phone number forVIPRE technical support
phone number for vipre technical support
phone number for VIPRE security
phone number for VIPRE support
phone number for VIPRE technical support
phone number for vipre customer service
phone number for VIPRE customer service
remove VIPRE from mac
technical support for Printer VIPRE
telephone number forVIPRE technical support
telephone vipre
vipre contact number
vipre customer care
vipre customer care number
vipre customer care number usa
vipre customer service
vipre customer service number :idea: :evil: :D :) :lol: :( :o :shock:
vipre customer service phone number
vipre customer service phone number usa
vipre customer service telephone number
vipre customer support
vipre customer support in usa
vipre customer support number
vipre customer support phone number
vipre for phone
vipre free Printer support
vipre help phone number
vipre helpline number
vipre online support
vipre phone
vipre phone number
vipre phone number in usa
vipre phone number usa
vipre phone support
vipre plus tech support
vipre protection
vipre support
vipre support number
vipre support phone number
vipre support services
vipre support telephone number
vipre tech support
vipre tech support phone number free in usa
vipre tech support number
vipre tech support phone number
vipre technical support
vipre technical support number
vipre technical support phone number
vipre toll free customer care number
vipre toll free number
vipre contact phone number in usa
vipre help desk phone number in usa
vipre phone number support for technical issue in usa
vipre support phone number
vipre technical support help desk phone number
vipre technical support phone number
VIPRE contact number
VIPRE contact number usa
VIPRE contact phone number
VIPRE contact support
VIPRE contact number usa
VIPRE contact phone number
VIPRE contact phone number usa
VIPRE customer & technical support
VIPRE customer care
VIPRE customer care center
VIPRE customer care eantivirus
VIPRE customer care number
VIPRE customer care number
VIPRE customer care number usa
VIPRE customer care number usa toll free
VIPRE customer care phone number usa
VIPRE customer care tchnical support
VIPRE customer care toll free
VIPRE customer care toll free number
VIPRE customer care usa
VIPRE customer help
VIPRE customer number
VIPRE customer portal
VIPRE customer service
VIPRE customer service billing
VIPRE customer service eantivirus address
VIPRE customer service number
VIPRE customer service phone
VIPRE customer service phone number
VIPRE customer service phone number us
VIPRE customer service phone number usa
VIPRE customer service reviews
VIPRE customer service telephone number
VIPRE customer service usa
VIPRE customer support
VIPRE customer support number
VIPRE customer support phone
VIPRE customer support phone number
VIPRE customer service number
VIPRE customer service number usa
VIPRE customer service phone number
VIPRE customer support number
VIPRE customer support phone number
VIPRE free phone support
VIPRE gold support phone number
VIPRE help desk phone number
VIPRE help phone number
VIPRE helpline
VIPRE helpline phone number
VIPRE hotline customer service phone number
VIPRE internet security customer service
VIPRE internet security phone number
VIPRE internet security phone number in usa
VIPRE lab usa customer service
VIPRE labs usa customer serviceVIPRE
VIPRE phone number
VIPRE phone number customer service
VIPRE phone number support
VIPRE phone number tech support
VIPRE phone number technical support
VIPRE phone numbers customer support
VIPRE phone support
VIPRE phone support number
VIPRE phone number customer service
VIPRE phone number support
VIPRE phone number tech support
VIPRE phone number usa
VIPRE security contact phone number
VIPRE security phone number
VIPRE security support phone number
VIPRE software customer service
VIPRE software customer service number
VIPRE support center
VIPRE support contact number
VIPRE support eantivirus address
VIPRE support phone number
VIPRE support telephone number
VIPRE support number usa
VIPRE support phone number
VIPRE support phone number usa
VIPRE tech support
VIPRE tech support center
VIPRE tech support contact
VIPRE tech support number
VIPRE tech support number usa
VIPRE tech support phone
VIPRE tech support phone number
VIPRE tech support phone number free
VIPRE tech support number
VIPRE tech support number usa
VIPRE tech support phone number
VIPRE technical support
VIPRE technical support number
VIPRE technical support phone number
VIPRE technical support phone number usa
VIPRE technical support reviews
VIPRE technical support usa
VIPRE technical support phone number
VIPRE technical support number
VIPRE technical support number toll free number
VIPRE technical support number usa
VIPRE technical support phone number
VIPRE technical support phone number usa
VIPRE technologies phone number
VIPRE telephone number
VIPRE telephone support number
VIPRE toll free number
VIPRE toll free number usa
VIPRE usa customer care for tech support
VIPRE usa customer service
VIPRE usa phone number
vipre customer service phone number
vipre customer service phone number
vipre customer support phone number
vipre customer support phone number
vipre technical support number
VIPRE customer service phone number usa
VIPRE internet security support phone number
VIPRE.com customer service
vipre antispyware 2011
vipre customer support
vipre serial key
vipre serial number
vipre support
vipre technical support
VIPRE business support
VIPRE contact support
VIPRE customer care number
VIPRE customer service 800
VIPRE customer service number
VIPRE customer service phone number
VIPRE customer service telephone number
VIPRE customer support
VIPRE grentry non payment
VIPRE helpline support number
VIPRE internet security customer service
VIPRE internet security technical support
VIPRE oem customer service
VIPRE pc cillin technical support
VIPRE phone support
VIPRE removal tool download
VIPRE subscription renewal
VIPRE support contact
VIPRE support hotline
VIPRE support phone number
VIPRE tech support phone number
VIPRE technical support
VIPRE technical support chat
VIPRE technical support phone number
VIPRE technical support phone number usa
VIPRE telephone number
VIPRE titanium Printer
VIPRE titanium internet security
VIPRE titanium maximum
VIPRE titanium maximum security
VIPRE titanium problems
VIPRE titanium removal tool
VIPRE titanium reviews
VIPRE titanium support
VIPRE virus removal service
uninstall VIPRE smart surfing for mac
usa customer care number for vipre
>From gcc-bugs-return-534030-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 23:17:27 2016
Return-Path: <gcc-bugs-return-534030-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 7095 invoked by alias); 10 Aug 2016 23:17:26 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 6095 invoked by uid 48); 10 Aug 2016 23:17:13 -0000
From: "kanav at ov3u841 dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73401] New: CONATACT MALWAREBYTES ANTIVIRUS 1 800 681 7208 MALWAREBYTES TECH SUPPORT PHONE NUMBER
Date: Wed, 10 Aug 2016 23:17:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: c++-concepts
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: kanav at ov3u841 dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73401-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01366.txt.bz2
Content-length: 15461

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73401

            Bug ID: 73401
           Summary: CONATACT MALWAREBYTES ANTIVIRUS 1 800 681 7208
                    MALWAREBYTES TECH SUPPORT PHONE NUMBER
           Product: gcc
           Version: c++-concepts
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: kanav at ov3u841 dot com
  Target Milestone: ---

CONATACT MALWAREBYTES ANTIVIRUS 1 800 681 7208 MALWAREBYTES TECH SUPPORT PHONE
NUMBER


cow 1 800 681 7208 Malwarebytes support phone number for helpline malwarebytes
antivirus technical support number 
MALWAREBYTES helpline phone number@~1800-681-7208 MALWAREBYTES tech Support
Number malwarebytes customer service phone number
MALWAREBYTES Security contact Number +1800-6817208**malwarebytes support phone
number
usa+1-800-681-7208) Technical support number
CANADA+1800-681-7208 malwarebytes Technical Support
USA-1800-681-7208 contact malwarebytes customer service phone number
AUS-1-800-681-7208 phone number for MALWAREBYTES customer service
UK-800-810-7208 phone number for malwarebytes technical support
1-800-681-7208 phone number for malwarebytes customer service
phone number for malwarebytes technical support
phone number for MALWAREBYTES security
malwarebytes customer care phone number
malwarebytes customer service billing
malwarebytes customer service eantivirus address
malwarebytes customer service live chat
malwarebytes customer service telephone number
malwarebytes customer support usa phone number
malwarebytes help desk support phone number free in usa
malwarebytes phone number customer service us
malwarebytes phone number support
malwarebytes support phone number
malwarebytes tech support phone number free in usa
malwarebytes tech support phone number
malwarebytes technical support customer service
malwarebytes technical support number
malwarebytes telephone number
malwarebytes toll free customer care number
malwarebytes toll free number in usa
malwarebytes contact phone number in usa
malwarebytes customer service number
malwarebytes customer service phone number
malwarebytes customer service telephone number
malwarebytes customer support number
malwarebytes customer support phone number
malwarebytes customer support phone number
malwarebytes help desk phone number in usa
malwarebytes phone number
malwarebytes phone number support for technical issue in usa
malwarebytes support phone number
malwarebytes technical support help desk phone number
malwarebytes technical support number
malwarebytes technical support phone number
MALWAREBYTES customer service number
MALWAREBYTES customer service telephone number
MALWAREBYTES customer services eantivirus
MALWAREBYTES customer support eantivirus address
MALWAREBYTES customer support number
MALWAREBYTES customer support phone number
MALWAREBYTES customer service phone number
MALWAREBYTES internet security contact phone number
MALWAREBYTES internet security customer service phone number
MALWAREBYTES internet security phone number
MALWAREBYTES internet security help phone number
MALWAREBYTES internet security phone number in usa
MALWAREBYTES internet security support phone number
MALWAREBYTES internet security technical support
MALWAREBYTES phone number customer service
MALWAREBYTES phone numbers customer support
MALWAREBYTES phone support number
MALWAREBYTES security contact phone number
MALWAREBYTES security phone number customer service
MALWAREBYTES security support phone number
MALWAREBYTES support contact number
MALWAREBYTES support eantivirus address
MALWAREBYTES support phone number
MALWAREBYTES support telephone number
MALWAREBYTES support telephone number usa
MALWAREBYTES support telephone number
MALWAREBYTES tech support number
MALWAREBYTES tech support phone number
MALWAREBYTES tech support phone number free
MALWAREBYTES technical support phone number
MALWAREBYTES technical support cutomer phone number
MALWAREBYTES technical support phone number
MALWAREBYTES technical support number free in usa
MALWAREBYTES technical support number toll free number
MALWAREBYTES technical support phone number
MALWAREBYTES technologies phone number
MALWAREBYTES telephone support number
malwarebytes customer support phone number
malwarebytes customer service phone number
MALWAREBYTES customer support phone number
MALWAREBYTES phone number customer service
MALWAREBYTES technical support telephone number
contact malwarebytes customer service phone number
customer service number for malwarebytes
phone number for malwarebytes
phone number for malwarebytes customer service
phone number for malwarebytes support
phone number for MALWAREBYTES customer service
phone number for MALWAREBYTES customer service
phone number for MALWAREBYTES customer support
phone number for MALWAREBYTES tech support
phone number malwarebytes customer service
malwarebytes customer service number
malwarebytes customer service phone
malwarebytes customer service phone number
malwarebytes customer service phone number us
malwarebytes customer service telephone number
malwarebytes customer support
malwarebytes customer support number
malwarebytes phone number customer service us
malwarebytes phone number support
malwarebytes phone support
malwarebytes phone support number
malwarebytes support phone number
malwarebytes tech support phone number
malwarebytes technical support
malwarebytes technical support number
malwarebytes technical support phone number
MALWAREBYTES customer service phone number
MALWAREBYTES customer support phone number
MALWAREBYTES helpline phone number
MALWAREBYTES internet security customer service
MALWAREBYTES internet security customer service phone number
MALWAREBYTES internet security help phone number
MALWAREBYTES internet security phone number customer service
MALWAREBYTES phone number customer service
MALWAREBYTES phone number customer support
MALWAREBYTES security customer service phone number
MALWAREBYTES security phone number customer service
MALWAREBYTES support phone number
MALWAREBYTES support telephone number
MALWAREBYTES tech support number
MALWAREBYTES tech support phone number
MALWAREBYTES technical support
MALWAREBYTES technical support number
MALWAREBYTES technical support phone number
malwarebytes customer support phone number
malwarebytes phone number customer service
malwarebytes tech support number
MALWAREBYTES customer service phone number
MALWAREBYTES customer service phone numbers
MALWAREBYTES internet security technical support
MALWAREBYTES tech support phone number us
MALWAREBYTES technical support telephone number
contact malwarebytes
contact MALWAREBYTES by phone
contact MALWAREBYTES customer service
contact malwarebytes customer service phone number
contactmalwarebytes tech support usa
customer service MALWAREBYTES phone number
download MALWAREBYTES titanium
dri MALWAREBYTES customer service number
dri MALWAREBYTES customer service phone number
dri MALWAREBYTES phone number
how to contact MALWAREBYTES by eantivirus
how to delete MALWAREBYTES from mac
micro trend customer service
malwarebytes customer service number
phone number for MALWAREBYTES customer service
phone number forMALWAREBYTES customer service
phone number forMALWAREBYTES customer support
phone number forMALWAREBYTES tech support
phone number forMALWAREBYTES technical support
phone number for malwarebytes technical support
phone number for MALWAREBYTES security
phone number for MALWAREBYTES support
phone number for MALWAREBYTES technical support
phone number for malwarebytes customer service
phone number for MALWAREBYTES customer service
remove MALWAREBYTES from mac
technical support for Printer MALWAREBYTES
telephone number forMALWAREBYTES technical support
telephone malwarebytes
malwarebytes contact number
malwarebytes customer care
malwarebytes customer care number
malwarebytes customer care number usa
malwarebytes customer service
malwarebytes customer service number :idea: :evil: :D :) :lol: :( :o :shock:
malwarebytes customer service phone number
malwarebytes customer service phone number usa
malwarebytes customer service telephone number
malwarebytes customer support
malwarebytes customer support in usa
malwarebytes customer support number
malwarebytes customer support phone number
malwarebytes for phone
malwarebytes free Printer support
malwarebytes help phone number
malwarebytes helpline number
malwarebytes online support
malwarebytes phone
malwarebytes phone number
malwarebytes phone number in usa
malwarebytes phone number usa
malwarebytes phone support
malwarebytes plus tech support
malwarebytes protection
malwarebytes support
malwarebytes support number
malwarebytes support phone number
malwarebytes support services
malwarebytes support telephone number
malwarebytes tech support
malwarebytes tech support phone number free in usa
malwarebytes tech support number
malwarebytes tech support phone number
malwarebytes technical support
malwarebytes technical support number
malwarebytes technical support phone number
malwarebytes toll free customer care number
malwarebytes toll free number
malwarebytes contact phone number in usa
malwarebytes help desk phone number in usa
malwarebytes phone number support for technical issue in usa
malwarebytes support phone number
malwarebytes technical support help desk phone number
malwarebytes technical support phone number
MALWAREBYTES contact number
MALWAREBYTES contact number usa
MALWAREBYTES contact phone number
MALWAREBYTES contact support
MALWAREBYTES contact number usa
MALWAREBYTES contact phone number
MALWAREBYTES contact phone number usa
MALWAREBYTES customer & technical support
MALWAREBYTES customer care
MALWAREBYTES customer care center
MALWAREBYTES customer care eantivirus
MALWAREBYTES customer care number
MALWAREBYTES customer care number
MALWAREBYTES customer care number usa
MALWAREBYTES customer care number usa toll free
MALWAREBYTES customer care phone number usa
MALWAREBYTES customer care tchnical support
MALWAREBYTES customer care toll free
MALWAREBYTES customer care toll free number
MALWAREBYTES customer care usa
MALWAREBYTES customer help
MALWAREBYTES customer number
MALWAREBYTES customer portal
MALWAREBYTES customer service
MALWAREBYTES customer service billing
MALWAREBYTES customer service eantivirus address
MALWAREBYTES customer service number
MALWAREBYTES customer service phone
MALWAREBYTES customer service phone number
MALWAREBYTES customer service phone number us
MALWAREBYTES customer service phone number usa
MALWAREBYTES customer service reviews
MALWAREBYTES customer service telephone number
MALWAREBYTES customer service usa
MALWAREBYTES customer support
MALWAREBYTES customer support number
MALWAREBYTES customer support phone
MALWAREBYTES customer support phone number
MALWAREBYTES customer service number
MALWAREBYTES customer service number usa
MALWAREBYTES customer service phone number
MALWAREBYTES customer support number
MALWAREBYTES customer support phone number
MALWAREBYTES free phone support
MALWAREBYTES gold support phone number
MALWAREBYTES help desk phone number
MALWAREBYTES help phone number
MALWAREBYTES helpline
MALWAREBYTES helpline phone number
MALWAREBYTES hotline customer service phone number
MALWAREBYTES internet security customer service
MALWAREBYTES internet security phone number
MALWAREBYTES internet security phone number in usa
MALWAREBYTES lab usa customer service
MALWAREBYTES labs usa customer serviceMALWAREBYTES
MALWAREBYTES phone number
MALWAREBYTES phone number customer service
MALWAREBYTES phone number support
MALWAREBYTES phone number tech support
MALWAREBYTES phone number technical support
MALWAREBYTES phone numbers customer support
MALWAREBYTES phone support
MALWAREBYTES phone support number
MALWAREBYTES phone number customer service
MALWAREBYTES phone number support
MALWAREBYTES phone number tech support
MALWAREBYTES phone number usa
MALWAREBYTES security contact phone number
MALWAREBYTES security phone number
MALWAREBYTES security support phone number
MALWAREBYTES software customer service
MALWAREBYTES software customer service number
MALWAREBYTES support center
MALWAREBYTES support contact number
MALWAREBYTES support eantivirus address
MALWAREBYTES support phone number
MALWAREBYTES support telephone number
MALWAREBYTES support number usa
MALWAREBYTES support phone number
MALWAREBYTES support phone number usa
MALWAREBYTES tech support
MALWAREBYTES tech support center
MALWAREBYTES tech support contact
MALWAREBYTES tech support number
MALWAREBYTES tech support number usa
MALWAREBYTES tech support phone
MALWAREBYTES tech support phone number
MALWAREBYTES tech support phone number free
MALWAREBYTES tech support number
MALWAREBYTES tech support number usa
MALWAREBYTES tech support phone number
MALWAREBYTES technical support
MALWAREBYTES technical support number
MALWAREBYTES technical support phone number
MALWAREBYTES technical support phone number usa
MALWAREBYTES technical support reviews
MALWAREBYTES technical support usa
MALWAREBYTES technical support phone number
MALWAREBYTES technical support number
MALWAREBYTES technical support number toll free number
MALWAREBYTES technical support number usa
MALWAREBYTES technical support phone number
MALWAREBYTES technical support phone number usa
MALWAREBYTES technologies phone number
MALWAREBYTES telephone number
MALWAREBYTES telephone support number
MALWAREBYTES toll free number
MALWAREBYTES toll free number usa
MALWAREBYTES usa customer care for tech support
MALWAREBYTES usa customer service
MALWAREBYTES usa phone number
malwarebytes customer service phone number
malwarebytes customer service phone number
malwarebytes customer support phone number
malwarebytes customer support phone number
malwarebytes technical support number
MALWAREBYTES customer service phone number usa
MALWAREBYTES internet security support phone number
MALWAREBYTES.com customer service
malwarebytes antispyware 2011
malwarebytes customer support
malwarebytes serial key
malwarebytes serial number
malwarebytes support
malwarebytes technical support
MALWAREBYTES business support
MALWAREBYTES contact support
MALWAREBYTES customer care number
MALWAREBYTES customer service 800
MALWAREBYTES customer service number
MALWAREBYTES customer service phone number
MALWAREBYTES customer service telephone number
MALWAREBYTES customer support
MALWAREBYTES grentry non payment
MALWAREBYTES helpline support number
MALWAREBYTES internet security customer service
MALWAREBYTES internet security technical support
MALWAREBYTES oem customer service
MALWAREBYTES pc cillin technical support
MALWAREBYTES phone support
MALWAREBYTES removal tool download
MALWAREBYTES subscription renewal
MALWAREBYTES support contact
MALWAREBYTES support hotline
MALWAREBYTES support phone number
MALWAREBYTES tech support phone number
MALWAREBYTES technical support
MALWAREBYTES technical support chat
MALWAREBYTES technical support phone number
MALWAREBYTES technical support phone number usa
MALWAREBYTES telephone number
MALWAREBYTES titanium Printer
MALWAREBYTES titanium internet security
MALWAREBYTES titanium maximum
MALWAREBYTES titanium maximum security
MALWAREBYTES titanium problems
MALWAREBYTES titanium removal tool
MALWAREBYTES titanium reviews
MALWAREBYTES titanium support
MALWAREBYTES virus removal service
uninstall MALWAREBYTES smart surfing for mac
usa customer care number for malwarebytes
>From gcc-bugs-return-534031-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 23:18:55 2016
Return-Path: <gcc-bugs-return-534031-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 12193 invoked by alias); 10 Aug 2016 23:18:54 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 11218 invoked by uid 48); 10 Aug 2016 23:18:37 -0000
From: "amodra at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/71680] [7 Regression] ICE: Max. number of generated reload insns per insn is achieved (90) w/ -Os -mlra
Date: Wed, 10 Aug 2016 23:18:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: patch, ra
X-Bugzilla-Severity: normal
X-Bugzilla-Who: amodra at gmail dot com
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: amodra at gmail dot com
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-71680-4-aQqoM7bMCr@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71680-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71680-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01367.txt.bz2
Content-length: 460

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71680

Alan Modra <amodra at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #18 from Alan Modra <amodra at gmail dot com> ---
Fixed, and the missing testcase went in rev 239343
>From gcc-bugs-return-534032-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 23:20:16 2016
Return-Path: <gcc-bugs-return-534032-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 14051 invoked by alias); 10 Aug 2016 23:20:16 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 13774 invoked by uid 48); 10 Aug 2016 23:20:03 -0000
From: "sdsdsaa at fleckens dot hu" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: =?UTF-8?B?W0J1ZyBib2VobS1nYy83MzQwM10gTmV3OiAkJCRTZXQgV2lmaSBSb3V0ZXIg?= =?UTF-8?B?cGFzc3dvcmQgKDEtODQ0LTg4OS04NDQwKSQkJCQkJOKYvE5ldGdlYXIgUm91?= =?UTF-8?B?dGVyIHRlY2ggc3VwcG9ydCBwaG9uZSBudW1iZXI=?Date: Wed, 10 Aug 2016 23:20:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: boehm-gc
X-Bugzilla-Version: tree-ssa
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: sdsdsaa at fleckens dot hu
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73403-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01368.txt.bz2
Content-length: 5181

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73403

            Bug ID: 73403
           Summary: $$$Set Wifi Router password
                    (1-844-889-8440)$$$$$$☼Netgear Router tech support
                    phone number
           Product: gcc
           Version: tree-ssa
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: boehm-gc
          Assignee: unassigned at gcc dot gnu.org
          Reporter: sdsdsaa at fleckens dot hu
  Target Milestone: ---

all router issue related to call this number
$$$Set Wifi Router password (1-844-889-8440)$$$$$$☼Netgear Router tech support
phone number

Help Desk Wifi 1-844-889-8440 Netgear Router Tech Support Number1.844.889.8440
Netgear Router Customer Service Number USA

MISSOURI Describe Wireless wifi Netgear Tech support Number MINNESOTA
@1-844-889-8440@ Netgear router tech support number, Netgear router customer
service number,Netgear wireless router tech support number USA Canada UK
Australia,Netgear Router Technical Support number, Netgear Router support phone
number @@@rv 18448898440++++ Netgear Router Support Phone number Netgear tech
support number +++18448898440+++ Netgear Router customer service phone number
Netgear technical support number 18448898440++ Netgear Router customer Care
phone number Netgear tech support number 18448898440++++ Netgear helpdesk
support phone number Netgear Customer support phone number 18448898440 Netgear
tech support number , Netgear tech support phone number , Netgear customer
support phone number here $$$##@@ Netgear tech support number 18448898440
Netgear Technical support number @@ Netgear support phone number 18448898440
Netgear customer service phone number Netgear customer c.a.r.e number Netgear
helpdesk phone number Netgear helpline phone number 1844+889+8440 Netgear
contact phone number 18448898440 Netgear tech support number , Netgear tech
support phone number , Netgear customer support phone number here $$$##@@
Netgear tech support number 18448898440 Netgear Technical support number @@
Netgear support phone number 18448898440 Netgear customer service phone number
Netgear customer c.a.r.e number Netgear helpdesk phone number Netgear helpline
phone number 1844+889+8440 Netgear contact phone number Netgear help number -
Netgear helpline number ; Netgear help phone number , Netgear helpline number ,
Netgear tech support tollfree number , Netgear support Tele phone number ,
Netgear tech support Tele phone number , Netgear tech support contact number ,
Netgear support contact number , Netgear Technical support contact number ,
Netgear support phone number , Netgear Router support phone number . Netgear
Router customer support phone number Netgear customer service number
18448898440 Netgear call center Netgear customer service Routeraddress Netgear
customer c.a.r.e no Netgear Router Technical support phone number 18448898440
Netgear Router tech support phone number 18448898440 Netgear Router customer
service phone number 18448898440 Netgear Technical support phone number
18448898440 symantec Technical support phone number 18448898440 Netgear
Technical support phone number 18448898440 Netgear customer service tele phone
number 18448898440 Netgear Router phone number 18448898440 Netgear Router
customer service phone number 18448898440 Netgear Router customer service
helpdesk Netgear Router phone number 18448898440 Netgear phone number
18448898440cancel subscription Netgear Technical support phone number
18448898440 Netgear 844 phone number 18448898440 snapdeal tollfree customer
c.a.r.e number 18448898440 sbi tollfree customer c.a.r.e number 18448898440
airtel tollfree customer c.a.r.e number 18448898440 hdfc tollfree customer
c.a.r.e number 18448898440 bsnl tollfree customer c.a.r.e number 18448898440
icici tollfree customer c.a.r.e number 18448898440 flipkart tollfree customer
c.a.r.e number 18448898440 vodafone tollfree customer c.a.r.e number
18448898440 Netgear Technical support phone number 18448898440 Netgear
Technical support number 18448898440 Netgear Technical support number
18448898440 symantec Technical support number 18448898440 Netgear Router
Technical support number 18448898440 Netgear locations Netgear online support
Netgear helpdesk phone number 18448898440 Netgear customer c.a.r.e Netgear tech
support phone number 18448898440 Netgear tech support phone number 18448898440
Netgear Router tech support phone number 18448898440 Netgear locations Netgear
helpdesk phone number 18448898440 service Netgear com Netgear login Netgear
Technical support phone number 18448898440 Netgear customer service Netgear
helpdesk phone number 18448898440 Netgear support tele phone number 18448898440
Netgear support phone number 18448898440 Netgear Router support phone number
18448898440 Netgear support phone number 18448898440 Netgear locations Netgear
customer service Netgear customer c.a.r.e Netgear helpdesk phone number
18448898440 Netgear customer support phone number 18448898440 Netgear customer
support phone number 18448898440 Netgear Router customer support phone number
18448898440
>From gcc-bugs-return-534033-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 23:20:58 2016
Return-Path: <gcc-bugs-return-534033-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 19639 invoked by alias); 10 Aug 2016 23:20:58 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 19543 invoked by uid 48); 10 Aug 2016 23:20:45 -0000
From: "kanav at ov3u841 dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73405] New: CONATACT SBCGLOBAL MAIL  1 800 681 7208 SBCGLOBAL TECH SUPPORT PHONE NUMBER
Date: Wed, 10 Aug 2016 23:20:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: tree-ssa
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: kanav at ov3u841 dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73405-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01369.txt.bz2
Content-length: 14282

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73405

            Bug ID: 73405
           Summary: CONATACT SBCGLOBAL MAIL  1 800 681 7208 SBCGLOBAL TECH
                    SUPPORT PHONE NUMBER
           Product: gcc
           Version: tree-ssa
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: kanav at ov3u841 dot com
  Target Milestone: ---

CONATACT SBCGLOBAL MAIL  1 800 681 7208 SBCGLOBAL TECH SUPPORT PHONE NUMBER


cow 1 800 681 7208 Sbcglobal support phone number for helpline Sbcglobal mail 
technical support number 
SBCGLOBAL helpline phone number@~1800-681-7208 SBCGLOBAL tech Support Number
Sbcglobal customer service phone number
SBCGLOBAL Security contact Number +1800-6817208**Sbcglobal support phone number
usa+1-800-681-7208) Technical support number
CANADA+1800-681-7208 Sbcglobal Technical Support
USA-1800-681-7208 contact Sbcglobal customer service phone number
AUS-1-800-681-7208 phone number for SBCGLOBAL customer service
UK-800-810-7208 phone number for Sbcglobal technical support
1-800-681-7208 phone number for Sbcglobal customer service
phone number for Sbcglobal technical support
phone number for SBCGLOBAL security
Sbcglobal customer care phone number
Sbcglobal customer service billing
Sbcglobal customer service email  address
Sbcglobal customer service live chat
Sbcglobal customer service telephone number
Sbcglobal customer support usa phone number
Sbcglobal help desk support phone number free in usa
Sbcglobal phone number customer service us
Sbcglobal phone number support
Sbcglobal support phone number
Sbcglobal tech support phone number free in usa
Sbcglobal tech support phone number
Sbcglobal technical support customer service
Sbcglobal technical support number
Sbcglobal telephone number
Sbcglobal toll free customer care number
Sbcglobal toll free number in usa
Sbcglobal contact phone number in usa
Sbcglobal customer service number
Sbcglobal customer service phone number
Sbcglobal customer service telephone number
Sbcglobal customer support number
Sbcglobal customer support phone number
Sbcglobal customer support phone number
Sbcglobal help desk phone number in usa
Sbcglobal phone number
Sbcglobal phone number support for technical issue in usa
Sbcglobal support phone number
Sbcglobal technical support help desk phone number
Sbcglobal technical support number
Sbcglobal technical support phone number
SBCGLOBAL customer service number
SBCGLOBAL customer service telephone number
SBCGLOBAL customer services email 
SBCGLOBAL customer support email  address
SBCGLOBAL customer support number
SBCGLOBAL customer support phone number
SBCGLOBAL customer service phone number
SBCGLOBAL internet security contact phone number
SBCGLOBAL internet security customer service phone number
SBCGLOBAL internet security phone number
SBCGLOBAL internet security help phone number
SBCGLOBAL internet security phone number in usa
SBCGLOBAL internet security support phone number
SBCGLOBAL internet security technical support
SBCGLOBAL phone number customer service
SBCGLOBAL phone numbers customer support
SBCGLOBAL phone support number
SBCGLOBAL security contact phone number
SBCGLOBAL security phone number customer service
SBCGLOBAL security support phone number
SBCGLOBAL support contact number
SBCGLOBAL support email  address
SBCGLOBAL support phone number
SBCGLOBAL support telephone number
SBCGLOBAL support telephone number usa
SBCGLOBAL support telephone number
SBCGLOBAL tech support number
SBCGLOBAL tech support phone number
SBCGLOBAL tech support phone number free
SBCGLOBAL technical support phone number
SBCGLOBAL technical support cutomer phone number
SBCGLOBAL technical support phone number
SBCGLOBAL technical support number free in usa
SBCGLOBAL technical support number toll free number
SBCGLOBAL technical support phone number
SBCGLOBAL technologies phone number
SBCGLOBAL telephone support number
Sbcglobal customer support phone number
Sbcglobal customer service phone number
SBCGLOBAL customer support phone number
SBCGLOBAL phone number customer service
SBCGLOBAL technical support telephone number
contact Sbcglobal customer service phone number
customer service number for Sbcglobal
phone number for Sbcglobal
phone number for Sbcglobal customer service
phone number for Sbcglobal support
phone number for SBCGLOBAL customer service
phone number for SBCGLOBAL customer service
phone number for SBCGLOBAL customer support
phone number for SBCGLOBAL tech support
phone number Sbcglobal customer service
Sbcglobal customer service number
Sbcglobal customer service phone
Sbcglobal customer service phone number
Sbcglobal customer service phone number us
Sbcglobal customer service telephone number
Sbcglobal customer support
Sbcglobal customer support number
Sbcglobal phone number customer service us
Sbcglobal phone number support
Sbcglobal phone support
Sbcglobal phone support number
Sbcglobal support phone number
Sbcglobal tech support phone number
Sbcglobal technical support
Sbcglobal technical support number
Sbcglobal technical support phone number
SBCGLOBAL customer service phone number
SBCGLOBAL customer support phone number
SBCGLOBAL helpline phone number
SBCGLOBAL internet security customer service
SBCGLOBAL internet security customer service phone number
SBCGLOBAL internet security help phone number
SBCGLOBAL internet security phone number customer service
SBCGLOBAL phone number customer service
SBCGLOBAL phone number customer support
SBCGLOBAL security customer service phone number
SBCGLOBAL security phone number customer service
SBCGLOBAL support phone number
SBCGLOBAL support telephone number
SBCGLOBAL tech support number
SBCGLOBAL tech support phone number
SBCGLOBAL technical support
SBCGLOBAL technical support number
SBCGLOBAL technical support phone number
Sbcglobal customer support phone number
Sbcglobal phone number customer service
Sbcglobal tech support number
SBCGLOBAL customer service phone number
SBCGLOBAL customer service phone numbers
SBCGLOBAL internet security technical support
SBCGLOBAL tech support phone number us
SBCGLOBAL technical support telephone number
contact Sbcglobal
contact SBCGLOBAL by phone
contact SBCGLOBAL customer service
contact Sbcglobal customer service phone number
contactSbcglobal tech support usa
customer service SBCGLOBAL phone number
download SBCGLOBAL titanium
dri SBCGLOBAL customer service number
dri SBCGLOBAL customer service phone number
dri SBCGLOBAL phone number
how to contact SBCGLOBAL by email 
how to delete SBCGLOBAL from mac
micro trend customer service
Sbcglobal customer service number
phone number for SBCGLOBAL customer service
phone number forSBCGLOBAL customer service
phone number forSBCGLOBAL customer support
phone number forSBCGLOBAL tech support
phone number forSBCGLOBAL technical support
phone number for Sbcglobal technical support
phone number for SBCGLOBAL security
phone number for SBCGLOBAL support
phone number for SBCGLOBAL technical support
phone number for Sbcglobal customer service
phone number for SBCGLOBAL customer service
remove SBCGLOBAL from mac
technical support for Printer SBCGLOBAL
telephone number forSBCGLOBAL technical support
telephone Sbcglobal
Sbcglobal contact number
Sbcglobal customer care
Sbcglobal customer care number
Sbcglobal customer care number usa
Sbcglobal customer service
Sbcglobal customer service number :idea: :evil: :D :) :lol: :( :o :shock:
Sbcglobal customer service phone number
Sbcglobal customer service phone number usa
Sbcglobal customer service telephone number
Sbcglobal customer support
Sbcglobal customer support in usa
Sbcglobal customer support number
Sbcglobal customer support phone number
Sbcglobal for phone
Sbcglobal free Printer support
Sbcglobal help phone number
Sbcglobal helpline number
Sbcglobal online support
Sbcglobal phone
Sbcglobal phone number
Sbcglobal phone number in usa
Sbcglobal phone number usa
Sbcglobal phone support
Sbcglobal plus tech support
Sbcglobal protection
Sbcglobal support
Sbcglobal support number
Sbcglobal support phone number
Sbcglobal support services
Sbcglobal support telephone number
Sbcglobal tech support
Sbcglobal tech support phone number free in usa
Sbcglobal tech support number
Sbcglobal tech support phone number
Sbcglobal technical support
Sbcglobal technical support number
Sbcglobal technical support phone number
Sbcglobal toll free customer care number
Sbcglobal toll free number
Sbcglobal contact phone number in usa
Sbcglobal help desk phone number in usa
Sbcglobal phone number support for technical issue in usa
Sbcglobal support phone number
Sbcglobal technical support help desk phone number
Sbcglobal technical support phone number
SBCGLOBAL contact number
SBCGLOBAL contact number usa
SBCGLOBAL contact phone number
SBCGLOBAL contact support
SBCGLOBAL contact number usa
SBCGLOBAL contact phone number
SBCGLOBAL contact phone number usa
SBCGLOBAL customer & technical support
SBCGLOBAL customer care
SBCGLOBAL customer care center
SBCGLOBAL customer care email 
SBCGLOBAL customer care number
SBCGLOBAL customer care number
SBCGLOBAL customer care number usa
SBCGLOBAL customer care number usa toll free
SBCGLOBAL customer care phone number usa
SBCGLOBAL customer care tchnical support
SBCGLOBAL customer care toll free
SBCGLOBAL customer care toll free number
SBCGLOBAL customer care usa
SBCGLOBAL customer help
SBCGLOBAL customer number
SBCGLOBAL customer portal
SBCGLOBAL customer service
SBCGLOBAL customer service billing
SBCGLOBAL customer service email  address
SBCGLOBAL customer service number
SBCGLOBAL customer service phone
SBCGLOBAL customer service phone number
SBCGLOBAL customer service phone number us
SBCGLOBAL customer service phone number usa
SBCGLOBAL customer service reviews
SBCGLOBAL customer service telephone number
SBCGLOBAL customer service usa
SBCGLOBAL customer support
SBCGLOBAL customer support number
SBCGLOBAL customer support phone
SBCGLOBAL customer support phone number
SBCGLOBAL customer service number
SBCGLOBAL customer service number usa
SBCGLOBAL customer service phone number
SBCGLOBAL customer support number
SBCGLOBAL customer support phone number
SBCGLOBAL free phone support
SBCGLOBAL gold support phone number
SBCGLOBAL help desk phone number
SBCGLOBAL help phone number
SBCGLOBAL helpline
SBCGLOBAL helpline phone number
SBCGLOBAL hotline customer service phone number
SBCGLOBAL internet security customer service
SBCGLOBAL internet security phone number
SBCGLOBAL internet security phone number in usa
SBCGLOBAL lab usa customer service
SBCGLOBAL labs usa customer serviceSBCGLOBAL
SBCGLOBAL phone number
SBCGLOBAL phone number customer service
SBCGLOBAL phone number support
SBCGLOBAL phone number tech support
SBCGLOBAL phone number technical support
SBCGLOBAL phone numbers customer support
SBCGLOBAL phone support
SBCGLOBAL phone support number
SBCGLOBAL phone number customer service
SBCGLOBAL phone number support
SBCGLOBAL phone number tech support
SBCGLOBAL phone number usa
SBCGLOBAL security contact phone number
SBCGLOBAL security phone number
SBCGLOBAL security support phone number
SBCGLOBAL software customer service
SBCGLOBAL software customer service number
SBCGLOBAL support center
SBCGLOBAL support contact number
SBCGLOBAL support email  address
SBCGLOBAL support phone number
SBCGLOBAL support telephone number
SBCGLOBAL support number usa
SBCGLOBAL support phone number
SBCGLOBAL support phone number usa
SBCGLOBAL tech support
SBCGLOBAL tech support center
SBCGLOBAL tech support contact
SBCGLOBAL tech support number
SBCGLOBAL tech support number usa
SBCGLOBAL tech support phone
SBCGLOBAL tech support phone number
SBCGLOBAL tech support phone number free
SBCGLOBAL tech support number
SBCGLOBAL tech support number usa
SBCGLOBAL tech support phone number
SBCGLOBAL technical support
SBCGLOBAL technical support number
SBCGLOBAL technical support phone number
SBCGLOBAL technical support phone number usa
SBCGLOBAL technical support reviews
SBCGLOBAL technical support usa
SBCGLOBAL technical support phone number
SBCGLOBAL technical support number
SBCGLOBAL technical support number toll free number
SBCGLOBAL technical support number usa
SBCGLOBAL technical support phone number
SBCGLOBAL technical support phone number usa
SBCGLOBAL technologies phone number
SBCGLOBAL telephone number
SBCGLOBAL telephone support number
SBCGLOBAL toll free number
SBCGLOBAL toll free number usa
SBCGLOBAL usa customer care for tech support
SBCGLOBAL usa customer service
SBCGLOBAL usa phone number
Sbcglobal customer service phone number
Sbcglobal customer service phone number
Sbcglobal customer support phone number
Sbcglobal customer support phone number
Sbcglobal technical support number
SBCGLOBAL customer service phone number usa
SBCGLOBAL internet security support phone number
SBCGLOBAL.com customer service
Sbcglobal antispyware 2011
Sbcglobal customer support
Sbcglobal serial key
Sbcglobal serial number
Sbcglobal support
Sbcglobal technical support
SBCGLOBAL business support
SBCGLOBAL contact support
SBCGLOBAL customer care number
SBCGLOBAL customer service 800
SBCGLOBAL customer service number
SBCGLOBAL customer service phone number
SBCGLOBAL customer service telephone number
SBCGLOBAL customer support
SBCGLOBAL grentry non payment
SBCGLOBAL helpline support number
SBCGLOBAL internet security customer service
SBCGLOBAL internet security technical support
SBCGLOBAL oem customer service
SBCGLOBAL pc cillin technical support
SBCGLOBAL phone support
SBCGLOBAL removal tool download
SBCGLOBAL subscription renewal
SBCGLOBAL support contact
SBCGLOBAL support hotline
SBCGLOBAL support phone number
SBCGLOBAL tech support phone number
SBCGLOBAL technical support
SBCGLOBAL technical support chat
SBCGLOBAL technical support phone number
SBCGLOBAL technical support phone number usa
SBCGLOBAL telephone number
SBCGLOBAL titanium Printer
SBCGLOBAL titanium internet security
SBCGLOBAL titanium maximum
SBCGLOBAL titanium maximum security
SBCGLOBAL titanium problems
SBCGLOBAL titanium removal tool
SBCGLOBAL titanium reviews
SBCGLOBAL titanium support
SBCGLOBAL virus removal service
uninstall SBCGLOBAL smart surfing for mac
usa customer care number for Sbcglobal
>From gcc-bugs-return-534034-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 23:22:02 2016
Return-Path: <gcc-bugs-return-534034-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 20691 invoked by alias); 10 Aug 2016 23:22:02 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 20553 invoked by uid 48); 10 Aug 2016 23:21:49 -0000
From: "kanav at ov3u841 dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73406] New: CONATACT ROADRUNNER MAIL  1 800 681 7208 ROADRUNNER TECH SUPPORT PHONE NUMBER
Date: Wed, 10 Aug 2016 23:22:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: trans-mem
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: kanav at ov3u841 dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73406-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01370.txt.bz2
Content-length: 14662

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73406

            Bug ID: 73406
           Summary: CONATACT ROADRUNNER MAIL  1 800 681 7208 ROADRUNNER
                    TECH SUPPORT PHONE NUMBER
           Product: gcc
           Version: trans-mem
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: kanav at ov3u841 dot com
  Target Milestone: ---

CONATACT ROADRUNNER MAIL  1 800 681 7208 ROADRUNNER TECH SUPPORT PHONE NUMBER


cow 1 800 681 7208 Roadrunner support phone number for helpline Roadrunner mail
 technical support number 
ROADRUNNER helpline phone number@~1800-681-7208 ROADRUNNER tech Support Number
Roadrunner customer service phone number
ROADRUNNER Security contact Number +1800-6817208**Roadrunner support phone
number
usa+1-800-681-7208) Technical support number
CANADA+1800-681-7208 Roadrunner Technical Support
USA-1800-681-7208 contact Roadrunner customer service phone number
AUS-1-800-681-7208 phone number for ROADRUNNER customer service
UK-800-810-7208 phone number for Roadrunner technical support
1-800-681-7208 phone number for Roadrunner customer service
phone number for Roadrunner technical support
phone number for ROADRUNNER security
Roadrunner customer care phone number
Roadrunner customer service billing
Roadrunner customer service email  address
Roadrunner customer service live chat
Roadrunner customer service telephone number
Roadrunner customer support usa phone number
Roadrunner help desk support phone number free in usa
Roadrunner phone number customer service us
Roadrunner phone number support
Roadrunner support phone number
Roadrunner tech support phone number free in usa
Roadrunner tech support phone number
Roadrunner technical support customer service
Roadrunner technical support number
Roadrunner telephone number
Roadrunner toll free customer care number
Roadrunner toll free number in usa
Roadrunner contact phone number in usa
Roadrunner customer service number
Roadrunner customer service phone number
Roadrunner customer service telephone number
Roadrunner customer support number
Roadrunner customer support phone number
Roadrunner customer support phone number
Roadrunner help desk phone number in usa
Roadrunner phone number
Roadrunner phone number support for technical issue in usa
Roadrunner support phone number
Roadrunner technical support help desk phone number
Roadrunner technical support number
Roadrunner technical support phone number
ROADRUNNER customer service number
ROADRUNNER customer service telephone number
ROADRUNNER customer services email 
ROADRUNNER customer support email  address
ROADRUNNER customer support number
ROADRUNNER customer support phone number
ROADRUNNER customer service phone number
ROADRUNNER internet security contact phone number
ROADRUNNER internet security customer service phone number
ROADRUNNER internet security phone number
ROADRUNNER internet security help phone number
ROADRUNNER internet security phone number in usa
ROADRUNNER internet security support phone number
ROADRUNNER internet security technical support
ROADRUNNER phone number customer service
ROADRUNNER phone numbers customer support
ROADRUNNER phone support number
ROADRUNNER security contact phone number
ROADRUNNER security phone number customer service
ROADRUNNER security support phone number
ROADRUNNER support contact number
ROADRUNNER support email  address
ROADRUNNER support phone number
ROADRUNNER support telephone number
ROADRUNNER support telephone number usa
ROADRUNNER support telephone number
ROADRUNNER tech support number
ROADRUNNER tech support phone number
ROADRUNNER tech support phone number free
ROADRUNNER technical support phone number
ROADRUNNER technical support cutomer phone number
ROADRUNNER technical support phone number
ROADRUNNER technical support number free in usa
ROADRUNNER technical support number toll free number
ROADRUNNER technical support phone number
ROADRUNNER technologies phone number
ROADRUNNER telephone support number
Roadrunner customer support phone number
Roadrunner customer service phone number
ROADRUNNER customer support phone number
ROADRUNNER phone number customer service
ROADRUNNER technical support telephone number
contact Roadrunner customer service phone number
customer service number for Roadrunner
phone number for Roadrunner
phone number for Roadrunner customer service
phone number for Roadrunner support
phone number for ROADRUNNER customer service
phone number for ROADRUNNER customer service
phone number for ROADRUNNER customer support
phone number for ROADRUNNER tech support
phone number Roadrunner customer service
Roadrunner customer service number
Roadrunner customer service phone
Roadrunner customer service phone number
Roadrunner customer service phone number us
Roadrunner customer service telephone number
Roadrunner customer support
Roadrunner customer support number
Roadrunner phone number customer service us
Roadrunner phone number support
Roadrunner phone support
Roadrunner phone support number
Roadrunner support phone number
Roadrunner tech support phone number
Roadrunner technical support
Roadrunner technical support number
Roadrunner technical support phone number
ROADRUNNER customer service phone number
ROADRUNNER customer support phone number
ROADRUNNER helpline phone number
ROADRUNNER internet security customer service
ROADRUNNER internet security customer service phone number
ROADRUNNER internet security help phone number
ROADRUNNER internet security phone number customer service
ROADRUNNER phone number customer service
ROADRUNNER phone number customer support
ROADRUNNER security customer service phone number
ROADRUNNER security phone number customer service
ROADRUNNER support phone number
ROADRUNNER support telephone number
ROADRUNNER tech support number
ROADRUNNER tech support phone number
ROADRUNNER technical support
ROADRUNNER technical support number
ROADRUNNER technical support phone number
Roadrunner customer support phone number
Roadrunner phone number customer service
Roadrunner tech support number
ROADRUNNER customer service phone number
ROADRUNNER customer service phone numbers
ROADRUNNER internet security technical support
ROADRUNNER tech support phone number us
ROADRUNNER technical support telephone number
contact Roadrunner
contact ROADRUNNER by phone
contact ROADRUNNER customer service
contact Roadrunner customer service phone number
contactRoadrunner tech support usa
customer service ROADRUNNER phone number
download ROADRUNNER titanium
dri ROADRUNNER customer service number
dri ROADRUNNER customer service phone number
dri ROADRUNNER phone number
how to contact ROADRUNNER by email 
how to delete ROADRUNNER from mac
micro trend customer service
Roadrunner customer service number
phone number for ROADRUNNER customer service
phone number forROADRUNNER customer service
phone number forROADRUNNER customer support
phone number forROADRUNNER tech support
phone number forROADRUNNER technical support
phone number for Roadrunner technical support
phone number for ROADRUNNER security
phone number for ROADRUNNER support
phone number for ROADRUNNER technical support
phone number for Roadrunner customer service
phone number for ROADRUNNER customer service
remove ROADRUNNER from mac
technical support for Printer ROADRUNNER
telephone number forROADRUNNER technical support
telephone Roadrunner
Roadrunner contact number
Roadrunner customer care
Roadrunner customer care number
Roadrunner customer care number usa
Roadrunner customer service
Roadrunner customer service number :idea: :evil: :D :) :lol: :( :o :shock:
Roadrunner customer service phone number
Roadrunner customer service phone number usa
Roadrunner customer service telephone number
Roadrunner customer support
Roadrunner customer support in usa
Roadrunner customer support number
Roadrunner customer support phone number
Roadrunner for phone
Roadrunner free Printer support
Roadrunner help phone number
Roadrunner helpline number
Roadrunner online support
Roadrunner phone
Roadrunner phone number
Roadrunner phone number in usa
Roadrunner phone number usa
Roadrunner phone support
Roadrunner plus tech support
Roadrunner protection
Roadrunner support
Roadrunner support number
Roadrunner support phone number
Roadrunner support services
Roadrunner support telephone number
Roadrunner tech support
Roadrunner tech support phone number free in usa
Roadrunner tech support number
Roadrunner tech support phone number
Roadrunner technical support
Roadrunner technical support number
Roadrunner technical support phone number
Roadrunner toll free customer care number
Roadrunner toll free number
Roadrunner contact phone number in usa
Roadrunner help desk phone number in usa
Roadrunner phone number support for technical issue in usa
Roadrunner support phone number
Roadrunner technical support help desk phone number
Roadrunner technical support phone number
ROADRUNNER contact number
ROADRUNNER contact number usa
ROADRUNNER contact phone number
ROADRUNNER contact support
ROADRUNNER contact number usa
ROADRUNNER contact phone number
ROADRUNNER contact phone number usa
ROADRUNNER customer & technical support
ROADRUNNER customer care
ROADRUNNER customer care center
ROADRUNNER customer care email 
ROADRUNNER customer care number
ROADRUNNER customer care number
ROADRUNNER customer care number usa
ROADRUNNER customer care number usa toll free
ROADRUNNER customer care phone number usa
ROADRUNNER customer care tchnical support
ROADRUNNER customer care toll free
ROADRUNNER customer care toll free number
ROADRUNNER customer care usa
ROADRUNNER customer help
ROADRUNNER customer number
ROADRUNNER customer portal
ROADRUNNER customer service
ROADRUNNER customer service billing
ROADRUNNER customer service email  address
ROADRUNNER customer service number
ROADRUNNER customer service phone
ROADRUNNER customer service phone number
ROADRUNNER customer service phone number us
ROADRUNNER customer service phone number usa
ROADRUNNER customer service reviews
ROADRUNNER customer service telephone number
ROADRUNNER customer service usa
ROADRUNNER customer support
ROADRUNNER customer support number
ROADRUNNER customer support phone
ROADRUNNER customer support phone number
ROADRUNNER customer service number
ROADRUNNER customer service number usa
ROADRUNNER customer service phone number
ROADRUNNER customer support number
ROADRUNNER customer support phone number
ROADRUNNER free phone support
ROADRUNNER gold support phone number
ROADRUNNER help desk phone number
ROADRUNNER help phone number
ROADRUNNER helpline
ROADRUNNER helpline phone number
ROADRUNNER hotline customer service phone number
ROADRUNNER internet security customer service
ROADRUNNER internet security phone number
ROADRUNNER internet security phone number in usa
ROADRUNNER lab usa customer service
ROADRUNNER labs usa customer serviceROADRUNNER
ROADRUNNER phone number
ROADRUNNER phone number customer service
ROADRUNNER phone number support
ROADRUNNER phone number tech support
ROADRUNNER phone number technical support
ROADRUNNER phone numbers customer support
ROADRUNNER phone support
ROADRUNNER phone support number
ROADRUNNER phone number customer service
ROADRUNNER phone number support
ROADRUNNER phone number tech support
ROADRUNNER phone number usa
ROADRUNNER security contact phone number
ROADRUNNER security phone number
ROADRUNNER security support phone number
ROADRUNNER software customer service
ROADRUNNER software customer service number
ROADRUNNER support center
ROADRUNNER support contact number
ROADRUNNER support email  address
ROADRUNNER support phone number
ROADRUNNER support telephone number
ROADRUNNER support number usa
ROADRUNNER support phone number
ROADRUNNER support phone number usa
ROADRUNNER tech support
ROADRUNNER tech support center
ROADRUNNER tech support contact
ROADRUNNER tech support number
ROADRUNNER tech support number usa
ROADRUNNER tech support phone
ROADRUNNER tech support phone number
ROADRUNNER tech support phone number free
ROADRUNNER tech support number
ROADRUNNER tech support number usa
ROADRUNNER tech support phone number
ROADRUNNER technical support
ROADRUNNER technical support number
ROADRUNNER technical support phone number
ROADRUNNER technical support phone number usa
ROADRUNNER technical support reviews
ROADRUNNER technical support usa
ROADRUNNER technical support phone number
ROADRUNNER technical support number
ROADRUNNER technical support number toll free number
ROADRUNNER technical support number usa
ROADRUNNER technical support phone number
ROADRUNNER technical support phone number usa
ROADRUNNER technologies phone number
ROADRUNNER telephone number
ROADRUNNER telephone support number
ROADRUNNER toll free number
ROADRUNNER toll free number usa
ROADRUNNER usa customer care for tech support
ROADRUNNER usa customer service
ROADRUNNER usa phone number
Roadrunner customer service phone number
Roadrunner customer service phone number
Roadrunner customer support phone number
Roadrunner customer support phone number
Roadrunner technical support number
ROADRUNNER customer service phone number usa
ROADRUNNER internet security support phone number
ROADRUNNER.com customer service
Roadrunner antispyware 2011
Roadrunner customer support
Roadrunner serial key
Roadrunner serial number
Roadrunner support
Roadrunner technical support
ROADRUNNER business support
ROADRUNNER contact support
ROADRUNNER customer care number
ROADRUNNER customer service 800
ROADRUNNER customer service number
ROADRUNNER customer service phone number
ROADRUNNER customer service telephone number
ROADRUNNER customer support
ROADRUNNER grentry non payment
ROADRUNNER helpline support number
ROADRUNNER internet security customer service
ROADRUNNER internet security technical support
ROADRUNNER oem customer service
ROADRUNNER pc cillin technical support
ROADRUNNER phone support
ROADRUNNER removal tool download
ROADRUNNER subscription renewal
ROADRUNNER support contact
ROADRUNNER support hotline
ROADRUNNER support phone number
ROADRUNNER tech support phone number
ROADRUNNER technical support
ROADRUNNER technical support chat
ROADRUNNER technical support phone number
ROADRUNNER technical support phone number usa
ROADRUNNER telephone number
ROADRUNNER titanium Printer
ROADRUNNER titanium internet security
ROADRUNNER titanium maximum
ROADRUNNER titanium maximum security
ROADRUNNER titanium problems
ROADRUNNER titanium removal tool
ROADRUNNER titanium reviews
ROADRUNNER titanium support
ROADRUNNER virus removal service
uninstall ROADRUNNER smart surfing for mac
usa customer care number for Roadrunner
>From gcc-bugs-return-534035-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 23:26:44 2016
Return-Path: <gcc-bugs-return-534035-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 29498 invoked by alias); 10 Aug 2016 23:26:44 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 29294 invoked by uid 48); 10 Aug 2016 23:26:31 -0000
From: "kanav at ov3u841 dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73412] New: CONATACT CHARTER MAIL  1 800 681 7208 CHARTER TECH SUPPORT PHONE NUMBER
Date: Wed, 10 Aug 2016 23:26:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: tree-ssa
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: kanav at ov3u841 dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73412-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01371.txt.bz2
Content-length: 13520

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73412

            Bug ID: 73412
           Summary: CONATACT CHARTER MAIL  1 800 681 7208 CHARTER TECH
                    SUPPORT PHONE NUMBER
           Product: gcc
           Version: tree-ssa
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: kanav at ov3u841 dot com
  Target Milestone: ---

CONATACT CHARTER MAIL  1 800 681 7208 CHARTER TECH SUPPORT PHONE NUMBER


cow 1 800 681 7208 Charter support phone number for helpline Charter mail 
technical support number 
CHARTER helpline phone number@~1800-681-7208 CHARTER tech Support Number
Charter customer service phone number
CHARTER Security contact Number +1800-6817208**Charter support phone number
usa+1-800-681-7208) Technical support number
CANADA+1800-681-7208 Charter Technical Support
USA-1800-681-7208 contact Charter customer service phone number
AUS-1-800-681-7208 phone number for CHARTER customer service
UK-800-810-7208 phone number for Charter technical support
1-800-681-7208 phone number for Charter customer service
phone number for Charter technical support
phone number for CHARTER security
Charter customer care phone number
Charter customer service billing
Charter customer service email  address
Charter customer service live chat
Charter customer service telephone number
Charter customer support usa phone number
Charter help desk support phone number free in usa
Charter phone number customer service us
Charter phone number support
Charter support phone number
Charter tech support phone number free in usa
Charter tech support phone number
Charter technical support customer service
Charter technical support number
Charter telephone number
Charter toll free customer care number
Charter toll free number in usa
Charter contact phone number in usa
Charter customer service number
Charter customer service phone number
Charter customer service telephone number
Charter customer support number
Charter customer support phone number
Charter customer support phone number
Charter help desk phone number in usa
Charter phone number
Charter phone number support for technical issue in usa
Charter support phone number
Charter technical support help desk phone number
Charter technical support number
Charter technical support phone number
CHARTER customer service number
CHARTER customer service telephone number
CHARTER customer services email 
CHARTER customer support email  address
CHARTER customer support number
CHARTER customer support phone number
CHARTER customer service phone number
CHARTER internet security contact phone number
CHARTER internet security customer service phone number
CHARTER internet security phone number
CHARTER internet security help phone number
CHARTER internet security phone number in usa
CHARTER internet security support phone number
CHARTER internet security technical support
CHARTER phone number customer service
CHARTER phone numbers customer support
CHARTER phone support number
CHARTER security contact phone number
CHARTER security phone number customer service
CHARTER security support phone number
CHARTER support contact number
CHARTER support email  address
CHARTER support phone number
CHARTER support telephone number
CHARTER support telephone number usa
CHARTER support telephone number
CHARTER tech support number
CHARTER tech support phone number
CHARTER tech support phone number free
CHARTER technical support phone number
CHARTER technical support cutomer phone number
CHARTER technical support phone number
CHARTER technical support number free in usa
CHARTER technical support number toll free number
CHARTER technical support phone number
CHARTER technologies phone number
CHARTER telephone support number
Charter customer support phone number
Charter customer service phone number
CHARTER customer support phone number
CHARTER phone number customer service
CHARTER technical support telephone number
contact Charter customer service phone number
customer service number for Charter
phone number for Charter
phone number for Charter customer service
phone number for Charter support
phone number for CHARTER customer service
phone number for CHARTER customer service
phone number for CHARTER customer support
phone number for CHARTER tech support
phone number Charter customer service
Charter customer service number
Charter customer service phone
Charter customer service phone number
Charter customer service phone number us
Charter customer service telephone number
Charter customer support
Charter customer support number
Charter phone number customer service us
Charter phone number support
Charter phone support
Charter phone support number
Charter support phone number
Charter tech support phone number
Charter technical support
Charter technical support number
Charter technical support phone number
CHARTER customer service phone number
CHARTER customer support phone number
CHARTER helpline phone number
CHARTER internet security customer service
CHARTER internet security customer service phone number
CHARTER internet security help phone number
CHARTER internet security phone number customer service
CHARTER phone number customer service
CHARTER phone number customer support
CHARTER security customer service phone number
CHARTER security phone number customer service
CHARTER support phone number
CHARTER support telephone number
CHARTER tech support number
CHARTER tech support phone number
CHARTER technical support
CHARTER technical support number
CHARTER technical support phone number
Charter customer support phone number
Charter phone number customer service
Charter tech support number
CHARTER customer service phone number
CHARTER customer service phone numbers
CHARTER internet security technical support
CHARTER tech support phone number us
CHARTER technical support telephone number
contact Charter
contact CHARTER by phone
contact CHARTER customer service
contact Charter customer service phone number
contactCharter tech support usa
customer service CHARTER phone number
download CHARTER titanium
dri CHARTER customer service number
dri CHARTER customer service phone number
dri CHARTER phone number
how to contact CHARTER by email 
how to delete CHARTER from mac
micro trend customer service
Charter customer service number
phone number for CHARTER customer service
phone number forCHARTER customer service
phone number forCHARTER customer support
phone number forCHARTER tech support
phone number forCHARTER technical support
phone number for Charter technical support
phone number for CHARTER security
phone number for CHARTER support
phone number for CHARTER technical support
phone number for Charter customer service
phone number for CHARTER customer service
remove CHARTER from mac
technical support for Printer CHARTER
telephone number forCHARTER technical support
telephone Charter
Charter contact number
Charter customer care
Charter customer care number
Charter customer care number usa
Charter customer service
Charter customer service number :idea: :evil: :D :) :lol: :( :o :shock:
Charter customer service phone number
Charter customer service phone number usa
Charter customer service telephone number
Charter customer support
Charter customer support in usa
Charter customer support number
Charter customer support phone number
Charter for phone
Charter free Printer support
Charter help phone number
Charter helpline number
Charter online support
Charter phone
Charter phone number
Charter phone number in usa
Charter phone number usa
Charter phone support
Charter plus tech support
Charter protection
Charter support
Charter support number
Charter support phone number
Charter support services
Charter support telephone number
Charter tech support
Charter tech support phone number free in usa
Charter tech support number
Charter tech support phone number
Charter technical support
Charter technical support number
Charter technical support phone number
Charter toll free customer care number
Charter toll free number
Charter contact phone number in usa
Charter help desk phone number in usa
Charter phone number support for technical issue in usa
Charter support phone number
Charter technical support help desk phone number
Charter technical support phone number
CHARTER contact number
CHARTER contact number usa
CHARTER contact phone number
CHARTER contact support
CHARTER contact number usa
CHARTER contact phone number
CHARTER contact phone number usa
CHARTER customer & technical support
CHARTER customer care
CHARTER customer care center
CHARTER customer care email 
CHARTER customer care number
CHARTER customer care number
CHARTER customer care number usa
CHARTER customer care number usa toll free
CHARTER customer care phone number usa
CHARTER customer care tchnical support
CHARTER customer care toll free
CHARTER customer care toll free number
CHARTER customer care usa
CHARTER customer help
CHARTER customer number
CHARTER customer portal
CHARTER customer service
CHARTER customer service billing
CHARTER customer service email  address
CHARTER customer service number
CHARTER customer service phone
CHARTER customer service phone number
CHARTER customer service phone number us
CHARTER customer service phone number usa
CHARTER customer service reviews
CHARTER customer service telephone number
CHARTER customer service usa
CHARTER customer support
CHARTER customer support number
CHARTER customer support phone
CHARTER customer support phone number
CHARTER customer service number
CHARTER customer service number usa
CHARTER customer service phone number
CHARTER customer support number
CHARTER customer support phone number
CHARTER free phone support
CHARTER gold support phone number
CHARTER help desk phone number
CHARTER help phone number
CHARTER helpline
CHARTER helpline phone number
CHARTER hotline customer service phone number
CHARTER internet security customer service
CHARTER internet security phone number
CHARTER internet security phone number in usa
CHARTER lab usa customer service
CHARTER labs usa customer serviceCHARTER
CHARTER phone number
CHARTER phone number customer service
CHARTER phone number support
CHARTER phone number tech support
CHARTER phone number technical support
CHARTER phone numbers customer support
CHARTER phone support
CHARTER phone support number
CHARTER phone number customer service
CHARTER phone number support
CHARTER phone number tech support
CHARTER phone number usa
CHARTER security contact phone number
CHARTER security phone number
CHARTER security support phone number
CHARTER software customer service
CHARTER software customer service number
CHARTER support center
CHARTER support contact number
CHARTER support email  address
CHARTER support phone number
CHARTER support telephone number
CHARTER support number usa
CHARTER support phone number
CHARTER support phone number usa
CHARTER tech support
CHARTER tech support center
CHARTER tech support contact
CHARTER tech support number
CHARTER tech support number usa
CHARTER tech support phone
CHARTER tech support phone number
CHARTER tech support phone number free
CHARTER tech support number
CHARTER tech support number usa
CHARTER tech support phone number
CHARTER technical support
CHARTER technical support number
CHARTER technical support phone number
CHARTER technical support phone number usa
CHARTER technical support reviews
CHARTER technical support usa
CHARTER technical support phone number
CHARTER technical support number
CHARTER technical support number toll free number
CHARTER technical support number usa
CHARTER technical support phone number
CHARTER technical support phone number usa
CHARTER technologies phone number
CHARTER telephone number
CHARTER telephone support number
CHARTER toll free number
CHARTER toll free number usa
CHARTER usa customer care for tech support
CHARTER usa customer service
CHARTER usa phone number
Charter customer service phone number
Charter customer service phone number
Charter customer support phone number
Charter customer support phone number
Charter technical support number
CHARTER customer service phone number usa
CHARTER internet security support phone number
CHARTER.com customer service
Charter antispyware 2011
Charter customer support
Charter serial key
Charter serial number
Charter support
Charter technical support
CHARTER business support
CHARTER contact support
CHARTER customer care number
CHARTER customer service 800
CHARTER customer service number
CHARTER customer service phone number
CHARTER customer service telephone number
CHARTER customer support
CHARTER grentry non payment
CHARTER helpline support number
CHARTER internet security customer service
CHARTER internet security technical support
CHARTER oem customer service
CHARTER pc cillin technical support
CHARTER phone support
CHARTER removal tool download
CHARTER subscription renewal
CHARTER support contact
CHARTER support hotline
CHARTER support phone number
CHARTER tech support phone number
CHARTER technical support
CHARTER technical support chat
CHARTER technical support phone number
CHARTER technical support phone number usa
CHARTER telephone number
CHARTER titanium Printer
CHARTER titanium internet security
CHARTER titanium maximum
CHARTER titanium maximum security
CHARTER titanium problems
CHARTER titanium removal tool
CHARTER titanium reviews
CHARTER titanium support
CHARTER virus removal service
uninstall CHARTER smart surfing for mac
usa customer care number for Charter
>From gcc-bugs-return-534036-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 23:27:48 2016
Return-Path: <gcc-bugs-return-534036-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 31679 invoked by alias); 10 Aug 2016 23:27:48 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 31583 invoked by uid 48); 10 Aug 2016 23:27:35 -0000
From: "kanav at ov3u841 dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73413] New: CONATACT BELLSOUTH MAIL  1 800 681 7208 BELLSOUTH TECH SUPPORT PHONE NUMBER
Date: Wed, 10 Aug 2016 23:27:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: tree-ssa
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: kanav at ov3u841 dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73413-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01372.txt.bz2
Content-length: 14282

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73413

            Bug ID: 73413
           Summary: CONATACT BELLSOUTH MAIL  1 800 681 7208 BELLSOUTH TECH
                    SUPPORT PHONE NUMBER
           Product: gcc
           Version: tree-ssa
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: kanav at ov3u841 dot com
  Target Milestone: ---

CONATACT BELLSOUTH MAIL  1 800 681 7208 BELLSOUTH TECH SUPPORT PHONE NUMBER


cow 1 800 681 7208 Bellsouth support phone number for helpline Bellsouth mail 
technical support number 
BELLSOUTH helpline phone number@~1800-681-7208 BELLSOUTH tech Support Number
Bellsouth customer service phone number
BELLSOUTH Security contact Number +1800-6817208**Bellsouth support phone number
usa+1-800-681-7208) Technical support number
CANADA+1800-681-7208 Bellsouth Technical Support
USA-1800-681-7208 contact Bellsouth customer service phone number
AUS-1-800-681-7208 phone number for BELLSOUTH customer service
UK-800-810-7208 phone number for Bellsouth technical support
1-800-681-7208 phone number for Bellsouth customer service
phone number for Bellsouth technical support
phone number for BELLSOUTH security
Bellsouth customer care phone number
Bellsouth customer service billing
Bellsouth customer service email  address
Bellsouth customer service live chat
Bellsouth customer service telephone number
Bellsouth customer support usa phone number
Bellsouth help desk support phone number free in usa
Bellsouth phone number customer service us
Bellsouth phone number support
Bellsouth support phone number
Bellsouth tech support phone number free in usa
Bellsouth tech support phone number
Bellsouth technical support customer service
Bellsouth technical support number
Bellsouth telephone number
Bellsouth toll free customer care number
Bellsouth toll free number in usa
Bellsouth contact phone number in usa
Bellsouth customer service number
Bellsouth customer service phone number
Bellsouth customer service telephone number
Bellsouth customer support number
Bellsouth customer support phone number
Bellsouth customer support phone number
Bellsouth help desk phone number in usa
Bellsouth phone number
Bellsouth phone number support for technical issue in usa
Bellsouth support phone number
Bellsouth technical support help desk phone number
Bellsouth technical support number
Bellsouth technical support phone number
BELLSOUTH customer service number
BELLSOUTH customer service telephone number
BELLSOUTH customer services email 
BELLSOUTH customer support email  address
BELLSOUTH customer support number
BELLSOUTH customer support phone number
BELLSOUTH customer service phone number
BELLSOUTH internet security contact phone number
BELLSOUTH internet security customer service phone number
BELLSOUTH internet security phone number
BELLSOUTH internet security help phone number
BELLSOUTH internet security phone number in usa
BELLSOUTH internet security support phone number
BELLSOUTH internet security technical support
BELLSOUTH phone number customer service
BELLSOUTH phone numbers customer support
BELLSOUTH phone support number
BELLSOUTH security contact phone number
BELLSOUTH security phone number customer service
BELLSOUTH security support phone number
BELLSOUTH support contact number
BELLSOUTH support email  address
BELLSOUTH support phone number
BELLSOUTH support telephone number
BELLSOUTH support telephone number usa
BELLSOUTH support telephone number
BELLSOUTH tech support number
BELLSOUTH tech support phone number
BELLSOUTH tech support phone number free
BELLSOUTH technical support phone number
BELLSOUTH technical support cutomer phone number
BELLSOUTH technical support phone number
BELLSOUTH technical support number free in usa
BELLSOUTH technical support number toll free number
BELLSOUTH technical support phone number
BELLSOUTH technologies phone number
BELLSOUTH telephone support number
Bellsouth customer support phone number
Bellsouth customer service phone number
BELLSOUTH customer support phone number
BELLSOUTH phone number customer service
BELLSOUTH technical support telephone number
contact Bellsouth customer service phone number
customer service number for Bellsouth
phone number for Bellsouth
phone number for Bellsouth customer service
phone number for Bellsouth support
phone number for BELLSOUTH customer service
phone number for BELLSOUTH customer service
phone number for BELLSOUTH customer support
phone number for BELLSOUTH tech support
phone number Bellsouth customer service
Bellsouth customer service number
Bellsouth customer service phone
Bellsouth customer service phone number
Bellsouth customer service phone number us
Bellsouth customer service telephone number
Bellsouth customer support
Bellsouth customer support number
Bellsouth phone number customer service us
Bellsouth phone number support
Bellsouth phone support
Bellsouth phone support number
Bellsouth support phone number
Bellsouth tech support phone number
Bellsouth technical support
Bellsouth technical support number
Bellsouth technical support phone number
BELLSOUTH customer service phone number
BELLSOUTH customer support phone number
BELLSOUTH helpline phone number
BELLSOUTH internet security customer service
BELLSOUTH internet security customer service phone number
BELLSOUTH internet security help phone number
BELLSOUTH internet security phone number customer service
BELLSOUTH phone number customer service
BELLSOUTH phone number customer support
BELLSOUTH security customer service phone number
BELLSOUTH security phone number customer service
BELLSOUTH support phone number
BELLSOUTH support telephone number
BELLSOUTH tech support number
BELLSOUTH tech support phone number
BELLSOUTH technical support
BELLSOUTH technical support number
BELLSOUTH technical support phone number
Bellsouth customer support phone number
Bellsouth phone number customer service
Bellsouth tech support number
BELLSOUTH customer service phone number
BELLSOUTH customer service phone numbers
BELLSOUTH internet security technical support
BELLSOUTH tech support phone number us
BELLSOUTH technical support telephone number
contact Bellsouth
contact BELLSOUTH by phone
contact BELLSOUTH customer service
contact Bellsouth customer service phone number
contactBellsouth tech support usa
customer service BELLSOUTH phone number
download BELLSOUTH titanium
dri BELLSOUTH customer service number
dri BELLSOUTH customer service phone number
dri BELLSOUTH phone number
how to contact BELLSOUTH by email 
how to delete BELLSOUTH from mac
micro trend customer service
Bellsouth customer service number
phone number for BELLSOUTH customer service
phone number forBELLSOUTH customer service
phone number forBELLSOUTH customer support
phone number forBELLSOUTH tech support
phone number forBELLSOUTH technical support
phone number for Bellsouth technical support
phone number for BELLSOUTH security
phone number for BELLSOUTH support
phone number for BELLSOUTH technical support
phone number for Bellsouth customer service
phone number for BELLSOUTH customer service
remove BELLSOUTH from mac
technical support for Printer BELLSOUTH
telephone number forBELLSOUTH technical support
telephone Bellsouth
Bellsouth contact number
Bellsouth customer care
Bellsouth customer care number
Bellsouth customer care number usa
Bellsouth customer service
Bellsouth customer service number :idea: :evil: :D :) :lol: :( :o :shock:
Bellsouth customer service phone number
Bellsouth customer service phone number usa
Bellsouth customer service telephone number
Bellsouth customer support
Bellsouth customer support in usa
Bellsouth customer support number
Bellsouth customer support phone number
Bellsouth for phone
Bellsouth free Printer support
Bellsouth help phone number
Bellsouth helpline number
Bellsouth online support
Bellsouth phone
Bellsouth phone number
Bellsouth phone number in usa
Bellsouth phone number usa
Bellsouth phone support
Bellsouth plus tech support
Bellsouth protection
Bellsouth support
Bellsouth support number
Bellsouth support phone number
Bellsouth support services
Bellsouth support telephone number
Bellsouth tech support
Bellsouth tech support phone number free in usa
Bellsouth tech support number
Bellsouth tech support phone number
Bellsouth technical support
Bellsouth technical support number
Bellsouth technical support phone number
Bellsouth toll free customer care number
Bellsouth toll free number
Bellsouth contact phone number in usa
Bellsouth help desk phone number in usa
Bellsouth phone number support for technical issue in usa
Bellsouth support phone number
Bellsouth technical support help desk phone number
Bellsouth technical support phone number
BELLSOUTH contact number
BELLSOUTH contact number usa
BELLSOUTH contact phone number
BELLSOUTH contact support
BELLSOUTH contact number usa
BELLSOUTH contact phone number
BELLSOUTH contact phone number usa
BELLSOUTH customer & technical support
BELLSOUTH customer care
BELLSOUTH customer care center
BELLSOUTH customer care email 
BELLSOUTH customer care number
BELLSOUTH customer care number
BELLSOUTH customer care number usa
BELLSOUTH customer care number usa toll free
BELLSOUTH customer care phone number usa
BELLSOUTH customer care tchnical support
BELLSOUTH customer care toll free
BELLSOUTH customer care toll free number
BELLSOUTH customer care usa
BELLSOUTH customer help
BELLSOUTH customer number
BELLSOUTH customer portal
BELLSOUTH customer service
BELLSOUTH customer service billing
BELLSOUTH customer service email  address
BELLSOUTH customer service number
BELLSOUTH customer service phone
BELLSOUTH customer service phone number
BELLSOUTH customer service phone number us
BELLSOUTH customer service phone number usa
BELLSOUTH customer service reviews
BELLSOUTH customer service telephone number
BELLSOUTH customer service usa
BELLSOUTH customer support
BELLSOUTH customer support number
BELLSOUTH customer support phone
BELLSOUTH customer support phone number
BELLSOUTH customer service number
BELLSOUTH customer service number usa
BELLSOUTH customer service phone number
BELLSOUTH customer support number
BELLSOUTH customer support phone number
BELLSOUTH free phone support
BELLSOUTH gold support phone number
BELLSOUTH help desk phone number
BELLSOUTH help phone number
BELLSOUTH helpline
BELLSOUTH helpline phone number
BELLSOUTH hotline customer service phone number
BELLSOUTH internet security customer service
BELLSOUTH internet security phone number
BELLSOUTH internet security phone number in usa
BELLSOUTH lab usa customer service
BELLSOUTH labs usa customer serviceBELLSOUTH
BELLSOUTH phone number
BELLSOUTH phone number customer service
BELLSOUTH phone number support
BELLSOUTH phone number tech support
BELLSOUTH phone number technical support
BELLSOUTH phone numbers customer support
BELLSOUTH phone support
BELLSOUTH phone support number
BELLSOUTH phone number customer service
BELLSOUTH phone number support
BELLSOUTH phone number tech support
BELLSOUTH phone number usa
BELLSOUTH security contact phone number
BELLSOUTH security phone number
BELLSOUTH security support phone number
BELLSOUTH software customer service
BELLSOUTH software customer service number
BELLSOUTH support center
BELLSOUTH support contact number
BELLSOUTH support email  address
BELLSOUTH support phone number
BELLSOUTH support telephone number
BELLSOUTH support number usa
BELLSOUTH support phone number
BELLSOUTH support phone number usa
BELLSOUTH tech support
BELLSOUTH tech support center
BELLSOUTH tech support contact
BELLSOUTH tech support number
BELLSOUTH tech support number usa
BELLSOUTH tech support phone
BELLSOUTH tech support phone number
BELLSOUTH tech support phone number free
BELLSOUTH tech support number
BELLSOUTH tech support number usa
BELLSOUTH tech support phone number
BELLSOUTH technical support
BELLSOUTH technical support number
BELLSOUTH technical support phone number
BELLSOUTH technical support phone number usa
BELLSOUTH technical support reviews
BELLSOUTH technical support usa
BELLSOUTH technical support phone number
BELLSOUTH technical support number
BELLSOUTH technical support number toll free number
BELLSOUTH technical support number usa
BELLSOUTH technical support phone number
BELLSOUTH technical support phone number usa
BELLSOUTH technologies phone number
BELLSOUTH telephone number
BELLSOUTH telephone support number
BELLSOUTH toll free number
BELLSOUTH toll free number usa
BELLSOUTH usa customer care for tech support
BELLSOUTH usa customer service
BELLSOUTH usa phone number
Bellsouth customer service phone number
Bellsouth customer service phone number
Bellsouth customer support phone number
Bellsouth customer support phone number
Bellsouth technical support number
BELLSOUTH customer service phone number usa
BELLSOUTH internet security support phone number
BELLSOUTH.com customer service
Bellsouth antispyware 2011
Bellsouth customer support
Bellsouth serial key
Bellsouth serial number
Bellsouth support
Bellsouth technical support
BELLSOUTH business support
BELLSOUTH contact support
BELLSOUTH customer care number
BELLSOUTH customer service 800
BELLSOUTH customer service number
BELLSOUTH customer service phone number
BELLSOUTH customer service telephone number
BELLSOUTH customer support
BELLSOUTH grentry non payment
BELLSOUTH helpline support number
BELLSOUTH internet security customer service
BELLSOUTH internet security technical support
BELLSOUTH oem customer service
BELLSOUTH pc cillin technical support
BELLSOUTH phone support
BELLSOUTH removal tool download
BELLSOUTH subscription renewal
BELLSOUTH support contact
BELLSOUTH support hotline
BELLSOUTH support phone number
BELLSOUTH tech support phone number
BELLSOUTH technical support
BELLSOUTH technical support chat
BELLSOUTH technical support phone number
BELLSOUTH technical support phone number usa
BELLSOUTH telephone number
BELLSOUTH titanium Printer
BELLSOUTH titanium internet security
BELLSOUTH titanium maximum
BELLSOUTH titanium maximum security
BELLSOUTH titanium problems
BELLSOUTH titanium removal tool
BELLSOUTH titanium reviews
BELLSOUTH titanium support
BELLSOUTH virus removal service
uninstall BELLSOUTH smart surfing for mac
usa customer care number for Bellsouth
>From gcc-bugs-return-534037-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 23:29:02 2016
Return-Path: <gcc-bugs-return-534037-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 33736 invoked by alias); 10 Aug 2016 23:29:01 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 33642 invoked by uid 48); 10 Aug 2016 23:28:49 -0000
From: "kanav at ov3u841 dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73414] New: CONATACT VERIZON MAIL  1 800 681 7208 VERIZON TECH SUPPORT PHONE NUMBER
Date: Wed, 10 Aug 2016 23:29:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: tree-ssa
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: kanav at ov3u841 dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73414-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01373.txt.bz2
Content-length: 13520

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73414

            Bug ID: 73414
           Summary: CONATACT VERIZON MAIL  1 800 681 7208 VERIZON TECH
                    SUPPORT PHONE NUMBER
           Product: gcc
           Version: tree-ssa
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: kanav at ov3u841 dot com
  Target Milestone: ---

CONATACT VERIZON MAIL  1 800 681 7208 VERIZON TECH SUPPORT PHONE NUMBER


cow 1 800 681 7208 Verizon support phone number for helpline Verizon mail 
technical support number 
VERIZON helpline phone number@~1800-681-7208 VERIZON tech Support Number
Verizon customer service phone number
VERIZON Security contact Number +1800-6817208**Verizon support phone number
usa+1-800-681-7208) Technical support number
CANADA+1800-681-7208 Verizon Technical Support
USA-1800-681-7208 contact Verizon customer service phone number
AUS-1-800-681-7208 phone number for VERIZON customer service
UK-800-810-7208 phone number for Verizon technical support
1-800-681-7208 phone number for Verizon customer service
phone number for Verizon technical support
phone number for VERIZON security
Verizon customer care phone number
Verizon customer service billing
Verizon customer service email  address
Verizon customer service live chat
Verizon customer service telephone number
Verizon customer support usa phone number
Verizon help desk support phone number free in usa
Verizon phone number customer service us
Verizon phone number support
Verizon support phone number
Verizon tech support phone number free in usa
Verizon tech support phone number
Verizon technical support customer service
Verizon technical support number
Verizon telephone number
Verizon toll free customer care number
Verizon toll free number in usa
Verizon contact phone number in usa
Verizon customer service number
Verizon customer service phone number
Verizon customer service telephone number
Verizon customer support number
Verizon customer support phone number
Verizon customer support phone number
Verizon help desk phone number in usa
Verizon phone number
Verizon phone number support for technical issue in usa
Verizon support phone number
Verizon technical support help desk phone number
Verizon technical support number
Verizon technical support phone number
VERIZON customer service number
VERIZON customer service telephone number
VERIZON customer services email 
VERIZON customer support email  address
VERIZON customer support number
VERIZON customer support phone number
VERIZON customer service phone number
VERIZON internet security contact phone number
VERIZON internet security customer service phone number
VERIZON internet security phone number
VERIZON internet security help phone number
VERIZON internet security phone number in usa
VERIZON internet security support phone number
VERIZON internet security technical support
VERIZON phone number customer service
VERIZON phone numbers customer support
VERIZON phone support number
VERIZON security contact phone number
VERIZON security phone number customer service
VERIZON security support phone number
VERIZON support contact number
VERIZON support email  address
VERIZON support phone number
VERIZON support telephone number
VERIZON support telephone number usa
VERIZON support telephone number
VERIZON tech support number
VERIZON tech support phone number
VERIZON tech support phone number free
VERIZON technical support phone number
VERIZON technical support cutomer phone number
VERIZON technical support phone number
VERIZON technical support number free in usa
VERIZON technical support number toll free number
VERIZON technical support phone number
VERIZON technologies phone number
VERIZON telephone support number
Verizon customer support phone number
Verizon customer service phone number
VERIZON customer support phone number
VERIZON phone number customer service
VERIZON technical support telephone number
contact Verizon customer service phone number
customer service number for Verizon
phone number for Verizon
phone number for Verizon customer service
phone number for Verizon support
phone number for VERIZON customer service
phone number for VERIZON customer service
phone number for VERIZON customer support
phone number for VERIZON tech support
phone number Verizon customer service
Verizon customer service number
Verizon customer service phone
Verizon customer service phone number
Verizon customer service phone number us
Verizon customer service telephone number
Verizon customer support
Verizon customer support number
Verizon phone number customer service us
Verizon phone number support
Verizon phone support
Verizon phone support number
Verizon support phone number
Verizon tech support phone number
Verizon technical support
Verizon technical support number
Verizon technical support phone number
VERIZON customer service phone number
VERIZON customer support phone number
VERIZON helpline phone number
VERIZON internet security customer service
VERIZON internet security customer service phone number
VERIZON internet security help phone number
VERIZON internet security phone number customer service
VERIZON phone number customer service
VERIZON phone number customer support
VERIZON security customer service phone number
VERIZON security phone number customer service
VERIZON support phone number
VERIZON support telephone number
VERIZON tech support number
VERIZON tech support phone number
VERIZON technical support
VERIZON technical support number
VERIZON technical support phone number
Verizon customer support phone number
Verizon phone number customer service
Verizon tech support number
VERIZON customer service phone number
VERIZON customer service phone numbers
VERIZON internet security technical support
VERIZON tech support phone number us
VERIZON technical support telephone number
contact Verizon
contact VERIZON by phone
contact VERIZON customer service
contact Verizon customer service phone number
contactVerizon tech support usa
customer service VERIZON phone number
download VERIZON titanium
dri VERIZON customer service number
dri VERIZON customer service phone number
dri VERIZON phone number
how to contact VERIZON by email 
how to delete VERIZON from mac
micro trend customer service
Verizon customer service number
phone number for VERIZON customer service
phone number forVERIZON customer service
phone number forVERIZON customer support
phone number forVERIZON tech support
phone number forVERIZON technical support
phone number for Verizon technical support
phone number for VERIZON security
phone number for VERIZON support
phone number for VERIZON technical support
phone number for Verizon customer service
phone number for VERIZON customer service
remove VERIZON from mac
technical support for Printer VERIZON
telephone number forVERIZON technical support
telephone Verizon
Verizon contact number
Verizon customer care
Verizon customer care number
Verizon customer care number usa
Verizon customer service
Verizon customer service number :idea: :evil: :D :) :lol: :( :o :shock:
Verizon customer service phone number
Verizon customer service phone number usa
Verizon customer service telephone number
Verizon customer support
Verizon customer support in usa
Verizon customer support number
Verizon customer support phone number
Verizon for phone
Verizon free Printer support
Verizon help phone number
Verizon helpline number
Verizon online support
Verizon phone
Verizon phone number
Verizon phone number in usa
Verizon phone number usa
Verizon phone support
Verizon plus tech support
Verizon protection
Verizon support
Verizon support number
Verizon support phone number
Verizon support services
Verizon support telephone number
Verizon tech support
Verizon tech support phone number free in usa
Verizon tech support number
Verizon tech support phone number
Verizon technical support
Verizon technical support number
Verizon technical support phone number
Verizon toll free customer care number
Verizon toll free number
Verizon contact phone number in usa
Verizon help desk phone number in usa
Verizon phone number support for technical issue in usa
Verizon support phone number
Verizon technical support help desk phone number
Verizon technical support phone number
VERIZON contact number
VERIZON contact number usa
VERIZON contact phone number
VERIZON contact support
VERIZON contact number usa
VERIZON contact phone number
VERIZON contact phone number usa
VERIZON customer & technical support
VERIZON customer care
VERIZON customer care center
VERIZON customer care email 
VERIZON customer care number
VERIZON customer care number
VERIZON customer care number usa
VERIZON customer care number usa toll free
VERIZON customer care phone number usa
VERIZON customer care tchnical support
VERIZON customer care toll free
VERIZON customer care toll free number
VERIZON customer care usa
VERIZON customer help
VERIZON customer number
VERIZON customer portal
VERIZON customer service
VERIZON customer service billing
VERIZON customer service email  address
VERIZON customer service number
VERIZON customer service phone
VERIZON customer service phone number
VERIZON customer service phone number us
VERIZON customer service phone number usa
VERIZON customer service reviews
VERIZON customer service telephone number
VERIZON customer service usa
VERIZON customer support
VERIZON customer support number
VERIZON customer support phone
VERIZON customer support phone number
VERIZON customer service number
VERIZON customer service number usa
VERIZON customer service phone number
VERIZON customer support number
VERIZON customer support phone number
VERIZON free phone support
VERIZON gold support phone number
VERIZON help desk phone number
VERIZON help phone number
VERIZON helpline
VERIZON helpline phone number
VERIZON hotline customer service phone number
VERIZON internet security customer service
VERIZON internet security phone number
VERIZON internet security phone number in usa
VERIZON lab usa customer service
VERIZON labs usa customer serviceVERIZON
VERIZON phone number
VERIZON phone number customer service
VERIZON phone number support
VERIZON phone number tech support
VERIZON phone number technical support
VERIZON phone numbers customer support
VERIZON phone support
VERIZON phone support number
VERIZON phone number customer service
VERIZON phone number support
VERIZON phone number tech support
VERIZON phone number usa
VERIZON security contact phone number
VERIZON security phone number
VERIZON security support phone number
VERIZON software customer service
VERIZON software customer service number
VERIZON support center
VERIZON support contact number
VERIZON support email  address
VERIZON support phone number
VERIZON support telephone number
VERIZON support number usa
VERIZON support phone number
VERIZON support phone number usa
VERIZON tech support
VERIZON tech support center
VERIZON tech support contact
VERIZON tech support number
VERIZON tech support number usa
VERIZON tech support phone
VERIZON tech support phone number
VERIZON tech support phone number free
VERIZON tech support number
VERIZON tech support number usa
VERIZON tech support phone number
VERIZON technical support
VERIZON technical support number
VERIZON technical support phone number
VERIZON technical support phone number usa
VERIZON technical support reviews
VERIZON technical support usa
VERIZON technical support phone number
VERIZON technical support number
VERIZON technical support number toll free number
VERIZON technical support number usa
VERIZON technical support phone number
VERIZON technical support phone number usa
VERIZON technologies phone number
VERIZON telephone number
VERIZON telephone support number
VERIZON toll free number
VERIZON toll free number usa
VERIZON usa customer care for tech support
VERIZON usa customer service
VERIZON usa phone number
Verizon customer service phone number
Verizon customer service phone number
Verizon customer support phone number
Verizon customer support phone number
Verizon technical support number
VERIZON customer service phone number usa
VERIZON internet security support phone number
VERIZON.com customer service
Verizon antispyware 2011
Verizon customer support
Verizon serial key
Verizon serial number
Verizon support
Verizon technical support
VERIZON business support
VERIZON contact support
VERIZON customer care number
VERIZON customer service 800
VERIZON customer service number
VERIZON customer service phone number
VERIZON customer service telephone number
VERIZON customer support
VERIZON grentry non payment
VERIZON helpline support number
VERIZON internet security customer service
VERIZON internet security technical support
VERIZON oem customer service
VERIZON pc cillin technical support
VERIZON phone support
VERIZON removal tool download
VERIZON subscription renewal
VERIZON support contact
VERIZON support hotline
VERIZON support phone number
VERIZON tech support phone number
VERIZON technical support
VERIZON technical support chat
VERIZON technical support phone number
VERIZON technical support phone number usa
VERIZON telephone number
VERIZON titanium Printer
VERIZON titanium internet security
VERIZON titanium maximum
VERIZON titanium maximum security
VERIZON titanium problems
VERIZON titanium removal tool
VERIZON titanium reviews
VERIZON titanium support
VERIZON virus removal service
uninstall VERIZON smart surfing for mac
usa customer care number for Verizon
>From gcc-bugs-return-534038-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 23:30:03 2016
Return-Path: <gcc-bugs-return-534038-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 44295 invoked by alias); 10 Aug 2016 23:30:02 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 44120 invoked by uid 48); 10 Aug 2016 23:29:49 -0000
From: "kanav at ov3u841 dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73415] New: CONATACT YANDEX MAIL  1 800 681 7208 YANDEX TECH SUPPORT PHONE NUMBER
Date: Wed, 10 Aug 2016 23:30:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: trans-mem
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: kanav at ov3u841 dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73415-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01374.txt.bz2
Content-length: 13144

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73415

            Bug ID: 73415
           Summary: CONATACT YANDEX MAIL  1 800 681 7208 YANDEX TECH
                    SUPPORT PHONE NUMBER
           Product: gcc
           Version: trans-mem
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: kanav at ov3u841 dot com
  Target Milestone: ---

CONATACT YANDEX MAIL  1 800 681 7208 YANDEX TECH SUPPORT PHONE NUMBER


cow 1 800 681 7208 Yandex support phone number for helpline Yandex mail 
technical support number 
YANDEX helpline phone number@~1800-681-7208 YANDEX tech Support Number Yandex
customer service phone number
YANDEX Security contact Number +1800-6817208**Yandex support phone number
usa+1-800-681-7208) Technical support number
CANADA+1800-681-7208 Yandex Technical Support
USA-1800-681-7208 contact Yandex customer service phone number
AUS-1-800-681-7208 phone number for YANDEX customer service
UK-800-810-7208 phone number for Yandex technical support
1-800-681-7208 phone number for Yandex customer service
phone number for Yandex technical support
phone number for YANDEX security
Yandex customer care phone number
Yandex customer service billing
Yandex customer service email  address
Yandex customer service live chat
Yandex customer service telephone number
Yandex customer support usa phone number
Yandex help desk support phone number free in usa
Yandex phone number customer service us
Yandex phone number support
Yandex support phone number
Yandex tech support phone number free in usa
Yandex tech support phone number
Yandex technical support customer service
Yandex technical support number
Yandex telephone number
Yandex toll free customer care number
Yandex toll free number in usa
Yandex contact phone number in usa
Yandex customer service number
Yandex customer service phone number
Yandex customer service telephone number
Yandex customer support number
Yandex customer support phone number
Yandex customer support phone number
Yandex help desk phone number in usa
Yandex phone number
Yandex phone number support for technical issue in usa
Yandex support phone number
Yandex technical support help desk phone number
Yandex technical support number
Yandex technical support phone number
YANDEX customer service number
YANDEX customer service telephone number
YANDEX customer services email 
YANDEX customer support email  address
YANDEX customer support number
YANDEX customer support phone number
YANDEX customer service phone number
YANDEX internet security contact phone number
YANDEX internet security customer service phone number
YANDEX internet security phone number
YANDEX internet security help phone number
YANDEX internet security phone number in usa
YANDEX internet security support phone number
YANDEX internet security technical support
YANDEX phone number customer service
YANDEX phone numbers customer support
YANDEX phone support number
YANDEX security contact phone number
YANDEX security phone number customer service
YANDEX security support phone number
YANDEX support contact number
YANDEX support email  address
YANDEX support phone number
YANDEX support telephone number
YANDEX support telephone number usa
YANDEX support telephone number
YANDEX tech support number
YANDEX tech support phone number
YANDEX tech support phone number free
YANDEX technical support phone number
YANDEX technical support cutomer phone number
YANDEX technical support phone number
YANDEX technical support number free in usa
YANDEX technical support number toll free number
YANDEX technical support phone number
YANDEX technologies phone number
YANDEX telephone support number
Yandex customer support phone number
Yandex customer service phone number
YANDEX customer support phone number
YANDEX phone number customer service
YANDEX technical support telephone number
contact Yandex customer service phone number
customer service number for Yandex
phone number for Yandex
phone number for Yandex customer service
phone number for Yandex support
phone number for YANDEX customer service
phone number for YANDEX customer service
phone number for YANDEX customer support
phone number for YANDEX tech support
phone number Yandex customer service
Yandex customer service number
Yandex customer service phone
Yandex customer service phone number
Yandex customer service phone number us
Yandex customer service telephone number
Yandex customer support
Yandex customer support number
Yandex phone number customer service us
Yandex phone number support
Yandex phone support
Yandex phone support number
Yandex support phone number
Yandex tech support phone number
Yandex technical support
Yandex technical support number
Yandex technical support phone number
YANDEX customer service phone number
YANDEX customer support phone number
YANDEX helpline phone number
YANDEX internet security customer service
YANDEX internet security customer service phone number
YANDEX internet security help phone number
YANDEX internet security phone number customer service
YANDEX phone number customer service
YANDEX phone number customer support
YANDEX security customer service phone number
YANDEX security phone number customer service
YANDEX support phone number
YANDEX support telephone number
YANDEX tech support number
YANDEX tech support phone number
YANDEX technical support
YANDEX technical support number
YANDEX technical support phone number
Yandex customer support phone number
Yandex phone number customer service
Yandex tech support number
YANDEX customer service phone number
YANDEX customer service phone numbers
YANDEX internet security technical support
YANDEX tech support phone number us
YANDEX technical support telephone number
contact Yandex
contact YANDEX by phone
contact YANDEX customer service
contact Yandex customer service phone number
contactYandex tech support usa
customer service YANDEX phone number
download YANDEX titanium
dri YANDEX customer service number
dri YANDEX customer service phone number
dri YANDEX phone number
how to contact YANDEX by email 
how to delete YANDEX from mac
micro trend customer service
Yandex customer service number
phone number for YANDEX customer service
phone number forYANDEX customer service
phone number forYANDEX customer support
phone number forYANDEX tech support
phone number forYANDEX technical support
phone number for Yandex technical support
phone number for YANDEX security
phone number for YANDEX support
phone number for YANDEX technical support
phone number for Yandex customer service
phone number for YANDEX customer service
remove YANDEX from mac
technical support for Printer YANDEX
telephone number forYANDEX technical support
telephone Yandex
Yandex contact number
Yandex customer care
Yandex customer care number
Yandex customer care number usa
Yandex customer service
Yandex customer service number :idea: :evil: :D :) :lol: :( :o :shock:
Yandex customer service phone number
Yandex customer service phone number usa
Yandex customer service telephone number
Yandex customer support
Yandex customer support in usa
Yandex customer support number
Yandex customer support phone number
Yandex for phone
Yandex free Printer support
Yandex help phone number
Yandex helpline number
Yandex online support
Yandex phone
Yandex phone number
Yandex phone number in usa
Yandex phone number usa
Yandex phone support
Yandex plus tech support
Yandex protection
Yandex support
Yandex support number
Yandex support phone number
Yandex support services
Yandex support telephone number
Yandex tech support
Yandex tech support phone number free in usa
Yandex tech support number
Yandex tech support phone number
Yandex technical support
Yandex technical support number
Yandex technical support phone number
Yandex toll free customer care number
Yandex toll free number
Yandex contact phone number in usa
Yandex help desk phone number in usa
Yandex phone number support for technical issue in usa
Yandex support phone number
Yandex technical support help desk phone number
Yandex technical support phone number
YANDEX contact number
YANDEX contact number usa
YANDEX contact phone number
YANDEX contact support
YANDEX contact number usa
YANDEX contact phone number
YANDEX contact phone number usa
YANDEX customer & technical support
YANDEX customer care
YANDEX customer care center
YANDEX customer care email 
YANDEX customer care number
YANDEX customer care number
YANDEX customer care number usa
YANDEX customer care number usa toll free
YANDEX customer care phone number usa
YANDEX customer care tchnical support
YANDEX customer care toll free
YANDEX customer care toll free number
YANDEX customer care usa
YANDEX customer help
YANDEX customer number
YANDEX customer portal
YANDEX customer service
YANDEX customer service billing
YANDEX customer service email  address
YANDEX customer service number
YANDEX customer service phone
YANDEX customer service phone number
YANDEX customer service phone number us
YANDEX customer service phone number usa
YANDEX customer service reviews
YANDEX customer service telephone number
YANDEX customer service usa
YANDEX customer support
YANDEX customer support number
YANDEX customer support phone
YANDEX customer support phone number
YANDEX customer service number
YANDEX customer service number usa
YANDEX customer service phone number
YANDEX customer support number
YANDEX customer support phone number
YANDEX free phone support
YANDEX gold support phone number
YANDEX help desk phone number
YANDEX help phone number
YANDEX helpline
YANDEX helpline phone number
YANDEX hotline customer service phone number
YANDEX internet security customer service
YANDEX internet security phone number
YANDEX internet security phone number in usa
YANDEX lab usa customer service
YANDEX labs usa customer serviceYANDEX
YANDEX phone number
YANDEX phone number customer service
YANDEX phone number support
YANDEX phone number tech support
YANDEX phone number technical support
YANDEX phone numbers customer support
YANDEX phone support
YANDEX phone support number
YANDEX phone number customer service
YANDEX phone number support
YANDEX phone number tech support
YANDEX phone number usa
YANDEX security contact phone number
YANDEX security phone number
YANDEX security support phone number
YANDEX software customer service
YANDEX software customer service number
YANDEX support center
YANDEX support contact number
YANDEX support email  address
YANDEX support phone number
YANDEX support telephone number
YANDEX support number usa
YANDEX support phone number
YANDEX support phone number usa
YANDEX tech support
YANDEX tech support center
YANDEX tech support contact
YANDEX tech support number
YANDEX tech support number usa
YANDEX tech support phone
YANDEX tech support phone number
YANDEX tech support phone number free
YANDEX tech support number
YANDEX tech support number usa
YANDEX tech support phone number
YANDEX technical support
YANDEX technical support number
YANDEX technical support phone number
YANDEX technical support phone number usa
YANDEX technical support reviews
YANDEX technical support usa
YANDEX technical support phone number
YANDEX technical support number
YANDEX technical support number toll free number
YANDEX technical support number usa
YANDEX technical support phone number
YANDEX technical support phone number usa
YANDEX technologies phone number
YANDEX telephone number
YANDEX telephone support number
YANDEX toll free number
YANDEX toll free number usa
YANDEX usa customer care for tech support
YANDEX usa customer service
YANDEX usa phone number
Yandex customer service phone number
Yandex customer service phone number
Yandex customer support phone number
Yandex customer support phone number
Yandex technical support number
YANDEX customer service phone number usa
YANDEX internet security support phone number
YANDEX.com customer service
Yandex antispyware 2011
Yandex customer support
Yandex serial key
Yandex serial number
Yandex support
Yandex technical support
YANDEX business support
YANDEX contact support
YANDEX customer care number
YANDEX customer service 800
YANDEX customer service number
YANDEX customer service phone number
YANDEX customer service telephone number
YANDEX customer support
YANDEX grentry non payment
YANDEX helpline support number
YANDEX internet security customer service
YANDEX internet security technical support
YANDEX oem customer service
YANDEX pc cillin technical support
YANDEX phone support
YANDEX removal tool download
YANDEX subscription renewal
YANDEX support contact
YANDEX support hotline
YANDEX support phone number
YANDEX tech support phone number
YANDEX technical support
YANDEX technical support chat
YANDEX technical support phone number
YANDEX technical support phone number usa
YANDEX telephone number
YANDEX titanium Printer
YANDEX titanium internet security
YANDEX titanium maximum
YANDEX titanium maximum security
YANDEX titanium problems
YANDEX titanium removal tool
YANDEX titanium reviews
YANDEX titanium support
YANDEX virus removal service
uninstall YANDEX smart surfing for mac
usa customer care number for Yandex
>From gcc-bugs-return-534040-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 23:31:16 2016
Return-Path: <gcc-bugs-return-534040-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 52684 invoked by alias); 10 Aug 2016 23:31:16 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 51961 invoked by uid 48); 10 Aug 2016 23:31:04 -0000
From: "trendy465 at mailinator dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73417] New: +++1.800.681.7208+++ WEBROOT a.n.t.i.v.i.r.u.s t.e.c.h s.u.p.p.o.r.t T.O.L.L F.R.E.E n.u.m.b.e.r
Date: Wed, 10 Aug 2016 23:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: tree-ssa
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: trendy465 at mailinator dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73417-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01376.txt.bz2
Content-length: 10895

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73417

            Bug ID: 73417
           Summary: +++1.800.681.7208+++ WEBROOT a.n.t.i.v.i.r.u.s t.e.c.h
                    s.u.p.p.o.r.t T.O.L.L F.R.E.E n.u.m.b.e.r
           Product: gcc
           Version: tree-ssa
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: trendy465 at mailinator dot com
  Target Milestone: ---

+++1.800.681.7208+++ WEBROOT a.n.t.i.v.i.r.u.s t.e.c.h s.u.p.p.o.r.t T.O.L.L
F.R.E.E n.u.m.b.e.r

Describe +++1.800.681.7208+++ WEBROOT antivirus   tech support TOLL FREE number
here.((Amber))Call @@@++ USA 1-800- 681-7208 WEBROOT p.r.i.n.t.e.r t.e.c.h
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l WEBROOT h.e.l.p d.e.s.k
n.u.m.b.e.r n.u.m.b.e.r C.a.n.a.d.a WEBROOT s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r
usa USA 1 1-800- 681-7208 WEBROOT p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e
n.u.m.b.e.r u.s.a. C.a.l.l WEBROOT h.e.l.p d.e.s.k n.u.m.b.e.r n.u.m.b.e.r
C.a.n.a.d.a WEBROOT s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa canada 1- 1800-681-
7208 USA, WEBROOT antivirus   Tech Support phone number,WEBROOT technical
support phone number 1 1-800- 681-7208 .WEBROOT Tech Support Number WEBROOT
Tech WEBROOT tech support, WEBROOT tech support number, WEBROOT tech support
phone number, WEBROOT technical support, WEBROOT technical support number,
WEBROOT technical support phone number, WEBROOT tech support number, WEBROOT
support number, WEBROOT Tech support phone number, WEBROOT support phone
number, WEBROOT technical support phone number, WEBROOT technical support
number,Support Phone Number for WEBROOT antivirus   Phone Number for WEBROOT
CustomerService Technical Support Telephone Number WEBROOT antivirus   support
number WEBROOT WEBROOT antivirus   tech support number WEBROOT WEBROOT
antivirus   technical support number WEBROOT WEBROOT antivirus   technical
support phone number WEBROOT WEBROOT antivirus   customer service number
WEBROOT WEBROOT internet security technical support WEBROOT technical support
phone number WEBROOT WEBROOT tech support phone number WEBROOT WEBROOT customer
support phone number I-800- 681- 7208 WEBROOT WEBROOT antivirus   support phone
number WEBROOT WEBROOT support phone WEBROOT tech support WEBROOT customer
support WEBROOT phone support WEBROOT support number WEBROOT WEBROOT technical
support WEBROOT antivirus   customer support phone number WEBROOT WEBROOT
antivirus   tech support phone number WEBROOT contact WEBROOT support WEBROOT
antivirus   technical support phone number ~!~1-800- 681-7208++ WEBROOT WEBROOT
phone number WEBROOT tech support WEBROOT support ticket WEBROOT customer
support number WEBROOT WEBROOT tech support number WEBROOT WEBROOT technical
support number WEBROOT WEBROOT support center WEBROOT telephone support call
WEBROOT support WEBROOT antivirus   support support WEBROOT WEBROOT billing
support WEBROOT antivirus   technical support number WEBROOT support WEBROOT
antivirus   WEBROOT online support WEBROOT contact support WEBROOT antivirus  
support number WEBROOT WEBROOT antivirus   customer support number WEBROOT
WEBROOT antivirus   tech support number WEBROOT support for WEBROOT WEBROOT
phone number WEBROOT WEBROOT customer service phone number WEBROOT WEBROOT
contact phone number WEBROOT WEBROOT antivirus   phone number WEBROOT WEBROOT
antivirus   customer service phone number WEBROOT phone number WEBROOT for
WEBROOT customer service WEBROOT software phone number WEBROOT phone number
WEBROOT for WEBROOT WEBROOT customer service telephone number WEBROOT WEBROOT
helpline phone number WEBROOT WEBROOT contact number WEBROOT WEBROOT customer
service number WEBROOT WEBROOT customer service phone number ~!~1-800-
681-7208++ WEBROOT us WEBROOT customer service phone number WEBROOT usa WEBROOT
telephone number WEBROOT WEBROOT phone number WEBROOT usa WEBROOT antivirus  
contact number WEBROOT WEBROOT number WEBROOT WEBROOT contact number WEBROOT
usa WEBROOT antivirus   helpline number WEBROOT WEBROOT helpline number WEBROOT
WEBROOT customer number WEBROOT WEBROOT antivirus   customer service number
WEBROOT WEBROOT contact telephone number WEBROOT contact number WEBROOT for
WEBROOT WEBROOT software contact number WEBROOT WEBROOT toll free number
WEBROOT WEBROOT telephone number WEBROOT uk WEBROOT registration number WEBROOT
WEBROOT toll free number WEBROOT usa WEBROOT customer service WEBROOT software
customer service contact WEBROOT customer service WEBROOT customer service
phone WEBROOT antivirus   customer service WEBROOT service WEBROOT antivirus  
technical support WEBROOT antivirus   customer support WEBROOT technical
support reviews telephone WEBROOT antivirus   WEBROOT tech support phone number
WEBROOT WEBROOT antivirus   tech support phone number WEBROOT WEBROOT antivirus
  customer service WEBROOT technical support phone number WEBROOT WEBROOT
antivirus   free antivirus   support WEBROOT customer service billing WEBROOT
customer service eantivirus   address WEBROOT customer service reviews contact
WEBROOT customer service WEBROOT tech support number WEBROOT usa WEBROOT
antivirus   support number WEBROOT WEBROOT antivirus   contact number WEBROOT
WEBROOT customer service phone number WEBROOT WEBROOT technical support usa
WEBROOT technical support number WEBROOT WEBROOT tech support phone WEBROOT
tech support number WEBROOT WEBROOT customer service telephone number WEBROOT
WEBROOT antivirus   customer support number WEBROOT WEBROOT antivirus   phone
number WEBROOT WEBROOT antivirus   online support WEBROOT customer service
number WEBROOT WEBROOT tech support center WEBROOT customer service WEBROOT
software customer service WEBROOT customer care number WEBROOT usa WEBROOT
customer number WEBROOT WEBROOT customer support number WEBROOT WEBROOT
customer care number WEBROOT WEBROOT customer care toll free number WEBROOT
WEBROOT tech support WEBROOT technical support WEBROOT antivirus   support
WEBROOT antivirus   tech support WEBROOT support center WEBROOT.com customer
service WEBROOT antivirus   customer care number WEBROOT WEBROOT customer care
WEBROOT phone number WEBROOT phone number WEBROOT for WEBROOT customer service
WEBROOT phone support WEBROOT phone number WEBROOT tech support WEBROOT support
phone number WEBROOT contact WEBROOT by phone WEBROOT contact phone number
WEBROOT WEBROOT helpline phone number WEBROOT WEBROOT antivirus   phone WEBROOT
antivirus   for phone WEBROOT contact number WEBROOT WEBROOT contact support
contact WEBROOT antivirus   WEBROOT contact number WEBROOT usa WEBROOT toll
free number WEBROOT WEBROOT telephone number WEBROOT WEBROOT toll free number
WEBROOT usa WEBROOT antivirus   support services technical support for
antivirus   WEBROOT WEBROOT customer service phone number WEBROOT usa WEBROOT
antivirus   customer care number WEBROOT usa WEBROOT customer care number
WEBROOT WEBROOT customer care center WEBROOT customer support WEBROOT customer
support phone WEBROOT customer help WEBROOT customer & technical support
WEBROOT customer portal WEBROOT customer care phone number WEBROOT usa WEBROOT
customer care eantivirus   WEBROOT helpline WEBROOT tech support contact
WEBROOT customer care toll free WEBROOT antivirus   customer service number
WEBROOT WEBROOT antivirus   protection webroot antivirus   customer service
number WEBROOT WEBROOT software customer service number WEBROOT WEBROOT hotline
customer service phone number WEBROOT WEBROOT customer service phone number
WEBROOT us how to contact WEBROOT by eantivirus   WEBROOT free phone support
WEBROOT antivirus   technical support number WEBROOT WEBROOT antivirus  
technical support help desk phone number WEBROOT WEBROOT technical support
number WEBROOT toll free number WEBROOT WEBROOT antivirus   customer support
phone number WEBROOT WEBROOT antivirus   customer11-800- 681-7208WEBROOT
ANTIVIRUS   TECHNICAL SUPPORT HELPLINE PHONE NUMBER CUSTOMER SUPPORT toll free
NUMBER SUPPORT PHONE NUMBER11-800- 681-7208WEBROOT ANTIVIRUS   TECHNICAL
SUPPORT HELPLINE PHONE NUMBER CUSTOMER SUPPORT toll free NUMBER SUPPORT PHONE
NUMBER11-800- 681-7208WEBROOT ANTIVIRUS   TECHNICAL SUPPORT HELPLINE PHONE
NUMBER CUSTOMER SUPPORT toll free NUMBER SUPPORT PHONE NUMBER11-800-
681-7208WEBROOT ANTIVIRUS   TECHNICAL SUPPORT HELPLINE PHONE NUMBER CUSTOMER
SUPPORT toll free NUMBER SUPPORT PHONE NUMBER11-800- 681-7208WEBROOT ANTIVIRUS 
 TECHNICAL SUPPORT HELPLINE PHONE NUMBER CUSTOMER SUPPORT toll free NUMBER
SUPPORT PHONE NUMBER11-800- 681-7208WEBROOT ANTIVIRUS   TECHNICAL SUPPORT
HELPLINE PHONE NUMBER CUSTOMER SUPPORT toll free NUMBER SUPPORT PHONE
NUMBER11-800- 681-7208WEBROOT ANTIVIRUS   TECHNICAL SUPPORT HELPLINE PHONE
NUMBER CUSTOMER SUPPORT toll free NUMBER SUPPORT PHONE NUMBER11-800-
681-7208WEBROOT ANTIVIRUS   TECHNICAL SUPPORT HELPLINE PHONE NUMBER CUSTOMER
SUPPORT toll free NUMBER SUPPORT PHONE NUMBER11-800- 681-7208WEBROOT ANTIVIRUS 
 TECHNICAL SUPPORT HELPLINE PHONE NUMBER CUSTOMER SUPPORT toll free NUMBER
SUPPORT PHONE NUMBER11-800- 681-7208WEBROOT ANTIVIRUS   TECHNICAL SUPPORT
HELPLINE PHONE NUMBER CUSTOMER SUPPORT toll free NUMBER SUPPORT PHONE
NUMBER11-800- 681-7208WEBROOT ANTIVIRUS   TECHNICAL SUPPORT HELPLINE PHONE
NUMBER CUSTOMER SUPPORT toll free NUMBER SUPPORT PHONE NUMBER11-800- 681-
7208WEBROOT ANTIVIRUS   TECHNICAL SUPPORT HELPLINE PHONE NUMBER CUSTOMER
SUPPORT toll free NUMBER SUPPORT PHONE NUMBER11- 800-681- 7208WEBROOT ANTIVIRUS
  TECHNICAL SUPPORT HELPLINE PHONE NUMBER CUSTOMER SUPPORT toll free NUMBER
SUPPORT PHONE NUMBER11-800- 681-7208WEBROOT ANTIVIRUS   TECHNICAL SUPPORT
HELPLINE PHONE NUMBER CUSTOMER SUPPORT toll free NUMBER SUPPORT PHONE
NUMBER11-800- 681-7208WEBROOT ANTIVIRUS   TECHNICAL SUPPORT HELPLINE PHONE
NUMBER CUSTOMER SUPPORT toll free NUMBER SUPPORT PHONE NUMBER11-800-
681-7208WEBROOT ANTIVIRUS   TECHNICAL SUPPORT HELPLINE PHONE NUMBER CUSTOMER
SUPPORT toll free NUMBER SUPPORT PHONE NUMBER11-800- 681-7208WEBROOT ANTIVIRUS 
 TECHNICAL SUPPORT HELPLINE PHONE NUMBER CUSTOMER SUPPORT toll free NUMBER
SUPPORT PHONE NUMBER11-800- 681-7208WEBROOT ANTIVIRUS   TECHNICAL SUPPORT
HELPLINE PHONE NUMBER CUSTOMER SUPPORT toll free NUMBER SUPPORT PHONE
NUMBER11-800- 681-7208WEBROOT ANTIVIRUS   TECHNICAL SUPPORT HELPLINE PHONE
NUMBER CUSTOMER SUPPORT toll free NUMBER SUPPORT PHONE NUMBER11-800-
681-7208WEBROOT ANTIVIRUS   TECHNICAL SUPPORT HELPLINE PHONE NUMBER CUSTOMER
SUPPORT toll free NUMBER SUPPORT PHONE NUMBER11-800- 681-7208WEBROOT ANTIVIRUS 
 TECHNICAL SUPPORT HELPLINE PHONE NUMBER CUSTOMER SUPPORT toll free NUMBER
SUPPORT PHONE NUMBER11-800- 681-7208WEBROOT ANTIVIRUS   TECHNICAL SUPPORT
HELPLINE PHONE NUMBER CUSTOMER SUPPORT toll free NUMBER SUPPORT PHONE NUMBER
>From gcc-bugs-return-534039-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 23:31:06 2016
Return-Path: <gcc-bugs-return-534039-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 51981 invoked by alias); 10 Aug 2016 23:31:06 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 51866 invoked by uid 48); 10 Aug 2016 23:30:53 -0000
From: "kanav at ov3u841 dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73416] New: CONATACT COMCAST MAIL  1 800 681 7208 COMCAST TECH SUPPORT PHONE NUMBER
Date: Wed, 10 Aug 2016 23:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: lto
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: kanav at ov3u841 dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73416-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01375.txt.bz2
Content-length: 13515

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73416

            Bug ID: 73416
           Summary: CONATACT COMCAST MAIL  1 800 681 7208 COMCAST TECH
                    SUPPORT PHONE NUMBER
           Product: gcc
           Version: lto
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: kanav at ov3u841 dot com
  Target Milestone: ---

CONATACT COMCAST MAIL  1 800 681 7208 COMCAST TECH SUPPORT PHONE NUMBER


cow 1 800 681 7208 Comcast support phone number for helpline Comcast mail 
technical support number 
COMCAST helpline phone number@~1800-681-7208 COMCAST tech Support Number
Comcast customer service phone number
COMCAST Security contact Number +1800-6817208**Comcast support phone number
usa+1-800-681-7208) Technical support number
CANADA+1800-681-7208 Comcast Technical Support
USA-1800-681-7208 contact Comcast customer service phone number
AUS-1-800-681-7208 phone number for COMCAST customer service
UK-800-810-7208 phone number for Comcast technical support
1-800-681-7208 phone number for Comcast customer service
phone number for Comcast technical support
phone number for COMCAST security
Comcast customer care phone number
Comcast customer service billing
Comcast customer service email  address
Comcast customer service live chat
Comcast customer service telephone number
Comcast customer support usa phone number
Comcast help desk support phone number free in usa
Comcast phone number customer service us
Comcast phone number support
Comcast support phone number
Comcast tech support phone number free in usa
Comcast tech support phone number
Comcast technical support customer service
Comcast technical support number
Comcast telephone number
Comcast toll free customer care number
Comcast toll free number in usa
Comcast contact phone number in usa
Comcast customer service number
Comcast customer service phone number
Comcast customer service telephone number
Comcast customer support number
Comcast customer support phone number
Comcast customer support phone number
Comcast help desk phone number in usa
Comcast phone number
Comcast phone number support for technical issue in usa
Comcast support phone number
Comcast technical support help desk phone number
Comcast technical support number
Comcast technical support phone number
COMCAST customer service number
COMCAST customer service telephone number
COMCAST customer services email 
COMCAST customer support email  address
COMCAST customer support number
COMCAST customer support phone number
COMCAST customer service phone number
COMCAST internet security contact phone number
COMCAST internet security customer service phone number
COMCAST internet security phone number
COMCAST internet security help phone number
COMCAST internet security phone number in usa
COMCAST internet security support phone number
COMCAST internet security technical support
COMCAST phone number customer service
COMCAST phone numbers customer support
COMCAST phone support number
COMCAST security contact phone number
COMCAST security phone number customer service
COMCAST security support phone number
COMCAST support contact number
COMCAST support email  address
COMCAST support phone number
COMCAST support telephone number
COMCAST support telephone number usa
COMCAST support telephone number
COMCAST tech support number
COMCAST tech support phone number
COMCAST tech support phone number free
COMCAST technical support phone number
COMCAST technical support cutomer phone number
COMCAST technical support phone number
COMCAST technical support number free in usa
COMCAST technical support number toll free number
COMCAST technical support phone number
COMCAST technologies phone number
COMCAST telephone support number
Comcast customer support phone number
Comcast customer service phone number
COMCAST customer support phone number
COMCAST phone number customer service
COMCAST technical support telephone number
contact Comcast customer service phone number
customer service number for Comcast
phone number for Comcast
phone number for Comcast customer service
phone number for Comcast support
phone number for COMCAST customer service
phone number for COMCAST customer service
phone number for COMCAST customer support
phone number for COMCAST tech support
phone number Comcast customer service
Comcast customer service number
Comcast customer service phone
Comcast customer service phone number
Comcast customer service phone number us
Comcast customer service telephone number
Comcast customer support
Comcast customer support number
Comcast phone number customer service us
Comcast phone number support
Comcast phone support
Comcast phone support number
Comcast support phone number
Comcast tech support phone number
Comcast technical support
Comcast technical support number
Comcast technical support phone number
COMCAST customer service phone number
COMCAST customer support phone number
COMCAST helpline phone number
COMCAST internet security customer service
COMCAST internet security customer service phone number
COMCAST internet security help phone number
COMCAST internet security phone number customer service
COMCAST phone number customer service
COMCAST phone number customer support
COMCAST security customer service phone number
COMCAST security phone number customer service
COMCAST support phone number
COMCAST support telephone number
COMCAST tech support number
COMCAST tech support phone number
COMCAST technical support
COMCAST technical support number
COMCAST technical support phone number
Comcast customer support phone number
Comcast phone number customer service
Comcast tech support number
COMCAST customer service phone number
COMCAST customer service phone numbers
COMCAST internet security technical support
COMCAST tech support phone number us
COMCAST technical support telephone number
contact Comcast
contact COMCAST by phone
contact COMCAST customer service
contact Comcast customer service phone number
contactComcast tech support usa
customer service COMCAST phone number
download COMCAST titanium
dri COMCAST customer service number
dri COMCAST customer service phone number
dri COMCAST phone number
how to contact COMCAST by email 
how to delete COMCAST from mac
micro trend customer service
Comcast customer service number
phone number for COMCAST customer service
phone number forCOMCAST customer service
phone number forCOMCAST customer support
phone number forCOMCAST tech support
phone number forCOMCAST technical support
phone number for Comcast technical support
phone number for COMCAST security
phone number for COMCAST support
phone number for COMCAST technical support
phone number for Comcast customer service
phone number for COMCAST customer service
remove COMCAST from mac
technical support for Printer COMCAST
telephone number forCOMCAST technical support
telephone Comcast
Comcast contact number
Comcast customer care
Comcast customer care number
Comcast customer care number usa
Comcast customer service
Comcast customer service number :idea: :evil: :D :) :lol: :( :o :shock:
Comcast customer service phone number
Comcast customer service phone number usa
Comcast customer service telephone number
Comcast customer support
Comcast customer support in usa
Comcast customer support number
Comcast customer support phone number
Comcast for phone
Comcast free Printer support
Comcast help phone number
Comcast helpline number
Comcast online support
Comcast phone
Comcast phone number
Comcast phone number in usa
Comcast phone number usa
Comcast phone support
Comcast plus tech support
Comcast protection
Comcast support
Comcast support number
Comcast support phone number
Comcast support services
Comcast support telephone number
Comcast tech support
Comcast tech support phone number free in usa
Comcast tech support number
Comcast tech support phone number
Comcast technical support
Comcast technical support number
Comcast technical support phone number
Comcast toll free customer care number
Comcast toll free number
Comcast contact phone number in usa
Comcast help desk phone number in usa
Comcast phone number support for technical issue in usa
Comcast support phone number
Comcast technical support help desk phone number
Comcast technical support phone number
COMCAST contact number
COMCAST contact number usa
COMCAST contact phone number
COMCAST contact support
COMCAST contact number usa
COMCAST contact phone number
COMCAST contact phone number usa
COMCAST customer & technical support
COMCAST customer care
COMCAST customer care center
COMCAST customer care email 
COMCAST customer care number
COMCAST customer care number
COMCAST customer care number usa
COMCAST customer care number usa toll free
COMCAST customer care phone number usa
COMCAST customer care tchnical support
COMCAST customer care toll free
COMCAST customer care toll free number
COMCAST customer care usa
COMCAST customer help
COMCAST customer number
COMCAST customer portal
COMCAST customer service
COMCAST customer service billing
COMCAST customer service email  address
COMCAST customer service number
COMCAST customer service phone
COMCAST customer service phone number
COMCAST customer service phone number us
COMCAST customer service phone number usa
COMCAST customer service reviews
COMCAST customer service telephone number
COMCAST customer service usa
COMCAST customer support
COMCAST customer support number
COMCAST customer support phone
COMCAST customer support phone number
COMCAST customer service number
COMCAST customer service number usa
COMCAST customer service phone number
COMCAST customer support number
COMCAST customer support phone number
COMCAST free phone support
COMCAST gold support phone number
COMCAST help desk phone number
COMCAST help phone number
COMCAST helpline
COMCAST helpline phone number
COMCAST hotline customer service phone number
COMCAST internet security customer service
COMCAST internet security phone number
COMCAST internet security phone number in usa
COMCAST lab usa customer service
COMCAST labs usa customer serviceCOMCAST
COMCAST phone number
COMCAST phone number customer service
COMCAST phone number support
COMCAST phone number tech support
COMCAST phone number technical support
COMCAST phone numbers customer support
COMCAST phone support
COMCAST phone support number
COMCAST phone number customer service
COMCAST phone number support
COMCAST phone number tech support
COMCAST phone number usa
COMCAST security contact phone number
COMCAST security phone number
COMCAST security support phone number
COMCAST software customer service
COMCAST software customer service number
COMCAST support center
COMCAST support contact number
COMCAST support email  address
COMCAST support phone number
COMCAST support telephone number
COMCAST support number usa
COMCAST support phone number
COMCAST support phone number usa
COMCAST tech support
COMCAST tech support center
COMCAST tech support contact
COMCAST tech support number
COMCAST tech support number usa
COMCAST tech support phone
COMCAST tech support phone number
COMCAST tech support phone number free
COMCAST tech support number
COMCAST tech support number usa
COMCAST tech support phone number
COMCAST technical support
COMCAST technical support number
COMCAST technical support phone number
COMCAST technical support phone number usa
COMCAST technical support reviews
COMCAST technical support usa
COMCAST technical support phone number
COMCAST technical support number
COMCAST technical support number toll free number
COMCAST technical support number usa
COMCAST technical support phone number
COMCAST technical support phone number usa
COMCAST technologies phone number
COMCAST telephone number
COMCAST telephone support number
COMCAST toll free number
COMCAST toll free number usa
COMCAST usa customer care for tech support
COMCAST usa customer service
COMCAST usa phone number
Comcast customer service phone number
Comcast customer service phone number
Comcast customer support phone number
Comcast customer support phone number
Comcast technical support number
COMCAST customer service phone number usa
COMCAST internet security support phone number
COMCAST.com customer service
Comcast antispyware 2011
Comcast customer support
Comcast serial key
Comcast serial number
Comcast support
Comcast technical support
COMCAST business support
COMCAST contact support
COMCAST customer care number
COMCAST customer service 800
COMCAST customer service number
COMCAST customer service phone number
COMCAST customer service telephone number
COMCAST customer support
COMCAST grentry non payment
COMCAST helpline support number
COMCAST internet security customer service
COMCAST internet security technical support
COMCAST oem customer service
COMCAST pc cillin technical support
COMCAST phone support
COMCAST removal tool download
COMCAST subscription renewal
COMCAST support contact
COMCAST support hotline
COMCAST support phone number
COMCAST tech support phone number
COMCAST technical support
COMCAST technical support chat
COMCAST technical support phone number
COMCAST technical support phone number usa
COMCAST telephone number
COMCAST titanium Printer
COMCAST titanium internet security
COMCAST titanium maximum
COMCAST titanium maximum security
COMCAST titanium problems
COMCAST titanium removal tool
COMCAST titanium reviews
COMCAST titanium support
COMCAST virus removal service
uninstall COMCAST smart surfing for mac
usa customer care number for Comcast
>From gcc-bugs-return-534041-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 23:32:50 2016
Return-Path: <gcc-bugs-return-534041-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 54766 invoked by alias); 10 Aug 2016 23:32:50 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 54675 invoked by uid 48); 10 Aug 2016 23:32:37 -0000
From: "kanav at ov3u841 dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73418] New: CONATACT HOTMAIL MAIL  1 800 681 7208 HOTMAIL TECH SUPPORT PHONE NUMBER
Date: Wed, 10 Aug 2016 23:32:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: hsa
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: kanav at ov3u841 dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73418-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01377.txt.bz2
Content-length: 13515

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73418

            Bug ID: 73418
           Summary: CONATACT HOTMAIL MAIL  1 800 681 7208 HOTMAIL TECH
                    SUPPORT PHONE NUMBER
           Product: gcc
           Version: hsa
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: kanav at ov3u841 dot com
  Target Milestone: ---

CONATACT HOTMAIL MAIL  1 800 681 7208 HOTMAIL TECH SUPPORT PHONE NUMBER


cow 1 800 681 7208 Hotmail support phone number for helpline Hotmail mail 
technical support number 
HOTMAIL helpline phone number@~1800-681-7208 HOTMAIL tech Support Number
Hotmail customer service phone number
HOTMAIL Security contact Number +1800-6817208**Hotmail support phone number
usa+1-800-681-7208) Technical support number
CANADA+1800-681-7208 Hotmail Technical Support
USA-1800-681-7208 contact Hotmail customer service phone number
AUS-1-800-681-7208 phone number for HOTMAIL customer service
UK-800-810-7208 phone number for Hotmail technical support
1-800-681-7208 phone number for Hotmail customer service
phone number for Hotmail technical support
phone number for HOTMAIL security
Hotmail customer care phone number
Hotmail customer service billing
Hotmail customer service email  address
Hotmail customer service live chat
Hotmail customer service telephone number
Hotmail customer support usa phone number
Hotmail help desk support phone number free in usa
Hotmail phone number customer service us
Hotmail phone number support
Hotmail support phone number
Hotmail tech support phone number free in usa
Hotmail tech support phone number
Hotmail technical support customer service
Hotmail technical support number
Hotmail telephone number
Hotmail toll free customer care number
Hotmail toll free number in usa
Hotmail contact phone number in usa
Hotmail customer service number
Hotmail customer service phone number
Hotmail customer service telephone number
Hotmail customer support number
Hotmail customer support phone number
Hotmail customer support phone number
Hotmail help desk phone number in usa
Hotmail phone number
Hotmail phone number support for technical issue in usa
Hotmail support phone number
Hotmail technical support help desk phone number
Hotmail technical support number
Hotmail technical support phone number
HOTMAIL customer service number
HOTMAIL customer service telephone number
HOTMAIL customer services email 
HOTMAIL customer support email  address
HOTMAIL customer support number
HOTMAIL customer support phone number
HOTMAIL customer service phone number
HOTMAIL internet security contact phone number
HOTMAIL internet security customer service phone number
HOTMAIL internet security phone number
HOTMAIL internet security help phone number
HOTMAIL internet security phone number in usa
HOTMAIL internet security support phone number
HOTMAIL internet security technical support
HOTMAIL phone number customer service
HOTMAIL phone numbers customer support
HOTMAIL phone support number
HOTMAIL security contact phone number
HOTMAIL security phone number customer service
HOTMAIL security support phone number
HOTMAIL support contact number
HOTMAIL support email  address
HOTMAIL support phone number
HOTMAIL support telephone number
HOTMAIL support telephone number usa
HOTMAIL support telephone number
HOTMAIL tech support number
HOTMAIL tech support phone number
HOTMAIL tech support phone number free
HOTMAIL technical support phone number
HOTMAIL technical support cutomer phone number
HOTMAIL technical support phone number
HOTMAIL technical support number free in usa
HOTMAIL technical support number toll free number
HOTMAIL technical support phone number
HOTMAIL technologies phone number
HOTMAIL telephone support number
Hotmail customer support phone number
Hotmail customer service phone number
HOTMAIL customer support phone number
HOTMAIL phone number customer service
HOTMAIL technical support telephone number
contact Hotmail customer service phone number
customer service number for Hotmail
phone number for Hotmail
phone number for Hotmail customer service
phone number for Hotmail support
phone number for HOTMAIL customer service
phone number for HOTMAIL customer service
phone number for HOTMAIL customer support
phone number for HOTMAIL tech support
phone number Hotmail customer service
Hotmail customer service number
Hotmail customer service phone
Hotmail customer service phone number
Hotmail customer service phone number us
Hotmail customer service telephone number
Hotmail customer support
Hotmail customer support number
Hotmail phone number customer service us
Hotmail phone number support
Hotmail phone support
Hotmail phone support number
Hotmail support phone number
Hotmail tech support phone number
Hotmail technical support
Hotmail technical support number
Hotmail technical support phone number
HOTMAIL customer service phone number
HOTMAIL customer support phone number
HOTMAIL helpline phone number
HOTMAIL internet security customer service
HOTMAIL internet security customer service phone number
HOTMAIL internet security help phone number
HOTMAIL internet security phone number customer service
HOTMAIL phone number customer service
HOTMAIL phone number customer support
HOTMAIL security customer service phone number
HOTMAIL security phone number customer service
HOTMAIL support phone number
HOTMAIL support telephone number
HOTMAIL tech support number
HOTMAIL tech support phone number
HOTMAIL technical support
HOTMAIL technical support number
HOTMAIL technical support phone number
Hotmail customer support phone number
Hotmail phone number customer service
Hotmail tech support number
HOTMAIL customer service phone number
HOTMAIL customer service phone numbers
HOTMAIL internet security technical support
HOTMAIL tech support phone number us
HOTMAIL technical support telephone number
contact Hotmail
contact HOTMAIL by phone
contact HOTMAIL customer service
contact Hotmail customer service phone number
contactHotmail tech support usa
customer service HOTMAIL phone number
download HOTMAIL titanium
dri HOTMAIL customer service number
dri HOTMAIL customer service phone number
dri HOTMAIL phone number
how to contact HOTMAIL by email 
how to delete HOTMAIL from mac
micro trend customer service
Hotmail customer service number
phone number for HOTMAIL customer service
phone number forHOTMAIL customer service
phone number forHOTMAIL customer support
phone number forHOTMAIL tech support
phone number forHOTMAIL technical support
phone number for Hotmail technical support
phone number for HOTMAIL security
phone number for HOTMAIL support
phone number for HOTMAIL technical support
phone number for Hotmail customer service
phone number for HOTMAIL customer service
remove HOTMAIL from mac
technical support for Printer HOTMAIL
telephone number forHOTMAIL technical support
telephone Hotmail
Hotmail contact number
Hotmail customer care
Hotmail customer care number
Hotmail customer care number usa
Hotmail customer service
Hotmail customer service number :idea: :evil: :D :) :lol: :( :o :shock:
Hotmail customer service phone number
Hotmail customer service phone number usa
Hotmail customer service telephone number
Hotmail customer support
Hotmail customer support in usa
Hotmail customer support number
Hotmail customer support phone number
Hotmail for phone
Hotmail free Printer support
Hotmail help phone number
Hotmail helpline number
Hotmail online support
Hotmail phone
Hotmail phone number
Hotmail phone number in usa
Hotmail phone number usa
Hotmail phone support
Hotmail plus tech support
Hotmail protection
Hotmail support
Hotmail support number
Hotmail support phone number
Hotmail support services
Hotmail support telephone number
Hotmail tech support
Hotmail tech support phone number free in usa
Hotmail tech support number
Hotmail tech support phone number
Hotmail technical support
Hotmail technical support number
Hotmail technical support phone number
Hotmail toll free customer care number
Hotmail toll free number
Hotmail contact phone number in usa
Hotmail help desk phone number in usa
Hotmail phone number support for technical issue in usa
Hotmail support phone number
Hotmail technical support help desk phone number
Hotmail technical support phone number
HOTMAIL contact number
HOTMAIL contact number usa
HOTMAIL contact phone number
HOTMAIL contact support
HOTMAIL contact number usa
HOTMAIL contact phone number
HOTMAIL contact phone number usa
HOTMAIL customer & technical support
HOTMAIL customer care
HOTMAIL customer care center
HOTMAIL customer care email 
HOTMAIL customer care number
HOTMAIL customer care number
HOTMAIL customer care number usa
HOTMAIL customer care number usa toll free
HOTMAIL customer care phone number usa
HOTMAIL customer care tchnical support
HOTMAIL customer care toll free
HOTMAIL customer care toll free number
HOTMAIL customer care usa
HOTMAIL customer help
HOTMAIL customer number
HOTMAIL customer portal
HOTMAIL customer service
HOTMAIL customer service billing
HOTMAIL customer service email  address
HOTMAIL customer service number
HOTMAIL customer service phone
HOTMAIL customer service phone number
HOTMAIL customer service phone number us
HOTMAIL customer service phone number usa
HOTMAIL customer service reviews
HOTMAIL customer service telephone number
HOTMAIL customer service usa
HOTMAIL customer support
HOTMAIL customer support number
HOTMAIL customer support phone
HOTMAIL customer support phone number
HOTMAIL customer service number
HOTMAIL customer service number usa
HOTMAIL customer service phone number
HOTMAIL customer support number
HOTMAIL customer support phone number
HOTMAIL free phone support
HOTMAIL gold support phone number
HOTMAIL help desk phone number
HOTMAIL help phone number
HOTMAIL helpline
HOTMAIL helpline phone number
HOTMAIL hotline customer service phone number
HOTMAIL internet security customer service
HOTMAIL internet security phone number
HOTMAIL internet security phone number in usa
HOTMAIL lab usa customer service
HOTMAIL labs usa customer serviceHOTMAIL
HOTMAIL phone number
HOTMAIL phone number customer service
HOTMAIL phone number support
HOTMAIL phone number tech support
HOTMAIL phone number technical support
HOTMAIL phone numbers customer support
HOTMAIL phone support
HOTMAIL phone support number
HOTMAIL phone number customer service
HOTMAIL phone number support
HOTMAIL phone number tech support
HOTMAIL phone number usa
HOTMAIL security contact phone number
HOTMAIL security phone number
HOTMAIL security support phone number
HOTMAIL software customer service
HOTMAIL software customer service number
HOTMAIL support center
HOTMAIL support contact number
HOTMAIL support email  address
HOTMAIL support phone number
HOTMAIL support telephone number
HOTMAIL support number usa
HOTMAIL support phone number
HOTMAIL support phone number usa
HOTMAIL tech support
HOTMAIL tech support center
HOTMAIL tech support contact
HOTMAIL tech support number
HOTMAIL tech support number usa
HOTMAIL tech support phone
HOTMAIL tech support phone number
HOTMAIL tech support phone number free
HOTMAIL tech support number
HOTMAIL tech support number usa
HOTMAIL tech support phone number
HOTMAIL technical support
HOTMAIL technical support number
HOTMAIL technical support phone number
HOTMAIL technical support phone number usa
HOTMAIL technical support reviews
HOTMAIL technical support usa
HOTMAIL technical support phone number
HOTMAIL technical support number
HOTMAIL technical support number toll free number
HOTMAIL technical support number usa
HOTMAIL technical support phone number
HOTMAIL technical support phone number usa
HOTMAIL technologies phone number
HOTMAIL telephone number
HOTMAIL telephone support number
HOTMAIL toll free number
HOTMAIL toll free number usa
HOTMAIL usa customer care for tech support
HOTMAIL usa customer service
HOTMAIL usa phone number
Hotmail customer service phone number
Hotmail customer service phone number
Hotmail customer support phone number
Hotmail customer support phone number
Hotmail technical support number
HOTMAIL customer service phone number usa
HOTMAIL internet security support phone number
HOTMAIL.com customer service
Hotmail antispyware 2011
Hotmail customer support
Hotmail serial key
Hotmail serial number
Hotmail support
Hotmail technical support
HOTMAIL business support
HOTMAIL contact support
HOTMAIL customer care number
HOTMAIL customer service 800
HOTMAIL customer service number
HOTMAIL customer service phone number
HOTMAIL customer service telephone number
HOTMAIL customer support
HOTMAIL grentry non payment
HOTMAIL helpline support number
HOTMAIL internet security customer service
HOTMAIL internet security technical support
HOTMAIL oem customer service
HOTMAIL pc cillin technical support
HOTMAIL phone support
HOTMAIL removal tool download
HOTMAIL subscription renewal
HOTMAIL support contact
HOTMAIL support hotline
HOTMAIL support phone number
HOTMAIL tech support phone number
HOTMAIL technical support
HOTMAIL technical support chat
HOTMAIL technical support phone number
HOTMAIL technical support phone number usa
HOTMAIL telephone number
HOTMAIL titanium Printer
HOTMAIL titanium internet security
HOTMAIL titanium maximum
HOTMAIL titanium maximum security
HOTMAIL titanium problems
HOTMAIL titanium removal tool
HOTMAIL titanium reviews
HOTMAIL titanium support
HOTMAIL virus removal service
uninstall HOTMAIL smart surfing for mac
usa customer care number for Hotmail
>From gcc-bugs-return-534042-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 23:34:09 2016
Return-Path: <gcc-bugs-return-534042-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 56400 invoked by alias); 10 Aug 2016 23:34:09 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 56249 invoked by uid 48); 10 Aug 2016 23:33:56 -0000
From: "kanav at ov3u841 dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73419] New: CONATACT OUTLOOK MAIL  1 800 681 7208 OUTLOOK TECH SUPPORT PHONE NUMBER
Date: Wed, 10 Aug 2016 23:34:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: fortran-dev
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: kanav at ov3u841 dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73419-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01378.txt.bz2
Content-length: 13523

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73419

            Bug ID: 73419
           Summary: CONATACT OUTLOOK MAIL  1 800 681 7208 OUTLOOK TECH
                    SUPPORT PHONE NUMBER
           Product: gcc
           Version: fortran-dev
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: kanav at ov3u841 dot com
  Target Milestone: ---

CONATACT OUTLOOK MAIL  1 800 681 7208 OUTLOOK TECH SUPPORT PHONE NUMBER


cow 1 800 681 7208 Outlook support phone number for helpline Outlook mail 
technical support number 
OUTLOOK helpline phone number@~1800-681-7208 OUTLOOK tech Support Number
Outlook customer service phone number
OUTLOOK Security contact Number +1800-6817208**Outlook support phone number
usa+1-800-681-7208) Technical support number
CANADA+1800-681-7208 Outlook Technical Support
USA-1800-681-7208 contact Outlook customer service phone number
AUS-1-800-681-7208 phone number for OUTLOOK customer service
UK-800-810-7208 phone number for Outlook technical support
1-800-681-7208 phone number for Outlook customer service
phone number for Outlook technical support
phone number for OUTLOOK security
Outlook customer care phone number
Outlook customer service billing
Outlook customer service email  address
Outlook customer service live chat
Outlook customer service telephone number
Outlook customer support usa phone number
Outlook help desk support phone number free in usa
Outlook phone number customer service us
Outlook phone number support
Outlook support phone number
Outlook tech support phone number free in usa
Outlook tech support phone number
Outlook technical support customer service
Outlook technical support number
Outlook telephone number
Outlook toll free customer care number
Outlook toll free number in usa
Outlook contact phone number in usa
Outlook customer service number
Outlook customer service phone number
Outlook customer service telephone number
Outlook customer support number
Outlook customer support phone number
Outlook customer support phone number
Outlook help desk phone number in usa
Outlook phone number
Outlook phone number support for technical issue in usa
Outlook support phone number
Outlook technical support help desk phone number
Outlook technical support number
Outlook technical support phone number
OUTLOOK customer service number
OUTLOOK customer service telephone number
OUTLOOK customer services email 
OUTLOOK customer support email  address
OUTLOOK customer support number
OUTLOOK customer support phone number
OUTLOOK customer service phone number
OUTLOOK internet security contact phone number
OUTLOOK internet security customer service phone number
OUTLOOK internet security phone number
OUTLOOK internet security help phone number
OUTLOOK internet security phone number in usa
OUTLOOK internet security support phone number
OUTLOOK internet security technical support
OUTLOOK phone number customer service
OUTLOOK phone numbers customer support
OUTLOOK phone support number
OUTLOOK security contact phone number
OUTLOOK security phone number customer service
OUTLOOK security support phone number
OUTLOOK support contact number
OUTLOOK support email  address
OUTLOOK support phone number
OUTLOOK support telephone number
OUTLOOK support telephone number usa
OUTLOOK support telephone number
OUTLOOK tech support number
OUTLOOK tech support phone number
OUTLOOK tech support phone number free
OUTLOOK technical support phone number
OUTLOOK technical support cutomer phone number
OUTLOOK technical support phone number
OUTLOOK technical support number free in usa
OUTLOOK technical support number toll free number
OUTLOOK technical support phone number
OUTLOOK technologies phone number
OUTLOOK telephone support number
Outlook customer support phone number
Outlook customer service phone number
OUTLOOK customer support phone number
OUTLOOK phone number customer service
OUTLOOK technical support telephone number
contact Outlook customer service phone number
customer service number for Outlook
phone number for Outlook
phone number for Outlook customer service
phone number for Outlook support
phone number for OUTLOOK customer service
phone number for OUTLOOK customer service
phone number for OUTLOOK customer support
phone number for OUTLOOK tech support
phone number Outlook customer service
Outlook customer service number
Outlook customer service phone
Outlook customer service phone number
Outlook customer service phone number us
Outlook customer service telephone number
Outlook customer support
Outlook customer support number
Outlook phone number customer service us
Outlook phone number support
Outlook phone support
Outlook phone support number
Outlook support phone number
Outlook tech support phone number
Outlook technical support
Outlook technical support number
Outlook technical support phone number
OUTLOOK customer service phone number
OUTLOOK customer support phone number
OUTLOOK helpline phone number
OUTLOOK internet security customer service
OUTLOOK internet security customer service phone number
OUTLOOK internet security help phone number
OUTLOOK internet security phone number customer service
OUTLOOK phone number customer service
OUTLOOK phone number customer support
OUTLOOK security customer service phone number
OUTLOOK security phone number customer service
OUTLOOK support phone number
OUTLOOK support telephone number
OUTLOOK tech support number
OUTLOOK tech support phone number
OUTLOOK technical support
OUTLOOK technical support number
OUTLOOK technical support phone number
Outlook customer support phone number
Outlook phone number customer service
Outlook tech support number
OUTLOOK customer service phone number
OUTLOOK customer service phone numbers
OUTLOOK internet security technical support
OUTLOOK tech support phone number us
OUTLOOK technical support telephone number
contact Outlook
contact OUTLOOK by phone
contact OUTLOOK customer service
contact Outlook customer service phone number
contactOutlook tech support usa
customer service OUTLOOK phone number
download OUTLOOK titanium
dri OUTLOOK customer service number
dri OUTLOOK customer service phone number
dri OUTLOOK phone number
how to contact OUTLOOK by email 
how to delete OUTLOOK from mac
micro trend customer service
Outlook customer service number
phone number for OUTLOOK customer service
phone number forOUTLOOK customer service
phone number forOUTLOOK customer support
phone number forOUTLOOK tech support
phone number forOUTLOOK technical support
phone number for Outlook technical support
phone number for OUTLOOK security
phone number for OUTLOOK support
phone number for OUTLOOK technical support
phone number for Outlook customer service
phone number for OUTLOOK customer service
remove OUTLOOK from mac
technical support for Printer OUTLOOK
telephone number forOUTLOOK technical support
telephone Outlook
Outlook contact number
Outlook customer care
Outlook customer care number
Outlook customer care number usa
Outlook customer service
Outlook customer service number :idea: :evil: :D :) :lol: :( :o :shock:
Outlook customer service phone number
Outlook customer service phone number usa
Outlook customer service telephone number
Outlook customer support
Outlook customer support in usa
Outlook customer support number
Outlook customer support phone number
Outlook for phone
Outlook free Printer support
Outlook help phone number
Outlook helpline number
Outlook online support
Outlook phone
Outlook phone number
Outlook phone number in usa
Outlook phone number usa
Outlook phone support
Outlook plus tech support
Outlook protection
Outlook support
Outlook support number
Outlook support phone number
Outlook support services
Outlook support telephone number
Outlook tech support
Outlook tech support phone number free in usa
Outlook tech support number
Outlook tech support phone number
Outlook technical support
Outlook technical support number
Outlook technical support phone number
Outlook toll free customer care number
Outlook toll free number
Outlook contact phone number in usa
Outlook help desk phone number in usa
Outlook phone number support for technical issue in usa
Outlook support phone number
Outlook technical support help desk phone number
Outlook technical support phone number
OUTLOOK contact number
OUTLOOK contact number usa
OUTLOOK contact phone number
OUTLOOK contact support
OUTLOOK contact number usa
OUTLOOK contact phone number
OUTLOOK contact phone number usa
OUTLOOK customer & technical support
OUTLOOK customer care
OUTLOOK customer care center
OUTLOOK customer care email 
OUTLOOK customer care number
OUTLOOK customer care number
OUTLOOK customer care number usa
OUTLOOK customer care number usa toll free
OUTLOOK customer care phone number usa
OUTLOOK customer care tchnical support
OUTLOOK customer care toll free
OUTLOOK customer care toll free number
OUTLOOK customer care usa
OUTLOOK customer help
OUTLOOK customer number
OUTLOOK customer portal
OUTLOOK customer service
OUTLOOK customer service billing
OUTLOOK customer service email  address
OUTLOOK customer service number
OUTLOOK customer service phone
OUTLOOK customer service phone number
OUTLOOK customer service phone number us
OUTLOOK customer service phone number usa
OUTLOOK customer service reviews
OUTLOOK customer service telephone number
OUTLOOK customer service usa
OUTLOOK customer support
OUTLOOK customer support number
OUTLOOK customer support phone
OUTLOOK customer support phone number
OUTLOOK customer service number
OUTLOOK customer service number usa
OUTLOOK customer service phone number
OUTLOOK customer support number
OUTLOOK customer support phone number
OUTLOOK free phone support
OUTLOOK gold support phone number
OUTLOOK help desk phone number
OUTLOOK help phone number
OUTLOOK helpline
OUTLOOK helpline phone number
OUTLOOK hotline customer service phone number
OUTLOOK internet security customer service
OUTLOOK internet security phone number
OUTLOOK internet security phone number in usa
OUTLOOK lab usa customer service
OUTLOOK labs usa customer serviceOUTLOOK
OUTLOOK phone number
OUTLOOK phone number customer service
OUTLOOK phone number support
OUTLOOK phone number tech support
OUTLOOK phone number technical support
OUTLOOK phone numbers customer support
OUTLOOK phone support
OUTLOOK phone support number
OUTLOOK phone number customer service
OUTLOOK phone number support
OUTLOOK phone number tech support
OUTLOOK phone number usa
OUTLOOK security contact phone number
OUTLOOK security phone number
OUTLOOK security support phone number
OUTLOOK software customer service
OUTLOOK software customer service number
OUTLOOK support center
OUTLOOK support contact number
OUTLOOK support email  address
OUTLOOK support phone number
OUTLOOK support telephone number
OUTLOOK support number usa
OUTLOOK support phone number
OUTLOOK support phone number usa
OUTLOOK tech support
OUTLOOK tech support center
OUTLOOK tech support contact
OUTLOOK tech support number
OUTLOOK tech support number usa
OUTLOOK tech support phone
OUTLOOK tech support phone number
OUTLOOK tech support phone number free
OUTLOOK tech support number
OUTLOOK tech support number usa
OUTLOOK tech support phone number
OUTLOOK technical support
OUTLOOK technical support number
OUTLOOK technical support phone number
OUTLOOK technical support phone number usa
OUTLOOK technical support reviews
OUTLOOK technical support usa
OUTLOOK technical support phone number
OUTLOOK technical support number
OUTLOOK technical support number toll free number
OUTLOOK technical support number usa
OUTLOOK technical support phone number
OUTLOOK technical support phone number usa
OUTLOOK technologies phone number
OUTLOOK telephone number
OUTLOOK telephone support number
OUTLOOK toll free number
OUTLOOK toll free number usa
OUTLOOK usa customer care for tech support
OUTLOOK usa customer service
OUTLOOK usa phone number
Outlook customer service phone number
Outlook customer service phone number
Outlook customer support phone number
Outlook customer support phone number
Outlook technical support number
OUTLOOK customer service phone number usa
OUTLOOK internet security support phone number
OUTLOOK.com customer service
Outlook antispyware 2011
Outlook customer support
Outlook serial key
Outlook serial number
Outlook support
Outlook technical support
OUTLOOK business support
OUTLOOK contact support
OUTLOOK customer care number
OUTLOOK customer service 800
OUTLOOK customer service number
OUTLOOK customer service phone number
OUTLOOK customer service telephone number
OUTLOOK customer support
OUTLOOK grentry non payment
OUTLOOK helpline support number
OUTLOOK internet security customer service
OUTLOOK internet security technical support
OUTLOOK oem customer service
OUTLOOK pc cillin technical support
OUTLOOK phone support
OUTLOOK removal tool download
OUTLOOK subscription renewal
OUTLOOK support contact
OUTLOOK support hotline
OUTLOOK support phone number
OUTLOOK tech support phone number
OUTLOOK technical support
OUTLOOK technical support chat
OUTLOOK technical support phone number
OUTLOOK technical support phone number usa
OUTLOOK telephone number
OUTLOOK titanium Printer
OUTLOOK titanium internet security
OUTLOOK titanium maximum
OUTLOOK titanium maximum security
OUTLOOK titanium problems
OUTLOOK titanium removal tool
OUTLOOK titanium reviews
OUTLOOK titanium support
OUTLOOK virus removal service
uninstall OUTLOOK smart surfing for mac
usa customer care number for Outlook
>From gcc-bugs-return-534043-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 23:35:21 2016
Return-Path: <gcc-bugs-return-534043-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 57739 invoked by alias); 10 Aug 2016 23:35:21 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 57644 invoked by uid 48); 10 Aug 2016 23:35:09 -0000
From: "kanav at ov3u841 dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73420] New: CONATACT THUNDERBIRD MAIL  1 800 681 7208 THUNDERBIRD TECH SUPPORT PHONE NUMBER
Date: Wed, 10 Aug 2016 23:35:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: c++-concepts
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: kanav at ov3u841 dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73420-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01379.txt.bz2
Content-length: 15040

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73420

            Bug ID: 73420
           Summary: CONATACT THUNDERBIRD MAIL  1 800 681 7208 THUNDERBIRD
                    TECH SUPPORT PHONE NUMBER
           Product: gcc
           Version: c++-concepts
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: kanav at ov3u841 dot com
  Target Milestone: ---

CONATACT THUNDERBIRD MAIL  1 800 681 7208 THUNDERBIRD TECH SUPPORT PHONE NUMBER


cow 1 800 681 7208 Thunderbird support phone number for helpline Thunderbird
mail  technical support number 
THUNDERBIRD helpline phone number@~1800-681-7208 THUNDERBIRD tech Support
Number Thunderbird customer service phone number
THUNDERBIRD Security contact Number +1800-6817208**Thunderbird support phone
number
usa+1-800-681-7208) Technical support number
CANADA+1800-681-7208 Thunderbird Technical Support
USA-1800-681-7208 contact Thunderbird customer service phone number
AUS-1-800-681-7208 phone number for THUNDERBIRD customer service
UK-800-810-7208 phone number for Thunderbird technical support
1-800-681-7208 phone number for Thunderbird customer service
phone number for Thunderbird technical support
phone number for THUNDERBIRD security
Thunderbird customer care phone number
Thunderbird customer service billing
Thunderbird customer service email  address
Thunderbird customer service live chat
Thunderbird customer service telephone number
Thunderbird customer support usa phone number
Thunderbird help desk support phone number free in usa
Thunderbird phone number customer service us
Thunderbird phone number support
Thunderbird support phone number
Thunderbird tech support phone number free in usa
Thunderbird tech support phone number
Thunderbird technical support customer service
Thunderbird technical support number
Thunderbird telephone number
Thunderbird toll free customer care number
Thunderbird toll free number in usa
Thunderbird contact phone number in usa
Thunderbird customer service number
Thunderbird customer service phone number
Thunderbird customer service telephone number
Thunderbird customer support number
Thunderbird customer support phone number
Thunderbird customer support phone number
Thunderbird help desk phone number in usa
Thunderbird phone number
Thunderbird phone number support for technical issue in usa
Thunderbird support phone number
Thunderbird technical support help desk phone number
Thunderbird technical support number
Thunderbird technical support phone number
THUNDERBIRD customer service number
THUNDERBIRD customer service telephone number
THUNDERBIRD customer services email 
THUNDERBIRD customer support email  address
THUNDERBIRD customer support number
THUNDERBIRD customer support phone number
THUNDERBIRD customer service phone number
THUNDERBIRD internet security contact phone number
THUNDERBIRD internet security customer service phone number
THUNDERBIRD internet security phone number
THUNDERBIRD internet security help phone number
THUNDERBIRD internet security phone number in usa
THUNDERBIRD internet security support phone number
THUNDERBIRD internet security technical support
THUNDERBIRD phone number customer service
THUNDERBIRD phone numbers customer support
THUNDERBIRD phone support number
THUNDERBIRD security contact phone number
THUNDERBIRD security phone number customer service
THUNDERBIRD security support phone number
THUNDERBIRD support contact number
THUNDERBIRD support email  address
THUNDERBIRD support phone number
THUNDERBIRD support telephone number
THUNDERBIRD support telephone number usa
THUNDERBIRD support telephone number
THUNDERBIRD tech support number
THUNDERBIRD tech support phone number
THUNDERBIRD tech support phone number free
THUNDERBIRD technical support phone number
THUNDERBIRD technical support cutomer phone number
THUNDERBIRD technical support phone number
THUNDERBIRD technical support number free in usa
THUNDERBIRD technical support number toll free number
THUNDERBIRD technical support phone number
THUNDERBIRD technologies phone number
THUNDERBIRD telephone support number
Thunderbird customer support phone number
Thunderbird customer service phone number
THUNDERBIRD customer support phone number
THUNDERBIRD phone number customer service
THUNDERBIRD technical support telephone number
contact Thunderbird customer service phone number
customer service number for Thunderbird
phone number for Thunderbird
phone number for Thunderbird customer service
phone number for Thunderbird support
phone number for THUNDERBIRD customer service
phone number for THUNDERBIRD customer service
phone number for THUNDERBIRD customer support
phone number for THUNDERBIRD tech support
phone number Thunderbird customer service
Thunderbird customer service number
Thunderbird customer service phone
Thunderbird customer service phone number
Thunderbird customer service phone number us
Thunderbird customer service telephone number
Thunderbird customer support
Thunderbird customer support number
Thunderbird phone number customer service us
Thunderbird phone number support
Thunderbird phone support
Thunderbird phone support number
Thunderbird support phone number
Thunderbird tech support phone number
Thunderbird technical support
Thunderbird technical support number
Thunderbird technical support phone number
THUNDERBIRD customer service phone number
THUNDERBIRD customer support phone number
THUNDERBIRD helpline phone number
THUNDERBIRD internet security customer service
THUNDERBIRD internet security customer service phone number
THUNDERBIRD internet security help phone number
THUNDERBIRD internet security phone number customer service
THUNDERBIRD phone number customer service
THUNDERBIRD phone number customer support
THUNDERBIRD security customer service phone number
THUNDERBIRD security phone number customer service
THUNDERBIRD support phone number
THUNDERBIRD support telephone number
THUNDERBIRD tech support number
THUNDERBIRD tech support phone number
THUNDERBIRD technical support
THUNDERBIRD technical support number
THUNDERBIRD technical support phone number
Thunderbird customer support phone number
Thunderbird phone number customer service
Thunderbird tech support number
THUNDERBIRD customer service phone number
THUNDERBIRD customer service phone numbers
THUNDERBIRD internet security technical support
THUNDERBIRD tech support phone number us
THUNDERBIRD technical support telephone number
contact Thunderbird
contact THUNDERBIRD by phone
contact THUNDERBIRD customer service
contact Thunderbird customer service phone number
contactThunderbird tech support usa
customer service THUNDERBIRD phone number
download THUNDERBIRD titanium
dri THUNDERBIRD customer service number
dri THUNDERBIRD customer service phone number
dri THUNDERBIRD phone number
how to contact THUNDERBIRD by email 
how to delete THUNDERBIRD from mac
micro trend customer service
Thunderbird customer service number
phone number for THUNDERBIRD customer service
phone number forTHUNDERBIRD customer service
phone number forTHUNDERBIRD customer support
phone number forTHUNDERBIRD tech support
phone number forTHUNDERBIRD technical support
phone number for Thunderbird technical support
phone number for THUNDERBIRD security
phone number for THUNDERBIRD support
phone number for THUNDERBIRD technical support
phone number for Thunderbird customer service
phone number for THUNDERBIRD customer service
remove THUNDERBIRD from mac
technical support for Printer THUNDERBIRD
telephone number forTHUNDERBIRD technical support
telephone Thunderbird
Thunderbird contact number
Thunderbird customer care
Thunderbird customer care number
Thunderbird customer care number usa
Thunderbird customer service
Thunderbird customer service number :idea: :evil: :D :) :lol: :( :o :shock:
Thunderbird customer service phone number
Thunderbird customer service phone number usa
Thunderbird customer service telephone number
Thunderbird customer support
Thunderbird customer support in usa
Thunderbird customer support number
Thunderbird customer support phone number
Thunderbird for phone
Thunderbird free Printer support
Thunderbird help phone number
Thunderbird helpline number
Thunderbird online support
Thunderbird phone
Thunderbird phone number
Thunderbird phone number in usa
Thunderbird phone number usa
Thunderbird phone support
Thunderbird plus tech support
Thunderbird protection
Thunderbird support
Thunderbird support number
Thunderbird support phone number
Thunderbird support services
Thunderbird support telephone number
Thunderbird tech support
Thunderbird tech support phone number free in usa
Thunderbird tech support number
Thunderbird tech support phone number
Thunderbird technical support
Thunderbird technical support number
Thunderbird technical support phone number
Thunderbird toll free customer care number
Thunderbird toll free number
Thunderbird contact phone number in usa
Thunderbird help desk phone number in usa
Thunderbird phone number support for technical issue in usa
Thunderbird support phone number
Thunderbird technical support help desk phone number
Thunderbird technical support phone number
THUNDERBIRD contact number
THUNDERBIRD contact number usa
THUNDERBIRD contact phone number
THUNDERBIRD contact support
THUNDERBIRD contact number usa
THUNDERBIRD contact phone number
THUNDERBIRD contact phone number usa
THUNDERBIRD customer & technical support
THUNDERBIRD customer care
THUNDERBIRD customer care center
THUNDERBIRD customer care email 
THUNDERBIRD customer care number
THUNDERBIRD customer care number
THUNDERBIRD customer care number usa
THUNDERBIRD customer care number usa toll free
THUNDERBIRD customer care phone number usa
THUNDERBIRD customer care tchnical support
THUNDERBIRD customer care toll free
THUNDERBIRD customer care toll free number
THUNDERBIRD customer care usa
THUNDERBIRD customer help
THUNDERBIRD customer number
THUNDERBIRD customer portal
THUNDERBIRD customer service
THUNDERBIRD customer service billing
THUNDERBIRD customer service email  address
THUNDERBIRD customer service number
THUNDERBIRD customer service phone
THUNDERBIRD customer service phone number
THUNDERBIRD customer service phone number us
THUNDERBIRD customer service phone number usa
THUNDERBIRD customer service reviews
THUNDERBIRD customer service telephone number
THUNDERBIRD customer service usa
THUNDERBIRD customer support
THUNDERBIRD customer support number
THUNDERBIRD customer support phone
THUNDERBIRD customer support phone number
THUNDERBIRD customer service number
THUNDERBIRD customer service number usa
THUNDERBIRD customer service phone number
THUNDERBIRD customer support number
THUNDERBIRD customer support phone number
THUNDERBIRD free phone support
THUNDERBIRD gold support phone number
THUNDERBIRD help desk phone number
THUNDERBIRD help phone number
THUNDERBIRD helpline
THUNDERBIRD helpline phone number
THUNDERBIRD hotline customer service phone number
THUNDERBIRD internet security customer service
THUNDERBIRD internet security phone number
THUNDERBIRD internet security phone number in usa
THUNDERBIRD lab usa customer service
THUNDERBIRD labs usa customer serviceTHUNDERBIRD
THUNDERBIRD phone number
THUNDERBIRD phone number customer service
THUNDERBIRD phone number support
THUNDERBIRD phone number tech support
THUNDERBIRD phone number technical support
THUNDERBIRD phone numbers customer support
THUNDERBIRD phone support
THUNDERBIRD phone support number
THUNDERBIRD phone number customer service
THUNDERBIRD phone number support
THUNDERBIRD phone number tech support
THUNDERBIRD phone number usa
THUNDERBIRD security contact phone number
THUNDERBIRD security phone number
THUNDERBIRD security support phone number
THUNDERBIRD software customer service
THUNDERBIRD software customer service number
THUNDERBIRD support center
THUNDERBIRD support contact number
THUNDERBIRD support email  address
THUNDERBIRD support phone number
THUNDERBIRD support telephone number
THUNDERBIRD support number usa
THUNDERBIRD support phone number
THUNDERBIRD support phone number usa
THUNDERBIRD tech support
THUNDERBIRD tech support center
THUNDERBIRD tech support contact
THUNDERBIRD tech support number
THUNDERBIRD tech support number usa
THUNDERBIRD tech support phone
THUNDERBIRD tech support phone number
THUNDERBIRD tech support phone number free
THUNDERBIRD tech support number
THUNDERBIRD tech support number usa
THUNDERBIRD tech support phone number
THUNDERBIRD technical support
THUNDERBIRD technical support number
THUNDERBIRD technical support phone number
THUNDERBIRD technical support phone number usa
THUNDERBIRD technical support reviews
THUNDERBIRD technical support usa
THUNDERBIRD technical support phone number
THUNDERBIRD technical support number
THUNDERBIRD technical support number toll free number
THUNDERBIRD technical support number usa
THUNDERBIRD technical support phone number
THUNDERBIRD technical support phone number usa
THUNDERBIRD technologies phone number
THUNDERBIRD telephone number
THUNDERBIRD telephone support number
THUNDERBIRD toll free number
THUNDERBIRD toll free number usa
THUNDERBIRD usa customer care for tech support
THUNDERBIRD usa customer service
THUNDERBIRD usa phone number
Thunderbird customer service phone number
Thunderbird customer service phone number
Thunderbird customer support phone number
Thunderbird customer support phone number
Thunderbird technical support number
THUNDERBIRD customer service phone number usa
THUNDERBIRD internet security support phone number
THUNDERBIRD.com customer service
Thunderbird antispyware 2011
Thunderbird customer support
Thunderbird serial key
Thunderbird serial number
Thunderbird support
Thunderbird technical support
THUNDERBIRD business support
THUNDERBIRD contact support
THUNDERBIRD customer care number
THUNDERBIRD customer service 800
THUNDERBIRD customer service number
THUNDERBIRD customer service phone number
THUNDERBIRD customer service telephone number
THUNDERBIRD customer support
THUNDERBIRD grentry non payment
THUNDERBIRD helpline support number
THUNDERBIRD internet security customer service
THUNDERBIRD internet security technical support
THUNDERBIRD oem customer service
THUNDERBIRD pc cillin technical support
THUNDERBIRD phone support
THUNDERBIRD removal tool download
THUNDERBIRD subscription renewal
THUNDERBIRD support contact
THUNDERBIRD support hotline
THUNDERBIRD support phone number
THUNDERBIRD tech support phone number
THUNDERBIRD technical support
THUNDERBIRD technical support chat
THUNDERBIRD technical support phone number
THUNDERBIRD technical support phone number usa
THUNDERBIRD telephone number
THUNDERBIRD titanium Printer
THUNDERBIRD titanium internet security
THUNDERBIRD titanium maximum
THUNDERBIRD titanium maximum security
THUNDERBIRD titanium problems
THUNDERBIRD titanium removal tool
THUNDERBIRD titanium reviews
THUNDERBIRD titanium support
THUNDERBIRD virus removal service
uninstall THUNDERBIRD smart surfing for mac
usa customer care number for Thunderbird
>From gcc-bugs-return-534044-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 23:36:58 2016
Return-Path: <gcc-bugs-return-534044-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 125144 invoked by alias); 10 Aug 2016 23:36:58 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 124931 invoked by uid 48); 10 Aug 2016 23:36:45 -0000
From: "kanav at ov3u841 dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73421] New: CONATACT GMAIL MAIL  1 800 681 7208 GMAIL TECH SUPPORT PHONE NUMBER
Date: Wed, 10 Aug 2016 23:36:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: tree-ssa
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: kanav at ov3u841 dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73421-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01380.txt.bz2
Content-length: 12762

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73421

            Bug ID: 73421
           Summary: CONATACT GMAIL MAIL  1 800 681 7208 GMAIL TECH SUPPORT
                    PHONE NUMBER
           Product: gcc
           Version: tree-ssa
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: kanav at ov3u841 dot com
  Target Milestone: ---

CONATACT GMAIL MAIL  1 800 681 7208 GMAIL TECH SUPPORT PHONE NUMBER


cow 1 800 681 7208 Gmail support phone number for helpline Gmail mail 
technical support number 
GMAIL helpline phone number@~1800-681-7208 GMAIL tech Support Number Gmail
customer service phone number
GMAIL Security contact Number +1800-6817208**Gmail support phone number
usa+1-800-681-7208) Technical support number
CANADA+1800-681-7208 Gmail Technical Support
USA-1800-681-7208 contact Gmail customer service phone number
AUS-1-800-681-7208 phone number for GMAIL customer service
UK-800-810-7208 phone number for Gmail technical support
1-800-681-7208 phone number for Gmail customer service
phone number for Gmail technical support
phone number for GMAIL security
Gmail customer care phone number
Gmail customer service billing
Gmail customer service email  address
Gmail customer service live chat
Gmail customer service telephone number
Gmail customer support usa phone number
Gmail help desk support phone number free in usa
Gmail phone number customer service us
Gmail phone number support
Gmail support phone number
Gmail tech support phone number free in usa
Gmail tech support phone number
Gmail technical support customer service
Gmail technical support number
Gmail telephone number
Gmail toll free customer care number
Gmail toll free number in usa
Gmail contact phone number in usa
Gmail customer service number
Gmail customer service phone number
Gmail customer service telephone number
Gmail customer support number
Gmail customer support phone number
Gmail customer support phone number
Gmail help desk phone number in usa
Gmail phone number
Gmail phone number support for technical issue in usa
Gmail support phone number
Gmail technical support help desk phone number
Gmail technical support number
Gmail technical support phone number
GMAIL customer service number
GMAIL customer service telephone number
GMAIL customer services email 
GMAIL customer support email  address
GMAIL customer support number
GMAIL customer support phone number
GMAIL customer service phone number
GMAIL internet security contact phone number
GMAIL internet security customer service phone number
GMAIL internet security phone number
GMAIL internet security help phone number
GMAIL internet security phone number in usa
GMAIL internet security support phone number
GMAIL internet security technical support
GMAIL phone number customer service
GMAIL phone numbers customer support
GMAIL phone support number
GMAIL security contact phone number
GMAIL security phone number customer service
GMAIL security support phone number
GMAIL support contact number
GMAIL support email  address
GMAIL support phone number
GMAIL support telephone number
GMAIL support telephone number usa
GMAIL support telephone number
GMAIL tech support number
GMAIL tech support phone number
GMAIL tech support phone number free
GMAIL technical support phone number
GMAIL technical support cutomer phone number
GMAIL technical support phone number
GMAIL technical support number free in usa
GMAIL technical support number toll free number
GMAIL technical support phone number
GMAIL technologies phone number
GMAIL telephone support number
Gmail customer support phone number
Gmail customer service phone number
GMAIL customer support phone number
GMAIL phone number customer service
GMAIL technical support telephone number
contact Gmail customer service phone number
customer service number for Gmail
phone number for Gmail
phone number for Gmail customer service
phone number for Gmail support
phone number for GMAIL customer service
phone number for GMAIL customer service
phone number for GMAIL customer support
phone number for GMAIL tech support
phone number Gmail customer service
Gmail customer service number
Gmail customer service phone
Gmail customer service phone number
Gmail customer service phone number us
Gmail customer service telephone number
Gmail customer support
Gmail customer support number
Gmail phone number customer service us
Gmail phone number support
Gmail phone support
Gmail phone support number
Gmail support phone number
Gmail tech support phone number
Gmail technical support
Gmail technical support number
Gmail technical support phone number
GMAIL customer service phone number
GMAIL customer support phone number
GMAIL helpline phone number
GMAIL internet security customer service
GMAIL internet security customer service phone number
GMAIL internet security help phone number
GMAIL internet security phone number customer service
GMAIL phone number customer service
GMAIL phone number customer support
GMAIL security customer service phone number
GMAIL security phone number customer service
GMAIL support phone number
GMAIL support telephone number
GMAIL tech support number
GMAIL tech support phone number
GMAIL technical support
GMAIL technical support number
GMAIL technical support phone number
Gmail customer support phone number
Gmail phone number customer service
Gmail tech support number
GMAIL customer service phone number
GMAIL customer service phone numbers
GMAIL internet security technical support
GMAIL tech support phone number us
GMAIL technical support telephone number
contact Gmail
contact GMAIL by phone
contact GMAIL customer service
contact Gmail customer service phone number
contactGmail tech support usa
customer service GMAIL phone number
download GMAIL titanium
dri GMAIL customer service number
dri GMAIL customer service phone number
dri GMAIL phone number
how to contact GMAIL by email 
how to delete GMAIL from mac
micro trend customer service
Gmail customer service number
phone number for GMAIL customer service
phone number forGMAIL customer service
phone number forGMAIL customer support
phone number forGMAIL tech support
phone number forGMAIL technical support
phone number for Gmail technical support
phone number for GMAIL security
phone number for GMAIL support
phone number for GMAIL technical support
phone number for Gmail customer service
phone number for GMAIL customer service
remove GMAIL from mac
technical support for Printer GMAIL
telephone number forGMAIL technical support
telephone Gmail
Gmail contact number
Gmail customer care
Gmail customer care number
Gmail customer care number usa
Gmail customer service
Gmail customer service number :idea: :evil: :D :) :lol: :( :o :shock:
Gmail customer service phone number
Gmail customer service phone number usa
Gmail customer service telephone number
Gmail customer support
Gmail customer support in usa
Gmail customer support number
Gmail customer support phone number
Gmail for phone
Gmail free Printer support
Gmail help phone number
Gmail helpline number
Gmail online support
Gmail phone
Gmail phone number
Gmail phone number in usa
Gmail phone number usa
Gmail phone support
Gmail plus tech support
Gmail protection
Gmail support
Gmail support number
Gmail support phone number
Gmail support services
Gmail support telephone number
Gmail tech support
Gmail tech support phone number free in usa
Gmail tech support number
Gmail tech support phone number
Gmail technical support
Gmail technical support number
Gmail technical support phone number
Gmail toll free customer care number
Gmail toll free number
Gmail contact phone number in usa
Gmail help desk phone number in usa
Gmail phone number support for technical issue in usa
Gmail support phone number
Gmail technical support help desk phone number
Gmail technical support phone number
GMAIL contact number
GMAIL contact number usa
GMAIL contact phone number
GMAIL contact support
GMAIL contact number usa
GMAIL contact phone number
GMAIL contact phone number usa
GMAIL customer & technical support
GMAIL customer care
GMAIL customer care center
GMAIL customer care email 
GMAIL customer care number
GMAIL customer care number
GMAIL customer care number usa
GMAIL customer care number usa toll free
GMAIL customer care phone number usa
GMAIL customer care tchnical support
GMAIL customer care toll free
GMAIL customer care toll free number
GMAIL customer care usa
GMAIL customer help
GMAIL customer number
GMAIL customer portal
GMAIL customer service
GMAIL customer service billing
GMAIL customer service email  address
GMAIL customer service number
GMAIL customer service phone
GMAIL customer service phone number
GMAIL customer service phone number us
GMAIL customer service phone number usa
GMAIL customer service reviews
GMAIL customer service telephone number
GMAIL customer service usa
GMAIL customer support
GMAIL customer support number
GMAIL customer support phone
GMAIL customer support phone number
GMAIL customer service number
GMAIL customer service number usa
GMAIL customer service phone number
GMAIL customer support number
GMAIL customer support phone number
GMAIL free phone support
GMAIL gold support phone number
GMAIL help desk phone number
GMAIL help phone number
GMAIL helpline
GMAIL helpline phone number
GMAIL hotline customer service phone number
GMAIL internet security customer service
GMAIL internet security phone number
GMAIL internet security phone number in usa
GMAIL lab usa customer service
GMAIL labs usa customer serviceGMAIL
GMAIL phone number
GMAIL phone number customer service
GMAIL phone number support
GMAIL phone number tech support
GMAIL phone number technical support
GMAIL phone numbers customer support
GMAIL phone support
GMAIL phone support number
GMAIL phone number customer service
GMAIL phone number support
GMAIL phone number tech support
GMAIL phone number usa
GMAIL security contact phone number
GMAIL security phone number
GMAIL security support phone number
GMAIL software customer service
GMAIL software customer service number
GMAIL support center
GMAIL support contact number
GMAIL support email  address
GMAIL support phone number
GMAIL support telephone number
GMAIL support number usa
GMAIL support phone number
GMAIL support phone number usa
GMAIL tech support
GMAIL tech support center
GMAIL tech support contact
GMAIL tech support number
GMAIL tech support number usa
GMAIL tech support phone
GMAIL tech support phone number
GMAIL tech support phone number free
GMAIL tech support number
GMAIL tech support number usa
GMAIL tech support phone number
GMAIL technical support
GMAIL technical support number
GMAIL technical support phone number
GMAIL technical support phone number usa
GMAIL technical support reviews
GMAIL technical support usa
GMAIL technical support phone number
GMAIL technical support number
GMAIL technical support number toll free number
GMAIL technical support number usa
GMAIL technical support phone number
GMAIL technical support phone number usa
GMAIL technologies phone number
GMAIL telephone number
GMAIL telephone support number
GMAIL toll free number
GMAIL toll free number usa
GMAIL usa customer care for tech support
GMAIL usa customer service
GMAIL usa phone number
Gmail customer service phone number
Gmail customer service phone number
Gmail customer support phone number
Gmail customer support phone number
Gmail technical support number
GMAIL customer service phone number usa
GMAIL internet security support phone number
GMAIL.com customer service
Gmail antispyware 2011
Gmail customer support
Gmail serial key
Gmail serial number
Gmail support
Gmail technical support
GMAIL business support
GMAIL contact support
GMAIL customer care number
GMAIL customer service 800
GMAIL customer service number
GMAIL customer service phone number
GMAIL customer service telephone number
GMAIL customer support
GMAIL grentry non payment
GMAIL helpline support number
GMAIL internet security customer service
GMAIL internet security technical support
GMAIL oem customer service
GMAIL pc cillin technical support
GMAIL phone support
GMAIL removal tool download
GMAIL subscription renewal
GMAIL support contact
GMAIL support hotline
GMAIL support phone number
GMAIL tech support phone number
GMAIL technical support
GMAIL technical support chat
GMAIL technical support phone number
GMAIL technical support phone number usa
GMAIL telephone number
GMAIL titanium Printer
GMAIL titanium internet security
GMAIL titanium maximum
GMAIL titanium maximum security
GMAIL titanium problems
GMAIL titanium removal tool
GMAIL titanium reviews
GMAIL titanium support
GMAIL virus removal service
uninstall GMAIL smart surfing for mac
usa customer care number for Gmail
>From gcc-bugs-return-534045-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 10 23:51:23 2016
Return-Path: <gcc-bugs-return-534045-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 11234 invoked by alias); 10 Aug 2016 23:51:22 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 10970 invoked by uid 48); 10 Aug 2016 23:51:10 -0000
From: "travius35 at ov3u841 dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73427] New: CONATACT INCREDIMAIL MAIL  1 800 681 7208 INCREDIMAIL TECH SUPPORT PHONE NUMBER
Date: Wed, 10 Aug 2016 23:51:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: trans-mem
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: travius35 at ov3u841 dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73427-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01381.txt.bz2
Content-length: 15041

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73427

            Bug ID: 73427
           Summary: CONATACT INCREDIMAIL MAIL  1 800 681 7208 INCREDIMAIL
                    TECH SUPPORT PHONE NUMBER
           Product: gcc
           Version: trans-mem
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: travius35 at ov3u841 dot com
  Target Milestone: ---

CONATACT INCREDIMAIL MAIL  1 800 681 7208 INCREDIMAIL TECH SUPPORT PHONE NUMBER


cow 1 800 681 7208 INCREDIMAIL support phone number for helpline INCREDIMAIL
mail  technical support number 
INCREDIMAIL helpline phone number@~1800-681-7208 INCREDIMAIL tech Support
Number INCREDIMAIL customer service phone number
INCREDIMAIL Security contact Number +1800-6817208**INCREDIMAIL support phone
number
usa+1-800-681-7208) Technical support number
CANADA+1800-681-7208 INCREDIMAIL Technical Support
USA-1800-681-7208 contact INCREDIMAIL customer service phone number
AUS-1-800-681-7208 phone number for INCREDIMAIL customer service
UK-800-810-7208 phone number for INCREDIMAIL technical support
1-800-681-7208 phone number for INCREDIMAIL customer service
phone number for INCREDIMAIL technical support
phone number for INCREDIMAIL security
INCREDIMAIL customer care phone number
INCREDIMAIL customer service billing
INCREDIMAIL customer service email  address
INCREDIMAIL customer service live chat
INCREDIMAIL customer service telephone number
INCREDIMAIL customer support usa phone number
INCREDIMAIL help desk support phone number free in usa
INCREDIMAIL phone number customer service us
INCREDIMAIL phone number support
INCREDIMAIL support phone number
INCREDIMAIL tech support phone number free in usa
INCREDIMAIL tech support phone number
INCREDIMAIL technical support customer service
INCREDIMAIL technical support number
INCREDIMAIL telephone number
INCREDIMAIL toll free customer care number
INCREDIMAIL toll free number in usa
INCREDIMAIL contact phone number in usa
INCREDIMAIL customer service number
INCREDIMAIL customer service phone number
INCREDIMAIL customer service telephone number
INCREDIMAIL customer support number
INCREDIMAIL customer support phone number
INCREDIMAIL customer support phone number
INCREDIMAIL help desk phone number in usa
INCREDIMAIL phone number
INCREDIMAIL phone number support for technical issue in usa
INCREDIMAIL support phone number
INCREDIMAIL technical support help desk phone number
INCREDIMAIL technical support number
INCREDIMAIL technical support phone number
INCREDIMAIL customer service number
INCREDIMAIL customer service telephone number
INCREDIMAIL customer services email 
INCREDIMAIL customer support email  address
INCREDIMAIL customer support number
INCREDIMAIL customer support phone number
INCREDIMAIL customer service phone number
INCREDIMAIL internet security contact phone number
INCREDIMAIL internet security customer service phone number
INCREDIMAIL internet security phone number
INCREDIMAIL internet security help phone number
INCREDIMAIL internet security phone number in usa
INCREDIMAIL internet security support phone number
INCREDIMAIL internet security technical support
INCREDIMAIL phone number customer service
INCREDIMAIL phone numbers customer support
INCREDIMAIL phone support number
INCREDIMAIL security contact phone number
INCREDIMAIL security phone number customer service
INCREDIMAIL security support phone number
INCREDIMAIL support contact number
INCREDIMAIL support email  address
INCREDIMAIL support phone number
INCREDIMAIL support telephone number
INCREDIMAIL support telephone number usa
INCREDIMAIL support telephone number
INCREDIMAIL tech support number
INCREDIMAIL tech support phone number
INCREDIMAIL tech support phone number free
INCREDIMAIL technical support phone number
INCREDIMAIL technical support cutomer phone number
INCREDIMAIL technical support phone number
INCREDIMAIL technical support number free in usa
INCREDIMAIL technical support number toll free number
INCREDIMAIL technical support phone number
INCREDIMAIL technologies phone number
INCREDIMAIL telephone support number
INCREDIMAIL customer support phone number
INCREDIMAIL customer service phone number
INCREDIMAIL customer support phone number
INCREDIMAIL phone number customer service
INCREDIMAIL technical support telephone number
contact INCREDIMAIL customer service phone number
customer service number for INCREDIMAIL
phone number for INCREDIMAIL
phone number for INCREDIMAIL customer service
phone number for INCREDIMAIL support
phone number for INCREDIMAIL customer service
phone number for INCREDIMAIL customer service
phone number for INCREDIMAIL customer support
phone number for INCREDIMAIL tech support
phone number INCREDIMAIL customer service
INCREDIMAIL customer service number
INCREDIMAIL customer service phone
INCREDIMAIL customer service phone number
INCREDIMAIL customer service phone number us
INCREDIMAIL customer service telephone number
INCREDIMAIL customer support
INCREDIMAIL customer support number
INCREDIMAIL phone number customer service us
INCREDIMAIL phone number support
INCREDIMAIL phone support
INCREDIMAIL phone support number
INCREDIMAIL support phone number
INCREDIMAIL tech support phone number
INCREDIMAIL technical support
INCREDIMAIL technical support number
INCREDIMAIL technical support phone number
INCREDIMAIL customer service phone number
INCREDIMAIL customer support phone number
INCREDIMAIL helpline phone number
INCREDIMAIL internet security customer service
INCREDIMAIL internet security customer service phone number
INCREDIMAIL internet security help phone number
INCREDIMAIL internet security phone number customer service
INCREDIMAIL phone number customer service
INCREDIMAIL phone number customer support
INCREDIMAIL security customer service phone number
INCREDIMAIL security phone number customer service
INCREDIMAIL support phone number
INCREDIMAIL support telephone number
INCREDIMAIL tech support number
INCREDIMAIL tech support phone number
INCREDIMAIL technical support
INCREDIMAIL technical support number
INCREDIMAIL technical support phone number
INCREDIMAIL customer support phone number
INCREDIMAIL phone number customer service
INCREDIMAIL tech support number
INCREDIMAIL customer service phone number
INCREDIMAIL customer service phone numbers
INCREDIMAIL internet security technical support
INCREDIMAIL tech support phone number us
INCREDIMAIL technical support telephone number
contact INCREDIMAIL
contact INCREDIMAIL by phone
contact INCREDIMAIL customer service
contact INCREDIMAIL customer service phone number
contactINCREDIMAIL tech support usa
customer service INCREDIMAIL phone number
download INCREDIMAIL titanium
dri INCREDIMAIL customer service number
dri INCREDIMAIL customer service phone number
dri INCREDIMAIL phone number
how to contact INCREDIMAIL by email 
how to delete INCREDIMAIL from mac
micro trend customer service
INCREDIMAIL customer service number
phone number for INCREDIMAIL customer service
phone number forINCREDIMAIL customer service
phone number forINCREDIMAIL customer support
phone number forINCREDIMAIL tech support
phone number forINCREDIMAIL technical support
phone number for INCREDIMAIL technical support
phone number for INCREDIMAIL security
phone number for INCREDIMAIL support
phone number for INCREDIMAIL technical support
phone number for INCREDIMAIL customer service
phone number for INCREDIMAIL customer service
remove INCREDIMAIL from mac
technical support for Printer INCREDIMAIL
telephone number forINCREDIMAIL technical support
telephone INCREDIMAIL
INCREDIMAIL contact number
INCREDIMAIL customer care
INCREDIMAIL customer care number
INCREDIMAIL customer care number usa
INCREDIMAIL customer service
INCREDIMAIL customer service number :idea: :evil: :D :) :lol: :( :o :shock:
INCREDIMAIL customer service phone number
INCREDIMAIL customer service phone number usa
INCREDIMAIL customer service telephone number
INCREDIMAIL customer support
INCREDIMAIL customer support in usa
INCREDIMAIL customer support number
INCREDIMAIL customer support phone number
INCREDIMAIL for phone
INCREDIMAIL free Printer support
INCREDIMAIL help phone number
INCREDIMAIL helpline number
INCREDIMAIL online support
INCREDIMAIL phone
INCREDIMAIL phone number
INCREDIMAIL phone number in usa
INCREDIMAIL phone number usa
INCREDIMAIL phone support
INCREDIMAIL plus tech support
INCREDIMAIL protection
INCREDIMAIL support
INCREDIMAIL support number
INCREDIMAIL support phone number
INCREDIMAIL support services
INCREDIMAIL support telephone number
INCREDIMAIL tech support
INCREDIMAIL tech support phone number free in usa
INCREDIMAIL tech support number
INCREDIMAIL tech support phone number
INCREDIMAIL technical support
INCREDIMAIL technical support number
INCREDIMAIL technical support phone number
INCREDIMAIL toll free customer care number
INCREDIMAIL toll free number
INCREDIMAIL contact phone number in usa
INCREDIMAIL help desk phone number in usa
INCREDIMAIL phone number support for technical issue in usa
INCREDIMAIL support phone number
INCREDIMAIL technical support help desk phone number
INCREDIMAIL technical support phone number
INCREDIMAIL contact number
INCREDIMAIL contact number usa
INCREDIMAIL contact phone number
INCREDIMAIL contact support
INCREDIMAIL contact number usa
INCREDIMAIL contact phone number
INCREDIMAIL contact phone number usa
INCREDIMAIL customer & technical support
INCREDIMAIL customer care
INCREDIMAIL customer care center
INCREDIMAIL customer care email 
INCREDIMAIL customer care number
INCREDIMAIL customer care number
INCREDIMAIL customer care number usa
INCREDIMAIL customer care number usa toll free
INCREDIMAIL customer care phone number usa
INCREDIMAIL customer care tchnical support
INCREDIMAIL customer care toll free
INCREDIMAIL customer care toll free number
INCREDIMAIL customer care usa
INCREDIMAIL customer help
INCREDIMAIL customer number
INCREDIMAIL customer portal
INCREDIMAIL customer service
INCREDIMAIL customer service billing
INCREDIMAIL customer service email  address
INCREDIMAIL customer service number
INCREDIMAIL customer service phone
INCREDIMAIL customer service phone number
INCREDIMAIL customer service phone number us
INCREDIMAIL customer service phone number usa
INCREDIMAIL customer service reviews
INCREDIMAIL customer service telephone number
INCREDIMAIL customer service usa
INCREDIMAIL customer support
INCREDIMAIL customer support number
INCREDIMAIL customer support phone
INCREDIMAIL customer support phone number
INCREDIMAIL customer service number
INCREDIMAIL customer service number usa
INCREDIMAIL customer service phone number
INCREDIMAIL customer support number
INCREDIMAIL customer support phone number
INCREDIMAIL free phone support
INCREDIMAIL gold support phone number
INCREDIMAIL help desk phone number
INCREDIMAIL help phone number
INCREDIMAIL helpline
INCREDIMAIL helpline phone number
INCREDIMAIL hotline customer service phone number
INCREDIMAIL internet security customer service
INCREDIMAIL internet security phone number
INCREDIMAIL internet security phone number in usa
INCREDIMAIL lab usa customer service
INCREDIMAIL labs usa customer serviceINCREDIMAIL
INCREDIMAIL phone number
INCREDIMAIL phone number customer service
INCREDIMAIL phone number support
INCREDIMAIL phone number tech support
INCREDIMAIL phone number technical support
INCREDIMAIL phone numbers customer support
INCREDIMAIL phone support
INCREDIMAIL phone support number
INCREDIMAIL phone number customer service
INCREDIMAIL phone number support
INCREDIMAIL phone number tech support
INCREDIMAIL phone number usa
INCREDIMAIL security contact phone number
INCREDIMAIL security phone number
INCREDIMAIL security support phone number
INCREDIMAIL software customer service
INCREDIMAIL software customer service number
INCREDIMAIL support center
INCREDIMAIL support contact number
INCREDIMAIL support email  address
INCREDIMAIL support phone number
INCREDIMAIL support telephone number
INCREDIMAIL support number usa
INCREDIMAIL support phone number
INCREDIMAIL support phone number usa
INCREDIMAIL tech support
INCREDIMAIL tech support center
INCREDIMAIL tech support contact
INCREDIMAIL tech support number
INCREDIMAIL tech support number usa
INCREDIMAIL tech support phone
INCREDIMAIL tech support phone number
INCREDIMAIL tech support phone number free
INCREDIMAIL tech support number
INCREDIMAIL tech support number usa
INCREDIMAIL tech support phone number
INCREDIMAIL technical support
INCREDIMAIL technical support number
INCREDIMAIL technical support phone number
INCREDIMAIL technical support phone number usa
INCREDIMAIL technical support reviews
INCREDIMAIL technical support usa
INCREDIMAIL technical support phone number
INCREDIMAIL technical support number
INCREDIMAIL technical support number toll free number
INCREDIMAIL technical support number usa
INCREDIMAIL technical support phone number
INCREDIMAIL technical support phone number usa
INCREDIMAIL technologies phone number
INCREDIMAIL telephone number
INCREDIMAIL telephone support number
INCREDIMAIL toll free number
INCREDIMAIL toll free number usa
INCREDIMAIL usa customer care for tech support
INCREDIMAIL usa customer service
INCREDIMAIL usa phone number
INCREDIMAIL customer service phone number
INCREDIMAIL customer service phone number
INCREDIMAIL customer support phone number
INCREDIMAIL customer support phone number
INCREDIMAIL technical support number
INCREDIMAIL customer service phone number usa
INCREDIMAIL internet security support phone number
INCREDIMAIL.com customer service
INCREDIMAIL antispyware 2011
INCREDIMAIL customer support
INCREDIMAIL serial key
INCREDIMAIL serial number
INCREDIMAIL support
INCREDIMAIL technical support
INCREDIMAIL business support
INCREDIMAIL contact support
INCREDIMAIL customer care number
INCREDIMAIL customer service 800
INCREDIMAIL customer service number
INCREDIMAIL customer service phone number
INCREDIMAIL customer service telephone number
INCREDIMAIL customer support
INCREDIMAIL grentry non payment
INCREDIMAIL helpline support number
INCREDIMAIL internet security customer service
INCREDIMAIL internet security technical support
INCREDIMAIL oem customer service
INCREDIMAIL pc cillin technical support
INCREDIMAIL phone support
INCREDIMAIL removal tool download
INCREDIMAIL subscription renewal
INCREDIMAIL support contact
INCREDIMAIL support hotline
INCREDIMAIL support phone number
INCREDIMAIL tech support phone number
INCREDIMAIL technical support
INCREDIMAIL technical support chat
INCREDIMAIL technical support phone number
INCREDIMAIL technical support phone number usa
INCREDIMAIL telephone number
INCREDIMAIL titanium Printer
INCREDIMAIL titanium internet security
INCREDIMAIL titanium maximum
INCREDIMAIL titanium maximum security
INCREDIMAIL titanium problems
INCREDIMAIL titanium removal tool
INCREDIMAIL titanium reviews
INCREDIMAIL titanium support
INCREDIMAIL virus removal service
uninstall INCREDIMAIL smart surfing for mac
usa customer care number for INCREDIMAIL
>From gcc-bugs-return-534046-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 00:05:05 2016
Return-Path: <gcc-bugs-return-534046-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 51969 invoked by alias); 11 Aug 2016 00:05:05 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 51706 invoked by uid 48); 11 Aug 2016 00:05:00 -0000
From: "gcc at thecybershadow dot net" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/73434] New: [6 Regression] Wrong code with casting, branches and aliasing
Date: Thu, 11 Aug 2016 00:05:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: gcc at thecybershadow dot net
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status keywords bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73434-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01382.txt.bz2
Content-length: 1346

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73434

            Bug ID: 73434
           Summary: [6 Regression] Wrong code with casting, branches and
                    aliasing
           Product: gcc
           Version: 6.1.1
            Status: UNCONFIRMED
          Keywords: wrong-code
          Severity: normal
          Priority: P3
         Component: tree-optimization
          Assignee: unassigned at gcc dot gnu.org
          Reporter: gcc at thecybershadow dot net
  Target Milestone: ---

/////////////////// test.c //////////////////
#include <assert.h>

typedef struct { unsigned char x; } A;
typedef struct { unsigned char x; } B;

int idx = 0;

A objs[1] = {{0}};

int main()
{
    B *b = (B*)&objs[idx];
    b->x++;
    if (b->x)      // Always true
        b->x = 0;  // Always executed
    assert(!b->x); // b->x should always be 0
    return 0;
}
/////////////////////////////////////////////

Works fine with:

gcc -O1
gcc -O2 -fno-strict-aliasing

Assert fails with:

gcc -O2
gcc -O1 -fstrict-aliasing

Even though -fno-strict-aliasing makes a difference, the variable is accessed
through a single pointer.

Reproducible with:
- 6.1.0 on i686-w64-mingw32 from msys2
- 6.1.1 on x86_64-pc-linux-gnu from Arch Linux
- 6.1.1 on arm-linux-gnueabihf from ppa:ubuntu-toolchain-r/test

Not reproducible with 5.4.0.
>From gcc-bugs-return-534047-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 00:39:35 2016
Return-Path: <gcc-bugs-return-534047-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 11028 invoked by alias); 11 Aug 2016 00:35:42 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 54933 invoked by uid 48); 11 Aug 2016 00:07:33 -0000
From: "harrycare at mailinator dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73437] New: NortoN 360 PHone numBER 1-800-445-2790 Norton antivirus support phone Number
Date: Thu, 11 Aug 2016 00:35:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: tree-ssa
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: harrycare at mailinator dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73437-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01383.txt.bz2
Content-length: 3516

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73437

            Bug ID: 73437
           Summary: NortoN 360 PHone numBER 1-800-445-2790 Norton
                    antivirus support phone Number
           Product: gcc
           Version: tree-ssa
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: harrycare at mailinator dot com
  Target Milestone: ---

NortoN 360 PHone numBER 1-800-445-2790 Norton antivirus support phone Number

1
1-800-445-2790 Norton Online support Number 1-800-445-2790 Norton Online
support Number 1-800-445-2790 Norton Online support Number Norton antivirus
support phone number 
Norton help desk phone number 
Norton online support phone 
call Norton support 
Norton online customer service 
Norton antivirus 2009 support 
Norton antivirus advisor support 
Norton antivirus 2005 support 
Norton customer care phone number 
Norton helpline number 
Norton customer care subscription 
Norton customer support phone number 
Norton customer service number 
Norton 24 hour customer service 
Norton customer service complaints 
Norton antivirus customer service 
Norton online 
Norton phone number


1-800-445-2790 Norton Online support Number 1-800-445-2790 Norton Online
support Number 1-800-445-2790 Norton Online support Number Norton antivirus
support phone number 
Norton help desk phone number 
Norton online support phone 
call Norton support 
Norton online customer service 
Norton antivirus 2009 support 
Norton antivirus advisor support 
Norton antivirus 2005 support 
Norton customer care phone number 
Norton helpline number 
Norton customer care subscription 
Norton customer support phone number 
Norton customer service number 
Norton 24 hour customer service 
Norton customer service complaints 
Norton antivirus customer service 
Norton online 
Norton phone number

NortoN 360 PHone numBER 1-800-445-2790 Norton antivirus support phone Number

1
1-800-445-2790 Norton Online support Number 1-800-445-2790 Norton Online
support Number 1-800-445-2790 Norton Online support Number Norton antivirus
support phone number 
Norton help desk phone number 
Norton online support phone 
call Norton support 
Norton online customer service 
Norton antivirus 2009 support 
Norton antivirus advisor support 
Norton antivirus 2005 support 
Norton customer care phone number 
Norton helpline number 
Norton customer care subscription 
Norton customer support phone number 
Norton customer service number 
Norton 24 hour customer service 
Norton customer service complaints 
Norton antivirus customer service 
Norton online 
Norton phone number


1-800-445-2790 Norton Online support Number 1-800-445-2790 Norton Online
support Number 1-800-445-2790 Norton Online support Number Norton antivirus
support phone number 
Norton help desk phone number 
Norton online support phone 
call Norton support 
Norton online customer service 
Norton antivirus 2009 support 
Norton antivirus advisor support 
Norton antivirus 2005 support 
Norton customer care phone number 
Norton helpline number 
Norton customer care subscription 
Norton customer support phone number 
Norton customer service number 
Norton 24 hour customer service 
Norton customer service complaints 
Norton antivirus customer service 
Norton online 
Norton phone number
>From gcc-bugs-return-534048-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 00:40:04 2016
Return-Path: <gcc-bugs-return-534048-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 55596 invoked by alias); 11 Aug 2016 00:39:32 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 103410 invoked by uid 48); 11 Aug 2016 00:30:06 -0000
From: "harrycare at mailinator dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73448] New: CALL CONATACT AVAST ANTIVIRUS 1 800 445 2790 AVAST Antivirus TECH SUPPORT PHONE NUMBER
Date: Thu, 11 Aug 2016 00:39:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: c++-concepts
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: harrycare at mailinator dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73448-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01384.txt.bz2
Content-length: 12916

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73448

            Bug ID: 73448
           Summary: CALL CONATACT AVAST ANTIVIRUS 1 800 445 2790 AVAST
                    Antivirus TECH SUPPORT PHONE NUMBER
           Product: gcc
           Version: c++-concepts
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: harrycare at mailinator dot com
  Target Milestone: ---

CALL CONATACT AVAST ANTIVIRUS 1 800 445 2790 AVAST Antivirus TECH SUPPORT PHONE
NUMBER


CONATACT AVAST ANTIVIRUS 1 800 445 2790 AVAST TECH SUPPORT PHONE NUMBER


cow 1 800 445 2790 AVAST support phone number for helpline AVAST antivirus
technical support number 
AVAST helpline phone number@~1800-445-2790 AVAST tech Support Number AVAST
customer service phone number
AVAST Security contact Number +1800-4452790**AVAST support phone number
usa+1-800-445-2790) Technical support number
CANADA+1800-445-2790 AVAST Technical Support
USA-1800-445-2790 contact AVAST customer service phone number
AUS-1-800-445-2790 phone number for AVAST customer service
UK-800-810-2790 phone number for AVAST technical support
1-800-445-2790 phone number for AVAST customer service
phone number for AVAST technical support
phone number for AVAST security
AVAST customer care phone number
AVAST customer service billing
AVAST customer service eantivirus address
AVAST customer service live chat
AVAST customer service telephone number
AVAST customer support usa phone number
AVAST help desk support phone number free in usa
AVAST phone number customer service us
AVAST phone number support
AVAST support phone number
AVAST tech support phone number free in usa
AVAST tech support phone number
AVAST technical support customer service
AVAST technical support number
AVAST telephone number
AVAST toll free customer care number
AVAST toll free number in usa
AVAST contact phone number in usa
AVAST customer service number
AVAST customer service phone number
AVAST customer service telephone number
AVAST customer support number
AVAST customer support phone number
AVAST customer support phone number
AVAST help desk phone number in usa
AVAST phone number
AVAST phone number support for technical issue in usa
AVAST support phone number
AVAST technical support help desk phone number
AVAST technical support number
AVAST technical support phone number
AVAST customer service number
AVAST customer service telephone number
AVAST customer services eantivirus
AVAST customer support eantivirus address
AVAST customer support number
AVAST customer support phone number
AVAST customer service phone number
AVAST internet security contact phone number
AVAST internet security customer service phone number
AVAST internet security phone number
AVAST internet security help phone number
AVAST internet security phone number in usa
AVAST internet security support phone number
AVAST internet security technical support
AVAST phone number customer service
AVAST phone numbers customer support
AVAST phone support number
AVAST security contact phone number
AVAST security phone number customer service
AVAST security support phone number
AVAST support contact number
AVAST support eantivirus address
AVAST support phone number
AVAST support telephone number
AVAST support telephone number usa
AVAST support telephone number
AVAST tech support number
AVAST tech support phone number
AVAST tech support phone number free
AVAST technical support phone number
AVAST technical support cutomer phone number
AVAST technical support phone number
AVAST technical support number free in usa
AVAST technical support number toll free number
AVAST technical support phone number
AVAST technologies phone number
AVAST telephone support number
AVAST customer support phone number
AVAST customer service phone number
AVAST customer support phone number
AVAST phone number customer service
AVAST technical support telephone number
contact AVAST customer service phone number
customer service number for AVAST
phone number for AVAST
phone number for AVAST customer service
phone number for AVAST support
phone number for AVAST customer service
phone number for AVAST customer service
phone number for AVAST customer support
phone number for AVAST tech support
phone number AVAST customer service
AVAST customer service number
AVAST customer service phone
AVAST customer service phone number
AVAST customer service phone number us
AVAST customer service telephone number
AVAST customer support
AVAST customer support number
AVAST phone number customer service us
AVAST phone number support
AVAST phone support
AVAST phone support number
AVAST support phone number
AVAST tech support phone number
AVAST technical support
AVAST technical support number
AVAST technical support phone number
AVAST customer service phone number
AVAST customer support phone number
AVAST helpline phone number
AVAST internet security customer service
AVAST internet security customer service phone number
AVAST internet security help phone number
AVAST internet security phone number customer service
AVAST phone number customer service
AVAST phone number customer support
AVAST security customer service phone number
AVAST security phone number customer service
AVAST support phone number
AVAST support telephone number
AVAST tech support number
AVAST tech support phone number
AVAST technical support
AVAST technical support number
AVAST technical support phone number
AVAST customer support phone number
AVAST phone number customer service
AVAST tech support number
AVAST customer service phone number
AVAST customer service phone numbers
AVAST internet security technical support
AVAST tech support phone number us
AVAST technical support telephone number
contact AVAST
contact AVAST by phone
contact AVAST customer service
contact AVAST customer service phone number
contactAVAST tech support usa
customer service AVAST phone number
download AVAST titanium
dri AVAST customer service number
dri AVAST customer service phone number
dri AVAST phone number
how to contact AVAST by eantivirus
how to delete AVAST from mac
micro trend customer service
AVAST customer service number
phone number for AVAST customer service
phone number forAVAST customer service
phone number forAVAST customer support
phone number forAVAST tech support
phone number forAVAST technical support
phone number for AVAST technical support
phone number for AVAST security
phone number for AVAST support
phone number for AVAST technical support
phone number for AVAST customer service
phone number for AVAST customer service
remove AVAST from mac
technical support for Printer AVAST
telephone number forAVAST technical support
telephone AVAST
AVAST contact number
AVAST customer care
AVAST customer care number
AVAST customer care number usa
AVAST customer service
AVAST customer service number :idea: :evil: :D :) :lol: :( :o :shock:
AVAST customer service phone number
AVAST customer service phone number usa
AVAST customer service telephone number
AVAST customer support
AVAST customer support in usa
AVAST customer support number
AVAST customer support phone number
AVAST for phone
AVAST free Printer support
AVAST help phone number
AVAST helpline number
AVAST online support
AVAST phone
AVAST phone number
AVAST phone number in usa
AVAST phone number usa
AVAST phone support
AVAST plus tech support
AVAST protection
AVAST support
AVAST support number
AVAST support phone number
AVAST support services
AVAST support telephone number
AVAST tech support
AVAST tech support phone number free in usa
AVAST tech support number
AVAST tech support phone number
AVAST technical support
AVAST technical support number
AVAST technical support phone number
AVAST toll free customer care number
AVAST toll free number
AVAST contact phone number in usa
AVAST help desk phone number in usa
AVAST phone number support for technical issue in usa
AVAST support phone number
AVAST technical support help desk phone number
AVAST technical support phone number
AVAST contact number
AVAST contact number usa
AVAST contact phone number
AVAST contact support
AVAST contact number usa
AVAST contact phone number
AVAST contact phone number usa
AVAST customer & technical support
AVAST customer care
AVAST customer care center
AVAST customer care eantivirus
AVAST customer care number
AVAST customer care number
AVAST customer care number usa
AVAST customer care number usa toll free
AVAST customer care phone number usa
AVAST customer care tchnical support
AVAST customer care toll free
AVAST customer care toll free number
AVAST customer care usa
AVAST customer help
AVAST customer number
AVAST customer portal
AVAST customer service
AVAST customer service billing
AVAST customer service eantivirus address
AVAST customer service number
AVAST customer service phone
AVAST customer service phone number
AVAST customer service phone number us
AVAST customer service phone number usa
AVAST customer service reviews
AVAST customer service telephone number
AVAST customer service usa
AVAST customer support
AVAST customer support number
AVAST customer support phone
AVAST customer support phone number
AVAST customer service number
AVAST customer service number usa
AVAST customer service phone number
AVAST customer support number
AVAST customer support phone number
AVAST free phone support
AVAST gold support phone number
AVAST help desk phone number
AVAST help phone number
AVAST helpline
AVAST helpline phone number
AVAST hotline customer service phone number
AVAST internet security customer service
AVAST internet security phone number
AVAST internet security phone number in usa
AVAST lab usa customer service
AVAST labs usa customer serviceAVAST
AVAST phone number
AVAST phone number customer service
AVAST phone number support
AVAST phone number tech support
AVAST phone number technical support
AVAST phone numbers customer support
AVAST phone support
AVAST phone support number
AVAST phone number customer service
AVAST phone number support
AVAST phone number tech support
AVAST phone number usa
AVAST security contact phone number
AVAST security phone number
AVAST security support phone number
AVAST software customer service
AVAST software customer service number
AVAST support center
AVAST support contact number
AVAST support eantivirus address
AVAST support phone number
AVAST support telephone number
AVAST support number usa
AVAST support phone number
AVAST support phone number usa
AVAST tech support
AVAST tech support center
AVAST tech support contact
AVAST tech support number
AVAST tech support number usa
AVAST tech support phone
AVAST tech support phone number
AVAST tech support phone number free
AVAST tech support number
AVAST tech support number usa
AVAST tech support phone number
AVAST technical support
AVAST technical support number
AVAST technical support phone number
AVAST technical support phone number usa
AVAST technical support reviews
AVAST technical support usa
AVAST technical support phone number
AVAST technical support number
AVAST technical support number toll free number
AVAST technical support number usa
AVAST technical support phone number
AVAST technical support phone number usa
AVAST technologies phone number
AVAST telephone number
AVAST telephone support number
AVAST toll free number
AVAST toll free number usa
AVAST usa customer care for tech support
AVAST usa customer service
AVAST usa phone number
AVAST customer service phone number
AVAST customer service phone number
AVAST customer support phone number
AVAST customer support phone number
AVAST technical support number
AVAST customer service phone number usa
AVAST internet security support phone number
AVAST.com customer service
AVAST antispyware 2011
AVAST customer support
AVAST serial key
AVAST serial number
AVAST support
AVAST technical support
AVAST business support
AVAST contact support
AVAST customer care number
AVAST customer service 800
AVAST customer service number
AVAST customer service phone number
AVAST customer service telephone number
AVAST customer support
AVAST grentry non payment
AVAST helpline support number
AVAST internet security customer service
AVAST internet security technical support
AVAST oem customer service
AVAST pc cillin technical support
AVAST phone support
AVAST removal tool download
AVAST subscription renewal
AVAST support contact
AVAST support hotline
AVAST support phone number
AVAST tech support phone number
AVAST technical support
AVAST technical support chat
AVAST technical support phone number
AVAST technical support phone number usa
AVAST telephone number
AVAST titanium Printer
AVAST titanium internet security
AVAST titanium maximum
AVAST titanium maximum security
AVAST titanium problems
AVAST titanium removal tool
AVAST titanium reviews
AVAST titanium support
AVAST virus removal service
uninstall AVAST smart surfing for mac
usa customer care number for AVAST
>From gcc-bugs-return-534050-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 00:41:04 2016
Return-Path: <gcc-bugs-return-534050-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 61646 invoked by alias); 11 Aug 2016 00:41:04 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 38716 invoked by uid 48); 11 Aug 2016 00:38:24 -0000
From: "chengniansun at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/73450] New: wrong code at -Os and above on x86_64-linux-gnu in both 32-bit and 64-bit modes (executable hangs)
Date: Thu, 11 Aug 2016 00:41:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: chengniansun at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73450-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01386.txt.bz2
Content-length: 1218

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73450

            Bug ID: 73450
           Summary: wrong code at -Os and above on x86_64-linux-gnu in
                    both 32-bit and 64-bit modes (executable hangs)
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: chengniansun at gmail dot com
  Target Milestone: ---

$ gcc-trunk -v
Using built-in specs.
COLLECT_GCC=gcc-trunk
COLLECT_LTO_WRAPPER=/usr/local/gcc-trunk/libexec/gcc/x86_64-pc-linux-gnu/7.0.0/lto-wrapper
Target: x86_64-pc-linux-gnu
Configured with: ../gcc-source-trunk/configure --enable-languages=c,c++,lto
--prefix=/usr/local/gcc-trunk --disable-bootstrap
Thread model: posix
gcc version 7.0.0 20160810 (experimental) [trunk revision 239341] (GCC)
$ gcc-trunk small.c -O1 ; timeout -s 9 1 ./a.out
$ gcc-trunk small.c -Os ; timeout -s 9 1 ./a.out
Killed
$ gcc-trunk small.c -O3 ; timeout -s 9 1 ./a.out
Killed
$ cat small.c
int a;
char b;
int main() {
  char c = 0;
  for (; c != 3; c = c + 7) {
    a = b & a;
    if (a)
      break;
  }
  return 0;
}
$
>From gcc-bugs-return-534049-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 00:41:04 2016
Return-Path: <gcc-bugs-return-534049-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 61609 invoked by alias); 11 Aug 2016 00:41:03 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 121338 invoked by uid 48); 11 Aug 2016 00:32:49 -0000
From: "harrycare at mailinator dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73449] New: Avast PHone numBER 1-800-445-2790 Avast antivirus support phone Number
Date: Thu, 11 Aug 2016 00:41:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: trans-mem
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: harrycare at mailinator dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73449-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01385.txt.bz2
Content-length: 3430

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73449

            Bug ID: 73449
           Summary: Avast PHone numBER 1-800-445-2790 Avast antivirus
                    support phone Number
           Product: gcc
           Version: trans-mem
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: harrycare at mailinator dot com
  Target Milestone: ---

Avast PHone numBER 1-800-445-2790 Avast antivirus support phone Number

1
1-800-445-2790 Avast Online support Number 1-800-445-2790 Avast Online support
Number 1-800-445-2790 Avast Online support Number Avast antivirus support phone
number 
Avast help desk phone number 
Avast online support phone 
call Avast support 
Avast online customer service 
Avast antivirus 2009 support 
Avast antivirus advisor support 
Avast antivirus 2005 support 
Avast customer care phone number 
Avast helpline number 
Avast customer care subscription 
Avast customer support phone number 
Avast customer service number 
Avast 24 hour customer service 
Avast customer service complaints 
Avast antivirus customer service 
Avast online 
Avast phone number


1-800-445-2790 Avast Online support Number 1-800-445-2790 Avast Online support
Number 1-800-445-2790 Avast Online support Number Avast antivirus support phone
number 
Avast help desk phone number 
Avast online support phone 
call Avast support 
Avast online customer service 
Avast antivirus 2009 support 
Avast antivirus advisor support 
Avast antivirus 2005 support 
Avast customer care phone number 
Avast helpline number 
Avast customer care subscription 
Avast customer support phone number 
Avast customer service number 
Avast 24 hour customer service 
Avast customer service complaints 
Avast antivirus customer service 
Avast online 
Avast phone number
Avast PHone numBER 1-800-445-2790 Avast antivirus support phone Number

1
1-800-445-2790 Avast Online support Number 1-800-445-2790 Avast Online support
Number 1-800-445-2790 Avast Online support Number Avast antivirus support phone
number 
Avast help desk phone number 
Avast online support phone 
call Avast support 
Avast online customer service 
Avast antivirus 2009 support 
Avast antivirus advisor support 
Avast antivirus 2005 support 
Avast customer care phone number 
Avast helpline number 
Avast customer care subscription 
Avast customer support phone number 
Avast customer service number 
Avast 24 hour customer service 
Avast customer service complaints 
Avast antivirus customer service 
Avast online 
Avast phone number


1-800-445-2790 Avast Online support Number 1-800-445-2790 Avast Online support
Number 1-800-445-2790 Avast Online support Number Avast antivirus support phone
number 
Avast help desk phone number 
Avast online support phone 
call Avast support 
Avast online customer service 
Avast antivirus 2009 support 
Avast antivirus advisor support 
Avast antivirus 2005 support 
Avast customer care phone number 
Avast helpline number 
Avast customer care subscription 
Avast customer support phone number 
Avast customer service number 
Avast 24 hour customer service 
Avast customer service complaints 
Avast antivirus customer service 
Avast online 
Avast phone number
>From gcc-bugs-return-534051-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 00:50:31 2016
Return-Path: <gcc-bugs-return-534051-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 74798 invoked by alias); 11 Aug 2016 00:50:31 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 74660 invoked by uid 48); 11 Aug 2016 00:50:17 -0000
From: "calvin2k4 at yandex dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug boehm-gc/73453] New: Help & Support for Kaspersky AntiVirus by +1(800)-570-1233 online Tech Experts
Date: Thu, 11 Aug 2016 00:50:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: boehm-gc
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: blocker
X-Bugzilla-Who: calvin2k4 at yandex dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73453-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01387.txt.bz2
Content-length: 5315

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73453

            Bug ID: 73453
           Summary: Help & Support for Kaspersky AntiVirus by
                    +1(800)-570-1233 online Tech Experts
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: blocker
          Priority: P3
         Component: boehm-gc
          Assignee: unassigned at gcc dot gnu.org
          Reporter: calvin2k4 at yandex dot com
  Target Milestone: ---

Help & Support for Kaspersky AntiVirus by +1(800)-570-1233 online Tech Experts
1 (800)-570-1233 
Virus and malwares has become one of the biggest threats for computer users.
Every time you surf online or you connect any external disc drives to your
computer, it has a risk of getting infected by malicious programs. To protect
your system from viruses you need a good antivirus which can nullify the risk
of virus and malwares in your system.
When we talk about antivirus, Kaspersky is a renowned name known for its
comprehensive protection from viruses, spywares, Trojans and other malwares.
At +1(800)-570-1233 Web we provide 24/7 online support for Kaspersky antivirus.
Our techies have the expertise in the product and they can install the
antivirus in your computer online. They will also help you in configuring the
correct settings so that you get better security from viruses and malwares.
Our Kaspersky Antivirus Help and Support services includes
Setup & install Kaspersky antivirus in your computer
Upgrading or updating Kaspersky antivirus to latest version
Uninstall or remove Kaspersky antivirus from your PC
Scan your computer for viruses and other Malwares
Neutralize or fix the detected threats
Configure security settings for better protection
Customize antivirus setting as per your requirements
Tune up your computer so that it runs at its optimal speed
+1(800)-570-1233 Web’s Kaspersky Help and Support
+1(800)-570-1233 Web’s Certified Technicians can help you scan, detect, and
remove all types of viruses and malware in your computer. Our techies have
years of experience and the expertise in providing support for antivirus and
fixing computer virus problems online through remote connection. Our support
services are available through phone, chat and email.
Just call us at 1(800)-570-1233 to chat with a certified expert and get instant
support for Kaspersky Antivirus to make your computer virus free.

DISCLAIMER: - We are an independent organization working as online third party
technical support company for business and personal computer software, printers
and email support. We are not in partnership with any brand or any trademark
term mentioned in the blog. We solely provide technical support to users of the
brands mentioned in the blog.
Kaspersky internet security customer service contact number 1(800)-570-1233
Kaspersky internet security customer service number 1(800)-570-1233
Kaspersky internet security customer service phone number 1(800)-570-1233
Kaspersky internet security customer service telephone number 1(800)-570-1233
Kaspersky help number 1(800)-570-1233
Kaspersky help phone number 
Kaspersky help desk number 
Kaspersky help desk phone number 
Kaspersky telephone number 
Kaspersky support phone number 
Kaspersky support telephone number 
Kaspersky tech support telephone number 
Kaspersky customer support telephone number 
Kaspersky customer service telephone number 
Kaspersky toll free number 
Kaspersky toll free phone number 
Kaspersky customer care phone number 
Kaspersky customer care telephone number 
Kaspersky customer care helpline number 
Kaspersky customer care toll free number 
Kaspersky activation phone number 
Kaspersky activation help number 
Kaspersky activation help phone number 
Kaspersky phone number 
Kaspersky support phone number 
Kaspersky activation number 
Kaspersky helpline number Kaspersky helpline phone number 
Kaspersky antivirus phone number 
Kaspersky installation phone number 
Kaspersky installation support number 
Kaspersky installation support phone number 
Kaspersky installation help number 
Kaspersky installation help phone number 1(800)-570-1233
Kaspersky installation help telephone number 
phone number for Kaspersky antivirus customer service phone number for
Kaspersky antivirus customer support 
phone number for Kaspersky antivirus technical support 
phone number for Kaspersky antivirus tech support 
Kaspersky antivirus phone number 
Kaspersky antivirus support number 
Kaspersky antivirus support phone number 
Kaspersky antivirus support telephone number 
Kaspersky antivirus tech support number 
Kaspersky antivirus tech support phone number 
Kaspersky antivirus tech support contact number 
Kaspersky antivirus tech support telephone number 
Kaspersky antivirus technical support number 
Kaspersky antivirus technical support phone number 
Kaspersky antivirus technical support contact number 
Kaspersky antivirus technical support telephone number 
Kaspersky antivirus customer support number 
Kaspersky antivirus customer support phone number 
Kaspersky antivirus customer support telephone number 
Kaspersky antivirus activation phone number 
www.Kaspersky.com support number
>From gcc-bugs-return-534052-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 00:51:24 2016
Return-Path: <gcc-bugs-return-534052-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 78848 invoked by alias); 11 Aug 2016 00:51:24 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 75777 invoked by uid 48); 11 Aug 2016 00:51:10 -0000
From: "calvin2k4 at yandex dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/73454] New: Call +1(800)-570-1233 online Tech Support and Help for MALWAREBYTES
Date: Thu, 11 Aug 2016 00:51:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: calvin2k4 at yandex dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73454-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01388.txt.bz2
Content-length: 6006

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73454

            Bug ID: 73454
           Summary: Call +1(800)-570-1233 online Tech Support and Help for
                    MALWAREBYTES
           Product: gcc
           Version: 6.1.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: calvin2k4 at yandex dot com
  Target Milestone: ---

+1(800)-570-1233 Web Tech Support and Help for MALWAREBYTES – call us at
1-800-570-1233 (TOLL FREE)
MALWAREBYTES Antivirus, ANTI MALWARE Smart Security, ANTI MALWARE Online
Scanner & ANTI MALWARE Family Security Pack are among the most recommended
security solutions in the world. The unique scanning core that powers all our
solutions has become known for its high detection capabilities and low system
demands and continues to receive the recognition from independent testing
organizations.
However you may face some problems even in the most reliable MALWAREBYTES
antivirus. We provide 24/7 online help & support for MALWAREBYTES antivirus.
Our techies have an expertise in the product and they can install the antivirus
in your computer online. Our techies will help you in configuring the correct
settings so that you get better security from virus and malware. Call us at
1-800-570-1233 (TOLL FREE) Anti Malware antivirus tech support and get instant
help from our certified experts.
We provide ANTI MALWARE Tech Support for:
Setup & install MALWAREBYTES antivirus products
Activate, upgrade & update MALWAREBYTES antivirus products
Scan & remove virus, spyware & other malicious programs from your PC
Diagnose & resolve MALWAREBYTES antivirus problems
Fix & troubleshoot MALWAREBYTES antivirus problems
Configure security settings for higher level of protection
Neutralize or fix the detected threats
Customize MALWAREBYTES antivirus security settings as per your requirements
Tune up your computer so it runs faster & at optimal speed
Anti Malware remote administrator problems
Issues with username and password
+1(800)-570-1233 Web techies have years of experience and the expertise in
providing support for antivirus and fixing computer virus problems online
through remote connection.
For instant tech support for MALWAREBYTES, call us at 1 800-570-1233 (TOLL
FREE).
Why Anti Malware Antivirus?
Anti Malware antivirus is security software that protects your data and systems
from any malicious programs, like viruses, Trojan horses or computer worms.
Anti Malware detects and removes any potentially harmful programs that threaten
to misuse your private information or damage your files.
Anti Malware antivirus delivers reliable protection, by examining the files
that seem suspicious, and they aren’t on the lists of known threats, so safety
is doubly ensured with preventative measures. It also examines your email
account for possible threats, which is a big plus, and handles the external
media, too.
When compared to other antivirus software, Anti Malware doesn’t disappoint.
Anti Malware antivirus scored first in independent performance test, uses the
least amount of your computer’s resources when in idle mode and is the only
antivirus in the world that successfully detected all “in the wild” viruses,
worms and other potential threats, additionally providing you with the best
real-time protection. If that’s not enough, Anti Malware antivirus also has the
ability to scan largest amount of data in the least time, scoring first in the
speed category, all the while enabling you to use your computer without any
restraints, since it causes the least amount of slowing down the system.
To make things even better, Anti Malware antivirus is compatible with Windows,
Mac, Linux and Android, and can be used on a variety of devices, from computers
to mobile phones and tablets.
One-stop solution for any problem with Anti Malware Antivirus:  
If you experience any difficulties with installation or setup of Anti Malware
antivirus, or encounter some problems with your Anti Malware antivirus software
or system further down the way, the best way to solve the issue is to contact
our Anti Malware antivirus tech support experts at 1 800-570-1233 (TOLL FREE).
By doing so, you’ll have a personalized solution for your problem, guaranteeing
the safest and fastest way to solve any situation. You will have the complete
privacy and safety plus instant help, anytime, 24/7. Here are some of the most
common problems that our techies can help you with:
Download, setup & installation of Anti Malware antivirus
Online help for Anti Malware product activation, upgrade or update
Support for complete system scan, and the removal of malicious programs in Anti
Malware
Anti Malware troubleshooting support, diagnosing and resolving any Anti Malware
errors
Anti Malware remote administrator problems
Issues with username and password
Help with neutralization of threats found in Anti Malware
Customization of security level of Anti Malware, help with adjusting the
parameters
Online, instant help with any known issue of Anti Malware
If you encounter any problem with your system, or your Anti Malware antivirus
shows any errors in performance, online tech support is the best and safest
solution. You just have to sit back and let the experts do all the work.
Contact our experienced tech support professionals at 1 800-570-1233 (TOLL
FREE) with expertise in Anti Malware antivirus, for a quick, simple solution
through remote connection. 


DISCLAIMER: - We are an independent organization working as online third party
technical support company for business and personal computer software, printers
and email support. We are not in partnership with any brand or any trademark
term mentioned in the blog. We solely provide technical support to users of the
brands mentioned in the blog.
number
>From gcc-bugs-return-534053-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 01:16:56 2016
Return-Path: <gcc-bugs-return-534053-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 49977 invoked by alias); 11 Aug 2016 01:16:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 49846 invoked by uid 48); 11 Aug 2016 01:16:43 -0000
From: "buaabyl at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/71092] [6/7 Regression] ICE: in cxx_eval_call_expression, at cp/constexpr.c:1449; only with -Os
Date: Thu, 11 Aug 2016 01:16:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: buaabyl at gmail dot com
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: jason at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-71092-4-NvqqpUHjEG@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71092-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71092-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01389.txt.bz2
Content-length: 2598

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71092

buaabyl at gmail dot com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |buaabyl at gmail dot com

--- Comment #12 from buaabyl at gmail dot com ---
I compile Qt 5.7.0 with MinGW GCC, the Qt program segmentation fault, maybe the
same bug.

GCC: MinGW32-W64
Qt: 5.7.0

The bug just appear in static link, shared link is ok, and error with static +
Os.

this is my test summary:
+============================================================================+
| MinGW32-W64                             | G++  |   Qt 5.5.0  |   Qt 5.7.0  |
|   GCC                                   | FLAGS|static|shared|static|shared|
+-----------------------------------------+------+------+------+------+------+
|i686-4.9.1-release-posix-dwarf-rt_v3-rev2| -Os  | PASS | PASS | PASS | -    |
|                                         | -O2  | -    | PASS | -    | -    |
+-----------------------------------------+------+------+------+------+------+
|i686-5.3.0-release-posix-dwarf-rt_v4-rev0| -Os  | -    | -    | Fault| -    |
|                                         | -O2  | -    | -    | PASS | PASS |
+-----------------------------------------+------+------+------+------+------+
|i686-5.4.0-release-posix-dwarf-rt_v5-rev0| -Os  | -    | -    | Fault| PASS |
|                                         | -O2  | -    | -    | -    | -    |
+-----------------------------------------+------+------+------+------+------+
|i686-6.1.0-release-posix-dwarf-rt_v5-rev0| -Os  | -    | -    | X    | -    |
|                                         | -O2  | -    | -    | PASS | -    |
+-----------------------------------------+------+------+------+------+------+
|                       X     - Compile Fail                                 |
|                       Fault - Segmentation Fault                           |
|                       PASS  - Compile OK, Run Test Pass                    |
+============================================================================+

The compile fail of 6.1.0 show:
"... cxx_eval_call_expression, at cp/constexpr.c:1449"
>From gcc-bugs-return-534054-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 01:53:40 2016
Return-Path: <gcc-bugs-return-534054-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 87612 invoked by alias); 11 Aug 2016 01:53:39 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 87488 invoked by uid 48); 11 Aug 2016 01:53:26 -0000
From: "lucdanton at free dot fr" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73456] New: [7 regression][concepts] ICE in non_atomic_constraint_p, at cp/logic.cc:315
Date: Thu, 11 Aug 2016 01:53:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: lucdanton at free dot fr
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73456-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01390.txt.bz2
Content-length: 2613

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73456

            Bug ID: 73456
           Summary: [7 regression][concepts] ICE in
                    non_atomic_constraint_p, at cp/logic.cc:315
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: lucdanton at free dot fr
  Target Milestone: ---

Using the following program:

//----------
template<typename...> struct list {};

template<typename Seq>
concept bool Sequence = true;

template<Sequence... Seqs>
struct zip {};

template<Sequence... Seqs>
    requires requires { typename list<Seqs...>; }
// main.cpp:12:8: internal compiler error: in non_atomic_constraint_p, at
cp/logic.cc:315
struct zip<Seqs...> {};

int main()
{
    zip<list<>, list<int>> {};
}
//----------

This compiles fine with 6.1, but produces the following trace on the 7 branch
on rev. 239343:

main.cpp:12:8: internal compiler error: in non_atomic_constraint_p, at
cp/logic.cc:315
 struct zip<Seqs...> {};
        ^~~~~~~~~~~~
0x76550a non_atomic_constraint_p
        ../../gcc/gcc/cp/logic.cc:315
0x767364 any_p<std::_List_iterator<tree_node*>, bool (*)(tree_node*)>
        ../../gcc/gcc/cp/logic.cc:67
0x767364 any_non_atomic_constraints_p
        ../../gcc/gcc/cp/logic.cc:324
0x767364 analyze_atom
        ../../gcc/gcc/cp/logic.cc:356
0x767364 analyze_term
        ../../gcc/gcc/cp/logic.cc:465
0x767364 check_term
        ../../gcc/gcc/cp/logic.cc:492
0x766966 check_goal
        ../../gcc/gcc/cp/logic.cc:508
0x766966 check_proof
        ../../gcc/gcc/cp/logic.cc:534
0x766966 prove_implication
        ../../gcc/gcc/cp/logic.cc:751
0x7674a1 prove_implication
        ../../gcc/gcc/cp/logic.cc:728
0x7674a1 subsumes_constraints_nonnull
        ../../gcc/gcc/cp/logic.cc:783
0x7674a1 subsumes(tree_node*, tree_node*)
        ../../gcc/gcc/cp/logic.cc:800
0x76530f strictly_subsumes(tree_node*, tree_node*)
        ../../gcc/gcc/cp/constraint.cc:2595
0x67479d process_partial_specialization
        ../../gcc/gcc/cp/pt.c:4541
0x674ea7 push_template_decl_real(tree_node*, bool)
        ../../gcc/gcc/cp/pt.c:5262
0x675f73 push_template_decl(tree_node*)
        ../../gcc/gcc/cp/pt.c:5503
0x675f73 maybe_process_partial_specialization(tree_node*)
        ../../gcc/gcc/cp/pt.c:972
0x6b7f84 cp_parser_class_head
        ../../gcc/gcc/cp/parser.c:22075
0x6b7f84 cp_parser_class_specifier_1
        ../../gcc/gcc/cp/parser.c:21431
0x6b7f84 cp_parser_class_specifier
        ../../gcc/gcc/cp/parser.c:21741
>From gcc-bugs-return-534055-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 02:16:42 2016
Return-Path: <gcc-bugs-return-534055-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 119688 invoked by alias); 11 Aug 2016 02:16:41 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 119577 invoked by uid 48); 11 Aug 2016 02:16:27 -0000
From: "jvdelisle at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/73142] Reading a namelist fails - my code worked until 4.8.2
Date: Thu, 11 Aug 2016 02:16:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jvdelisle at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jvdelisle at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc assigned_to
Message-ID: <bug-73142-4-ZRGJDfTg94@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73142-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73142-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01391.txt.bz2
Content-length: 995

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73142

Jerry DeLisle <jvdelisle at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jvdelisle at gcc dot gnu.org
           Assignee|unassigned at gcc dot gnu.org      |jvdelisle at gcc dot gnu.org

--- Comment #6 from Jerry DeLisle <jvdelisle at gcc dot gnu.org> ---
Since this worked before and broke it is considered a regression. At the time I
fixed it on 7.0 I either did not realize it was a regression or I have not
backported it yet. I will add this one to my list to confirm and backport.

However, it will not go as far back as 4.8.  Most likely only to 5 ad 6.

Generally speaking, we do not support whatever it is the third parties like
equation.com do. 4.8 is a long way away from 7, many bugs fixed, many features
added, so if you have a way to do so, try to update.
>From gcc-bugs-return-534056-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 03:01:01 2016
Return-Path: <gcc-bugs-return-534056-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 92709 invoked by alias); 11 Aug 2016 03:00:46 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 84081 invoked by uid 48); 11 Aug 2016 02:59:24 -0000
From: "jvdelisle at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/73142] Reading a namelist fails - my code worked until 4.8.2
Date: Thu, 11 Aug 2016 03:00:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jvdelisle at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jvdelisle at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-73142-4-e207XmWDpM@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73142-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73142-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01392.txt.bz2
Content-length: 624

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73142

--- Comment #7 from Jerry DeLisle <jvdelisle at gcc dot gnu.org> ---
I have confirmed this is a duplicate of 71123.  The fix is trivial.

--- trunk/libgfortran/io/list_read.c    2016/05/24 04:15:39     236627
+++ trunk/libgfortran/io/list_read.c    2016/05/24 06:11:21     236628
@@ -418,7 +418,7 @@
   /* Now skip spaces, EOF and EOL are handled in next_char.  */
   do
     c = next_char (dtp);
-  while (c != EOF && (c == ' ' || c == '\t'));
+  while (c != EOF && (c == ' ' || c == '\r' || c == '\t'));

   unget_char (dtp, c);
   return c;
>From gcc-bugs-return-534057-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 03:05:36 2016
Return-Path: <gcc-bugs-return-534057-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 96966 invoked by alias); 11 Aug 2016 03:05:35 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 96637 invoked by uid 48); 11 Aug 2016 03:05:02 -0000
From: "jvdelisle at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/73142] [4.9/5/6 Regression] Reading a namelist fails - my code worked until 4.8.2
Date: Thu, 11 Aug 2016 03:05:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jvdelisle at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jvdelisle at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on short_desc everconfirmed
Message-ID: <bug-73142-4-sGh3g3lyF4@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73142-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73142-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01393.txt.bz2
Content-length: 735

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73142

Jerry DeLisle <jvdelisle at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |ASSIGNED
   Last reconfirmed|                            |2016-08-11
            Summary|Reading a namelist fails -  |[4.9/5/6 Regression]
                   |my code worked until 4.8.2  |Reading a namelist fails -
                   |                            |my code worked until 4.8.2
     Ever confirmed|0                           |1

--- Comment #8 from Jerry DeLisle <jvdelisle at gcc dot gnu.org> ---
I will backport to 4.9, 5, and 6
>From gcc-bugs-return-534058-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 03:34:58 2016
Return-Path: <gcc-bugs-return-534058-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 14191 invoked by alias); 11 Aug 2016 03:34:57 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 14116 invoked by uid 48); 11 Aug 2016 03:34:45 -0000
From: "rureclonic at thraml dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/73457] New: Missed optimizations: count_if on std::array of constants.
Date: Thu, 11 Aug 2016 03:34:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rureclonic at thraml dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73457-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01394.txt.bz2
Content-length: 1026

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73457

            Bug ID: 73457
           Summary: Missed optimizations: count_if on std::array of
                    constants.
           Product: gcc
           Version: 6.1.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: tree-optimization
          Assignee: unassigned at gcc dot gnu.org
          Reporter: rureclonic at thraml dot com
  Target Milestone: ---

First of all, given how simple this bug report is, I imagine it must be a
duplicate, but am not sure what to look for and didn't find anything very
relevant. Apologies therefore.

gcc: https://godbolt.org/g/kAhsRr
clang: https://godbolt.org/g/B3fsWi

It seems gcc is unable to fold the std::count_if over the std::array despite it
being constant-initialized, while clang optimizes the program away.

Adding constexpr does not change the output. Replacing std::array with an
initializer list makes gcc optimize everything: https://godbolt.org/g/chOqnZ
>From gcc-bugs-return-534059-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 03:58:59 2016
Return-Path: <gcc-bugs-return-534059-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 44878 invoked by alias); 11 Aug 2016 03:58:59 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 44755 invoked by uid 48); 11 Aug 2016 03:58:46 -0000
From: "kargl at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/73142] [4.9/5/6 Regression] Reading a namelist fails - my code worked until 4.8.2
Date: Thu, 11 Aug 2016 03:58:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: kargl at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jvdelisle at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-73142-4-bUJOop9Nl8@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73142-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73142-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01395.txt.bz2
Content-length: 245

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73142

--- Comment #9 from kargl at gcc dot gnu.org ---
(In reply to Jerry DeLisle from comment #8)
> I will backport to 4.9, 5, and 6

The 4.9 branch is closed.  You only need to consider
5 and 6.
>From gcc-bugs-return-534060-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 05:15:17 2016
Return-Path: <gcc-bugs-return-534060-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 66259 invoked by alias); 11 Aug 2016 05:15:13 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 23836 invoked by uid 48); 11 Aug 2016 05:11:55 -0000
From: "lju at s dot syac.ca" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug debug/73463] New: CALL CONATACT AVG ANTIVIRUS 1 800 059 007 AVG TECH SUPPORT PHONE NUMBER
Date: Thu, 11 Aug 2016 05:15:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: debug
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: lju at s dot syac.ca
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73463-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01396.txt.bz2
Content-length: 12103

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73463

            Bug ID: 73463
           Summary: CALL CONATACT AVG ANTIVIRUS 1 800 059 007 AVG TECH
                    SUPPORT PHONE NUMBER
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: debug
          Assignee: unassigned at gcc dot gnu.org
          Reporter: lju at s dot syac.ca
  Target Milestone: ---

CALL CONATACT AVG ANTIVIRUS 1 800 059 007 AVG TECH SUPPORT PHONE NUMBER

CONATACT AVG ANTIVIRUS 1 800 059 007 AVG TECH SUPPORT PHONE NUMBER


cow 1 800 059 007 AVG support phone number for helpline AVG antivirus technical
support number 
AVG helpline phone number@~1800-059-007 AVG tech Support Number AVG customer
service phone number
AVG Security contact Number +1800-059007**AVG support phone number
AUS+1-800-059-007) Technical support number
CANADA+1800-059-007 AVG Technical Support
AUS-1800-059-007 contact AVG customer service phone number
AUS-1-800-059-007 phone number for AVG customer service
UK-800-810-007 phone number for AVG technical support
1-800-059-007 phone number for AVG customer service
phone number for AVG technical support
phone number for AVG security
AVG customer care phone number
AVG customer service billing
AVG customer service eantivirus address
AVG customer service live chat
AVG customer service telephone number
AVG customer support AUS phone number
AVG help desk support phone number free in AUS
AVG phone number customer service us
AVG phone number support
AVG support phone number
AVG tech support phone number free in AUS
AVG tech support phone number
AVG technical support customer service
AVG technical support number
AVG telephone number
AVG toll free customer care number
AVG toll free number in AUS
AVG contact phone number in AUS
AVG customer service number
AVG customer service phone number
AVG customer service telephone number
AVG customer support number
AVG customer support phone number
AVG customer support phone number
AVG help desk phone number in AUS
AVG phone number
AVG phone number support for technical issue in AUS
AVG support phone number
AVG technical support help desk phone number
AVG technical support number
AVG technical support phone number
AVG customer service number
AVG customer service telephone number
AVG customer services eantivirus
AVG customer support eantivirus address
AVG customer support number
AVG customer support phone number
AVG customer service phone number
AVG internet security contact phone number
AVG internet security customer service phone number
AVG internet security phone number
AVG internet security help phone number
AVG internet security phone number in AUS
AVG internet security support phone number
AVG internet security technical support
AVG phone number customer service
AVG phone numbers customer support
AVG phone support number
AVG security contact phone number
AVG security phone number customer service
AVG security support phone number
AVG support contact number
AVG support eantivirus address
AVG support phone number
AVG support telephone number
AVG support telephone number AUS
AVG support telephone number
AVG tech support number
AVG tech support phone number
AVG tech support phone number free
AVG technical support phone number
AVG technical support cutomer phone number
AVG technical support phone number
AVG technical support number free in AUS
AVG technical support number toll free number
AVG technical support phone number
AVG technologies phone number
AVG telephone support number
AVG customer support phone number
AVG customer service phone number
AVG customer support phone number
AVG phone number customer service
AVG technical support telephone number
contact AVG customer service phone number
customer service number for AVG
phone number for AVG
phone number for AVG customer service
phone number for AVG support
phone number for AVG customer service
phone number for AVG customer service
phone number for AVG customer support
phone number for AVG tech support
phone number AVG customer service
AVG customer service number
AVG customer service phone
AVG customer service phone number
AVG customer service phone number us
AVG customer service telephone number
AVG customer support
AVG customer support number
AVG phone number customer service us
AVG phone number support
AVG phone support
AVG phone support number
AVG support phone number
AVG tech support phone number
AVG technical support
AVG technical support number
AVG technical support phone number
AVG customer service phone number
AVG customer support phone number
AVG helpline phone number
AVG internet security customer service
AVG internet security customer service phone number
AVG internet security help phone number
AVG internet security phone number customer service
AVG phone number customer service
AVG phone number customer support
AVG security customer service phone number
AVG security phone number customer service
AVG support phone number
AVG support telephone number
AVG tech support number
AVG tech support phone number
AVG technical support
AVG technical support number
AVG technical support phone number
AVG customer support phone number
AVG phone number customer service
AVG tech support number
AVG customer service phone number
AVG customer service phone numbers
AVG internet security technical support
AVG tech support phone number us
AVG technical support telephone number
contact AVG
contact AVG by phone
contact AVG customer service
contact AVG customer service phone number
contactAVG tech support AUS
customer service AVG phone number
download AVG titanium
dri AVG customer service number
dri AVG customer service phone number
dri AVG phone number
how to contact AVG by eantivirus
how to delete AVG from mac
micro trend customer service
AVG customer service number
phone number for AVG customer service
phone number forAVG customer service
phone number forAVG customer support
phone number forAVG tech support
phone number forAVG technical support
phone number for AVG technical support
phone number for AVG security
phone number for AVG support
phone number for AVG technical support
phone number for AVG customer service
phone number for AVG customer service
remove AVG from mac
technical support for Printer AVG
telephone number forAVG technical support
telephone AVG
AVG contact number
AVG customer care
AVG customer care number
AVG customer care number AUS
AVG customer service
AVG customer service number :idea: :evil: :D :) :lol: :( :o :shock:
AVG customer service phone number
AVG customer service phone number AUS
AVG customer service telephone number
AVG customer support
AVG customer support in AUS
AVG customer support number
AVG customer support phone number
AVG for phone
AVG free Printer support
AVG help phone number
AVG helpline number
AVG online support
AVG phone
AVG phone number
AVG phone number in AUS
AVG phone number AUS
AVG phone support
AVG plus tech support
AVG protection
AVG support
AVG support number
AVG support phone number
AVG support services
AVG support telephone number
AVG tech support
AVG tech support phone number free in AUS
AVG tech support number
AVG tech support phone number
AVG technical support
AVG technical support number
AVG technical support phone number
AVG toll free customer care number
AVG toll free number
AVG contact phone number in AUS
AVG help desk phone number in AUS
AVG phone number support for technical issue in AUS
AVG support phone number
AVG technical support help desk phone number
AVG technical support phone number
AVG contact number
AVG contact number AUS
AVG contact phone number
AVG contact support
AVG contact number AUS
AVG contact phone number
AVG contact phone number AUS
AVG customer & technical support
AVG customer care
AVG customer care center
AVG customer care eantivirus
AVG customer care number
AVG customer care number
AVG customer care number AUS
AVG customer care number AUS toll free
AVG customer care phone number AUS
AVG customer care tchnical support
AVG customer care toll free
AVG customer care toll free number
AVG customer care AUS
AVG customer help
AVG customer number
AVG customer portal
AVG customer service
AVG customer service billing
AVG customer service eantivirus address
AVG customer service number
AVG customer service phone
AVG customer service phone number
AVG customer service phone number us
AVG customer service phone number AUS
AVG customer service reviews
AVG customer service telephone number
AVG customer service AUS
AVG customer support
AVG customer support number
AVG customer support phone
AVG customer support phone number
AVG customer service number
AVG customer service number AUS
AVG customer service phone number
AVG customer support number
AVG customer support phone number
AVG free phone support
AVG gold support phone number
AVG help desk phone number
AVG help phone number
AVG helpline
AVG helpline phone number
AVG hotline customer service phone number
AVG internet security customer service
AVG internet security phone number
AVG internet security phone number in AUS
AVG lab AUS customer service
AVG labs AUS customer serviceAVG
AVG phone number
AVG phone number customer service
AVG phone number support
AVG phone number tech support
AVG phone number technical support
AVG phone numbers customer support
AVG phone support
AVG phone support number
AVG phone number customer service
AVG phone number support
AVG phone number tech support
AVG phone number AUS
AVG security contact phone number
AVG security phone number
AVG security support phone number
AVG software customer service
AVG software customer service number
AVG support center
AVG support contact number
AVG support eantivirus address
AVG support phone number
AVG support telephone number
AVG support number AUS
AVG support phone number
AVG support phone number AUS
AVG tech support
AVG tech support center
AVG tech support contact
AVG tech support number
AVG tech support number AUS
AVG tech support phone
AVG tech support phone number
AVG tech support phone number free
AVG tech support number
AVG tech support number AUS
AVG tech support phone number
AVG technical support
AVG technical support number
AVG technical support phone number
AVG technical support phone number AUS
AVG technical support reviews
AVG technical support AUS
AVG technical support phone number
AVG technical support number
AVG technical support number toll free number
AVG technical support number AUS
AVG technical support phone number
AVG technical support phone number AUS
AVG technologies phone number
AVG telephone number
AVG telephone support number
AVG toll free number
AVG toll free number AUS
AVG AUS customer care for tech support
AVG AUS customer service
AVG AUS phone number
AVG customer service phone number
AVG customer service phone number
AVG customer support phone number
AVG customer support phone number
AVG technical support number
AVG customer service phone number AUS
AVG internet security support phone number
AVG.com customer service
AVG antispyware 2011
AVG customer support
AVG serial key
AVG serial number
AVG support
AVG technical support
AVG business support
AVG contact support
AVG customer care number
AVG customer service 800
AVG customer service number
AVG customer service phone number
AVG customer service telephone number
AVG customer support
AVG grentry non payment
AVG helpline support number
AVG internet security customer service
AVG internet security technical support
AVG oem customer service
AVG pc cillin technical support
AVG phone support
AVG removal tool download
AVG subscription renewal
AVG support contact
AVG support hotline
AVG support phone number
AVG tech support phone number
AVG technical support
AVG technical support chat
AVG technical support phone number
AVG technical support phone number AUS
AVG telephone number
AVG titanium Printer
AVG titanium internet security
AVG titanium maximum
AVG titanium maximum security
AVG titanium problems
AVG titanium removal tool
AVG titanium reviews
AVG titanium support
AVG virus removal service
uninstall AVG smart surfing for mac
AUS customer care number for AVG
>From gcc-bugs-return-534061-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 06:07:46 2016
Return-Path: <gcc-bugs-return-534061-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 128456 invoked by alias); 11 Aug 2016 06:07:46 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 128334 invoked by uid 48); 11 Aug 2016 06:07:33 -0000
From: "aby at f dot fsal.ru" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/73489] New: Australia>>>>1 800-059-007++ Mcafee support phone number Mcafee tech support phone number  Mcafee Tech Support Number
Date: Thu, 11 Aug 2016 06:07:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: aby at f dot fsal.ru
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73489-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01397.txt.bz2
Content-length: 8254

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73489

            Bug ID: 73489
           Summary: Australia>>>>1 800-059-007++ Mcafee support phone
                    number Mcafee tech support phone number  Mcafee Tech
                    Support Number
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: aby at f dot fsal.ru
  Target Milestone: ---

Australia>>>>1 800-059-007++ Mcafee support phone number Mcafee tech support
phone number  Mcafee Tech Support Number

AUS  >>>> 1 800-059-007++ Mcafee support phone number 1 800-059-007AUS/canada
Mcafee 360 Tech Support Number @@!1-800-059-007;!!Mcafee 360 Support Number

Mcafee Live Support and Help‎ 18(00-059-007 @@ Mcafee tech support phone number
Mcafee Live Support and Help‎ 18(00-059-007 @@ Mcafee tech support phone number
Mcafee Live Support and Help‎ 18(00-059-007 Mcafee 360 support phone number AUS
AUS Canada>>>> 1 800-059-007++ Mcafee 360 support phone number 1
800-059-007AUS/canada Mcafee 360 Tech Support Number @@!1-800-059-007;!!Mcafee
360 Support Number
WikiGenes- @+++1800-059-007++000Mcafee 360 support phone
number1800059007AUS/canada
Mcafee antivirus technical support phone number 1.800-059-007
hdfc toll free customer care number(((!1.800-059-007)) Mcafee 360 Tech Support
Number @@!1-800-059-007!! Mcafee 360 Support Number
Mcafee toll free customer care number 1.800-059-007
Mcafee toll free customer care number 1.800-059-007
Mcafee toll free customer care number 1.800-059-007
Mcafee toll free customer care number 1.800-059-007>>>>>
Mcafee technical support phone number ((1.800-059-007))
Mcafee technical support number 1.800-059-007
Mcafee technical support number 1.800-059-007
symantec technical support number 1.800-059-007
Mcafee antivirus technical support number 1.800-059-007
Mcafee support phone number 1.800-059-007
Mcafee locations Mcafee 360 Tech Support Number @@!1-800-059-007!! Mcafee 360
Support Number Mcafee 360 Tech Support Number @@!1-800-059-007!! Mcafee 360
Support Number
Mcafee customer service
Mcafee antivirus customer care__Mcafee Support phone number 1.800-059-007
Mcafee customer support phone number 1.800-059-007
Mcafee customer support phone number 1.800-059-007
Mcafee antivirus customer support phone number 1.800-059-007Mcafee antivirus
customer service phone number 1.800-059-007
Mcafee antivirus technical support phone number 1.800-059-007
Mcafee antivirus tech support phone number 1.800-059-007
Mcafee antivirus phone number 1.800-059-007 Mcafee 360 Tech Support Number
@@!1-800-059-007!! Mcafee 360 Support Number
Mcafee security center phone number 1.800-059-007
Mcafee support telephone number 1.800-059-007
Mcafee 360 technical support phone number 1.800-059-007
symantec technical support phone number 1.800-059-007
Mcafee tech support phone number 1.800-059-007 Mcafee 360 Tech Support Number
@@!1-800-059-007!! Mcafee 360 Support Number
apple technical support phone number 1.800-059-007 AUS
microsoft technical support phone number 1.800-059-007 AUS
gmail technical support phone number 1.800-059-007 AUS
Mcafee technical support phone number 1.800-059-007 AUS
lenovo technical support phone number 1.800-059-007 AUS
epson technical support phone number 1.800-059-007 AUS
Mcafee technical support phone number 1.800-059-007 Mcafee 360 Tech Support
Number @@!1-800-059-007!! Mcafee 360 Support Number
Mcafee AntiVirus Customer Service Phone Number #1: 800-059-007
Mcafee Phone number 1-800-059-007 Mcafee 360 phone number Mcafee 360 support
phone number
Free~* C@ll 1.800-059-007 Mcafee 360 technical support phone number AUS
1.800-059-007 Mcafee 360 technical support phone number Mcafee free call
~* C@ll 1.800-059-007 Mcafee 360 technical support phone number AUS
1.800-059-007 Mcafee 360 technical support phone number Mcafee free call Mcafee
360 Tech Support Number @@!1-800-059-007!! Mcafee 360 Support Number
PHONE support AUS @1.800-059-007 Mcafee antivirus technical support phone
number
Mcafee locations
Mcafee online support
Mcafee Support phone number 1.800-059-007
Mcafee customer care Mcafee tech support phone number 1.800-059-007
Mcafee tech support phone number 1.800-059-007
Mcafee antivirus tech support phone number 1.800-059-007
Mcafee locations Mcafee 360 Tech Support Number @@!1-800-059-007!! Mcafee 360
Support Number
Mcafee Support phone number 1.800-059-007
service Mcafee com
Mcafee login
Mcafee technical support phone number 1.800-059-007
Mcafee customer service
Mcafee Support phone number 1.800-059-007
Mcafee support telephone number 1.800-059-007
Mcafee support phone number 1.800-059-007
Mcafee antivirus support phone number 1.800-059-007 Mcafee 360 Tech Support
Number @@!1-800-059-007!! Mcafee 360 Support Number
Mcafee antivirus tech support phone number 1.800-059-007
Mcafee antivirus customer service phone number 1.800-059-007
Mcafee 360 technical support phone number 1.800-059-007
symantec technical support phone number 1.800-059-007
Mcafee technical support phone number 1.800-059-007
Mcafee customer service telephone number 1.800-059-007
Mcafee antivirus phone number 1.800-059-007
Mcafee antivirus customer service phone number 1.800-059-007
Mcafee antivirus customer service Support Mcafee 360 Tech Support Number
@@!1-800-059-007!! Mcafee 360 Support Number
Mcafee antivirus phone number 1.800-059-007
Mcafee phone number 1.800-059-007 cancel subscription
Mcafee technical support phone number 1.800-059-007
Mcafee 800 phone number 1.800-059-007
snapdeal toll free customer care number 1.800-059-007
sbi toll free customer care number 1.800-059-007
airtel toll free customer care number 1.800-059-007
Mcafee customer service number 1.800-059-007
Mcafee call center Mcafee 360 Tech Support Number @@!1-800-059-007!! Mcafee 360
Support Number
Mcafee customer service email address
Mcafee customer care no Mcafee 360 Tech Support Number @@!1-800-059-007!!
Mcafee 360 Support Number
call Mcafee support
chat with Mcafee support
Mcafee customer support
Mcafee antivirus customer service number 1.800-059-007
Mcafee Mcafee 360 Tech Support Number @@!1-800-059-007!! Mcafee 360 Support
Number
Mcafee call center
Mcafee hq
Mcafee office locations
Mcafee support site
Mcafee telephone number 1.800-059-007 for customer support
Mcafee customer service contact number 1.800-059-007
Mcafee customer care
Mcafee toll free number 1.800-059-007
Mcafee security contact number 1.800-059-007
contact Mcafee
Mcafee headquarters Mcafee 360 Tech Support Number @@!1-800-059-007!! Mcafee
360 Support Number
Mcafee customer service chat
Mcafee customer service telephone number 1.800-059-007
Mcafee Support phone number 1.800-059-007
Mcafee customer support
Mcafee customer service refund
Mcafee login
Mcafee locations
Mcafee customer service number 1.800-059-007 uk
Mcafee locations
Mcafee customer service email address
Mcafee support site Mcafee 360 Tech Support Number @@!1-800-059-007!! Mcafee
360 Support Number
Mcafee technical support phone number 1.800-059-007
Mcafee technical support live chat
Mcafee technical support email address
Mcafee technical support number 1.800-059-007
Mcafee technical support number 1.800-059-007 Mcafee 360 Tech Support Number
@@!1-800-059-007!! Mcafee 360 Support Number
symantec technical support number 1.800-059-007
Mcafee antivirus technical support number 1.800-059-007
Mcafee customer support phone number 1.800-059-007
Mcafee customer support number 1.800-059-007
Mcafee customer support number 1.800-059-007 Mcafee 360 Tech Support Number
@@!1-800-059-007!! Mcafee 360 Support Number
Mcafee antivirus customer support number 1.800-059-007
Mcafee locations Mcafee 360 Tech Support Number @@!1-800-059-007!! Mcafee 360
Support Number
Mcafee Support phone number 1.800-059-007
Mcafee corporate phone number 1.800-059-007 Mcafee 360 Tech Support Number
@@!1-800-059-007!! Mcafee 360 Support Number
Mcafee customer service Support
Mcafee technical support phone number 1.800-059-007
Mcafee tech support phone number 1.800-059-007
Mcafee tech support number 1.800-059-007
Mcafee tech support number 1.800-059-007 FREE
>From gcc-bugs-return-534062-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 06:25:29 2016
Return-Path: <gcc-bugs-return-534062-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 33428 invoked by alias); 11 Aug 2016 06:25:29 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 31886 invoked by uid 48); 11 Aug 2016 06:25:16 -0000
From: "amodra at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/72864] gcc.c-torture/compile/pr72802.c fails on x86_64-apple-darwin15 with -m32
Date: Thu, 11 Aug 2016 06:25:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: amodra at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72864-4-YnSdNashV6@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72864-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72864-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01398.txt.bz2
Content-length: 296

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72864

--- Comment #1 from Alan Modra <amodra at gmail dot com> ---
The testcase was one generated by https://embed.cs.utah.edu/csmith.
Horrible looking, but legal.  clang should just warn, not error.
I'm happy the testcase exposed another gcc bug.
>From gcc-bugs-return-534063-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 06:25:49 2016
Return-Path: <gcc-bugs-return-534063-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 34180 invoked by alias); 11 Aug 2016 06:25:47 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 33699 invoked by uid 48); 11 Aug 2016 06:25:31 -0000
From: "wgx at z dot zgrco.com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/73493] New: AVG number$+$+$+1+800+059+007, AVG antivirus helpline phone number
Date: Thu, 11 Aug 2016 06:25:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wgx at z dot zgrco.com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73493-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01399.txt.bz2
Content-length: 6591

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73493

            Bug ID: 73493
           Summary: AVG number$+$+$+1+800+059+007, AVG antivirus helpline
                    phone number
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: wgx at z dot zgrco.com
  Target Milestone: ---

AVG number$+$+$+1+800+059+007, AVG antivirus helpline phone number

AVG antivirus tech Support(+(1-800-059-007)))number AUS customer service phone
number
AVG antivirus tech Support(+(1-800-059-007)))number AUS customer service phone
number,AVG antivirus tech support number AVG customer service number
1800-059-007 AVG call center 1800-059-007 AVG customer service email address
1800-059-007 AVG customer care no 1800-059-007 AVG antivirus technical support
phone number 1800-059-007 AVG antivirus tech support phone number 1800-059-007
AVG antivirus customer service phone number 1800-059-007 AVG 360 technical
support phone number 1800-059-007 symantec technical support phone number
1800-059-007 AVG technical support phone number 1800-059-007 AVG customer
service telephone number 1800-059-007 ?AVG antivirus phone number 1800-059-007
AVG antivirus customer service phone number 1800-059-007 AVG antivirus customer
service helpdesk AVG antivirus phone number 1800-059-007 AVG phone number
cancel subscription 1800-059-007 AVG technical support phone number
1800-059-007 AVG 800 phone number 1800-059-007 AVG toll free customer care
number sbi toll free customer care number AVG 360 toll free customer care
number toll free customer care number AVG toll free customer care number icici
toll free customer care number flipkart toll free customer care number vodafone
toll free customer care number AVG technical support phone number AVG technical
support number AVG technical support number symantec technical support number
AVG antivirus technical support number AVG locations AVG online support AVG
helpdesk phone number AVG customer care AVG tech support phone number AVG tech
support phone number AVG antivirus tech support phone number AVG locations AVG
helpdesk phone number service AVG com AVG login AVG technical support phone
number AVG customer service AVG helpdesk phone number AVG support telephone
number AVG support phone number AVG antivirus support phone number AVG support
phone number AVG locations AVG customer service AVG customer care AVG helpdesk
phone number AVG customer support phone number AVG customer support phone
number AVG antivirus customer support phone number AVG antivirus customer
service phone number AVG antivirus technical support phone number AVG antivirus
tech support phone number AVG antivirus phone number AVG security center phone
number AVG support telephone number AVG 360 technical support phone number
symantec technical support phone number AVG tech support phone number apple
technical support phone number AUS microsoft technical support phone number AUS
AVG technical support phone number AUS AVG technical support phone number AUS
lenovo technical support phone number AUS epson technical support phone number
AUS AVG technical support phone number call AVG support chat with AVG support
AVG customer support AVG antivirus customer service number AVG address AVG call
center AVG helpline AVG helpdesk AVG support site AVG telephone number for
customer support AVG customer service contact number AVG customer care AVG toll
free number AVG security contact number contact AVG AVG headquarters AVG
customer service chat AVG customer service telephone number AVG helpdesk phone
number AVG customer support AVG customer service AVG login AVG locations AVG
customer service number AVG locations AVG customer service email address AVG
support site AVG technical support phone number AVG technical support live chat
AVG technical support email address AVG technical support number AVG technical
support number symantec technical support number AVG antivirus technical
support number AVG customer support phone number AVG customer support number
AVG customer support number AVG antivirus customer support number AVG locations
AVG helpdesk phone number AVG support phone number AVG customer service
helpdesk AVG technical support phone number AVG tech support phone number AVG
tech support number AVG tech support numberAVG 360 customer service phone
number AUS AVG phone number canada AVG phone number customer services AVG
helpline number AVG antivirus contact number canada AVG phone number AVG
antivirus customer service phone number us what is the phone number for AVG
customer service AVG contact number AVG 360 customer service phone number AVG
360 support phone number AUS AVG toll free number AUS AVG contact phone number
AVG antivirus phone number AVG antivirus customer service phone number AVG
support phone number AVG support phone number canada AVG technical support
phone number canada AVG abrasives phone number AVG security phone contact
number AVG internet security customer service phone number AVG telephone number
AVG canada phone number AVG security telephone number AVG antivirus contact
number us AVG phone number AVG phone number AVG antivirus customer care number
AVG 360 customer service phone number canada AVG internet security number AVG
software customer service number AVG internet security telephone number AVG
anti virus contact number AVG virus protection phone number AVG virus
protection contact number AVG antivirus phone number AVG antivirus help desk
phone numberhttps://gcc.gnu.org/bugzilla/show_bug.cgi?id=72924
 AVG tech support phone number us AVG helpline phone number AVG internet
security contact phone number AVG customer care number AUS AVG antivirus
contact number AVG customer support phone number canada AVG department number
AVG antivirus contact number AVG antivirus customer service phone number canada
AVG customer support number AUS number for AVG antivirus AVG support number AVG
support number AVG 360 contact number AVG symantec phone number AVG 360 contact
number AVG contact number canada AVG antivirus toll free number AUS AVG
internet security contact phone number AVG contact number AUS AVG antivirus
canada contact phone number AVG support number AUS AVG support phone number AVG
customer care number AVG contact phone number AVG number AVG internet security
toll free number phone number for AVG antivirus AVG cinema phone number AVG
>From gcc-bugs-return-534064-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 06:29:04 2016
Return-Path: <gcc-bugs-return-534064-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 39999 invoked by alias); 11 Aug 2016 06:29:04 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 38915 invoked by uid 48); 11 Aug 2016 06:28:51 -0000
From: "wgx at z dot zgrco.com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/73494] New: CALL ESET ANTIVIRUS 1 800 059 007 ESET TECH SUPPORT PHONE NUMBER ESET customer service phone number ESET support phone number
Date: Thu, 11 Aug 2016 06:29:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wgx at z dot zgrco.com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73494-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01400.txt.bz2
Content-length: 12616

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73494

            Bug ID: 73494
           Summary: CALL ESET ANTIVIRUS 1 800 059 007 ESET TECH SUPPORT
                    PHONE NUMBER ESET customer service phone number ESET
                    support phone number
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: wgx at z dot zgrco.com
  Target Milestone: ---

CALL ESET ANTIVIRUS 1 800 059 007 ESET TECH SUPPORT PHONE NUMBER ESET customer
service phone number ESET support phone number

CONATACT ESET ANTIVIRUS 1 800 059 007 ESET TECH SUPPORT PHONE NUMBER


cow 1 800 059 007 ESET support phone number for helpline ESET antivirus
technical support number 
ESET helpline phone number@~1800-059-007 ESET tech Support Number ESET customer
service phone number
ESET Security contact Number +1800-059007**ESET support phone number
AUS+1-800-059-007) Technical support number
CANADA+1800-059-007 ESET Technical Support
AUS-1800-059-007 contact ESET customer service phone number
AUS-1-800-059-007 phone number for ESET customer service
UK-800-810-007 phone number for ESET technical support
1-800-059-007 phone number for ESET customer service
phone number for ESET technical support
phone number for ESET security
ESET customer care phone number
ESET customer service billing
ESET customer service eantivirus address
ESET customer service live chat
ESET customer service telephone number
ESET customer support AUS phone number
ESET help desk support phone number free in AUS
ESET phone number customer service us
ESET phone number support
ESET support phone number
ESET tech support phone number free in AUS
ESET tech support phone number
ESET technical support customer service
ESET technical support number
ESET telephone number
ESET toll free customer care number
ESET toll free number in AUS
ESET contact phone number in AUS
ESET customer service number
ESET customer service phone number
ESET customer service telephone number
ESET customer support number
ESET customer support phone number
ESET customer support phone number
ESET help desk phone number in AUS
ESET phone number
ESET phone number support for technical issue in AUS
ESET support phone number
ESET technical support help desk phone number
ESET technical support number
ESET technical support phone number
ESET customer service number
ESET customer service telephone number
ESET customer services eantivirus
ESET customer support eantivirus address
ESET customer support number
ESET customer support phone number
ESET customer service phone number
ESET internet security contact phone number
ESET internet security customer service phone number
ESET internet security phone number
ESET internet security help phone number
ESET internet security phone number in AUS
ESET internet security support phone number
ESET internet security technical support
ESET phone number customer service
ESET phone numbers customer support
ESET phone support number
ESET security contact phone number
ESET security phone number customer service
ESET security support phone number
ESET support contact number
ESET support eantivirus address
ESET support phone number
ESET support telephone number
ESET support telephone number AUS
ESET support telephone number
ESET tech support number
ESET tech support phone number
ESET tech support phone number free
ESET technical support phone number
ESET technical support cutomer phone number
ESET technical support phone number
ESET technical support number free in AUS
ESET technical support number toll free number
ESET technical support phone number
ESET technologies phone number
ESET telephone support number
ESET customer support phone number
ESET customer service phone number
ESET customer support phone number
ESET phone number customer service
ESET technical support telephone number
contact ESET customer service phone number
customer service number for ESET
phone number for ESET
phone number for ESET customer service
phone number for ESET support
phone number for ESET customer service
phone number for ESET customer service
phone number for ESET customer support
phone number for ESET tech support
phone number ESET customer service
ESET customer service number
ESET customer service phone
ESET customer service phone number
ESET customer service phone number us
ESET customer service telephone number
ESET customer support
ESET customer support number
ESET phone number customer service us
ESET phone number support
ESET phone support
ESET phone support number
ESET support phone number
ESET tech support phone number
ESET technical support
ESET technical support number
ESET technical support phone number
ESET customer service phone number
ESET customer support phone number
ESET helpline phone number
ESET internet security customer service
ESET internet security customer service phone number
ESET internet security help phone number
ESET internet security phone number customer service
ESET phone number customer service
ESET phone number customer support
ESET security customer service phone number
ESET security phone number customer service
ESET support phone number
ESET support telephone number
ESET tech support number
ESET tech support phone number
ESET technical support
ESET technical support number
ESET technical support phone number
ESET customer support phone number
ESET phone number customer service
ESET tech support number
ESET customer service phone number
ESET customer service phone numbers
ESET internet security technical support
ESET tech support phone number us
ESET technical support telephone number
contact ESET
contact ESET by phone
contact ESET customer service
contact ESET customer service phone number
contactESET tech support AUS
customer service ESET phone number
download ESET titanium
dri ESET customer service number
dri ESET customer service phone number
dri ESET phone number
how to contact ESET by eantivirus
how to delete ESET from mac
micro trend customer service
ESET customer service number
phone number for ESET customer service
phone number forESET customer service
phone number forESET customer support
phone number forESET tech support
phone number forESET technical support
phone number for ESET technical support
phone number for ESET security
phone number for ESET support
phone number for ESET technical support
phone number for ESET customer service
phone number for ESET customer service
remove ESET from mac
technical support for Printer ESET
telephone number forESET technical support
telephone ESET
ESET contact number
ESET customer care
ESET customer care number
ESET customer care number AUS
ESET customer service
ESET customer service number :idea: :evil: :D :) :lol: :( :o :shock:
ESET customer service phone number
ESET customer service phone number AUS
ESET customer service telephone number
ESET customer support
ESET customer support in AUS
ESET customer support number
ESET customer support phone number
ESET for phone
ESET free Printer support
ESET help phone number
ESET helpline number
ESET online support
ESET phone
ESET phone number
ESET phone number in AUS
ESET phone number AUS
ESET phone support
ESET plus tech support
ESET protection
ESET support
ESET support number
ESET support phone number
ESET support services
ESET support telephone number
ESET tech support
ESET tech support phone number free in AUS
ESET tech support number
ESET tech support phone number
ESET technical support
ESET technical support number
ESET technical support phone number
ESET toll free customer care number
ESET toll free number
ESET contact phone number in AUS
ESET help desk phone number in AUS
ESET phone number support for technical issue in AUS
ESET support phone number
ESET technical support help desk phone number
ESET technical support phone number
ESET contact number
ESET contact number AUS
ESET contact phone number
ESET contact support
ESET contact number AUS
ESET contact phone number
ESET contact phone number AUS
ESET customer & technical support
ESET customer care
ESET customer care center
ESET customer care eantivirus
ESET customer care number
ESET customer care number
ESET customer care number AUS
ESET customer care number AUS toll free
ESET customer care phone number AUS
ESET customer care tchnical support
ESET customer care toll free
ESET customer care toll free number
ESET customer care AUS
ESET customer help
ESET customer number
ESET customer portal
ESET customer service
ESET customer service billing
ESET customer service eantivirus address
ESET customer service number
ESET customer service phone
ESET customer service phone number
ESET customer service phone number us
ESET customer service phone number AUS
ESET customer service reviews
ESET customer service telephone number
ESET customer service AUS
ESET customer support
ESET customer support number
ESET customer support phone
ESET customer support phone number
ESET customer service number
ESET customer service number AUS
ESET customer service phone number
ESET customer support number
ESET customer support phone number
ESET free phone support
ESET gold support phone number
ESET help desk phone number
ESET help phone number
ESET helpline
ESET helpline phone number
ESET hotline customer service phone number
ESET internet security customer service
ESET internet security phone number
ESET internet security phone number in AUS
ESET lab AUS customer service
ESET labs AUS customer serviceESET
ESET phone number
ESET phone number customer service
ESET phone number support
ESET phone number tech support
ESET phone number technical support
ESET phone numbers customer support
ESET phone support
ESET phone support number
ESET phone number customer service
ESET phone number support
ESET phone number tech support
ESET phone number AUS
ESET security contact phone number
ESET security phone number
ESET security support phone number
ESET software customer service
ESET software customer service number
ESET support center
ESET support contact number
ESET support eantivirus address
ESET support phone number
ESET support telephone number
ESET support number AUS
ESET support phone number
ESET support phone number AUS
ESET tech support
ESET tech support center
ESET tech support contact
ESET tech support number
ESET tech support number AUS
ESET tech support phone
ESET tech support phone number
ESET tech support phone number free
ESET tech support number
ESET tech support number AUS
ESET tech support phone number
ESET technical support
ESET technical support number
ESET technical support phone number
ESET technical support phone number AUS
ESET technical support reviews
ESET technical support AUS
ESET technical support phone number
ESET technical support number
ESET technical support number toll free number
ESET technical support number AUS
ESET technical support phone number
ESET technical support phone number AUS
ESET technologies phone number
ESET telephone number
ESET telephone support number
ESET toll free number
ESET toll free number AUS
ESET AUS customer care for tech support
ESET AUS customer service
ESET AUS phone number
ESET customer service phone number
ESET customer service phone number
ESET customer support phone number
ESET customer support phone number
ESET technical support number
ESET customer service phone number AUS
ESET internet security support phone number
ESET.com customer service
ESET antispyware 2011
ESET customer support
ESET serial key
ESET serial number
ESET support
ESET technical support
ESET business support
ESET contact support
ESET customer care number
ESET customer service 800
ESET customer service number
ESET customer service phone number
ESET customer service telephone number
ESET customer support
ESET grentry non payment
ESET helpline support number
ESET internet security customer service
ESET internet security technical support
ESET oem customer service
ESET pc cillin technical support
ESET phone support
ESET removal tool download
ESET subscription renewal
ESET support contact
ESET support hotline
ESET support phone number
ESET tech support phone number
ESET technical support
ESET technical support chat
ESET technical support phone number
ESET technical support phone number AUS
ESET telephone number
ESET titanium Printer
ESET titanium internet security
ESET titanium maximum
ESET titanium maximum security
ESET titanium problems
ESET titanium removal tool
ESET titanium reviews
ESET titanium support
ESET virus removal service
uninstall ESET smart surfing for mac
AUS customer care number for ESET
>From gcc-bugs-return-534065-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 06:39:35 2016
Return-Path: <gcc-bugs-return-534065-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 95255 invoked by alias); 11 Aug 2016 06:39:35 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 94712 invoked by uid 48); 11 Aug 2016 06:39:20 -0000
From: "ol.rakhimov at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/65856] -Wsuggest-override shall not report a warning on final method
Date: Thu, 11 Aug 2016 06:39:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: ol.rakhimov at gmail dot com
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-65856-4-INizlIW1hX@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-65856-4@http.gcc.gnu.org/bugzilla/>
References: <bug-65856-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01401.txt.bz2
Content-length: 585

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65856

ol.rakhimov at gmail dot com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ol.rakhimov at gmail dot com

--- Comment #9 from ol.rakhimov at gmail dot com ---
Please reconsider this bug to get fixed.
https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Rh-override

Clang doesn't throw warnings for using single ``final`` with
inconsistent-override warnings.
>From gcc-bugs-return-534066-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 06:46:49 2016
Return-Path: <gcc-bugs-return-534066-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 69786 invoked by alias); 11 Aug 2016 06:46:48 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 69602 invoked by uid 48); 11 Aug 2016 06:46:33 -0000
From: "thomas.helfer at cea dot fr" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/65856] -Wsuggest-override shall not report a warning on final method
Date: Thu, 11 Aug 2016 06:46:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: thomas.helfer at cea dot fr
X-Bugzilla-Status: CLOSED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-65856-4-OvHq9JcKzA@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-65856-4@http.gcc.gnu.org/bugzilla/>
References: <bug-65856-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01402.txt.bz2
Content-length: 434

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65856

Helfer Thomas <thomas.helfer at cea dot fr> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |CLOSED
         Resolution|INVALID                     |FIXED

--- Comment #10 from Helfer Thomas <thomas.helfer at cea dot fr> ---
Close ticket
>From gcc-bugs-return-534067-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 06:49:53 2016
Return-Path: <gcc-bugs-return-534067-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 73082 invoked by alias); 11 Aug 2016 06:49:52 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 72975 invoked by uid 48); 11 Aug 2016 06:49:40 -0000
From: "wgx at z dot zgrco.com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/73495] New: $@$@^^^18008101018@$$@$$^^^^*** Lexmark printer technical support number.
Date: Thu, 11 Aug 2016 06:49:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wgx at z dot zgrco.com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73495-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01403.txt.bz2
Content-length: 7818

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73495

            Bug ID: 73495
           Summary: $@$@^^^18008101018@$$@$$^^^^*** Lexmark printer
                    technical support number.
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ada
          Assignee: unassigned at gcc dot gnu.org
          Reporter: wgx at z dot zgrco.com
  Target Milestone: ---

$@$@^^^18008101018@$$@$$^^^^*** Lexmark printer technical support number.

....(moti))Call @@@++ USA I8008101018 LEXMARK p.r.i.n.t.e.r t.e.c.h
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l LEXMARK h.e.l.p d.e.s.k
n.u.m.b.e.r n.u.m.b.e.r C.a.n.a.d.a LEXMARK s.u.p.p.o.r.t p.

((moti))Call @@@++ USA I800810 1018 LEXMARK p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l LEXMARK h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a LEXMARK s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa USA 1
I80010181018 LEXMARK p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r
u.s.a. C.a.l.l LEXMARK h.e.l.p d.e.s.k n.u.m.b.e.r n.u.m.b.e.r C.a.n.a.d.a
LEXMARK s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa canada 1-1800-810-1018 USA,
LEXMARK printer Tech Support phone number,LEXMARK technical support phone
number 1 I80010181018 .LEXMARK Tech Support Number LEXMARK Tech LEXMARK tech
support, LEXMARK tech support number, LEXMARK tech support phone number,
LEXMARK technical support, LEXMARK technical support number, LEXMARK technical
support phone number, LEXMARK tech support number, LEXMARK support number,
LEXMARK Tech support phone number, LEXMARK support phone number, LEXMARK
technical support phone number, LEXMARK technical support number,Support Phone
Number for LEXMARK printer Phone Number for LEXMARK CustomerService Technical
Support Telephone Number LEXMARK printer support number LEXMARK LEXMARK printer
tech support number LEXMARK LEXMARK printer technical support number LEXMARK
LEXMARK printer technical support phone number LEXMARK LEXMARK printer customer
service number LEXMARK LEXMARK internet security technical support LEXMARK
technical support phone number LEXMARK LEXMARK tech support phone number
LEXMARK LEXMARK customer support phone number I-800-810-1018 LEXMARK LEXMARK
printer support phone number LEXMARK LEXMARK support phone LEXMARK tech support
LEXMARK customer support LEXMARK phone support LEXMARK support number LEXMARK
LEXMARK technical support LEXMARK printer customer support phone number LEXMARK
LEXMARK printer tech support phone number LEXMARK contact LEXMARK support
LEXMARK printer technical support phone number ~!~I8008101018++ LEXMARK LEXMARK
phone number LEXMARK tech support LEXMARK support ticket LEXMARK customer
support number LEXMARK LEXMARK tech support number LEXMARK LEXMARK technical
support number LEXMARK LEXMARK support center LEXMARK telephone support call
LEXMARK support LEXMARK printer support support LEXMARK LEXMARK billing support
LEXMARK printer technical support number LEXMARK support LEXMARK printer
LEXMARK online support LEXMARK contact support LEXMARK printer support number
LEXMARK LEXMARK printer customer support number LEXMARK LEXMARK printer tech
support number LEXMARK support for LEXMARK LEXMARK phone number LEXMARK LEXMARK
customer service phone number LEXMARK LEXMARK contact phone number LEXMARK
LEXMARK printer phone number LEXMARK LEXMARK printer customer service phone
number LEXMARK phone number LEXMARK for LEXMARK customer service LEXMARK
software phone number LEXMARK phone number LEXMARK for LEXMARK LEXMARK customer
service telephone number LEXMARK LEXMARK helpline phone number LEXMARK LEXMARK
contact number LEXMARK LEXMARK customer service number LEXMARK LEXMARK customer
service phone number ~!~I8008101018++ LEXMARK us LEXMARK customer service phone
number LEXMARK usa LEXMARK telephone number LEXMARK LEXMARK phone number
LEXMARK usa LEXMARK printer contact number LEXMARK LEXMARK number LEXMARK
LEXMARK contact number LEXMARK usa LEXMARK printer helpline number LEXMARK
LEXMARK helpline number LEXMARK LEXMARK customer number LEXMARK LEXMARK printer
customer service number LEXMARK LEXMARK contact telephone number LEXMARK
contact number LEXMARK for LEXMARK LEXMARK software contact number LEXMARK
LEXMARK toll free number LEXMARK LEXMARK telephone number LEXMARK uk LEXMARK
registration number LEXMARK LEXMARK toll free number LEXMARK usa LEXMARK
customer service LEXMARK software customer service contact LEXMARK customer
service LEXMARK customer service phone LEXMARK printer customer service LEXMARK
service LEXMARK printer technical support LEXMARK printer customer support
LEXMARK technical support reviews telephone LEXMARK printer LEXMARK tech
support phone number LEXMARK LEXMARK printer tech support phone number LEXMARK
LEXMARK printer customer service LEXMARK technical support phone number LEXMARK
LEXMARK printer free printer support LEXMARK customer service billing LEXMARK
customer service email address LEXMARK customer service reviews contact LEXMARK
customer service LEXMARK tech support number LEXMARK usa LEXMARK printer
support number LEXMARK LEXMARK printer contact number LEXMARK LEXMARK customer
service phone number LEXMARK LEXMARK technical support usa LEXMARK technical
support number LEXMARK LEXMARK tech support phone LEXMARK tech support number
LEXMARK LEXMARK customer service telephone number LEXMARK LEXMARK printer
customer support number LEXMARK LEXMARK printer phone number LEXMARK LEXMARK
printer online support LEXMARK customer service number LEXMARK LEXMARK tech
support center LEXMARK customer service LEXMARK software customer service
LEXMARK customer care number LEXMARK usa LEXMARK customer number LEXMARK
LEXMARK customer support number LEXMARK LEXMARK customer care number LEXMARK
LEXMARK customer care toll free number LEXMARK LEXMARK tech support LEXMARK
technical support LEXMARK printer support LEXMARK printer tech support LEXMARK
support center LEXMARK.com customer service LEXMARK printer customer care
number LEXMARK LEXMARK customer care LEXMARK phone number LEXMARK phone number
LEXMARK for LEXMARK customer service LEXMARK phone support LEXMARK phone number
LEXMARK tech support LEXMARK support phone number LEXMARK contact LEXMARK by
phone LEXMARK contact phone number LEXMARK LEXMARK helpline phone number
LEXMARK LEXMARK printer phone LEXMARK printer for phone LEXMARK contact number
LEXMARK LEXMARK contact support contact LEXMARK printer LEXMARK contact number
LEXMARK usa LEXMARK toll free number LEXMARK LEXMARK telephone number LEXMARK
LEXMARK toll free number LEXMARK usa LEXMARK printer support services technical
support for printer LEXMARK LEXMARK customer service phone number LEXMARK usa
LEXMARK printer customer care number LEXMARK usa LEXMARK customer care number
LEXMARK LEXMARK customer care center LEXMARK customer support LEXMARK customer
support phone LEXMARK customer help LEXMARK customer & technical support
LEXMARK customer portal LEXMARK customer care phone number LEXMARK usa LEXMARK
customer care email LEXMARK helpline LEXMARK tech support contact LEXMARK
customer care toll free LEXMARK printer customer service number LEXMARK LEXMARK
printer protection norton printer customer service number LEXMARK LEXMARK
software customer service number LEXMARK LEXMARK hotline customer service phone
number LEXMARK LEXMARK customer service phone number LEXMARK us how to contact
LEXMARK by email LEXMARK free phone support LEXMARK printer technical support
number LEXMARK LEXMARK printer technical support help desk phone number LEXMARK
LEXMARK technical support number LEXMARK toll free number LEXMARK LEXMARK
printer customer support phone number LEXMARK LEXMARK printer customer
>From gcc-bugs-return-534068-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 06:53:39 2016
Return-Path: <gcc-bugs-return-534068-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 75860 invoked by alias); 11 Aug 2016 06:53:37 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 75525 invoked by uid 55); 11 Aug 2016 06:53:25 -0000
From: "rguenther at suse dot de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/72855] Long compile time due to integrity checking during dataflow analysis per loop
Date: Thu, 11 Aug 2016 06:53:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 5.4.1
X-Bugzilla-Keywords: compile-time-hog
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenther at suse dot de
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72855-4-pLgJygurhn@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72855-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72855-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01404.txt.bz2
Content-length: 925

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72855

--- Comment #11 from rguenther at suse dot de <rguenther at suse dot de> ---
On Wed, 10 Aug 2016, wschmidt at gcc dot gnu.org wrote:

> https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72855
> 
> --- Comment #10 from Bill Schmidt <wschmidt at gcc dot gnu.org> ---
> Some experiments on trunk:
> 
> - Using Bin's patch, I see compile time reduced to ~14 minutes.
> - Using Richi's patch, I see compile time reduced to ~9 minutes.
> 
> So both are quite helpful compared to somewhere around 2 hours.
> 
> I'll plan to implement the pre-approved patch, but first I want to try to dig
> into why flag_checking appears to have an unexpected value.

Yes, that's very much appreciated.  As the issue also appears on older
branches w/o flag_checking there may be a stray memory write to
df->changeable_flags somewhere?  As it is a global maybe put a watchpoint
to it ...
>From gcc-bugs-return-534069-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 06:53:39 2016
Return-Path: <gcc-bugs-return-534069-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 76040 invoked by alias); 11 Aug 2016 06:53:39 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 75556 invoked by uid 48); 11 Aug 2016 06:53:25 -0000
From: "wgx at z dot zgrco.com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/73497] New: Epson printer 1800+059+007@EPSON printer suppOrt phOne number EPSON printer tech suppOrt phOne number AUS
Date: Thu, 11 Aug 2016 06:53:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wgx at z dot zgrco.com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73497-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01405.txt.bz2
Content-length: 6408

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73497

            Bug ID: 73497
           Summary: Epson printer 1800+059+007@EPSON printer suppOrt phOne
                    number EPSON printer tech suppOrt phOne number AUS
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: wgx at z dot zgrco.com
  Target Milestone: ---

Epson printer 1800+059+007@EPSON printer suppOrt phOne number EPSON printer
tech suppOrt phOne number AUS


EPSON printer custOmer service 1800059007  EPSON printer suppOrt phOne number
1800059007 EPSON printer tech suppOrt phOne number AUS
JUST dial 1800+059+007 EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number AUS
EPSON printer custOmer service 1800+059.007 EPSON printer suppOrt phOne number
EPSON printer tech suppOrt phOne number AUS,
EPSON printer technical suppOrt phOne number EPSON printer custOmer suppOrt
phOne number EPSON printer phOne number EPSON printer custOmer care phOne
number
brOhter printer custOmer care number EPSON printer tOll free phOne number EPSON
printer suppOrt EPSON suppOrt EPSON printers suppOrt EPSON custOmer service
EPSON printer help EPSON tech suppOrt EPSON printer custOmer service EPSON
printer tech suppOrt EPSON technical suppOrt EPSON printer trOubleshOOting
EPSON printers trOubleshOOting EPSON internatiOnal Aol printer suppOrt EPSON
custOmer suppOrt EPSON printer technical suppOrt EPSON printer repair EPSON
printer helpline EPSON printers custOmer service EPSON service center Aol
printers suppOrt EPSON helpline EPSON custOmer service phOne number install
EPSON printer EPSON printers tech suppOrt EPSON printer suppOrt number EPSON
printer custOmer suppOrt EPSON printer cOntact number EPSON printer prOblems
EPSON printers help EPSON printer service EPSON printer service center EPSON
printer cOntact EPSON custOmer service number EPSON printers helpline EPSON
suppOrt number EPSON printer repairs EPSON printer scanner EPSON printers phOne
number EPSON printers custOmer suppOrt EPSON suppOrt center EPSON tech suppOrt
phOne number Aol printers custOmer service EPSON printer custOmer service
number EPSON printers technical suppOrt EPSON printer helpline number EPSON
suppOrt phOne number EPSON suppOrt printer EPSON technical suppOrt number EPSON
printers cOntact trOubleshOOting EPSON printer EPSON printer phOne suppOrt
EPSON printers suppOrt phOne number trOubleshOOt EPSON printer EPSON printers
cOntact number Aol custOmer service EPSON printer number EPSON phOne suppOrt
EPSON trOubleshOOting EPSON printer custOmer care EPSON printer help desk
drivers fOr EPSON printers EPSON technical suppOrt phOne number EPSON custOmer
service phOne cOntact EPSON printers EPSON printer custOmer care number EPSON
help desk EPSON Online suppOrt EPSON custOmer suppOrt phOne number Aol printer
custOmer service EPSON printer mfc EPSON printers tech suppOrt phOne number
EPSON service Aol tech suppOrt EPSON printers custOmer service phOne number
EPSON printer install EPSON laser printers Aol printers suppOrt EPSON printer
EPSON printer service centre EPSON printer updates EPSON inkjet printer cOntact
EPSON suppOrt EPSON tech suppOrt phOne EPSON lc61 Aol printers tech suppOrt
printers Online cOntact EPSON printer Aol printer EPSON label printer EPSON
custOmer suppOrt phOne EPSON printers custOmer suppOrt number EPSON suppOrt
centre EPSON laser printer EPSON printer custOmer service suppOrt EPSON
wireless printer setup buy EPSON printer Online EPSON printer tech suppOrt
number EPSON netwOrk printer EPSON printers custOmer service number custOmer
service fOr EPSON printers EPSON service centre EPSON wireless printer EPSON
printers EPSON custOmer care EPSON printer Online suppOrt EPSON printer tOll
free number phOne number fOr EPSON printers EPSON printer installatiOn EPSON
printers help desk EPSON printer suppOrt phOne service EPSON EPSON mfc EPSON
printer custOmer suppOrt number EPSON printers technical suppOrt phOne number
EPSON printer hOtline cOntact number fOr EPSON printers EPSON printer
EPSON.cOm suppOrt cOntact EPSON printer suppOrt EPSON printer trOubleshOOt
EPSON telephOne suppOrt EPSON printers custOmer suppOrt phOne number EPSON
printer help phOne number EPSON custOmer service telephOne number EPSON printer
tech suppOrt phOne EPSON.ca suppOrt EPSON printer Online EPSON multifunctiOn
printer printer suppOrt EPSON printer help EPSON mfc printer technical suppOrt
fOr EPSON printers EPSON tech suppOrt number email suppOrt EPSON printers
suppOrt phOne mfc EPSON EPSON hl227Odw EPSON printers website EPSON printer
suppOrt EPSON printers repair repair EPSON printer EPSON printers suppOrt EPSON
helpline number EPSON scanner printer EPSON printers service EPSON printers
custOmer service telephOne number EPSON printer phOne number custOmer service
EPSON printers review www.EPSON.cOm suppOrt fOr EPSON printer EPSON printer
repair service EPSON printer phOne number fOr EPSON printer suppOrt EPSON
printer website EPSON printers custOmer service phOne EPSON printer prOblems
and sOlutiOns Aol printers custOmer service phOne number custOmer service EPSON
printer sOlutiOn EPSON EPSON fax suppOrt mfc EPSON printer EPSON printer
custOmer service phOne EPSON printer help number EPSON mfc-846On
drivers fOr EPSON printers EPSON technical suppOrt phOne number EPSON custOmer
service phOne cOntact EPSON printers EPSON printer custOmer care number EPSON
help desk EPSON Online suppOrt EPSON custOmer suppOrt phOne number Aol printer
custOmer service EPSON printer mfc EPSON printers tech suppOrt phOne number
EPSON service Aol tech suppOrt EPSON printers custOmer service phOne number
EPSON printer install EPSON laser printers Aol printers suppOrt EPSON printer
EPSON printer service centre EPSON printer updates EPSON inkjet printer cOntact
EPSON suppOrt EPSON tech suppOrt phOne EPSON lc61 Aol printers tech suppOrt
printers Online cOntact EPSON printer Aol printer EPSON label printer EPSON
custOmer suppOrt phOne EPSON printers custOmer suppOrt number EPSON suppOrt
centre EPSON laser printer EPSON printer custOmer service suppOrt EPSON
wireless printer setup buy EPSON printer Online EPSON printer tech suppOrt
number EPSON netwOrk printer EPSON
>From gcc-bugs-return-534070-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 06:56:12 2016
Return-Path: <gcc-bugs-return-534070-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 107153 invoked by alias); 11 Aug 2016 06:56:11 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 107026 invoked by uid 48); 11 Aug 2016 06:55:59 -0000
From: "trippels at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/65856] -Wsuggest-override shall not report a warning on final method
Date: Thu, 11 Aug 2016 06:56:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: trippels at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-65856-4-keEGRt5u3g@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-65856-4@http.gcc.gnu.org/bugzilla/>
References: <bug-65856-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01406.txt.bz2
Content-length: 361

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65856

Markus Trippelsdorf <trippels at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|CLOSED                      |RESOLVED
         Resolution|FIXED                       |INVALID
>From gcc-bugs-return-534071-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 06:59:55 2016
Return-Path: <gcc-bugs-return-534071-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 118524 invoked by alias); 11 Aug 2016 06:59:55 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 115446 invoked by uid 48); 11 Aug 2016 06:59:42 -0000
From: "wgx at z dot zgrco.com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73498] New: AUS/ 1*80*059*0*07 DELL printer Customer Care Number DELL Customer Service Phone Number
Date: Thu, 11 Aug 2016 06:59:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wgx at z dot zgrco.com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73498-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01407.txt.bz2
Content-length: 14618

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73498

            Bug ID: 73498
           Summary: AUS/ 1*80*059*0*07 DELL printer Customer Care Number
                    DELL Customer Service Phone Number
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: wgx at z dot zgrco.com
  Target Milestone: ---

AUS/ 1*80*059*0*07 DELL printer Customer Care Number DELL Customer Service
Phone Number

DELL Contact Number@ 1 80059007 DELL printer Contact Phone Number DELL Contact
Number@1 80059007 DELL printer Contact Phone Number DELL Contact Number@1
80059007 DELL printer Contact Phone NumberDELL tech support, DELL printer tech
support, DELL printer tech support, contact DELL tech support, DELL tech help,
DELL.com tech support, DELL customer service tech support, DELL tech support
phone, tech support for DELL, DELL tech, DELL tech support scams Support number
<<>>))))))))))))) (15) DELL support number <<>>))))))))))))), DELL support
phone number <<>>))))))))))))), DELL customer service support number
<<>>))))))))))))), DELL customer support number <<>>))))))))))))), DELL phone
number <<>>))))))))))))) support, DELL printer support phone number
<<>>))))))))))))), phone number <<>>))))))))))))) for DELL support, DELL
printer support number <<>>))))))))))))), DELL support contact number
<<>>))))))))))))), DELL support number <<>>))))))))))))) phone, phone number
<<>>))))))))))))) for DELL printer support, DELL.com support number
<<>>))))))))))))), DELL.com support phone number <<>>))))))))))))), DELL.com
customer support number <<>>))))))))))))), DELL support number
<<>>))))))))))))) DELL Telephone (33) DELL telephone number <<>>))))))))))))),
DELL customer service telephone number <<>>))))))))))))), DELL telephone,
telephone number <<>>))))))))))))) for DELL, DELL support telephone number
<<>>))))))))))))), DELL customer service telephone, DELL technical support
telephone number <<>>))))))))))))), DELL help telephone number
<<>>))))))))))))), DELL telephone number <<>>))))))))))))) customer service,
DELL telephone support, DELL customer support telephone number
<<>>))))))))))))), DELL telephone help, contact DELL by telephone, telephone
number <<>>))))))))))))) for DELL customer service, DELL telephone number
<<>>)))))))))))))s, telephone number <<>>))))))))))))) for DELL technical
support, DELL contact telephone number <<>>))))))))))))), telephone number
<<>>))))))))))))) for DELL help, DELL telephone number <<>>)))))))))))))s for
customer service, DELL telephone contact… Contact number <<>>))))))))))))) (10)
DELL contact number <<>>))))))))))))), DELL contact number <<>>)))))))))))))s,
contact number <<>>))))))))))))) for DELL, DELL.com contact number
<<>>))))))))))))), DELL contact number <<>>))))))))))))) 0800, DELL printer
contact number <<>>))))))))))))), contact DELL number <<>>))))))))))))), DELL
contact number <<>>))))))))))))) printer, DELL contact number
<<>>))))))))))))), DELL talktalk contact number <<>>))))))))))))) DELL
Technical (14) DELL technical support, DELL technical support phone number
<<>>))))))))))))), DELL technical support number <<>>))))))))))))), contact
DELL technical support, DELL technical help, DELL printer technical support,
DELL printer technical support, DELL technical support phone, phone number
<<>>))))))))))))) for DELL technical support, DELL technical support contact
number <<>>))))))))))))), DELL technical support uk, DELL technical support
phone number <<>>))))))))))))) us, DELL technical support live chat, DELL
technical support phone number <<>>))))))))))))) usa Phone Customer (32) DELL
customer service phone number <<>>))))))))))))), phone number <<>>)))))))))))))
for DELL customer service, DELL customer service phone, DELL customer support
phone number <<>>))))))))))))), DELL customer services phone number
<<>>))))))))))))), DELL phone number <<>>))))))))))))) customer service, DELL
phone number <<>>))))))))))))) for customer service, DELL customer phone number
<<>>))))))))))))), DELL customer service contact phone number
<<>>))))))))))))), DELL phone number <<>>)))))))))))))s customer support, DELL
customer support phone, DELL phone customer service, phone for DELL customer
service, phone number <<>>))))))))))))) to DELL customer service, phone number
<<>>))))))))))))) for DELL com customer service, DELL phone number
<<>>)))))))))))))s customer service, DELL.com customer service phone number
<<>>))))))))))))), DELL printer customer service phone number
<<>>))))))))))))), phone number <<>>))))))))))))) DELL customer service,
contact DELL customer service by phone… number <<>>))))))))))))) Help (13) DELL
help number <<>>))))))))))))), DELL help phone number <<>>))))))))))))), DELL
phone number <<>>))))))))))))) for help, DELL printer help phone number
<<>>))))))))))))), DELL help desk phone number <<>>))))))))))))), DELL.com
phone number <<>>))))))))))))) for help, phone number <<>>))))))))))))) for
DELL help, DELL phone number <<>>))))))))))))) help, phone number
<<>>))))))))))))) for DELL help desk, DELL.com help number <<>>))))))))))))),
DELL.com help phone number <<>>))))))))))))), DELL help phone number
<<>>))))))))))))) in united states, DELL help phone number <<>>))))))))))))) us
DELL Problems (38) DELL printer problems, DELL problems, DELL printer problems,
problems with DELL printer, problems with DELL, DELL printer problem, DELL
problem, DELL printer problem, DELL problems today, problem with DELL printer,
problem with DELL printer, DELL phone line problems, problem with DELL, fix
DELL printer problems, DELL printer problems today, DELL webprinter problems,
problems with DELL printer, DELL printer problems today, problems with DELL
printer today, DELL service problems… printer Support (5) DELL printer support,
DELL support printer, printer DELL support, DELL customer support printer,
contact DELL printer support Customer number <<>>))))))))))))) (16) DELL
customer service number <<>>))))))))))))), DELL customer service contact number
<<>>))))))))))))), DELL number <<>>))))))))))))) customer service, number
<<>>))))))))))))) for DELL customer service, DELL contact number
<<>>))))))))))))) customer service, DELL customer services number
<<>>))))))))))))), DELL printer customer service number <<>>))))))))))))),
customer service number <<>>))))))))))))) for DELL, DELL.com customer service
number <<>>))))))))))))), contact number <<>>))))))))))))) for DELL customer
service, DELL customer number <<>>))))))))))))), DELL customer care number
<<>>))))))))))))), DELL number <<>>)))))))))))))s customer service, DELL
customer service number <<>>))))))))))))) 0800, america online customer service
number <<>>))))))))))))), DELL customer service number <<>>))))))))))))) us
DELL Helpline (15) DELL helpline, DELL helpline number <<>>))))))))))))), DELL
helpline phone number <<>>))))))))))))), DELL printer helpline, DELL telephone
helpline, DELL printer helpline, DELL helpline online, DELL customer helpline,
DELL helpline telephone number <<>>))))))))))))), phone number
<<>>))))))))))))) for DELL helpline, DELL helpline uk, DELL broadband helpline
number <<>>))))))))))))), DELL printer uk helpline, DELL broadband helpline,
DELL helpline number <<>>))))))))))))) uk Contact Phone (19) contact DELL by
phone, DELL contact phone number <<>>))))))))))))), how to contact DELL by
phone, contact DELL help by phone, DELL phone contact, contact DELL phone
number <<>>))))))))))))), contact phone number <<>>))))))))))))) for DELL,
contact DELL phone, DELL contact phone number <<>>)))))))))))))s, contact DELL
by phone support, DELL.com contact phone, how do i contact DELL by phone, DELL
contact phone, DELL.com contact phone number <<>>))))))))))))), DELL.com phone
contact, phone number <<>>))))))))))))) to contact DELL, contact DELL support
phone, DELL.com phone number <<>>))))))))))))) contact, DELL phone contact
number <<>>))))))))))))) Printer Help (6) DELL printer help, DELL printer help
desk, help DELL printer, help with DELL printer, DELL.com help printer, DELL
printer help center DELL Call (18) call DELL, DELL customer service call, how
to call DELL, call DELL support, call DELL customer service, call DELL tech
support, how to call DELL customer service, call DELL for help, DELL call, DELL
number <<>>))))))))))))) to call, call DELL com customer service, how do i call
DELL customer service, DELL call center, call DELL customer support, how do i
call DELL, DELL customer support call, call DELL for password, call DELL.com
Live DELL (13) DELL live help, help.DELL.com live help, DELL keyword live help,
DELL customer service live help, DELL live help customer service, DELL live
support, live help DELL, DELL help live, live DELL help, DELL live,
help.DELL.live, live DELL, DELL live help uk Printer number <<>>)))))))))))))
(11) DELL printer contact number <<>>))))))))))))), DELL printer support number
<<>>))))))))))))), DELL printer help phone number <<>>))))))))))))), DELL
printer phone number <<>>))))))))))))), phone number <<>>))))))))))))) for DELL
printer, DELL printer support phone number <<>>))))))))))))), DELL printer
customer service phone number <<>>))))))))))))), DELL printer help number
<<>>))))))))))))), DELL printer customer service number <<>>))))))))))))), DELL
printer phone number <<>>))))))))))))) customer service, DELL printer number
<<>>))))))))))))) number <<>>))))))))))))) Tech (6) DELL tech support number
<<>>))))))))))))), DELL tech support phone number <<>>))))))))))))), phone
number <<>>))))))))))))) for DELL tech support, DELL tech support contact
number <<>>))))))))))))), DELL tech support phone number <<>>))))))))))))) usa,
DELL tech support number <<>>))))))))))))) usa DELL Account (22) my DELL
printer account, make a DELL account, DELL printer my account, DELL account
services, my DELL printer account, help DELL.com my account, get DELL printer
account, DELL account help, my DELL account, DELL account services printer,
DELL account, DELL account number <<>>))))))))))))), DELL accounts, make an
DELL account, DELL account recovery, delete DELL printer account, how do i
contact DELL about my printer account, account DELL, how do i contact DELL
about my account, new account DELL… DELL Online (10) DELL online help, DELL
online support, DELL help online, DELL online tech support, DELL live help
online, DELL online customer service, DELL online service, DELL help online
chat, DELL online help chat, DELL support chat online DELL 800 (10) DELL tech
support 800 number <<>>))))))))))))), DELL 800 number <<>>))))))))))))), DELL
800 number <<>>))))))))))))) tech support, DELL customer service 800 number
<<>>))))))))))))), 800 number <<>>))))))))))))) for DELL, DELL 800 customer
service, DELL customer service phone number <<>>))))))))))))) 1-800, DELL 1 800
number <<>>))))))))))))), DELL 800 phone number <<>>))))))))))))), DELL 800
DELL Member (7) DELL member services, DELL member services phone number
<<>>))))))))))))), DELL member service, phone number <<>>))))))))))))) for DELL
member services, DELL member services contact number <<>>))))))))))))), DELL
member services printer, DELL member Contact Support (5) contact DELL support,
DELL contact support, DELL support contact, contact DELL customer support, how
to contact DELL support DELL Internet (17) DELL internet, DELL internet
service, internet DELL, DELL internet services, DELL internet customer service,
DELL internet service contact number <<>>))))))))))))), DELL internet phone
number <<>>))))))))))))), phone number <<>>))))))))))))) for DELL internet
service, DELL internet phone service, DELL internet service number
<<>>))))))))))))), DELL internet service phone number <<>>))))))))))))),
DELL.com internet service, how do i get DELL internet service, DELL home
internet service, get DELL internet, DELL internet uk, how to get DELL internet
service DELL Sign (39) DELL printer sign in, my DELL printer sign in, my DELL
sign in, DELL sign in printer, my DELL printer sign in, DELL printer sign in,
DELL sign in, printer DELL com sign in, sign into DELL, sign in DELL printer,
DELL sign, my DELL printer sign in page, sign into DELL printer, my DELL
printer sign in page, sign up for DELL internet, DELL.com my printer sign in,
DELL printer sign in my account, www printer DELL com sign, DELL printer sign
up now, DELL sign in help… DELL Settings (8) DELL printer settings, set up DELL
printer, DELL printer settings, DELL settings, DELL smtp settings, DELL imap
settings, DELL account settings, DELL pop3 settings Change DELL (26) DELL
password change, DELL change password, change DELL password, change password
DELL, change DELL printer password, change my DELL password, DELL phone number
<<>>))))))))))))) to change password, how to change my DELL password, change
password on DELL, changing DELL password, DELL printer password change, DELL
change password online, change DELL password online, change password DELL
printer, change DELL printer password online, change DELL printer address,
change password on DELL printer, how do i change my DELL printer address,
change password in DELL, change my DELL printer password… Contact printer (5)
contact DELL printer, DELL printer contact, DELL contact printer, contact DELL
by printer, contact DELL printer help Reset DELL (15) DELL password reset,
reset DELL password, DELL reset password, DELL phone number <<>>)))))))))))))
to reset password, reset my DELL password, DELL phone number <<>>)))))))))))))
for password reset, contact DELL for password reset, DELL customer service
password reset, call DELL to reset password, reset password DELL, DELL phone
number <<>>))))))))))))) password reset, contact DELL to reset password, phone
number <<>>))))))))))))) for DELL password reset, password reset DELL, DELL
reset password phone number <<>>))))))))))))) DELL Chat (15) DELL live chat,
DELL chat support, DELL live help chat, DELL help chat, DELL live chat support,
DELL support chat, DELL live chat help, DELL support live chat, DELL chat help,
DELL tech support live chat, DELL tech support chat, DELL help live chat, DELL
customer service chat, DELL customer service live chat, DELL customer support
live chat DELL Password (13) DELL password, DELL password help, DELL password
>From gcc-bugs-return-534072-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 07:04:48 2016
Return-Path: <gcc-bugs-return-534072-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 123491 invoked by alias); 11 Aug 2016 07:04:48 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 123390 invoked by uid 48); 11 Aug 2016 07:04:35 -0000
From: "wgx at z dot zgrco.com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: =?UTF-8?B?W0J1ZyBjKysvNzM1MDFdIE5ldzogRGVsbOKEoiBQcmludGVyIEArMTgwMDA1?= =?UTF-8?B?OTAwNyBERUxMIFBSSU5URVIgdGVjaG5pY2FsIFN1cHBvcnQgUGhvbmUgbnVt?= =?UTF-8?B?YmVyLCBERUxMIFBSSU5URVIgIHN1cHBvcnQgUGhvbmUgTnVtYmVy?Date: Thu, 11 Aug 2016 07:04:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wgx at z dot zgrco.com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73501-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01408.txt.bz2
Content-length: 16884

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73501

            Bug ID: 73501
           Summary: Dellâ„¢ Printer @+1800059007 DELL PRINTER technical
                    Support Phone number, DELL PRINTER  support Phone
                    Number
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: wgx at z dot zgrco.com
  Target Milestone: ---

Dellâ„¢ Printer @+1800059007 DELL PRINTER technical Support Phone number, DELL
PRINTER  support Phone Number
 @@@1-800-059-007@@@ DELL PRINTER  CUSTOMER support phone number DELL PRINTER e
phone number DELL PRINTER e technical support phone number.pdf, DELL PRINTER
tech support number DELL PRINTER tech support phone number Canada 1800-059-007
DELL PRINTER phone number us File DELL PRINTER Phone
number(+((1800.059.007)+)DELL PRINTER tech support number DELL PRINTER tech
support phone number UK 1800-059-007 DELL PRINTER phone number australia.pdf,
5.2 KB (added by sanjna78547, 39 seconds ago) DELL PRINTER ?1800-059-007 DELL
PRINTER tech support number 1800-059-007, DELL PRINTER helpline, DELL PRINTER
customer care , notrton customer support usa helpline 1800.059.007 DELL PRINTER
tech support phone number usa DELL PRINTER Phone number(+((1800.059.007)+)DELL
PRINTER tech support number DELL PRINTER tech support phone number UK
1800-059-007 DELL PRINTER phone number australia 1800-344-007 DELL PRINTER
customer service number uk 1800-059-007 DELL PRINTER customer service phone
number DELL PRINTER contact number DELL PRINTER phone number us 1800-059-007
DELL PRINTER number DELL PRINTER support number DELL PRINTER e phone number
DELL PRINTER customer service number DELL PRINTER customer service phone number
DELL PRINTER contact number DELL PRINTER phone number DELL PRINTER number au
DELL PRINTER support number aus DELL PRINTER e phone number DELL PRINTER
support phone number DELL PRINTER tech support number DELL PRINTER security
phone number DELL PRINTER telephone number DELL PRINTER  phone number DELL
PRINTER phone number customer service usa DELL PRINTER customer support phone
number DELL PRINTER e customer service number DELL PRINTER e customer service
phone number phone number for DELL PRINTER DELL PRINTER  contact number DELL
PRINTER e contact number DELL PRINTER  customer service number DELL PRINTER e
support phone number australia DELL PRINTER  support phone number aus DELL
PRINTER customer support number au DELL PRINTER security contact number canada
DELL PRINTER  customer service phone number usa DELL PRINTER 800 number uk DELL
PRINTER technical support phone number DELL PRINTER e contact phone number DELL
PRINTER technical support number DELL PRINTER e support number DELL PRINTER
tech support phone number DELL PRINTER contact phone number DELL PRINTER 
customer support phone number DELL PRINTER  phone number support phone number
for DELL PRINTER e customer service phone number for DELL PRINTER security DELL
PRINTER help number phone number for DELL PRINTER e DELL PRINTER help phone
number phone number for DELL PRINTER customer service DELL PRINTER security
customer service phone number DELL PRINTER security phone number customer
service DELL PRINTER contact number for customer service DELL PRINTER e
telephone number DELL PRINTER  contact phone number DELL PRINTER e phone
support number DELL PRINTER  technical support phone number DELL PRINTER
security telephone number contact number for DELL PRINTER DELL PRINTER 1800
number DELL PRINTER  help phone number DELL PRINTER  support number DELL
PRINTER  telephone number DELL PRINTER customer care number DELL PRINTER
security contact phone number DELL PRINTER e technical support phone number
DELL PRINTER  tech support phone number phone number for DELL PRINTER support
DELL PRINTER toll free number DELL PRINTER e tech support number DELL PRINTER
account contact number DELL PRINTER  phone number customer service DELL PRINTER
e tech support phone number DELL PRINTER e help phone number DELL PRINTER
telephone number customer service DELL PRINTER e phone number customer service
DELL PRINTER  support telephone number DELL PRINTER  tech support number DELL
PRINTER security support phone number DELL PRINTER helpline number telephone
number for DELL PRINTER customer service DELL PRINTER e customer support phone
number DELL PRINTER support telephone number phone number for DELL PRINTER
customer support DELL PRINTER  number DELL PRINTER customer service telephone
number DELL PRINTER internet security customer service phone number DELL
PRINTER e customer support number contact number for DELL PRINTER  DELL PRINTER
internet security phone number customer service telephone number for DELL
PRINTER phone number for DELL PRINTER internet security contact number for DELL
PRINTER e DELL PRINTER account phone number phone number for DELL PRINTER  DELL
PRINTER e telephone number customer service DELL PRINTER.com phone number DELL
PRINTER support contact number DELL PRINTER phone support number customer
service number for DELL PRINTER e DELL PRINTER com support phone number DELL
PRINTER  internet security phone number DELL PRINTER phone number support DELL
PRINTER phone number customer support DELL PRINTER contact support number DELL
PRINTER internet security customer service number DELL PRINTER e help number
contact DELL PRINTER e customer service phone number DELL PRINTER  customer
support number DELL PRINTER service number DELL PRINTER  customer service
telephone number telephone number for DELL PRINTER e customer service DELL
PRINTER hotline number DELL PRINTER security help phone number DELL PRINTER e
toll free number DELL PRINTER account customer service phone number phone
number for DELL PRINTER e support DELL PRINTER symantec phone number DELL
PRINTER.com customer service phone number DELL PRINTER 800 phone number DELL
PRINTER  phone support number customer service number for DELL PRINTER symantec
DELL PRINTER customer service phone number DELL PRINTER internet security
support phone number DELL PRINTER helpline phone number DELL PRINTER security
customer services phone number DELL PRINTER customer care phone number DELL
PRINTER 1800 support number DELL PRINTER virus contact number phone number for
DELL PRINTER symantec DELL PRINTER e support telephone number DELL PRINTER
symantec support phone number DELL PRINTER internet security contact phone
number DELL PRINTER virus phone number DELL PRINTER internet security help
phone number DELL PRINTER renewal phone number telephone number for DELL
PRINTER security DELL PRINTER 1-800 number DELL PRINTER e 800 number DELL
PRINTER internet security contact number phone number DELL PRINTER e contact
number for DELL PRINTER security DELL PRINTER e customer service telephone
number DELL PRINTER help desk phone number DELL PRINTER e customer care number
DELL PRINTER security customer service number phone number to DELL PRINTER e
DELL PRINTER virus customer service phone number contact phone number for DELL
PRINTER internet security customer service DELL PRINTER e phone number DELL
PRINTER  toll free number DELL PRINTER customer service toll free number DELL
PRINTER utilities customer service phone number phone number for DELL PRINTER
by symantec DELL PRINTER e 1800 number DELL PRINTER internet security tech
support phone number DELL PRINTER e customer support telephone number DELL
PRINTER by symantec phone number DELL PRINTER internet security telephone
number DELL PRINTER help desk number DELL PRINTER customer service phone number
usa DELL PRINTER contact number uk DELL PRINTER security number DELL PRINTER
renewal contact number DELL PRINTER symantec customer service phone number DELL
PRINTER e helpline number DELL PRINTER protection phone number DELL PRINTER
computer security phone number telephone number for DELL PRINTER e DELL PRINTER
symantec contact number telephone number for DELL PRINTER internet security
DELL PRINTER customer service number usa DELL PRINTER e number DELL PRINTER
software phone number DELL PRINTER phone number DELL PRINTER software contact
number DELL PRINTER uk contact number DELL PRINTER e contact number uk DELL
PRINTER internet contact number DELL PRINTER internet security support number
DELL PRINTER internet phone number DELL PRINTER symantec telephone number DELL
PRINTER contact number australia DELL PRINTER technical support number usa DELL
PRINTER  contact number uk DELL PRINTER e customer service phone number usa
DELL PRINTER internet security contact number uk DELL PRINTER  customer service
phone number canada DELL PRINTER anti virus phone number DELL PRINTER uk phone
number DELL PRINTER phone number uk DELL PRINTER customer service number uk
DELL PRINTER customer service phone number DELL PRINTER telephone number uk
DELL PRINTER tech support number usa DELL PRINTER security contact number uk
DELL PRINTER e toll free number india contact number for DELL PRINTER internet
security DELL PRINTER e phone number customer service us DELL PRINTER customer
service phone number uk DELL PRINTER toll free number india DELL PRINTER
support phone number usa DELL PRINTER sales phone number DELL PRINTER  customer
service phone number usa DELL PRINTER phone number canada DELL PRINTER phone
number uk customer services DELL PRINTER helpline number uk DELL PRINTER e
contact number canada DELL PRINTER phone number australia DELL PRINTER e
customer service phone number us what is the phone number for DELL PRINTER
customer service DELL PRINTER australia contact number DELL PRINTER  customer
service phone number uk DELL PRINTER  support phone number usa DELL PRINTER
toll free number usa DELL PRINTER contact phone number uk DELL PRINTER e phone
number uk DELL PRINTER e customer service phone number uk DELL PRINTER support
uk phone number DELL PRINTER support phone number canada DELL PRINTER technical
support phone number canada DELL PRINTER abrasives phone number DELL PRINTER
security phone contact number DELL PRINTER internet security customer service
phone number uk DELL PRINTER uk telephone number DELL PRINTER canada phone
number DELL PRINTER security telephone number uk DELL PRINTER e contact number
us DELL PRINTER australia phone number DELL PRINTER refund phone number DELL
PRINTER e customer care number india DELL PRINTER  customer service phone
number canada DELL PRINTER internet security number DELL PRINTER software
customer service number DELL PRINTER internet security telephone number uk DELL
PRINTER anti virus contact number DELL PRINTER virus protection phone number
DELL PRINTER virus protection contact number DELL PRINTER e phone number DELL
PRINTER e help desk phone number DELL PRINTER tech support phone number us DELL
PRINTER post office phone number DELL PRINTER internet security contact phone
number uk DELL PRINTER customer care number usa DELL PRINTER e uk contact
number DELL PRINTER customer support phone number canada DELL PRINTER
department number DELL PRINTER e contact number australia DELL PRINTER e
customer service phone number canada DELL PRINTER customer support number usa
number for DELL PRINTER e DELL PRINTER support number australia DELL PRINTER
support number uk DELL PRINTER  uk contact number DELL PRINTER symantec uk
phone number DELL PRINTER  contact number australia DELL PRINTER contact number
canada DELL PRINTER e toll free number usa DELL PRINTER internet security
contact phone number australia DELL PRINTER contact number usa DELL PRINTER e
canada contact phone number DELL PRINTER support number usa DELL PRINTER uk
support phone number DELL PRINTER customer care number india DELL PRINTER
australia contact phone number DELL PRINTER number DELL PRINTER internet
security toll free number phone number for DELL PRINTER e DELL PRINTER cinema
phone number DELL PRINTER support number canada DELL PRINTER uk number DELL
PRINTER uk support number Calling DELL PRINTER Support(+(1800 059
007)))customer service phone number,DELL PRINTER e tech support number DELL
PRINTER customer service number 1-800-059-007 DELL PRINTER call center
1-800-059-007 DELL PRINTER customer service e address 1-800-059-007 DELL
PRINTER customer care no 1-800-059-007 DELL PRINTER e technical support phone
number 1-800-059-007 DELL PRINTER e tech support phone number 1-800-059-007
DELL PRINTER e customer service phone number 1-800-059-007 DELL PRINTER 
technical support phone number 1-800-059-007 symantec technical support phone
number 1-800-059-007 DELL PRINTER technical support phone number 1-800-059-007
DELL PRINTER customer service telephone number 1-800-059-007 ?DELL PRINTER e
phone number 1-800-059-007 DELL PRINTER e customer service phone number
1-800-059-007 DELL PRINTER e customer service billing DELL PRINTER e phone
number 1-800-059-007 DELL PRINTER phone number cancel subscription
1-800-059-007 DELL PRINTER technical support phone number 1-800-059-007 DELL
PRINTER 800 phone number 1-800-059-007 snapdeal toll free customer care number
sbi toll free customer care number airtel DELL PRINTER  toll free customer care
number hdfc toll free customer care number bsnl toll free customer care number
icici toll free customer care number flipkart toll free customer care number
vodafone toll free customer care number DELL PRINTER technical support phone
number DELL PRINTER technical support number DELL PRINTER technical support
number symantec technical support number DELL PRINTER e technical support
number DELL PRINTER locations DELL PRINTER online support DELL PRINTER billing
phone number DELL PRINTER customer care DELL PRINTER tech support phone number
DELL PRINTER tech support phone number DELL PRINTER e tech support phone number
DELL PRINTER locations DELL PRINTER billing phone number service DELL PRINTER
com DELL PRINTER login DELL PRINTER technical support phone number DELL PRINTER
customer service DELL PRINTER billing phone number DELL PRINTER support
telephone number DELL PRINTER support phone number DELL PRINTER e support phone
number DELL PRINTER support phone number DELL PRINTER locations DELL PRINTER
customer service DELL PRINTER customer care DELL PRINTER billing phone number
DELL PRINTER customer support phone number DELL PRINTER customer support phone
number DELL PRINTER e customer support phone number DELL PRINTER e customer
service phone number DELL PRINTER e technical support phone number DELL PRINTER
e tech support phone number DELL PRINTER e phone number DELL PRINTER security
center phone number DELL PRINTER support telephone number DELL PRINTER 
technical support phone number symantec technical support phone number DELL
PRINTER tech support phone number apple technical support phone number usa
microsoft technical support phone number usa g technical support phone number
usa DELL PRINTER technical support phone number usa lenovo technical support
phone number usa epson technical support phone number usa DELL PRINTER
technical support phone number call DELL PRINTER support chat with DELL PRINTER
support DELL PRINTER customer support DELL PRINTER e customer service number
DELL PRINTER address DELL PRINTER call center DELL PRINTER hq DELL PRINTER
office locations DELL PRINTER support site DELL PRINTER telephone number for
customer support DELL PRINTER customer service contact number DELL PRINTER
customer care DELL PRINTER toll free number DELL PRINTER security contact
number contact DELL PRINTER DELL PRINTER headquarters DELL PRINTER customer
service chat DELL PRINTER customer service telephone number DELL PRINTER
billing phone number DELL PRINTER customer support DELL PRINTER customer
service refund DELL PRINTER login DELL PRINTER locations DELL PRINTER customer
service number uk DELL PRINTER locations DELL PRINTER customer service e
address DELL PRINTER support site DELL PRINTER technical support phone number
DELL PRINTER technical support live chat DELL PRINTER technical support e
address DELL PRINTER technical support number DELL PRINTER technical support
number symantec technical support number DELL PRINTER e technical support
number DELL PRINTER customer support phone number DELL PRINTER customer support
number DELL PRINTER customer support number DELL PRINTER e customer support
number DELL PRINTER locations DELL PRINTER billing phone number DELL PRINTER
corporate phone number DELL PRINTER customer service billing DELL PRINTER
technical support phone number DELL PRINTER tech support phone number DELL
PRINTER tech support number DELL PRINTER tech support number HTML preview not
available, since no preview renderer could handle it. Try downloading the file
instead.
>From gcc-bugs-return-534073-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 07:09:15 2016
Return-Path: <gcc-bugs-return-534073-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 911 invoked by alias); 11 Aug 2016 07:09:15 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 834 invoked by uid 48); 11 Aug 2016 07:09:10 -0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72867] SSE/AVX/AVX512: incorrect optimization of VMINPS/VMAXPS at compile time
Date: Thu, 11 Aug 2016 07:09:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-72867-4-MzpXnegzsy@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72867-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72867-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01409.txt.bz2
Content-length: 1184

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72867

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jakub at gcc dot gnu.org,
                   |                            |kyukhin at gcc dot gnu.org,
                   |                            |uros at gcc dot gnu.org

--- Comment #1 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
So shall we use the UNSPEC_IEEE_MIN/MAX patterns instead of the max/min RTL for
the non-fast-math case?  Either generate those unspecs in the expanders if
honoring nans or signed zeros, or use different expanders for the intrinsics
that do that?

There is:
;; ??? For !flag_finite_math_only, the representation with SMIN/SMAX
;; isn't really correct, as those rtl operators aren't defined when
;; applied to NaNs.  Hopefully the optimizers won't get too smart on us.
comment, as the intrinsics are preserved as md builtin calls during GIMPLE and
I don't think we have gimple folders for those, it means the RTL optimizers are
finally smart enough...
>From gcc-bugs-return-534074-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 07:09:41 2016
Return-Path: <gcc-bugs-return-534074-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 1904 invoked by alias); 11 Aug 2016 07:09:41 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 1757 invoked by uid 48); 11 Aug 2016 07:09:32 -0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: =?UTF-8?B?W0J1ZyBjKysvNzM1MDFdIERlbGzihKIgUHJpbnRlciBAKzE4MDAwNTkwMDcg?= =?UTF-8?B?REVMTCBQUklOVEVSIHRlY2huaWNhbCBTdXBwb3J0IFBob25lIG51bWJlciwg?= =?UTF-8?B?REVMTCBQUklOVEVSICBzdXBwb3J0IFBob25lIE51bWJlcg==?Date: Thu, 11 Aug 2016 07:09:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-73501-4-I8Wz0BFtjO@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73501-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73501-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01410.txt.bz2
Content-length: 427

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73501

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |INVALID

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
spam
>From gcc-bugs-return-534075-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 07:22:14 2016
Return-Path: <gcc-bugs-return-534075-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 41450 invoked by alias); 11 Aug 2016 07:22:14 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 29082 invoked by uid 48); 11 Aug 2016 07:22:00 -0000
From: "wgx at z dot zgrco.com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: =?UTF-8?B?W0J1ZyBjKysvNzM1MTddIE5ldzogRXBzb27ihKIgUHJpbnRlciBAKzE4MDAw?= =?UTF-8?B?NTkwMDcgRXBzb24gUFJJTlRFUiB0ZWNobmljYWwgU3VwcG9ydCBQaG9uZSBu?= =?UTF-8?B?dW1iZXIsIEVwc29uIFBSSU5URVIgIHN1cHBvcnQgUGhvbmUgTnVtYmVy?Date: Thu, 11 Aug 2016 07:22:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wgx at z dot zgrco.com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73517-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01411.txt.bz2
Content-length: 17278

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73517

            Bug ID: 73517
           Summary: Epsonâ„¢ Printer @+1800059007 Epson PRINTER technical
                    Support Phone number, Epson PRINTER  support Phone
                    Number
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: wgx at z dot zgrco.com
  Target Milestone: ---

Epsonâ„¢ Printer @+1800059007 Epson PRINTER technical Support Phone number, Epson
PRINTER  support Phone Number
 @@@1-800-059-007@@@ Epson PRINTER  CUSTOMER support phone number Epson PRINTER
e phone number Epson PRINTER e technical support phone number.pdf, Epson
PRINTER tech support number Epson PRINTER tech support phone number Canada
1800-059-007 Epson PRINTER phone number us File Epson PRINTER Phone
number(+((1800.059.007)+)Epson PRINTER tech support number Epson PRINTER tech
support phone number UK 1800-059-007 Epson PRINTER phone number australia.pdf,
5.2 KB (added by sanjna78547, 39 seconds ago) Epson PRINTER ?1800-059-007 Epson
PRINTER tech support number 1800-059-007, Epson PRINTER helpline, Epson PRINTER
customer care , notrton customer support usa helpline 1800.059.007 Epson
PRINTER tech support phone number usa Epson PRINTER Phone
number(+((1800.059.007)+)Epson PRINTER tech support number Epson PRINTER tech
support phone number UK 1800-059-007 Epson PRINTER phone number australia
1800-344-007 Epson PRINTER customer service number uk 1800-059-007 Epson
PRINTER customer service phone number Epson PRINTER contact number Epson
PRINTER phone number us 1800-059-007 Epson PRINTER number Epson PRINTER support
number Epson PRINTER e phone number Epson PRINTER customer service number Epson
PRINTER customer service phone number Epson PRINTER contact number Epson
PRINTER phone number Epson PRINTER number au Epson PRINTER support number aus
Epson PRINTER e phone number Epson PRINTER support phone number Epson PRINTER
tech support number Epson PRINTER security phone number Epson PRINTER telephone
number Epson PRINTER  phone number Epson PRINTER phone number customer service
usa Epson PRINTER customer support phone number Epson PRINTER e customer
service number Epson PRINTER e customer service phone number phone number for
Epson PRINTER Epson PRINTER  contact number Epson PRINTER e contact number
Epson PRINTER  customer service number Epson PRINTER e support phone number
australia Epson PRINTER  support phone number aus Epson PRINTER customer
support number au Epson PRINTER security contact number canada Epson PRINTER 
customer service phone number usa Epson PRINTER 800 number uk Epson PRINTER
technical support phone number Epson PRINTER e contact phone number Epson
PRINTER technical support number Epson PRINTER e support number Epson PRINTER
tech support phone number Epson PRINTER contact phone number Epson PRINTER 
customer support phone number Epson PRINTER  phone number support phone number
for Epson PRINTER e customer service phone number for Epson PRINTER security
Epson PRINTER help number phone number for Epson PRINTER e Epson PRINTER help
phone number phone number for Epson PRINTER customer service Epson PRINTER
security customer service phone number Epson PRINTER security phone number
customer service Epson PRINTER contact number for customer service Epson
PRINTER e telephone number Epson PRINTER  contact phone number Epson PRINTER e
phone support number Epson PRINTER  technical support phone number Epson
PRINTER security telephone number contact number for Epson PRINTER Epson
PRINTER 1800 number Epson PRINTER  help phone number Epson PRINTER  support
number Epson PRINTER  telephone number Epson PRINTER customer care number Epson
PRINTER security contact phone number Epson PRINTER e technical support phone
number Epson PRINTER  tech support phone number phone number for Epson PRINTER
support Epson PRINTER toll free number Epson PRINTER e tech support number
Epson PRINTER account contact number Epson PRINTER  phone number customer
service Epson PRINTER e tech support phone number Epson PRINTER e help phone
number Epson PRINTER telephone number customer service Epson PRINTER e phone
number customer service Epson PRINTER  support telephone number Epson PRINTER 
tech support number Epson PRINTER security support phone number Epson PRINTER
helpline number telephone number for Epson PRINTER customer service Epson
PRINTER e customer support phone number Epson PRINTER support telephone number
phone number for Epson PRINTER customer support Epson PRINTER  number Epson
PRINTER customer service telephone number Epson PRINTER internet security
customer service phone number Epson PRINTER e customer support number contact
number for Epson PRINTER  Epson PRINTER internet security phone number customer
service telephone number for Epson PRINTER phone number for Epson PRINTER
internet security contact number for Epson PRINTER e Epson PRINTER account
phone number phone number for Epson PRINTER  Epson PRINTER e telephone number
customer service Epson PRINTER.com phone number Epson PRINTER support contact
number Epson PRINTER phone support number customer service number for Epson
PRINTER e Epson PRINTER com support phone number Epson PRINTER  internet
security phone number Epson PRINTER phone number support Epson PRINTER phone
number customer support Epson PRINTER contact support number Epson PRINTER
internet security customer service number Epson PRINTER e help number contact
Epson PRINTER e customer service phone number Epson PRINTER  customer support
number Epson PRINTER service number Epson PRINTER  customer service telephone
number telephone number for Epson PRINTER e customer service Epson PRINTER
hotline number Epson PRINTER security help phone number Epson PRINTER e toll
free number Epson PRINTER account customer service phone number phone number
for Epson PRINTER e support Epson PRINTER symantec phone number Epson
PRINTER.com customer service phone number Epson PRINTER 800 phone number Epson
PRINTER  phone support number customer service number for Epson PRINTER
symantec Epson PRINTER customer service phone number Epson PRINTER internet
security support phone number Epson PRINTER helpline phone number Epson PRINTER
security customer services phone number Epson PRINTER customer care phone
number Epson PRINTER 1800 support number Epson PRINTER virus contact number
phone number for Epson PRINTER symantec Epson PRINTER e support telephone
number Epson PRINTER symantec support phone number Epson PRINTER internet
security contact phone number Epson PRINTER virus phone number Epson PRINTER
internet security help phone number Epson PRINTER renewal phone number
telephone number for Epson PRINTER security Epson PRINTER 1-800 number Epson
PRINTER e 800 number Epson PRINTER internet security contact number phone
number Epson PRINTER e contact number for Epson PRINTER security Epson PRINTER
e customer service telephone number Epson PRINTER help desk phone number Epson
PRINTER e customer care number Epson PRINTER security customer service number
phone number to Epson PRINTER e Epson PRINTER virus customer service phone
number contact phone number for Epson PRINTER internet security customer
service Epson PRINTER e phone number Epson PRINTER  toll free number Epson
PRINTER customer service toll free number Epson PRINTER utilities customer
service phone number phone number for Epson PRINTER by symantec Epson PRINTER e
1800 number Epson PRINTER internet security tech support phone number Epson
PRINTER e customer support telephone number Epson PRINTER by symantec phone
number Epson PRINTER internet security telephone number Epson PRINTER help desk
number Epson PRINTER customer service phone number usa Epson PRINTER contact
number uk Epson PRINTER security number Epson PRINTER renewal contact number
Epson PRINTER symantec customer service phone number Epson PRINTER e helpline
number Epson PRINTER protection phone number Epson PRINTER computer security
phone number telephone number for Epson PRINTER e Epson PRINTER symantec
contact number telephone number for Epson PRINTER internet security Epson
PRINTER customer service number usa Epson PRINTER e number Epson PRINTER
software phone number Epson PRINTER phone number Epson PRINTER software contact
number Epson PRINTER uk contact number Epson PRINTER e contact number uk Epson
PRINTER internet contact number Epson PRINTER internet security support number
Epson PRINTER internet phone number Epson PRINTER symantec telephone number
Epson PRINTER contact number australia Epson PRINTER technical support number
usa Epson PRINTER  contact number uk Epson PRINTER e customer service phone
number usa Epson PRINTER internet security contact number uk Epson PRINTER 
customer service phone number canada Epson PRINTER anti virus phone number
Epson PRINTER uk phone number Epson PRINTER phone number uk Epson PRINTER
customer service number uk Epson PRINTER customer service phone number Epson
PRINTER telephone number uk Epson PRINTER tech support number usa Epson PRINTER
security contact number uk Epson PRINTER e toll free number india contact
number for Epson PRINTER internet security Epson PRINTER e phone number
customer service us Epson PRINTER customer service phone number uk Epson
PRINTER toll free number india Epson PRINTER support phone number usa Epson
PRINTER sales phone number Epson PRINTER  customer service phone number usa
Epson PRINTER phone number canada Epson PRINTER phone number uk customer
services Epson PRINTER helpline number uk Epson PRINTER e contact number canada
Epson PRINTER phone number australia Epson PRINTER e customer service phone
number us what is the phone number for Epson PRINTER customer service Epson
PRINTER australia contact number Epson PRINTER  customer service phone number
uk Epson PRINTER  support phone number usa Epson PRINTER toll free number usa
Epson PRINTER contact phone number uk Epson PRINTER e phone number uk Epson
PRINTER e customer service phone number uk Epson PRINTER support uk phone
number Epson PRINTER support phone number canada Epson PRINTER technical
support phone number canada Epson PRINTER abrasives phone number Epson PRINTER
security phone contact number Epson PRINTER internet security customer service
phone number uk Epson PRINTER uk telephone number Epson PRINTER canada phone
number Epson PRINTER security telephone number uk Epson PRINTER e contact
number us Epson PRINTER australia phone number Epson PRINTER refund phone
number Epson PRINTER e customer care number india Epson PRINTER  customer
service phone number canada Epson PRINTER internet security number Epson
PRINTER software customer service number Epson PRINTER internet security
telephone number uk Epson PRINTER anti virus contact number Epson PRINTER virus
protection phone number Epson PRINTER virus protection contact number Epson
PRINTER e phone number Epson PRINTER e help desk phone number Epson PRINTER
tech support phone number us Epson PRINTER post office phone number Epson
PRINTER internet security contact phone number uk Epson PRINTER customer care
number usa Epson PRINTER e uk contact number Epson PRINTER customer support
phone number canada Epson PRINTER department number Epson PRINTER e contact
number australia Epson PRINTER e customer service phone number canada Epson
PRINTER customer support number usa number for Epson PRINTER e Epson PRINTER
support number australia Epson PRINTER support number uk Epson PRINTER  uk
contact number Epson PRINTER symantec uk phone number Epson PRINTER  contact
number australia Epson PRINTER contact number canada Epson PRINTER e toll free
number usa Epson PRINTER internet security contact phone number australia Epson
PRINTER contact number usa Epson PRINTER e canada contact phone number Epson
PRINTER support number usa Epson PRINTER uk support phone number Epson PRINTER
customer care number india Epson PRINTER australia contact phone number Epson
PRINTER number Epson PRINTER internet security toll free number phone number
for Epson PRINTER e Epson PRINTER cinema phone number Epson PRINTER support
number canada Epson PRINTER uk number Epson PRINTER uk support number Calling
Epson PRINTER Support(+(1800 059 007)))customer service phone number,Epson
PRINTER e tech support number Epson PRINTER customer service number
1-800-059-007 Epson PRINTER call center 1-800-059-007 Epson PRINTER customer
service e address 1-800-059-007 Epson PRINTER customer care no 1-800-059-007
Epson PRINTER e technical support phone number 1-800-059-007 Epson PRINTER e
tech support phone number 1-800-059-007 Epson PRINTER e customer service phone
number 1-800-059-007 Epson PRINTER  technical support phone number
1-800-059-007 symantec technical support phone number 1-800-059-007 Epson
PRINTER technical support phone number 1-800-059-007 Epson PRINTER customer
service telephone number 1-800-059-007 ?Epson PRINTER e phone number
1-800-059-007 Epson PRINTER e customer service phone number 1-800-059-007 Epson
PRINTER e customer service billing Epson PRINTER e phone number 1-800-059-007
Epson PRINTER phone number cancel subscription 1-800-059-007 Epson PRINTER
technical support phone number 1-800-059-007 Epson PRINTER 800 phone number
1-800-059-007 snapdeal toll free customer care number sbi toll free customer
care number airtel Epson PRINTER  toll free customer care number hdfc toll free
customer care number bsnl toll free customer care number icici toll free
customer care number flipkart toll free customer care number vodafone toll free
customer care number Epson PRINTER technical support phone number Epson PRINTER
technical support number Epson PRINTER technical support number symantec
technical support number Epson PRINTER e technical support number Epson PRINTER
locations Epson PRINTER online support Epson PRINTER billing phone number Epson
PRINTER customer care Epson PRINTER tech support phone number Epson PRINTER
tech support phone number Epson PRINTER e tech support phone number Epson
PRINTER locations Epson PRINTER billing phone number service Epson PRINTER com
Epson PRINTER login Epson PRINTER technical support phone number Epson PRINTER
customer service Epson PRINTER billing phone number Epson PRINTER support
telephone number Epson PRINTER support phone number Epson PRINTER e support
phone number Epson PRINTER support phone number Epson PRINTER locations Epson
PRINTER customer service Epson PRINTER customer care Epson PRINTER billing
phone number Epson PRINTER customer support phone number Epson PRINTER customer
support phone number Epson PRINTER e customer support phone number Epson
PRINTER e customer service phone number Epson PRINTER e technical support phone
number Epson PRINTER e tech support phone number Epson PRINTER e phone number
Epson PRINTER security center phone number Epson PRINTER support telephone
number Epson PRINTER  technical support phone number symantec technical support
phone number Epson PRINTER tech support phone number apple technical support
phone number usa microsoft technical support phone number usa g technical
support phone number usa Epson PRINTER technical support phone number usa
lenovo technical support phone number usa epson technical support phone number
usa Epson PRINTER technical support phone number call Epson PRINTER support
chat with Epson PRINTER support Epson PRINTER customer support Epson PRINTER e
customer service number Epson PRINTER address Epson PRINTER call center Epson
PRINTER hq Epson PRINTER office locations Epson PRINTER support site Epson
PRINTER telephone number for customer support Epson PRINTER customer service
contact number Epson PRINTER customer care Epson PRINTER toll free number Epson
PRINTER security contact number contact Epson PRINTER Epson PRINTER
headquarters Epson PRINTER customer service chat Epson PRINTER customer service
telephone number Epson PRINTER billing phone number Epson PRINTER customer
support Epson PRINTER customer service refund Epson PRINTER login Epson PRINTER
locations Epson PRINTER customer service number uk Epson PRINTER locations
Epson PRINTER customer service e address Epson PRINTER support site Epson
PRINTER technical support phone number Epson PRINTER technical support live
chat Epson PRINTER technical support e address Epson PRINTER technical support
number Epson PRINTER technical support number symantec technical support number
Epson PRINTER e technical support number Epson PRINTER customer support phone
number Epson PRINTER customer support number Epson PRINTER customer support
number Epson PRINTER e customer support number Epson PRINTER locations Epson
PRINTER billing phone number Epson PRINTER corporate phone number Epson PRINTER
customer service billing Epson PRINTER technical support phone number Epson
PRINTER tech support phone number Epson PRINTER tech support number Epson
PRINTER tech support number HTML preview not available, since no preview
renderer could handle it. Try downloading the file instead.
>From gcc-bugs-return-534076-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 07:24:38 2016
Return-Path: <gcc-bugs-return-534076-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 61196 invoked by alias); 11 Aug 2016 07:24:35 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 60900 invoked by uid 48); 11 Aug 2016 07:24:19 -0000
From: "wgx at z dot zgrco.com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: =?UTF-8?B?W0J1ZyBjKysvNzM1MThdIE5ldzogSFDihKIgUHJpbnRlciBAKzE4MDAwNTkw?= =?UTF-8?B?MDcgSFAgUFJJTlRFUiB0ZWNobmljYWwgU3VwcG9ydCBQaG9uZSBudW1iZXIs?= =?UTF-8?B?IEhQIFBSSU5URVIgIHN1cHBvcnQgUGhvbmUgTnVtYmVy?Date: Thu, 11 Aug 2016 07:24:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wgx at z dot zgrco.com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73518-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01412.txt.bz2
Content-length: 16073

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73518

            Bug ID: 73518
           Summary: HPâ„¢ Printer @+1800059007 HP PRINTER technical Support
                    Phone number, HP PRINTER  support Phone Number
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: wgx at z dot zgrco.com
  Target Milestone: ---

HPâ„¢ Printer @+1800059007 HP PRINTER technical Support Phone number, HP PRINTER 
support Phone Number
 @@@1-800-059-007@@@ HP PRINTER  CUSTOMER support phone number HP PRINTER e
phone number HP PRINTER e technical support phone number.pdf, HP PRINTER tech
support number HP PRINTER tech support phone number Canada 1800-059-007 HP
PRINTER phone number us File HP PRINTER Phone number(+((1800.059.007)+)HP
PRINTER tech support number HP PRINTER tech support phone number UK
1800-059-007 HP PRINTER phone number australia.pdf, 5.2 KB (added by
sanjna78547, 39 seconds ago) HP PRINTER ?1800-059-007 HP PRINTER tech support
number 1800-059-007, HP PRINTER helpline, HP PRINTER customer care , notrton
customer support usa helpline 1800.059.007 HP PRINTER tech support phone number
usa HP PRINTER Phone number(+((1800.059.007)+)HP PRINTER tech support number HP
PRINTER tech support phone number UK 1800-059-007 HP PRINTER phone number
australia 1800-344-007 HP PRINTER customer service number uk 1800-059-007 HP
PRINTER customer service phone number HP PRINTER contact number HP PRINTER
phone number us 1800-059-007 HP PRINTER number HP PRINTER support number HP
PRINTER e phone number HP PRINTER customer service number HP PRINTER customer
service phone number HP PRINTER contact number HP PRINTER phone number HP
PRINTER number au HP PRINTER support number aus HP PRINTER e phone number HP
PRINTER support phone number HP PRINTER tech support number HP PRINTER security
phone number HP PRINTER telephone number HP PRINTER  phone number HP PRINTER
phone number customer service usa HP PRINTER customer support phone number HP
PRINTER e customer service number HP PRINTER e customer service phone number
phone number for HP PRINTER HP PRINTER  contact number HP PRINTER e contact
number HP PRINTER  customer service number HP PRINTER e support phone number
australia HP PRINTER  support phone number aus HP PRINTER customer support
number au HP PRINTER security contact number canada HP PRINTER  customer
service phone number usa HP PRINTER 800 number uk HP PRINTER technical support
phone number HP PRINTER e contact phone number HP PRINTER technical support
number HP PRINTER e support number HP PRINTER tech support phone number HP
PRINTER contact phone number HP PRINTER  customer support phone number HP
PRINTER  phone number support phone number for HP PRINTER e customer service
phone number for HP PRINTER security HP PRINTER help number phone number for HP
PRINTER e HP PRINTER help phone number phone number for HP PRINTER customer
service HP PRINTER security customer service phone number HP PRINTER security
phone number customer service HP PRINTER contact number for customer service HP
PRINTER e telephone number HP PRINTER  contact phone number HP PRINTER e phone
support number HP PRINTER  technical support phone number HP PRINTER security
telephone number contact number for HP PRINTER HP PRINTER 1800 number HP
PRINTER  help phone number HP PRINTER  support number HP PRINTER  telephone
number HP PRINTER customer care number HP PRINTER security contact phone number
HP PRINTER e technical support phone number HP PRINTER  tech support phone
number phone number for HP PRINTER support HP PRINTER toll free number HP
PRINTER e tech support number HP PRINTER account contact number HP PRINTER 
phone number customer service HP PRINTER e tech support phone number HP PRINTER
e help phone number HP PRINTER telephone number customer service HP PRINTER e
phone number customer service HP PRINTER  support telephone number HP PRINTER 
tech support number HP PRINTER security support phone number HP PRINTER
helpline number telephone number for HP PRINTER customer service HP PRINTER e
customer support phone number HP PRINTER support telephone number phone number
for HP PRINTER customer support HP PRINTER  number HP PRINTER customer service
telephone number HP PRINTER internet security customer service phone number HP
PRINTER e customer support number contact number for HP PRINTER  HP PRINTER
internet security phone number customer service telephone number for HP PRINTER
phone number for HP PRINTER internet security contact number for HP PRINTER e
HP PRINTER account phone number phone number for HP PRINTER  HP PRINTER e
telephone number customer service HP PRINTER.com phone number HP PRINTER
support contact number HP PRINTER phone support number customer service number
for HP PRINTER e HP PRINTER com support phone number HP PRINTER  internet
security phone number HP PRINTER phone number support HP PRINTER phone number
customer support HP PRINTER contact support number HP PRINTER internet security
customer service number HP PRINTER e help number contact HP PRINTER e customer
service phone number HP PRINTER  customer support number HP PRINTER service
number HP PRINTER  customer service telephone number telephone number for HP
PRINTER e customer service HP PRINTER hotline number HP PRINTER security help
phone number HP PRINTER e toll free number HP PRINTER account customer service
phone number phone number for HP PRINTER e support HP PRINTER symantec phone
number HP PRINTER.com customer service phone number HP PRINTER 800 phone number
HP PRINTER  phone support number customer service number for HP PRINTER
symantec HP PRINTER customer service phone number HP PRINTER internet security
support phone number HP PRINTER helpline phone number HP PRINTER security
customer services phone number HP PRINTER customer care phone number HP PRINTER
1800 support number HP PRINTER virus contact number phone number for HP PRINTER
symantec HP PRINTER e support telephone number HP PRINTER symantec support
phone number HP PRINTER internet security contact phone number HP PRINTER virus
phone number HP PRINTER internet security help phone number HP PRINTER renewal
phone number telephone number for HP PRINTER security HP PRINTER 1-800 number
HP PRINTER e 800 number HP PRINTER internet security contact number phone
number HP PRINTER e contact number for HP PRINTER security HP PRINTER e
customer service telephone number HP PRINTER help desk phone number HP PRINTER
e customer care number HP PRINTER security customer service number phone number
to HP PRINTER e HP PRINTER virus customer service phone number contact phone
number for HP PRINTER internet security customer service HP PRINTER e phone
number HP PRINTER  toll free number HP PRINTER customer service toll free
number HP PRINTER utilities customer service phone number phone number for HP
PRINTER by symantec HP PRINTER e 1800 number HP PRINTER internet security tech
support phone number HP PRINTER e customer support telephone number HP PRINTER
by symantec phone number HP PRINTER internet security telephone number HP
PRINTER help desk number HP PRINTER customer service phone number usa HP
PRINTER contact number uk HP PRINTER security number HP PRINTER renewal contact
number HP PRINTER symantec customer service phone number HP PRINTER e helpline
number HP PRINTER protection phone number HP PRINTER computer security phone
number telephone number for HP PRINTER e HP PRINTER symantec contact number
telephone number for HP PRINTER internet security HP PRINTER customer service
number usa HP PRINTER e number HP PRINTER software phone number HP PRINTER
phone number HP PRINTER software contact number HP PRINTER uk contact number HP
PRINTER e contact number uk HP PRINTER internet contact number HP PRINTER
internet security support number HP PRINTER internet phone number HP PRINTER
symantec telephone number HP PRINTER contact number australia HP PRINTER
technical support number usa HP PRINTER  contact number uk HP PRINTER e
customer service phone number usa HP PRINTER internet security contact number
uk HP PRINTER  customer service phone number canada HP PRINTER anti virus phone
number HP PRINTER uk phone number HP PRINTER phone number uk HP PRINTER
customer service number uk HP PRINTER customer service phone number HP PRINTER
telephone number uk HP PRINTER tech support number usa HP PRINTER security
contact number uk HP PRINTER e toll free number india contact number for HP
PRINTER internet security HP PRINTER e phone number customer service us HP
PRINTER customer service phone number uk HP PRINTER toll free number india HP
PRINTER support phone number usa HP PRINTER sales phone number HP PRINTER 
customer service phone number usa HP PRINTER phone number canada HP PRINTER
phone number uk customer services HP PRINTER helpline number uk HP PRINTER e
contact number canada HP PRINTER phone number australia HP PRINTER e customer
service phone number us what is the phone number for HP PRINTER customer
service HP PRINTER australia contact number HP PRINTER  customer service phone
number uk HP PRINTER  support phone number usa HP PRINTER toll free number usa
HP PRINTER contact phone number uk HP PRINTER e phone number uk HP PRINTER e
customer service phone number uk HP PRINTER support uk phone number HP PRINTER
support phone number canada HP PRINTER technical support phone number canada HP
PRINTER abrasives phone number HP PRINTER security phone contact number HP
PRINTER internet security customer service phone number uk HP PRINTER uk
telephone number HP PRINTER canada phone number HP PRINTER security telephone
number uk HP PRINTER e contact number us HP PRINTER australia phone number HP
PRINTER refund phone number HP PRINTER e customer care number india HP PRINTER 
customer service phone number canada HP PRINTER internet security number HP
PRINTER software customer service number HP PRINTER internet security telephone
number uk HP PRINTER anti virus contact number HP PRINTER virus protection
phone number HP PRINTER virus protection contact number HP PRINTER e phone
number HP PRINTER e help desk phone number HP PRINTER tech support phone number
us HP PRINTER post office phone number HP PRINTER internet security contact
phone number uk HP PRINTER customer care number usa HP PRINTER e uk contact
number HP PRINTER customer support phone number canada HP PRINTER department
number HP PRINTER e contact number australia HP PRINTER e customer service
phone number canada HP PRINTER customer support number usa number for HP
PRINTER e HP PRINTER support number australia HP PRINTER support number uk HP
PRINTER  uk contact number HP PRINTER symantec uk phone number HP PRINTER 
contact number australia HP PRINTER contact number canada HP PRINTER e toll
free number usa HP PRINTER internet security contact phone number australia HP
PRINTER contact number usa HP PRINTER e canada contact phone number HP PRINTER
support number usa HP PRINTER uk support phone number HP PRINTER customer care
number india HP PRINTER australia contact phone number HP PRINTER number HP
PRINTER internet security toll free number phone number for HP PRINTER e HP
PRINTER cinema phone number HP PRINTER support number canada HP PRINTER uk
number HP PRINTER uk support number Calling HP PRINTER Support(+(1800 059
007)))customer service phone number,HP PRINTER e tech support number HP PRINTER
customer service number 1-800-059-007 HP PRINTER call center 1-800-059-007 HP
PRINTER customer service e address 1-800-059-007 HP PRINTER customer care no
1-800-059-007 HP PRINTER e technical support phone number 1-800-059-007 HP
PRINTER e tech support phone number 1-800-059-007 HP PRINTER e customer service
phone number 1-800-059-007 HP PRINTER  technical support phone number
1-800-059-007 symantec technical support phone number 1-800-059-007 HP PRINTER
technical support phone number 1-800-059-007 HP PRINTER customer service
telephone number 1-800-059-007 ?HP PRINTER e phone number 1-800-059-007 HP
PRINTER e customer service phone number 1-800-059-007 HP PRINTER e customer
service billing HP PRINTER e phone number 1-800-059-007 HP PRINTER phone number
cancel subscription 1-800-059-007 HP PRINTER technical support phone number
1-800-059-007 HP PRINTER 800 phone number 1-800-059-007 snapdeal toll free
customer care number sbi toll free customer care number airtel HP PRINTER  toll
free customer care number hdfc toll free customer care number bsnl toll free
customer care number icici toll free customer care number flipkart toll free
customer care number vodafone toll free customer care number HP PRINTER
technical support phone number HP PRINTER technical support number HP PRINTER
technical support number symantec technical support number HP PRINTER e
technical support number HP PRINTER locations HP PRINTER online support HP
PRINTER billing phone number HP PRINTER customer care HP PRINTER tech support
phone number HP PRINTER tech support phone number HP PRINTER e tech support
phone number HP PRINTER locations HP PRINTER billing phone number service HP
PRINTER com HP PRINTER login HP PRINTER technical support phone number HP
PRINTER customer service HP PRINTER billing phone number HP PRINTER support
telephone number HP PRINTER support phone number HP PRINTER e support phone
number HP PRINTER support phone number HP PRINTER locations HP PRINTER customer
service HP PRINTER customer care HP PRINTER billing phone number HP PRINTER
customer support phone number HP PRINTER customer support phone number HP
PRINTER e customer support phone number HP PRINTER e customer service phone
number HP PRINTER e technical support phone number HP PRINTER e tech support
phone number HP PRINTER e phone number HP PRINTER security center phone number
HP PRINTER support telephone number HP PRINTER  technical support phone number
symantec technical support phone number HP PRINTER tech support phone number
apple technical support phone number usa microsoft technical support phone
number usa g technical support phone number usa HP PRINTER technical support
phone number usa lenovo technical support phone number usa HP technical support
phone number usa HP PRINTER technical support phone number call HP PRINTER
support chat with HP PRINTER support HP PRINTER customer support HP PRINTER e
customer service number HP PRINTER address HP PRINTER call center HP PRINTER hq
HP PRINTER office locations HP PRINTER support site HP PRINTER telephone number
for customer support HP PRINTER customer service contact number HP PRINTER
customer care HP PRINTER toll free number HP PRINTER security contact number
contact HP PRINTER HP PRINTER headquarters HP PRINTER customer service chat HP
PRINTER customer service telephone number HP PRINTER billing phone number HP
PRINTER customer support HP PRINTER customer service refund HP PRINTER login HP
PRINTER locations HP PRINTER customer service number uk HP PRINTER locations HP
PRINTER customer service e address HP PRINTER support site HP PRINTER technical
support phone number HP PRINTER technical support live chat HP PRINTER
technical support e address HP PRINTER technical support number HP PRINTER
technical support number symantec technical support number HP PRINTER e
technical support number HP PRINTER customer support phone number HP PRINTER
customer support number HP PRINTER customer support number HP PRINTER e
customer support number HP PRINTER locations HP PRINTER billing phone number HP
PRINTER corporate phone number HP PRINTER customer service billing HP PRINTER
technical support phone number HP PRINTER tech support phone number HP PRINTER
tech support number HP PRINTER tech support number HTML preview not available,
since no preview renderer could handle it. Try downloading the file instead.
>From gcc-bugs-return-534077-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 07:47:20 2016
Return-Path: <gcc-bugs-return-534077-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 35242 invoked by alias); 11 Aug 2016 07:47:20 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 35088 invoked by uid 55); 11 Aug 2016 07:47:06 -0000
From: "vehre at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/72698] [5/6/7 Regression] ICE in lhd_incomplete_type_error, at langhooks.c:205
Date: Thu, 11 Aug 2016 07:47:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: vehre at gcc dot gnu.org
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: vehre at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72698-4-OYbTjYiuNx@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72698-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72698-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01413.txt.bz2
Content-length: 945

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72698

--- Comment #9 from vehre at gcc dot gnu.org ---
Author: vehre
Date: Thu Aug 11 07:46:33 2016
New Revision: 239352

URL: https://gcc.gnu.org/viewcvs?rev=239352&root=gcc&view=rev
Log:
gcc/testsuite/ChangeLog:

2016-08-11  Andre Vehreschild  <vehre@gcc.gnu.org>

        Backport from trunk:
        PR fortran/72698
        * gfortran.dg/allocate_with_source_20.f03: New test.


gcc/fortran/ChangeLog:

2016-08-11  Andre Vehreschild  <vehre@gcc.gnu.org>

        Backport from trunk:
        PR fortran/72698
        * trans-stmt.c (gfc_trans_allocate): Prevent generating code for
        copy of zero sized string and with it an ICE.


Added:
    branches/gcc-6-branch/gcc/testsuite/gfortran.dg/allocate_with_source_20.f03
Modified:
    branches/gcc-6-branch/gcc/fortran/ChangeLog
    branches/gcc-6-branch/gcc/fortran/trans-stmt.c
    branches/gcc-6-branch/gcc/testsuite/ChangeLog
>From gcc-bugs-return-534078-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 07:49:09 2016
Return-Path: <gcc-bugs-return-534078-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 39378 invoked by alias); 11 Aug 2016 07:49:08 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 39171 invoked by uid 48); 11 Aug 2016 07:48:55 -0000
From: "ubizjak at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72867] SSE/AVX/AVX512: incorrect optimization of VMINPS/VMAXPS at compile time
Date: Thu, 11 Aug 2016 07:49:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ubizjak at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72867-4-jQ668qSe46@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72867-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72867-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01414.txt.bz2
Content-length: 1182

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72867

--- Comment #2 from Uroš Bizjak <ubizjak at gmail dot com> ---
(In reply to Jakub Jelinek from comment #1)
> So shall we use the UNSPEC_IEEE_MIN/MAX patterns instead of the max/min RTL
> for the non-fast-math case?  Either generate those unspecs in the expanders
> if honoring nans or signed zeros, or use different expanders for the
> intrinsics that do that?
> 
> There is:
> ;; ??? For !flag_finite_math_only, the representation with SMIN/SMAX
> ;; isn't really correct, as those rtl operators aren't defined when
> ;; applied to NaNs.  Hopefully the optimizers won't get too smart on us.
> comment, as the intrinsics are preserved as md builtin calls during GIMPLE
> and I don't think we have gimple folders for those, it means the RTL
> optimizers are finally smart enough...

Yes, we should take the same approach as in i386.md (the iterators and
attributes for the implementation are already defined in i386.md). IEEE unspecs
with VF iterators are already present in sse.md, so I wonder why they are not
used in the above case.

(Please also note that another instance of SMIN/SMAX patterns is in mmx.md).
>From gcc-bugs-return-534079-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 07:58:37 2016
Return-Path: <gcc-bugs-return-534079-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 70699 invoked by alias); 11 Aug 2016 07:58:36 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 70502 invoked by uid 55); 11 Aug 2016 07:58:30 -0000
From: "vehre at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/72698] [5/6/7 Regression] ICE in lhd_incomplete_type_error, at langhooks.c:205
Date: Thu, 11 Aug 2016 07:58:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: vehre at gcc dot gnu.org
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: vehre at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72698-4-XQtYL81VNk@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72698-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72698-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01415.txt.bz2
Content-length: 946

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72698

--- Comment #10 from vehre at gcc dot gnu.org ---
Author: vehre
Date: Thu Aug 11 07:57:58 2016
New Revision: 239353

URL: https://gcc.gnu.org/viewcvs?rev=239353&root=gcc&view=rev
Log:
gcc/testsuite/ChangeLog:

2016-08-11  Andre Vehreschild  <vehre@gcc.gnu.org>

        Backport from trunk:
        PR fortran/72698
        * gfortran.dg/allocate_with_source_20.f03: New test.


gcc/fortran/ChangeLog:

2016-08-11  Andre Vehreschild  <vehre@gcc.gnu.org>

        Backport from trunk:
        PR fortran/72698
        * trans-stmt.c (gfc_trans_allocate): Prevent generating code for
        copy of zero sized string and with it an ICE.


Added:
    branches/gcc-5-branch/gcc/testsuite/gfortran.dg/allocate_with_source_20.f03
Modified:
    branches/gcc-5-branch/gcc/fortran/ChangeLog
    branches/gcc-5-branch/gcc/fortran/trans-stmt.c
    branches/gcc-5-branch/gcc/testsuite/ChangeLog
>From gcc-bugs-return-534080-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 08:13:16 2016
Return-Path: <gcc-bugs-return-534080-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 99377 invoked by alias); 11 Aug 2016 08:13:16 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 99227 invoked by uid 55); 11 Aug 2016 08:13:03 -0000
From: "vehre at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/71936] [6/7 Regression] ICE in wide_int_to_tree, at tree.c:1487
Date: Thu, 11 Aug 2016 08:13:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: vehre at gcc dot gnu.org
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: vehre at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71936-4-fnMWFe39Ro@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71936-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71936-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01416.txt.bz2
Content-length: 948

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71936

--- Comment #8 from vehre at gcc dot gnu.org ---
Author: vehre
Date: Thu Aug 11 08:12:31 2016
New Revision: 239354

URL: https://gcc.gnu.org/viewcvs?rev=239354&root=gcc&view=rev
Log:
gcc/fortran/ChangeLog:

2016-08-11  Andre Vehreschild  <vehre@gcc.gnu.org>

        Backport from trunk:
        PR fortran/71936
        * trans-array.c (gfc_array_allocate): When SOURCE= is a function
        stick with the ref of the object to allocate.

gcc/testsuite/ChangeLog:

2016-08-11  Andre Vehreschild  <vehre@gcc.gnu.org>

        Backport from trunk:
        PR fortran/71936
        * gfortran.dg/allocate_with_source_21.f03: New test.



Added:
    branches/gcc-6-branch/gcc/testsuite/gfortran.dg/allocate_with_source_21.f03
Modified:
    branches/gcc-6-branch/gcc/fortran/ChangeLog
    branches/gcc-6-branch/gcc/fortran/trans-array.c
    branches/gcc-6-branch/gcc/testsuite/ChangeLog
>From gcc-bugs-return-534082-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 08:15:49 2016
Return-Path: <gcc-bugs-return-534082-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 106007 invoked by alias); 11 Aug 2016 08:15:46 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 105720 invoked by uid 48); 11 Aug 2016 08:15:30 -0000
From: "vehre at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/71936] [6/7 Regression] ICE in wide_int_to_tree, at tree.c:1487
Date: Thu, 11 Aug 2016 08:15:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: vehre at gcc dot gnu.org
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: vehre at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71936-4-1UNgSOaWvw@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71936-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71936-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01418.txt.bz2
Content-length: 201

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71936

--- Comment #9 from vehre at gcc dot gnu.org ---
Committed early to catch the gcc-6-release. Now waiting on week for regressions
before closing.
>From gcc-bugs-return-534081-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 08:15:02 2016
Return-Path: <gcc-bugs-return-534081-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 104507 invoked by alias); 11 Aug 2016 08:15:02 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 104321 invoked by uid 48); 11 Aug 2016 08:14:48 -0000
From: "vehre at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/72698] [5/6/7 Regression] ICE in lhd_incomplete_type_error, at langhooks.c:205
Date: Thu, 11 Aug 2016 08:15:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: vehre at gcc dot gnu.org
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: vehre at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72698-4-W0IpqV0V9f@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72698-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72698-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01417.txt.bz2
Content-length: 206

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72698

--- Comment #11 from vehre at gcc dot gnu.org ---
Committed early to catch the next gcc-6 release. Now waiting one week for
regressions before closing.
>From gcc-bugs-return-534083-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 08:31:49 2016
Return-Path: <gcc-bugs-return-534083-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 74340 invoked by alias); 11 Aug 2016 08:31:48 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 74270 invoked by uid 48); 11 Aug 2016 08:31:36 -0000
From: "hadiramlwf at yopmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/73547] New: UK..1 888-936-5569++ Norton 360 support phone number om Norton tech support phone number Norton 360 Tech Support Number
Date: Thu, 11 Aug 2016 08:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 4.3.6
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: hadiramlwf at yopmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73547-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01419.txt.bz2
Content-length: 8544

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73547

            Bug ID: 73547
           Summary: UK..1 888-936-5569++ Norton 360 support phone number
                    om Norton tech support phone number Norton 360 Tech
                    Support Number
           Product: gcc
           Version: 4.3.6
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: hadiramlwf at yopmail dot com
  Target Milestone: ---

UK..1 888-936-5569++ Norton 360 support phone number om Norton tech support
phone number Norton 360 Tech Support Number
UK..1 800-810-1018++ Norton 360 support phone number om Norton tech support
phone number Norton 360 Tech Support Number
Australia>>>> AUS-1 800-059-007++ Norton 360 support phone number Norton tech
support phone number  Norton 360 Tech Support Number

AUS  >>>> AUS-1 800-059-007++ Norton 360 support phone number AUS-1
800-059-007AUS/canada Norton 360 Tech Support Number @@!1-800-059-007;!!Norton
360 Support Number

Norton Live Support and Help‎ 18(00-059-007 @@ Norton tech support phone number
Norton Live Support and Help‎ 18(00-059-007 @@ Norton tech support phone number
Norton Live Support and Help‎ 18(00-059-007 Norton 360 support phone number AUS
AUS Canada>>>> AUS-1 800-059-007++ Norton 360 support phone number AUS-1
800-059-007AUS/canada Norton 360 Tech Support Number @@!1-800-059-007;!!Norton
360 Support Number
WikiGenes- @+++1800-059-007++000Norton 360 support phone
number1800059007AUS/canada
Norton antivirus technical support phone number 1.800-059-007
hdfc toll free customer care number(((!1.800-059-007)) Norton 360 Tech Support
Number @@!1-800-059-007!! Norton 360 Support Number
Norton toll free customer care number 1.800-059-007
Norton toll free customer care number 1.800-059-007
Norton toll free customer care number 1.800-059-007
Norton toll free customer care number 1.800-059-007>>>>>
Norton technical support phone number ((1.800-059-007))
Norton technical support number 1.800-059-007
Norton technical support number 1.800-059-007
symantec technical support number 1.800-059-007
Norton antivirus technical support number 1.800-059-007
Norton support phone number 1.800-059-007
Norton locations Norton 360 Tech Support Number @@!1-800-059-007!! Norton 360
Support Number Norton 360 Tech Support Number @@!1-800-059-007!! Norton 360
Support Number
Norton customer service
Norton antivirus customer care__Norton Support phone number 1.800-059-007
Norton customer support phone number 1.800-059-007
Norton customer support phone number 1.800-059-007
Norton antivirus customer support phone number 1.800-059-007Norton antivirus
customer service phone number 1.800-059-007
Norton antivirus technical support phone number 1.800-059-007
Norton antivirus tech support phone number 1.800-059-007
Norton antivirus phone number 1.800-059-007 Norton 360 Tech Support Number
@@!1-800-059-007!! Norton 360 Support Number
Norton security center phone number 1.800-059-007
Norton support telephone number 1.800-059-007
Norton 360 technical support phone number 1.800-059-007
symantec technical support phone number 1.800-059-007
Norton tech support phone number 1.800-059-007 Norton 360 Tech Support Number
@@!1-800-059-007!! Norton 360 Support Number
apple technical support phone number 1.800-059-007 AUS
microsoft technical support phone number 1.800-059-007 AUS
gmail technical support phone number 1.800-059-007 AUS
kaspersky technical support phone number 1.800-059-007 AUS
lenovo technical support phone number 1.800-059-007 AUS
epson technical support phone number 1.800-059-007 AUS
Norton technical support phone number 1.800-059-007 Norton 360 Tech Support
Number @@!1-800-059-007!! Norton 360 Support Number
Norton AntiVirus Customer Service Phone Number #1: 800-059-007
Norton Phone number 1-800-059-007 Norton 360 phone number Norton 360 support
phone number
Free~* C@ll 1.800-059-007 Norton 360 technical support phone number AUS
1.800-059-007 Norton 360 technical support phone number Norton free call
~* C@ll 1.800-059-007 Norton 360 technical support phone number AUS
1.800-059-007 Norton 360 technical support phone number Norton free call Norton
360 Tech Support Number @@!1-800-059-007!! Norton 360 Support Number
PHONE support AUS @1.800-059-007 Norton antivirus technical support phone
number
Norton locations
Norton online support
Norton Support phone number 1.800-059-007
Norton customer care Norton tech support phone number 1.800-059-007
Norton tech support phone number 1.800-059-007
Norton antivirus tech support phone number 1.800-059-007
Norton locations Norton 360 Tech Support Number @@!1-800-059-007!! Norton 360
Support Number
Norton Support phone number 1.800-059-007
service Norton com
Norton login
Norton technical support phone number 1.800-059-007
Norton customer service
Norton Support phone number 1.800-059-007
Norton support telephone number 1.800-059-007
Norton support phone number 1.800-059-007
Norton antivirus support phone number 1.800-059-007 Norton 360 Tech Support
Number @@!1-800-059-007!! Norton 360 Support Number
Norton antivirus tech support phone number 1.800-059-007
Norton antivirus customer service phone number 1.800-059-007
Norton 360 technical support phone number 1.800-059-007
symantec technical support phone number 1.800-059-007
Norton technical support phone number 1.800-059-007
Norton customer service telephone number 1.800-059-007
Norton antivirus phone number 1.800-059-007
Norton antivirus customer service phone number 1.800-059-007
Norton antivirus customer service Support Norton 360 Tech Support Number
@@!1-800-059-007!! Norton 360 Support Number
Norton antivirus phone number 1.800-059-007
Norton phone number 1.800-059-007 cancel subscription
Norton technical support phone number 1.800-059-007
Norton 800 phone number 1.800-059-007
snapdeal toll free customer care number 1.800-059-007
sbi toll free customer care number 1.800-059-007
airtel toll free customer care number 1.800-059-007
Norton customer service number 1.800-059-007
Norton call center Norton 360 Tech Support Number @@!1-800-059-007!! Norton 360
Support Number
Norton customer service email address
Norton customer care no Norton 360 Tech Support Number @@!1-800-059-007!!
Norton 360 Support Number
call Norton support
chat with Norton support
Norton customer support
Norton antivirus customer service number 1.800-059-007
Norton Norton 360 Tech Support Number @@!1-800-059-007!! Norton 360 Support
Number
Norton call center
Norton hq
Norton office locations
Norton support site
Norton telephone number 1.800-059-007 for customer support
Norton customer service contact number 1.800-059-007
Norton customer care
Norton toll free number 1.800-059-007
Norton security contact number 1.800-059-007
contact Vipre
Norton headquarters Norton 360 Tech Support Number @@!1-800-059-007!! Norton
360 Support Number
Norton customer service chat
Norton customer service telephone number 1.800-059-007
Norton Support phone number 1.800-059-007
Norton customer support
Norton customer service refund
Norton login
Norton locations
Norton customer service number 1.800-059-007 uk
Norton locations
Norton customer service email address
Norton support site Norton 360 Tech Support Number @@!1-800-059-007!! Norton
360 Support Number
Norton technical support phone number 1.800-059-007
Norton technical support live chat
Norton technical support email address
Norton technical support number 1.800-059-007
Norton technical support number 1.800-059-007 Norton 360 Tech Support Number
@@!1-800-059-007!! Norton 360 Support Number
symantec technical support number 1.800-059-007
Norton antivirus technical support number 1.800-059-007
Norton customer support phone number 1.800-059-007
Norton customer support number 1.800-059-007
Norton customer support number 1.800-059-007 Norton 360 Tech Support Number
@@!1-800-059-007!! Norton 360 Support Number
Norton antivirus customer support number 1.800-059-007
Norton locations Norton 360 Tech Support Number @@!1-800-059-007!! Norton 360
Support Number
Norton Support phone number 1.800-059-007
Norton corporate phone number 1.800-059-007 Norton 360 Tech Support Number
@@!1-800-059-007!! Norton 360 Support Number
Norton customer service Support
Norton technical support phone number 1.800-059-007
Norton tech support phone number 1.800-059-007
Norton tech support number 1.800-059-007
Norton tech support number 1.800-059-007 FREE
>From gcc-bugs-return-534084-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 08:43:19 2016
Return-Path: <gcc-bugs-return-534084-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 11461 invoked by alias); 11 Aug 2016 08:43:19 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 11335 invoked by uid 48); 11 Aug 2016 08:43:06 -0000
From: "amker at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/73550] New: Another wrong -Wmaybe-uninitialized warning in switch statement
Date: Thu, 11 Aug 2016 08:43:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: amker at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73550-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01420.txt.bz2
Content-length: 2030

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73550

            Bug ID: 73550
           Summary: Another wrong -Wmaybe-uninitialized warning in switch
                    statement
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: middle-end
          Assignee: unassigned at gcc dot gnu.org
          Reporter: amker at gcc dot gnu.org
  Target Milestone: ---

Hi,
GCC trunk gives wrong -Wmaybe-uninitialized warning message on below switch
statement:


int fun1 (int, int);
int fun2 (int, int);
int fun3 (int, int);
void swap (int *, int *);
void abort (void);
void bar (void);
void foo (int code, int x, int a, int b)
{
  int (*fp) (int, int);

  switch (code)
    {
    case 1:
      if (x == 1)
        {
          fp = fun3;
          break;
        }
    case 2:
      swap (&a, &b);
    case 3:
    case 4:
      fp = fun1;
      break;
    case 11:
      if (x == 1)
        {
          fp = fun3;
          break;
        }
    case 12:
      swap (&a, &b);
    case 13:
    case 14:
      fp = fun2;
      break;
    case 5:
    case 6:
    case 7:
    case 8:
      break;
    default:
      abort ();
    }

  switch (code)
    {
    case 1:
    case 3:
    case 11:
    case 13:
      fp (a, b);
      bar ();
      break;
    case 2:
    case 4:
    case 12:
    case 14:
      fp (a, b);
      break;
    case 5:
    case 6:
    case 7:
    case 8:
      bar ();
      break;
    default:
      abort ();
    }
  return;
}

Compiled with:
$ ./gcc -O2 -S x.c -o x.S -Wmaybe-uninitialized
produces:
x.c: In function ‘foo’:
x.c:53:7: warning: ‘fp’ may be used uninitialized in this function
[-Wmaybe-uninitialized]
       fp (a, b);
       ^~~~~~~~~

GCC is configured as:
../gcc/configure --prefix=... --disable-bootstrap --disable-libssp
--disable-libgomp --disable-libsanitizer --disable-libitm --disable-atomic
CXXFLAGS='-g -O0' --enable-languages=c,c++
>From gcc-bugs-return-534085-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 08:52:52 2016
Return-Path: <gcc-bugs-return-534085-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 51345 invoked by alias); 11 Aug 2016 08:52:51 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 50976 invoked by uid 48); 11 Aug 2016 08:52:38 -0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73456] [7 regression][concepts] ICE in non_atomic_constraint_p, at cp/logic.cc:315
Date: Thu, 11 Aug 2016 08:52:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on cc target_milestone everconfirmed cf_known_to_fail
Message-ID: <bug-73456-4-dwUIc189vG@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73456-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73456-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01421.txt.bz2
Content-length: 823

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73456

Martin Liška <marxin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |ice-on-valid-code
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-11
                 CC|                            |marxin at gcc dot gnu.org
   Target Milestone|---                         |6.2
     Ever confirmed|0                           |1
      Known to fail|                            |6.2.0, 7.0

--- Comment #1 from Martin Liška <marxin at gcc dot gnu.org> ---
Confirmed, started with r238558. GCC 6.1.0 looks good, but head of the branch
also ICEs.
>From gcc-bugs-return-534086-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 08:58:12 2016
Return-Path: <gcc-bugs-return-534086-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 81299 invoked by alias); 11 Aug 2016 08:58:12 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 76136 invoked by uid 48); 11 Aug 2016 08:57:59 -0000
From: "mrhr at we dot ldop.com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/73552] New: UK..1 800-810-1018++ Norton 360 support phone number om Norton tech support phone number Norton 360 Tech Support Number
Date: Thu, 11 Aug 2016 08:58:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mrhr at we dot ldop.com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73552-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01422.txt.bz2
Content-length: 8536

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73552

            Bug ID: 73552
           Summary: UK..1 800-810-1018++ Norton 360 support phone number
                    om Norton tech support phone number Norton 360 Tech
                    Support Number
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: mrhr at we dot ldop.com
  Target Milestone: ---

UK..1 800-810-1018++ Norton 360 support phone number om Norton tech support
phone number Norton 360 Tech Support Number
UK..1 800-810-1018++ Norton 360 support phone number om Norton tech support
phone number Norton 360 Tech Support Number
Australia>>>> AUS-1 800-059-007++ Norton 360 support phone number Norton tech
support phone number  Norton 360 Tech Support Number

AUS  >>>> AUS-1 800-059-007++ Norton 360 support phone number AUS-1
800-059-007AUS/canada Norton 360 Tech Support Number @@!1-800-059-007;!!Norton
360 Support Number

Norton Live Support and Help‎ 18(00-059-007 @@ Norton tech support phone number
Norton Live Support and Help‎ 18(00-059-007 @@ Norton tech support phone number
Norton Live Support and Help‎ 18(00-059-007 Norton 360 support phone number AUS
AUS Canada>>>> AUS-1 800-059-007++ Norton 360 support phone number AUS-1
800-059-007AUS/canada Norton 360 Tech Support Number @@!1-800-059-007;!!Norton
360 Support Number
WikiGenes- @+++1800-059-007++000Norton 360 support phone
number1800059007AUS/canada
Norton antivirus technical support phone number 1.800-059-007
hdfc toll free customer care number(((!1.800-059-007)) Norton 360 Tech Support
Number @@!1-800-059-007!! Norton 360 Support Number
Norton toll free customer care number 1.800-059-007
Norton toll free customer care number 1.800-059-007
Norton toll free customer care number 1.800-059-007
Norton toll free customer care number 1.800-059-007>>>>>
Norton technical support phone number ((1.800-059-007))
Norton technical support number 1.800-059-007
Norton technical support number 1.800-059-007
symantec technical support number 1.800-059-007
Norton antivirus technical support number 1.800-059-007
Norton support phone number 1.800-059-007
Norton locations Norton 360 Tech Support Number @@!1-800-059-007!! Norton 360
Support Number Norton 360 Tech Support Number @@!1-800-059-007!! Norton 360
Support Number
Norton customer service
Norton antivirus customer care__Norton Support phone number 1.800-059-007
Norton customer support phone number 1.800-059-007
Norton customer support phone number 1.800-059-007
Norton antivirus customer support phone number 1.800-059-007Norton antivirus
customer service phone number 1.800-059-007
Norton antivirus technical support phone number 1.800-059-007
Norton antivirus tech support phone number 1.800-059-007
Norton antivirus phone number 1.800-059-007 Norton 360 Tech Support Number
@@!1-800-059-007!! Norton 360 Support Number
Norton security center phone number 1.800-059-007
Norton support telephone number 1.800-059-007
Norton 360 technical support phone number 1.800-059-007
symantec technical support phone number 1.800-059-007
Norton tech support phone number 1.800-059-007 Norton 360 Tech Support Number
@@!1-800-059-007!! Norton 360 Support Number
apple technical support phone number 1.800-059-007 AUS
microsoft technical support phone number 1.800-059-007 AUS
gmail technical support phone number 1.800-059-007 AUS
kaspersky technical support phone number 1.800-059-007 AUS
lenovo technical support phone number 1.800-059-007 AUS
epson technical support phone number 1.800-059-007 AUS
Norton technical support phone number 1.800-059-007 Norton 360 Tech Support
Number @@!1-800-059-007!! Norton 360 Support Number
Norton AntiVirus Customer Service Phone Number #1: 800-059-007
Norton Phone number 1-800-059-007 Norton 360 phone number Norton 360 support
phone number
Free~* C@ll 1.800-059-007 Norton 360 technical support phone number AUS
1.800-059-007 Norton 360 technical support phone number Norton free call
~* C@ll 1.800-059-007 Norton 360 technical support phone number AUS
1.800-059-007 Norton 360 technical support phone number Norton free call Norton
360 Tech Support Number @@!1-800-059-007!! Norton 360 Support Number
PHONE support AUS @1.800-059-007 Norton antivirus technical support phone
number
Norton locations
Norton online support
Norton Support phone number 1.800-059-007
Norton customer care Norton tech support phone number 1.800-059-007
Norton tech support phone number 1.800-059-007
Norton antivirus tech support phone number 1.800-059-007
Norton locations Norton 360 Tech Support Number @@!1-800-059-007!! Norton 360
Support Number
Norton Support phone number 1.800-059-007
service Norton com
Norton login
Norton technical support phone number 1.800-059-007
Norton customer service
Norton Support phone number 1.800-059-007
Norton support telephone number 1.800-059-007
Norton support phone number 1.800-059-007
Norton antivirus support phone number 1.800-059-007 Norton 360 Tech Support
Number @@!1-800-059-007!! Norton 360 Support Number
Norton antivirus tech support phone number 1.800-059-007
Norton antivirus customer service phone number 1.800-059-007
Norton 360 technical support phone number 1.800-059-007
symantec technical support phone number 1.800-059-007
Norton technical support phone number 1.800-059-007
Norton customer service telephone number 1.800-059-007
Norton antivirus phone number 1.800-059-007
Norton antivirus customer service phone number 1.800-059-007
Norton antivirus customer service Support Norton 360 Tech Support Number
@@!1-800-059-007!! Norton 360 Support Number
Norton antivirus phone number 1.800-059-007
Norton phone number 1.800-059-007 cancel subscription
Norton technical support phone number 1.800-059-007
Norton 800 phone number 1.800-059-007
snapdeal toll free customer care number 1.800-059-007
sbi toll free customer care number 1.800-059-007
airtel toll free customer care number 1.800-059-007
Norton customer service number 1.800-059-007
Norton call center Norton 360 Tech Support Number @@!1-800-059-007!! Norton 360
Support Number
Norton customer service email address
Norton customer care no Norton 360 Tech Support Number @@!1-800-059-007!!
Norton 360 Support Number
call Norton support
chat with Norton support
Norton customer support
Norton antivirus customer service number 1.800-059-007
Norton Norton 360 Tech Support Number @@!1-800-059-007!! Norton 360 Support
Number
Norton call center
Norton hq
Norton office locations
Norton support site
Norton telephone number 1.800-059-007 for customer support
Norton customer service contact number 1.800-059-007
Norton customer care
Norton toll free number 1.800-059-007
Norton security contact number 1.800-059-007
contact Vipre
Norton headquarters Norton 360 Tech Support Number @@!1-800-059-007!! Norton
360 Support Number
Norton customer service chat
Norton customer service telephone number 1.800-059-007
Norton Support phone number 1.800-059-007
Norton customer support
Norton customer service refund
Norton login
Norton locations
Norton customer service number 1.800-059-007 uk
Norton locations
Norton customer service email address
Norton support site Norton 360 Tech Support Number @@!1-800-059-007!! Norton
360 Support Number
Norton technical support phone number 1.800-059-007
Norton technical support live chat
Norton technical support email address
Norton technical support number 1.800-059-007
Norton technical support number 1.800-059-007 Norton 360 Tech Support Number
@@!1-800-059-007!! Norton 360 Support Number
symantec technical support number 1.800-059-007
Norton antivirus technical support number 1.800-059-007
Norton customer support phone number 1.800-059-007
Norton customer support number 1.800-059-007
Norton customer support number 1.800-059-007 Norton 360 Tech Support Number
@@!1-800-059-007!! Norton 360 Support Number
Norton antivirus customer support number 1.800-059-007
Norton locations Norton 360 Tech Support Number @@!1-800-059-007!! Norton 360
Support Number
Norton Support phone number 1.800-059-007
Norton corporate phone number 1.800-059-007 Norton 360 Tech Support Number
@@!1-800-059-007!! Norton 360 Support Number
Norton customer service Support
Norton technical support phone number 1.800-059-007
Norton tech support phone number 1.800-059-007
Norton tech support number 1.800-059-007
Norton tech support number 1.800-059-007 FREE
>From gcc-bugs-return-534087-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 08:58:31 2016
Return-Path: <gcc-bugs-return-534087-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 97624 invoked by alias); 11 Aug 2016 08:58:31 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 83666 invoked by uid 48); 11 Aug 2016 08:58:18 -0000
From: "ajfuiasfjbc at yopmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug boehm-gc/73553] New: AVG number$+$+$+1+888+936+5569, AVG antivirus helpline phone number
Date: Thu, 11 Aug 2016 08:58:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: boehm-gc
X-Bugzilla-Version: 4.3.4
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ajfuiasfjbc at yopmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73553-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01423.txt.bz2
Content-length: 6669

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73553

            Bug ID: 73553
           Summary: AVG number$+$+$+1+888+936+5569, AVG antivirus helpline
                    phone number
           Product: gcc
           Version: 4.3.4
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: boehm-gc
          Assignee: unassigned at gcc dot gnu.org
          Reporter: ajfuiasfjbc at yopmail dot com
  Target Milestone: ---

AVG number$+$+$+1+888+936+5569, AVG antivirus helpline phone number
AVG number$+$+$+1+800+059+007, AVG antivirus helpline phone number

AVG antivirus tech Support(+(1-800-059-007)))number AUS customer service phone
number
AVG antivirus tech Support(+(1-800-059-007)))number AUS customer service phone
number,AVG antivirus tech support number AVG customer service number
1800-059-007 AVG call center 1800-059-007 AVG customer service email address
1800-059-007 AVG customer care no 1800-059-007 AVG antivirus technical support
phone number 1800-059-007 AVG antivirus tech support phone number 1800-059-007
AVG antivirus customer service phone number 1800-059-007 AVG 360 technical
support phone number 1800-059-007 symantec technical support phone number
1800-059-007 AVG technical support phone number 1800-059-007 AVG customer
service telephone number 1800-059-007 ?AVG antivirus phone number 1800-059-007
AVG antivirus customer service phone number 1800-059-007 AVG antivirus customer
service helpdesk AVG antivirus phone number 1800-059-007 AVG phone number
cancel subscription 1800-059-007 AVG technical support phone number
1800-059-007 AVG 800 phone number 1800-059-007 AVG toll free customer care
number sbi toll free customer care number AVG 360 toll free customer care
number toll free customer care number AVG toll free customer care number icici
toll free customer care number flipkart toll free customer care number vodafone
toll free customer care number AVG technical support phone number AVG technical
support number AVG technical support number symantec technical support number
AVG antivirus technical support number AVG locations AVG online support AVG
helpdesk phone number AVG customer care AVG tech support phone number AVG tech
support phone number AVG antivirus tech support phone number AVG locations AVG
helpdesk phone number service AVG com AVG login AVG technical support phone
number AVG customer service AVG helpdesk phone number AVG support telephone
number AVG support phone number AVG antivirus support phone number AVG support
phone number AVG locations AVG customer service AVG customer care AVG helpdesk
phone number AVG customer support phone number AVG customer support phone
number AVG antivirus customer support phone number AVG antivirus customer
service phone number AVG antivirus technical support phone number AVG antivirus
tech support phone number AVG antivirus phone number AVG security center phone
number AVG support telephone number AVG 360 technical support phone number
symantec technical support phone number AVG tech support phone number apple
technical support phone number AUS microsoft technical support phone number AUS
AVG technical support phone number AUS AVG technical support phone number AUS
lenovo technical support phone number AUS epson technical support phone number
AUS AVG technical support phone number call AVG support chat with AVG support
AVG customer support AVG antivirus customer service number AVG address AVG call
center AVG helpline AVG helpdesk AVG support site AVG telephone number for
customer support AVG customer service contact number AVG customer care AVG toll
free number AVG security contact number contact AVG AVG headquarters AVG
customer service chat AVG customer service telephone number AVG helpdesk phone
number AVG customer support AVG customer service AVG login AVG locations AVG
customer service number AVG locations AVG customer service email address AVG
support site AVG technical support phone number AVG technical support live chat
AVG technical support email address AVG technical support number AVG technical
support number symantec technical support number AVG antivirus technical
support number AVG customer support phone number AVG customer support number
AVG customer support number AVG antivirus customer support number AVG locations
AVG helpdesk phone number AVG support phone number AVG customer service
helpdesk AVG technical support phone number AVG tech support phone number AVG
tech support number AVG tech support numberAVG 360 customer service phone
number AUS AVG phone number canada AVG phone number customer services AVG
helpline number AVG antivirus contact number canada AVG phone number AVG
antivirus customer service phone number us what is the phone number for AVG
customer service AVG contact number AVG 360 customer service phone number AVG
360 support phone number AUS AVG toll free number AUS AVG contact phone number
AVG antivirus phone number AVG antivirus customer service phone number AVG
support phone number AVG support phone number canada AVG technical support
phone number canada AVG abrasives phone number AVG security phone contact
number AVG internet security customer service phone number AVG telephone number
AVG canada phone number AVG security telephone number AVG antivirus contact
number us AVG phone number AVG phone number AVG antivirus customer care number
AVG 360 customer service phone number canada AVG internet security number AVG
software customer service number AVG internet security telephone number AVG
anti virus contact number AVG virus protection phone number AVG virus
protection contact number AVG antivirus phone number AVG antivirus help desk
phone numberhttps://gcc.gnu.org/bugzilla/show_bug.cgi?id=72924
 AVG tech support phone number us AVG helpline phone number AVG internet
security contact phone number AVG customer care number AUS AVG antivirus
contact number AVG customer support phone number canada AVG department number
AVG antivirus contact number AVG antivirus customer service phone number canada
AVG customer support number AUS number for AVG antivirus AVG support number AVG
support number AVG 360 contact number AVG symantec phone number AVG 360 contact
number AVG contact number canada AVG antivirus toll free number AUS AVG
internet security contact phone number AVG contact number AUS AVG antivirus
canada contact phone number AVG support number AUS AVG support phone number AVG
customer care number AVG contact phone number AVG number AVG internet security
toll free number phone number for AVG antivirus AVG cinema phone number AVG
>From gcc-bugs-return-534088-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 09:02:51 2016
Return-Path: <gcc-bugs-return-534088-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 125656 invoked by alias); 11 Aug 2016 09:02:50 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 125271 invoked by uid 55); 11 Aug 2016 09:02:38 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/72772] Missed SCEV after pass reordering@236440
Date: Thu, 11 Aug 2016 09:02:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72772-4-eMG396v1Nn@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72772-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72772-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01424.txt.bz2
Content-length: 771

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72772

--- Comment #12 from Richard Biener <rguenth at gcc dot gnu.org> ---
Author: rguenth
Date: Thu Aug 11 09:02:04 2016
New Revision: 239357

URL: https://gcc.gnu.org/viewcvs?rev=239357&root=gcc&view=rev
Log:
2016-08-11  Richard Biener  <rguenther@suse.de>

        PR tree-optimization/72772
        * cfgloopmanip.c (create_preheader): Use split_edge if there
        is a single loop entry, avoiding degenerate PHIs.

        * gcc.dg/graphite/pr35356-1.c: Adjust.
        * gcc.dg/tree-ssa/pr59597.c: Likewise.

Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/cfgloopmanip.c
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/testsuite/gcc.dg/graphite/pr35356-1.c
    trunk/gcc/testsuite/gcc.dg/tree-ssa/pr59597.c
>From gcc-bugs-return-534089-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 09:03:52 2016
Return-Path: <gcc-bugs-return-534089-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 130671 invoked by alias); 11 Aug 2016 09:03:52 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 130486 invoked by uid 48); 11 Aug 2016 09:03:39 -0000
From: "ajfuiasfjbc at yopmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug boehm-gc/73555] New: Call USA 1888 936 5569..Avg** support phone number 1 888 936 5569 usa/canada Avg Tech Support Number @@!1-888- 936 5569 !!Avg Support Number for
Date: Thu, 11 Aug 2016 09:03:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: boehm-gc
X-Bugzilla-Version: trans-mem
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ajfuiasfjbc at yopmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73555-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01425.txt.bz2
Content-length: 13380

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73555

            Bug ID: 73555
           Summary: Call USA 1888 936 5569..Avg** support phone number 1
                    888 936 5569 usa/canada Avg Tech Support Number
                    @@!1-888- 936 5569 !!Avg Support Number for
           Product: gcc
           Version: trans-mem
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: boehm-gc
          Assignee: unassigned at gcc dot gnu.org
          Reporter: ajfuiasfjbc at yopmail dot com
  Target Milestone: ---

Call USA 1888 936 5569..Avg** support phone number 1 888 936 5569 usa/canada
Avg Tech Support Number @@!1-888- 936 5569 !!Avg Support Number for
Call USA 1 844 778+584 Avg** support phone number 1 844 778 8603 usa/canada Avg
Tech Support Number @@!1-844- 778 8603 !!Avg Support Number for @**Avg

Call USA 1 844 778 8603 Avg support phone number 1 844 778 8603 usa/canada Avg
Tech Support Number @@!1-844- 778 8603 ;!!Avg Support Number for @@@@@Avg
usa+1-844-778-8603) Technical support number
CANADA+1844-855-1955 Avg Antivirus Technical Support
USA-1844-778-8603contact Avg antivirus customer service phone number
AUS-1-844-486-3321 phone number for Avg customer service
UK-1844-778-8603 phone number for Avg antivirus technical support
1-844-778-8603 phone number for Avg antivirus customer service
phone number for Avg antivirus technical support
phone number for Avg security
Avg antivirus customer care phone number
Avg antivirus customer service billing
Avg antivirus customer service email address
Avg antivirus customer service live chat
Avg antivirus customer service telephone number
Avg antivirus customer support usa phone number
Avg antivirus help desk support phone number free in usa
Avg antivirus phone number customer service us
Avg antivirus phone number support
Avg antivirus support phone number
Avg antivirus tech support phone number free in usa
Avg antivirus tech support phone number
Avg antivirus technical support customer service
Avg antivirus technical support number
Avg antivirus telephone number
Avg antivirus toll free customer care number
Avg antivirus toll free number in usa
Avg antivirus contact phone number in usa
Avg antivirus customer service number
Avg antivirus customer service phone number
Avg antivirus customer service telephone number
Avg antivirus customer support number
Avg antivirus customer support phone number
Avg antivirus customer support phone number
Avg antivirus help desk phone number in usa
Avg antivirus phone number
Avg antivirus phone number support for technical issue in usa
Avg antivirus support phone number
Avg antivirus technical support help desk phone number
Avg antivirus technical support number
Avg antivirus technical support phone number
Avg customer service number
Avg customer service telephone number
Avg customer services email
Avg customer support email address
Avg customer support number
Avg customer support phone number
Avg customer service phone number
Avg internet security contact phone number
Avg internet security customer service phone number
Avg internet security phone number
Avg internet security help phone number
Avg internet security phone number in usa
Avg internet security support phone number
Avg internet security technical support
Avg phone number customer service
Avg phone numbers customer support
Avg phone support number
Avg security contact phone number
Avg security phone number customer service
Avg security support phone number
Avg support contact number
Avg support email address
Avg support phone number
Avg support telephone number
Avg support telephone number usa
Avg support telephone number
Avg tech support number
Avg tech support phone number
Avg tech support phone number free
Avg technical support phone number
Avg technical support cutomer phone number
Avg technical support phone number
Avg technical support number free in usa
Avg technical support number toll free number
Avg technical support phone number
Avg technologies phone number
Avg telephone support number
Avg antivirus customer support phone number
Avg antivirus customer service phone number
Avg customer support phone number
Avg phone number customer service
Avg technical support telephone number
contact Avg antivirus customer service phone number
customer service number for Avg antivirus
phone number for Avg antivirus
phone number for Avg antivirus customer service
phone number for Avg antivirus support
phone number for Avg customer service
phone number for Avg customer service
phone number for Avg customer support
phone number for Avg tech support
phone number Avg antivirus customer service
Avg antivirus customer service number
Avg antivirus customer service phone
Avg antivirus customer service phone number
Avg antivirus customer service phone number us
Avg antivirus customer service telephone number
Avg antivirus customer support
Avg antivirus customer support number
Avg antivirus phone number customer service us
Avg antivirus phone number support
Avg antivirus phone support
Avg antivirus phone support number
Avg antivirus support phone number
Avg antivirus tech support phone number
Avg antivirus technical support
Avg antivirus technical support number
Avg antivirus technical support phone number
Avg customer service phone number
Avg customer support phone number
Avg helpline phone number
Avg internet security customer service
Avg internet security customer service phone number
Avg internet security help phone number
Avg internet security phone number customer service
Avg phone number customer service
Avg phone number customer support
Avg security customer service phone number
Avg security phone number customer service
Avg support phone number
Avg support telephone number
Avg tech support number
Avg tech support phone number
Avg technical support
Avg technical support number
Avg technical support phone number
Avg antivirus customer support phone number
Avg antivirus phone number customer service
Avg antivirus tech support number
Avg customer service phone number
Avg customer service phone numbers
Avg internet security technical support
Avg tech support phone number us
Avg technical support telephone number
contact Avg antivirus
contact Avg by phone
contact Avg customer service
contact Avg antivirus customer service phone number
contactAvg antivirus tech support usa
customer service Avg phone number
download Avg titanium
dri Avg customer service number
dri Avg customer service phone number
dri Avg phone number
how to contact Avg by email
how to delete Avg from mac
micro trend customer service
Avg antivirus customer service number
phone number for Avg customer service
phone number forAvg customer service
phone number forAvg customer support
phone number forAvg tech support
phone number forAvg technical support
phone number for Avg antivirus technical support
phone number for Avg security
phone number for Avg support
phone number for Avg technical support
phone number for Avg antivirus customer service
phone number for Avg customer service
remove Avg from mac
technical support for antivirus Avg
telephone number forAvg technical support
telephone Avg antivirus
Avg antivirus contact number
Avg antivirus customer care
Avg antivirus customer care number
Avg antivirus customer care number usa
Avg antivirus customer service
Avg antivirus customer service number :idea: :evil: :D :) :lol: :( :o :shock:
Avg antivirus customer service phone number
Avg antivirus customer service phone number usa
Avg antivirus customer service telephone number
Avg antivirus customer support
Avg antivirus customer support in usa
Avg antivirus customer support number
Avg antivirus customer support phone number
Avg antivirus for phone
Avg antivirus free antivirus support
Avg antivirus help phone number
Avg antivirus helpline number
Avg antivirus online support
Avg antivirus phone
Avg antivirus phone number
Avg antivirus phone number in usa
Avg antivirus phone number usa
Avg antivirus phone support
Avg antivirus plus tech support
Avg antivirus protection
Avg antivirus support
Avg antivirus support number
Avg antivirus support phone number
Avg antivirus support services
Avg antivirus support telephone number
Avg antivirus tech support
Avg antivirus tech support phone number free in usa
Avg antivirus tech support number
Avg antivirus tech support phone number
Avg antivirus technical support
Avg antivirus technical support number
Avg antivirus technical support phone number
Avg antivirus toll free customer care number
Avg antivirus toll free number
Avg antivirus contact phone number in usa
Avg antivirus help desk phone number in usa
Avg antivirus phone number support for technical issue in usa
Avg antivirus support phone number
Avg antivirus technical support help desk phone number
Avg antivirus technical support phone number
Avg contact number
Avg contact number usa
Avg contact phone number
Avg contact support
Avg contact number usa
Avg contact phone number
Avg contact phone number usa
Avg customer & technical support
Avg customer care
Avg customer care center
Avg customer care email
Avg customer care number
Avg customer care number
Avg customer care number usa
Avg customer care number usa toll free
Avg customer care phone number usa
Avg customer care tchnical support
Avg customer care toll free
Avg customer care toll free number
Avg customer care usa
Avg customer help
Avg customer number
Avg customer portal
Avg customer service
Avg customer service billing
Avg customer service email address
Avg customer service number
Avg customer service phone
Avg customer service phone number
Avg customer service phone number us
Avg customer service phone number usa
Avg customer service reviews
Avg customer service telephone number
Avg customer service usa
Avg customer support
Avg customer support number
Avg customer support phone
Avg customer support phone number
Avg customer service number
Avg customer service number usa
Avg customer service phone number
Avg customer support number
Avg customer support phone number
Avg free phone support
Avg gold support phone number
Avg help desk phone number
Avg help phone number
Avg helpline
Avg helpline phone number
Avg hotline customer service phone number
Avg internet security customer service
Avg internet security phone number
Avg internet security phone number in usa
Avg lab usa customer service
Avg labs usa customer serviceAvg
Avg phone number
Avg phone number customer service
Avg phone number support
Avg phone number tech support
Avg phone number technical support
Avg phone numbers customer support
Avg phone support
Avg phone support number
Avg phone number customer service
Avg phone number support
Avg phone number tech support
Avg phone number usa
Avg security contact phone number
Avg security phone number
Avg security support phone number
Avg software customer service
Avg software customer service number
Avg support center
Avg support contact number
Avg support email address
Avg support phone number
Avg support telephone number
Avg support number usa
Avg support phone number
Avg support phone number usa
Avg tech support
Avg tech support center
Avg tech support contact
Avg tech support number
Avg tech support number usa
Avg tech support phone
Avg tech support phone number
Avg tech support phone number free
Avg tech support number
Avg tech support number usa
Avg tech support phone number
Avg technical support
Avg technical support number
Avg technical support phone number
Avg technical support phone number usa
Avg technical support reviews
Avg technical support usa
Avg technical support phone number
Avg technical support number
Avg technical support number toll free number
Avg technical support number usa
Avg technical support phone number
Avg technical support phone number usa
Avg technologies phone number
Avg telephone number
Avg telephone support number
Avg toll free number
Avg toll free number usa
Avg usa customer care for tech support
Avg usa customer service
Avg usa phone number
Avg antivirus customer service phone number
Avg antivirus customer service phone number
Avg antivirus customer support phone number
Avg antivirus customer support phone number
Avg antivirus technical support number
Avg customer service phone number usa
Avg internet security support phone number
Avg.com customer service
Avg antivirus antispyware 2011
Avg antivirus customer support
Avg antivirus serial key
Avg antivirus serial number
Avg antivirus support
Avg antivirus technical support
Avg business support
Avg contact support
Avg customer care number
Avg customer service 844
Avg customer service number
Avg customer service phone number
Avg customer service telephone number
Avg customer support
Avg grentry non payment
Avg helpline support number
Avg internet security customer service
Avg internet security technical support
Avg oem customer service
Avg pc cillin technical support
Avg phone support
Avg removal tool download
Avg subscription renewal
Avg support contact
Avg support hotline
Avg support phone number
Avg tech support phone number
Avg technical support
Avg technical support chat
Avg technical support phone number
Avg technical support phone number usa
Avg telephone number
Avg titanium antivirus
Avg titanium internet security
Avg titanium maximum
Avg titanium maximum security
Avg titanium problems
Avg titanium removal tool
Avg titanium reviews
>From gcc-bugs-return-534090-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 09:16:57 2016
Return-Path: <gcc-bugs-return-534090-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 25923 invoked by alias); 11 Aug 2016 09:16:57 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 25799 invoked by uid 48); 11 Aug 2016 09:16:43 -0000
From: "schwab@linux-m68k.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/58306] Broken profiling for unrar sources: error: corrupted value profile: value profile counter (X out of Y) inconsistent with basic-block count
Date: Thu, 11 Aug 2016 09:16:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: schwab@linux-m68k.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-58306-4-JwH309oOCL@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-58306-4@http.gcc.gnu.org/bugzilla/>
References: <bug-58306-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01426.txt.bz2
Content-length: 544

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58306

--- Comment #30 from Andreas Schwab <schwab@linux-m68k.org> ---
/daten/aranym/gcc/gcc-20160811/Build/gcc/testsuite/g++/../../libgcov.a(_gcov_time_profiler.o):
In function `__gcov_time_profiler_atomic':
/daten/aranym/gcc/gcc-20160811/Build/m68k-linux/libgcc/../../../libgcc/libgcov-profiler.c:352:
undefined reference to `__atomic_fetch_add_8'
collect2: error: ld returned 1 exit status
compiler exited with status 1
FAIL: g++.dg/other/pr55650.C  -std=gnu++98 (test for excess errors)
>From gcc-bugs-return-534091-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 09:18:46 2016
Return-Path: <gcc-bugs-return-534091-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 28131 invoked by alias); 11 Aug 2016 09:18:46 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 28026 invoked by uid 48); 11 Aug 2016 09:18:33 -0000
From: "vexr at g dot tiv.cc" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/73562] New: UK:1-800.810.810 Norton T.e.c.h S.u.p.p.o.r.t P.h.o.n.e n.u.m.b.e.r Norton p.h.o.n.e N.u.m.b.e.r
Date: Thu, 11 Aug 2016 09:18:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: vexr at g dot tiv.cc
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73562-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01427.txt.bz2
Content-length: 15085

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73562

            Bug ID: 73562
           Summary: UK:1-800.810.810 Norton T.e.c.h S.u.p.p.o.r.t
                    P.h.o.n.e n.u.m.b.e.r Norton p.h.o.n.e N.u.m.b.e.r
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: vexr at g dot tiv.cc
  Target Milestone: ---

UK:1-800.810.810 Norton T.e.c.h S.u.p.p.o.r.t P.h.o.n.e n.u.m.b.e.r Norton
p.h.o.n.e N.u.m.b.e.r

DIRECT ((1-800-810-810)) Norton Antivirus Helpline phone number Norton Tech
Support, Customer Support Norton® helpline phone number 1800+810+810, Norton
antivirus helpline phone number, Norton antivirus phone number DIRECT @A.V.G
A.N.t.i.v.i.r.u.s I.8.4.4.2.3.4.9..7.5.2s.u.p.p.o.r.t P.h.o.n.e N.u.m.b.e.r
f.o.r A.V.G A.N.t.i.v.i.r.u.s P.h.o.n.e N.u.m.b.e.r Norton Phone NUmber
1-800-810-810 Norton phone number, Norton technical support phone
number@@@@@@Norton +1-800-810-810) Technical support number1800810810
1-800-810-810 Norton Antivirus Technical Support 1-800-810-810 contact Norton
antivirus customer service phone number1800810810 1-800-810-810 phone number
for Norton customer service 1-800-810-810 phone number for Norton antivirus
technical support 1-800-810-810 phone number for Norton antivirus customer
service phone number for Norton antivirus technical support phone number for
Norton security Norton antivirus customer care phone number1800810810 Norton
antivirus customer service billing Norton antivirus customer service email
address Norton antivirus customer service live chat Norton antivirus customer
service telephone number Norton antivirus customer support usa phone number
Norton antivirus help desk support phone number free in usa Norton antivirus
phone number customer service us Norton antivirus phone number support Norton
antivirus support phone number Norton antivirus tech support phone number free
in usa Norton antivirus tech support phone number Norton antivirus technical
support customer service Norton antivirus technical support number Norton
antivirus telephone number Norton antivirus toll free customer care number
Norton antivirus toll free number in usa Norton antivirus contact phone number
in usa Norton antivirus customer service number Norton antivirus customer
service phone number Norton antivirus customer service telephone
number1800810810 Norton antivirus customer support number Norton antivirus
customer support phone number1800810810 Norton antivirus customer support phone
number Norton antivirus help desk phone number in usa Norton antivirus phone
number Norton antivirus phone number support for technical issue in usa Norton
antivirus support phone number Norton antivirus technical support help desk
phone number Norton antivirus technical support number Norton antivirus
technical support phone number Norton customer service number Norton customer
service telephone number1800810810 Norton customer services email Norton
customer support email address Norton customer support number Norton customer
support phone number Norton customer service phone number Norton internet
security contact phone number Norton internet security customer service phone
number Norton internet security phone number Norton internet security help
phone number Norton internet security phone number in usa Norton internet
security support phone number Norton internet security technical support Norton
phone number customer service1800810810 Norton phone numbers customer support
Norton phone support number1800810810 Norton security contact phone number
Norton security phone number customer service Norton security support phone
number Norton support contact number Norton support email address Norton
support phone number Norton support telephone number Norton support telephone
number usa Norton support telephone number Norton tech support number Norton
tech support phone number Norton tech support phone number free Norton
technical support phone number Norton technical support cutomer phone number
Norton technical support phone number Norton technical support number free in
usa Norton technical support number toll free number Norton technical support
phone number Norton technologies phone number Norton telephone support number
Norton antivirus customer support phone number Norton antivirus customer
service phone number Norton customer support phone number Norton phone number
customer service Norton technical support telephone number contact Norton
antivirus customer service phone number customer service number for Norton
antivirus phone number for Norton antivirus phone number for Norton antivirus
customer service phone number for Norton antivirus support1800810810 phone
number for Norton customer service phone number for Norton customer service
phone number for Norton customer support phone number for Norton tech
support1800810810 phone number Norton antivirus customer service Norton
antivirus customer service number Norton antivirus customer service phone
Norton antivirus customer service phone number Norton antivirus customer
service phone number us Norton antivirus customer service telephone number
Norton antivirus customer support Norton antivirus customer support number
Norton antivirus phone number customer service us Norton antivirus phone number
support Norton antivirus phone support Norton antivirus phone support number
Norton antivirus support phone number Norton antivirus tech support phone
number Norton antivirus technical support Norton antivirus technical support
number Norton antivirus technical support phone number Norton customer service
phone number Norton customer support phone number Norton helpline phone number
Norton internet security customer service Norton internet security customer
service phone number Norton internet security help phone number Norton internet
security phone number customer service Norton phone number customer
service1800810810 Norton phone number customer support Norton security customer
service phone number Norton security phone number customer service Norton
support phone number Norton support telephone number Norton tech support number
Norton tech support phone number Norton technical support Norton technical
support number Norton technical support phone numberv1800810810 Norton
antivirus customer support phone number Norton antivirus phone number customer
service Norton antivirus tech support number Norton customer service phone
number Norton customer service phone numbers Norton internet security technical
support Norton tech support phone number us Norton technical support telephone
number contact Norton antivirus contact Norton by phonev1800810810 contact
Norton customer service contact Norton antivirus customer service phone number
contactNorton antivirus tech support usa customer service Norton phone number
download Norton titanium dri Norton customer service number dri Norton customer
service phone number dri Norton phone number how to contact Norton by email how
to delete Norton from mac micro trend customer service norton antivirus
customer service number phone number for Norton customer service phone number
forNorton customer service phone number forNorton customer support1800810810
phone number forNorton tech support phone number forNorton technical support
phone number for Norton antivirus technical support phone number for Norton
security phone number for Norton support phone number for Norton technical
support phone number for Norton antivirus customer service phone number for
Norton customer service remove Norton from mac technical support for antivirus
Norton telephone number forNorton technical support telephone Norton antivirus
Norton antivirus contact number Norton antivirus customer care Norton antivirus
customer care number1800810810 Norton antivirus customer care number usa Norton
antivirus customer service Norton antivirus customer service number :idea:
:evil: :D :) :lol: :( :o :shock: Norton antivirus customer service phone number
Norton antivirus customer service phone number usa Norton antivirus customer
service telephone number Norton antivirus customer support Norton antivirus
customer support in usa Norton antivirus customer support number Norton
antivirus customer support phone number Norton antivirus for phone Norton
antivirus free antivirus support Norton antivirus help phone number Norton
antivirus helpline number Norton antivirus online support1800810810 Norton
antivirus phone Norton antivirus phone number Norton antivirus phone number in
usa Norton antivirus phone number usa1800810810 Norton antivirus phone support
Norton antivirus plus tech support Norton antivirus protection Norton antivirus
support Norton antivirus support number Norton antivirus support phone number
Norton antivirus support services Norton antivirus support telephone number
Norton antivirus tech support Norton antivirus tech support phone number free
in usa Norton antivirus tech support number Norton antivirus tech support phone
number Norton antivirus technical support1800810810 Norton antivirus technical
support number Norton antivirus technical support phone number Norton antivirus
toll free customer care number Norton antivirus toll free number Norton
antivirus contact phone number in usa Norton antivirus help desk phone number
in usa1800810810 Norton antivirus phone number support for technical issue in
usa Norton antivirus support phone number Norton antivirus technical support
help desk phone number Norton antivirus technical support phone number Norton
contact number Norton contact number usa Norton contact phone number Norton
contact support Norton contact number usa Norton contact phone number Norton
contact phone number usa Norton customer & technical support Norton customer
care Norton customer care center Norton customer care email Norton customer
care number1800810810 Norton customer care number Norton customer care number
usa Norton customer care number usa toll free Norton customer care phone number
usa Norton customer care tchnical support1800810810 Norton customer care toll
free Norton customer care toll free number Norton customer care usa Norton
customer help Norton customer number Norton customer portal Norton customer
service Norton customer service billing Norton customer service email address
Norton customer service number Norton customer service phone Norton customer
service phone number Norton customer service phone number us Norton customer
service phone number usa Norton customer service reviews Norton customer
service telephone number Norton customer service usa Norton customer support
Norton customer support number1800810810 Norton customer support phone Norton
customer support phone number Norton customer service number Norton customer
service number usa Norton customer service phone number1800810810 Norton
customer support number Norton customer support phone number Norton free phone
support Norton gold support phone number1800810810 Norton help desk phone
number Norton help phone number Norton helpline Norton helpline phone number
Norton hotline customer service phone number Norton internet security customer
service1800810810 Norton internet security phone number Norton internet
security phone number in usa Norton lab usa customer service Norton labs usa
customer serviceNorton Norton phone number Norton phone number customer service
Norton phone number support Norton phone number tech support Norton phone
number technical support Norton phone numbers customer support Norton phone
support Norton phone support number Norton phone number customer service Norton
phone number support Norton phone number tech support Norton phone number usa
Norton security contact phone number Norton security phone number Norton
security support phone number Norton software customer service Norton software
customer service number Norton support center Norton support contact number
Norton support email address Norton support phone number Norton support
telephone number1800810810 Norton support number usa Norton support phone
number Norton support phone number usa Norton tech support Norton tech support
center Norton tech support contact Norton tech support number Norton tech
support number usa Norton tech support phone Norton tech support phone number
Norton tech support phone number free Norton tech support number Norton tech
support number usa Norton tech support phone numberv Norton technical support
Norton technical support number Norton technical support phone number Norton
technical support phone number usa Norton technical support reviews Norton
technical support usa Norton technical support phone number Norton technical
support number Norton technical support number toll free number Norton
technical support number usa Norton technical support phone number Norton
technical support phone number usa Norton technologies phone number Norton
telephone number Norton telephone support number Norton toll free number Norton
toll free number usa Norton usa customer care for tech support Norton usa
customer service Norton usa phone number Norton antivirus customer service
phone number Norton antivirus customer service phone number Norton antivirus
customer support phone number Norton antivirus customer support phone number
Norton antivirus technical support number Norton customer service phone number
usa Norton internet security support phone number Norton.com customer service
Norton antivirus antispyware 2011 Norton antivirus customer support Norton
antivirus serial key Norton antivirus serial number Norton antivirus support
Norton antivirus technical support Norton business support Norton contact
support Norton customer care number Norton customer service 800 Norton customer
service number Norton customer service phone number Norton customer service
telephone number Norton customer support Norton grentry non payment1800810810
Norton helpline support number Norton internet security customer service Norton
internet security technical support Norton oem customer service Norton pc
cillin technical support Norton phone support Norton removal tool download
Norton subscription renewal1800810810 Norton support contact Norton support
hotline Norton support phone number Norton tech support phone number1800810810
Norton technical support Norton technical support chat Norton technical support
phone number Norton technical support phone number usa1800810810 Norton
telephone number Norton titanium antivirus Norton titanium internet security
Norton titanium maximum Norton titanium maximum security1800810810 Norton
titanium problems Norton titanium removal tool Norton titanium reviews Norton
titanium support Norton virus removal service uninstall Norton smart surfing
for mac usa customer care number for Norton antivirus1800810810
>From gcc-bugs-return-534092-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 09:20:03 2016
Return-Path: <gcc-bugs-return-534092-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 29801 invoked by alias); 11 Aug 2016 09:20:03 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 29634 invoked by uid 48); 11 Aug 2016 09:19:50 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/66488] segfault on sizeof(long) < sizeof(void*) and large GCC memory usage
Date: Thu, 11 Aug 2016 09:20:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 5.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cf_gcctarget bug_status component cf_gcchost
Message-ID: <bug-66488-4-Oh7UNBPORG@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-66488-4@http.gcc.gnu.org/bugzilla/>
References: <bug-66488-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01428.txt.bz2
Content-length: 483

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66488

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Target|                            |i686-w64-mingw32
             Status|WAITING                     |NEW
          Component|lto                         |target
               Host|                            |x86_64-w64-mingw32
>From gcc-bugs-return-534093-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 09:24:57 2016
Return-Path: <gcc-bugs-return-534093-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 59446 invoked by alias); 11 Aug 2016 09:24:57 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 59300 invoked by uid 48); 11 Aug 2016 09:24:44 -0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/73450] [7 Regression] wrong code at -Os and above on x86_64-linux-gnu in both 32-bit and 64-bit modes (executable hangs)
Date: Thu, 11 Aug 2016 09:24:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc target_milestone short_desc everconfirmed
Message-ID: <bug-73450-4-BcX8CAy3kO@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73450-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73450-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01429.txt.bz2
Content-length: 1078

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73450

Martin Liška <marxin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-11
                 CC|                            |amker.cheng at gmail dot com,
                   |                            |marxin at gcc dot gnu.org
   Target Milestone|---                         |7.0
            Summary|wrong code at -Os and above |[7 Regression] wrong code
                   |on x86_64-linux-gnu in both |at -Os and above on
                   |32-bit and 64-bit modes     |x86_64-linux-gnu in both
                   |(executable hangs)          |32-bit and 64-bit modes
                   |                            |(executable hangs)
     Ever confirmed|0                           |1

--- Comment #1 from Martin Liška <marxin at gcc dot gnu.org> ---
Confirmed, started with r238983.
>From gcc-bugs-return-534094-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 09:30:00 2016
Return-Path: <gcc-bugs-return-534094-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 69512 invoked by alias); 11 Aug 2016 09:30:00 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 69425 invoked by uid 48); 11 Aug 2016 09:29:54 -0000
From: "ubizjak at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/66488] segfault on sizeof(long) < sizeof(void*) and large GCC memory usage
Date: Thu, 11 Aug 2016 09:30:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 5.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ubizjak at gmail dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-66488-4-fuOD0SKbup@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-66488-4@http.gcc.gnu.org/bugzilla/>
References: <bug-66488-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01430.txt.bz2
Content-length: 340

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66488

--- Comment #10 from Uroš Bizjak <ubizjak at gmail dot com> ---
(In reply to Stanisław Halik from comment #9)
> I'm sorry to be bumping this issue but it's been months.

Patches should be posted to gcc-patches mailing list, as explained in
https://gcc.gnu.org/contribute.html
>From gcc-bugs-return-534096-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 09:31:42 2016
Return-Path: <gcc-bugs-return-534096-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 71248 invoked by alias); 11 Aug 2016 09:31:42 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 71090 invoked by uid 48); 11 Aug 2016 09:31:29 -0000
From: "t.artem at mailcity dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/58306] Broken profiling for unrar sources: error: corrupted value profile: value profile counter (X out of Y) inconsistent with basic-block count
Date: Thu, 11 Aug 2016 09:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: t.artem at mailcity dot com
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-58306-4-FIPiNkD6ft@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-58306-4@http.gcc.gnu.org/bugzilla/>
References: <bug-58306-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01432.txt.bz2
Content-length: 695

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58306

--- Comment #31 from Artem S. Tashkinov <t.artem at mailcity dot com> ---
(In reply to Andreas Schwab from comment #30)
> /daten/aranym/gcc/gcc-20160811/Build/gcc/testsuite/g++/../../libgcov.
> a(_gcov_time_profiler.o): In function `__gcov_time_profiler_atomic':
> /daten/aranym/gcc/gcc-20160811/Build/m68k-linux/libgcc/../../../libgcc/
> libgcov-profiler.c:352: undefined reference to `__atomic_fetch_add_8'
> collect2: error: ld returned 1 exit status
> compiler exited with status 1
> FAIL: g++.dg/other/pr55650.C  -std=gnu++98 (test for excess errors)

-march=i686 (or higher) should help but it certainly warrants some attention.
>From gcc-bugs-return-534095-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 09:31:42 2016
Return-Path: <gcc-bugs-return-534095-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 71237 invoked by alias); 11 Aug 2016 09:31:42 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 71125 invoked by uid 48); 11 Aug 2016 09:31:31 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/73457] Missed optimizations: count_if on std::array of constants.
Date: Thu, 11 Aug 2016 09:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc everconfirmed
Message-ID: <bug-73457-4-5AqoXa6TVH@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73457-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73457-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01431.txt.bz2
Content-length: 1236

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73457

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-11
                 CC|                            |rguenth at gcc dot gnu.org
     Ever confirmed|0                           |1

--- Comment #1 from Richard Biener <rguenth at gcc dot gnu.org> ---
Confirmed.  This is unrolling happening too late or DOM not being able to
simplify the reads from the initializer:

  <bb 2>:
  MEM[(event *)&events] = { 0, 1, 0, 0 };
  _3 = MEM[(const event *)&events];
  _ifc__2 = _3 == 0 ? 1 : 0;
  _8 = MEM[(const event *)&events + 4B];
  _ifc__11 = _8 == 0 ? 1 : 0;
  __n_10 = _ifc__2 + _ifc__11;
  _70 = MEM[(const event *)&events + 8B];
  _ifc__71 = _70 == 0 ? 1 : 0;
  __n_72 = __n_10 + _ifc__71;
  _30 = MEM[(const event *)&events + 12B];
  _ifc__31 = _30 == 0 ? 1 : 0;
  __n_32 = _ifc__31 + __n_72;
  _6 = (int) __n_32;
  events ={v} {CLOBBER};
  return _6;

I think we have a dup of this somewhere.
>From gcc-bugs-return-534097-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 09:33:46 2016
Return-Path: <gcc-bugs-return-534097-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 1967 invoked by alias); 11 Aug 2016 09:33:45 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 1822 invoked by uid 48); 11 Aug 2016 09:33:33 -0000
From: "amker at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/73450] [7 Regression] wrong code at -Os and above on x86_64-linux-gnu in both 32-bit and 64-bit modes (executable hangs)
Date: Thu, 11 Aug 2016 09:33:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: amker at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-73450-4-0qQnH6684q@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73450-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73450-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01433.txt.bz2
Content-length: 368

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73450

amker at gcc dot gnu.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |amker at gcc dot gnu.org

--- Comment #2 from amker at gcc dot gnu.org ---
Same issue as PR72817.
>From gcc-bugs-return-534098-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 09:35:25 2016
Return-Path: <gcc-bugs-return-534098-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 4355 invoked by alias); 11 Aug 2016 09:35:24 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 4107 invoked by uid 48); 11 Aug 2016 09:35:12 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73456] [7 regression][concepts] ICE in non_atomic_constraint_p, at cp/logic.cc:315
Date: Thu, 11 Aug 2016 09:35:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P1
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: priority cc cf_known_to_fail
Message-ID: <bug-73456-4-5z37gxOl0l@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73456-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73456-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01434.txt.bz2
Content-length: 552

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73456

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P3                          |P1
                 CC|                            |jason at gcc dot gnu.org
      Known to fail|6.2.0                       |6.1.1

--- Comment #2 from Richard Biener <rguenth at gcc dot gnu.org> ---
Ick.  Jason, any chance you can look into this before Monday?
>From gcc-bugs-return-534099-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 09:38:14 2016
Return-Path: <gcc-bugs-return-534099-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 7232 invoked by alias); 11 Aug 2016 09:38:13 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 7161 invoked by uid 48); 11 Aug 2016 09:38:06 -0000
From: "ANKITADESAI00007 at GMAIL dot COM" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73579] New: +++1-800-898-3057---@@@Norton phone number Norton support phone number Norton technical support phone number
Date: Thu, 11 Aug 2016 09:38:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ANKITADESAI00007 at GMAIL dot COM
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73579-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01435.txt.bz2
Content-length: 8533

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73579

            Bug ID: 73579
           Summary: +++1-800-898-3057---@@@Norton phone number Norton
                    support phone number Norton technical support phone
                    number
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: ANKITADESAI00007 at GMAIL dot COM
  Target Milestone: ---

UK..1 888-936-5569++ Norton 360 support phone number om Norton tech support
phone number Norton 360 Tech Support Number
UK..1 800-810-1018++ Norton 360 support phone number om Norton tech support
phone number Norton 360 Tech Support Number
Australia>>>> AUS-1 800-059-007++ Norton 360 support phone number Norton tech
support phone number  Norton 360 Tech Support Number

AUS  >>>> AUS-1 800-059-007++ Norton 360 support phone number AUS-1
800-059-007AUS/canada Norton 360 Tech Support Number @@!1-800-059-007;!!Norton
360 Support Number

Norton Live Support and Help‎ 18(00-059-007 @@ Norton tech support phone number
Norton Live Support and Help‎ 18(00-059-007 @@ Norton tech support phone number
Norton Live Support and Help‎ 18(00-059-007 Norton 360 support phone number AUS
AUS Canada>>>> AUS-1 800-059-007++ Norton 360 support phone number AUS-1
800-059-007AUS/canada Norton 360 Tech Support Number @@!1-800-059-007;!!Norton
360 Support Number
WikiGenes- @+++1800-059-007++000Norton 360 support phone
number1800059007AUS/canada
Norton antivirus technical support phone number 1.800-059-007
hdfc toll free customer care number(((!1.800-059-007)) Norton 360 Tech Support
Number @@!1-800-059-007!! Norton 360 Support Number
Norton toll free customer care number 1.800-059-007
Norton toll free customer care number 1.800-059-007
Norton toll free customer care number 1.800-059-007
Norton toll free customer care number 1.800-059-007>>>>>
Norton technical support phone number ((1.800-059-007))
Norton technical support number 1.800-059-007
Norton technical support number 1.800-059-007
symantec technical support number 1.800-059-007
Norton antivirus technical support number 1.800-059-007
Norton support phone number 1.800-059-007
Norton locations Norton 360 Tech Support Number @@!1-800-059-007!! Norton 360
Support Number Norton 360 Tech Support Number @@!1-800-059-007!! Norton 360
Support Number
Norton customer service
Norton antivirus customer care__Norton Support phone number 1.800-059-007
Norton customer support phone number 1.800-059-007
Norton customer support phone number 1.800-059-007
Norton antivirus customer support phone number 1.800-059-007Norton antivirus
customer service phone number 1.800-059-007
Norton antivirus technical support phone number 1.800-059-007
Norton antivirus tech support phone number 1.800-059-007
Norton antivirus phone number 1.800-059-007 Norton 360 Tech Support Number
@@!1-800-059-007!! Norton 360 Support Number
Norton security center phone number 1.800-059-007
Norton support telephone number 1.800-059-007
Norton 360 technical support phone number 1.800-059-007
symantec technical support phone number 1.800-059-007
Norton tech support phone number 1.800-059-007 Norton 360 Tech Support Number
@@!1-800-059-007!! Norton 360 Support Number
apple technical support phone number 1.800-059-007 AUS
microsoft technical support phone number 1.800-059-007 AUS
gmail technical support phone number 1.800-059-007 AUS
kaspersky technical support phone number 1.800-059-007 AUS
lenovo technical support phone number 1.800-059-007 AUS
epson technical support phone number 1.800-059-007 AUS
Norton technical support phone number 1.800-059-007 Norton 360 Tech Support
Number @@!1-800-059-007!! Norton 360 Support Number
Norton AntiVirus Customer Service Phone Number #1: 800-059-007
Norton Phone number 1-800-059-007 Norton 360 phone number Norton 360 support
phone number
Free~* C@ll 1.800-059-007 Norton 360 technical support phone number AUS
1.800-059-007 Norton 360 technical support phone number Norton free call
~* C@ll 1.800-059-007 Norton 360 technical support phone number AUS
1.800-059-007 Norton 360 technical support phone number Norton free call Norton
360 Tech Support Number @@!1-800-059-007!! Norton 360 Support Number
PHONE support AUS @1.800-059-007 Norton antivirus technical support phone
number
Norton locations
Norton online support
Norton Support phone number 1.800-059-007
Norton customer care Norton tech support phone number 1.800-059-007
Norton tech support phone number 1.800-059-007
Norton antivirus tech support phone number 1.800-059-007
Norton locations Norton 360 Tech Support Number @@!1-800-059-007!! Norton 360
Support Number
Norton Support phone number 1.800-059-007
service Norton com
Norton login
Norton technical support phone number 1.800-059-007
Norton customer service
Norton Support phone number 1.800-059-007
Norton support telephone number 1.800-059-007
Norton support phone number 1.800-059-007
Norton antivirus support phone number 1.800-059-007 Norton 360 Tech Support
Number @@!1-800-059-007!! Norton 360 Support Number
Norton antivirus tech support phone number 1.800-059-007
Norton antivirus customer service phone number 1.800-059-007
Norton 360 technical support phone number 1.800-059-007
symantec technical support phone number 1.800-059-007
Norton technical support phone number 1.800-059-007
Norton customer service telephone number 1.800-059-007
Norton antivirus phone number 1.800-059-007
Norton antivirus customer service phone number 1.800-059-007
Norton antivirus customer service Support Norton 360 Tech Support Number
@@!1-800-059-007!! Norton 360 Support Number
Norton antivirus phone number 1.800-059-007
Norton phone number 1.800-059-007 cancel subscription
Norton technical support phone number 1.800-059-007
Norton 800 phone number 1.800-059-007
snapdeal toll free customer care number 1.800-059-007
sbi toll free customer care number 1.800-059-007
airtel toll free customer care number 1.800-059-007
Norton customer service number 1.800-059-007
Norton call center Norton 360 Tech Support Number @@!1-800-059-007!! Norton 360
Support Number
Norton customer service email address
Norton customer care no Norton 360 Tech Support Number @@!1-800-059-007!!
Norton 360 Support Number
call Norton support
chat with Norton support
Norton customer support
Norton antivirus customer service number 1.800-059-007
Norton Norton 360 Tech Support Number @@!1-800-059-007!! Norton 360 Support
Number
Norton call center
Norton hq
Norton office locations
Norton support site
Norton telephone number 1.800-059-007 for customer support
Norton customer service contact number 1.800-059-007
Norton customer care
Norton toll free number 1.800-059-007
Norton security contact number 1.800-059-007
contact Vipre
Norton headquarters Norton 360 Tech Support Number @@!1-800-059-007!! Norton
360 Support Number
Norton customer service chat
Norton customer service telephone number 1.800-059-007
Norton Support phone number 1.800-059-007
Norton customer support
Norton customer service refund
Norton login
Norton locations
Norton customer service number 1.800-059-007 uk
Norton locations
Norton customer service email address
Norton support site Norton 360 Tech Support Number @@!1-800-059-007!! Norton
360 Support Number
Norton technical support phone number 1.800-059-007
Norton technical support live chat
Norton technical support email address
Norton technical support number 1.800-059-007
Norton technical support number 1.800-059-007 Norton 360 Tech Support Number
@@!1-800-059-007!! Norton 360 Support Number
symantec technical support number 1.800-059-007
Norton antivirus technical support number 1.800-059-007
Norton customer support phone number 1.800-059-007
Norton customer support number 1.800-059-007
Norton customer support number 1.800-059-007 Norton 360 Tech Support Number
@@!1-800-059-007!! Norton 360 Support Number
Norton antivirus customer support number 1.800-059-007
Norton locations Norton 360 Tech Support Number @@!1-800-059-007!! Norton 360
Support Number
Norton Support phone number 1.800-059-007
Norton corporate phone number 1.800-059-007 Norton 360 Tech Support Number
@@!1-800-059-007!! Norton 360 Support Number
Norton customer service Support
Norton technical support phone number 1.800-059-007
Norton tech support phone number 1.800-059-007
Norton tech support number 1.800-059-007
Norton tech support number 1.800-059-007 FREE
>From gcc-bugs-return-534100-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 09:44:42 2016
Return-Path: <gcc-bugs-return-534100-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 27304 invoked by alias); 11 Aug 2016 09:44:42 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 27228 invoked by uid 48); 11 Aug 2016 09:44:36 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/73285] perhaps avoid duplication?
Date: Thu, 11 Aug 2016 09:44:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on everconfirmed bug_severity
Message-ID: <bug-73285-4-0bkSkz9SqL@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73285-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73285-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01436.txt.bz2
Content-length: 614

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73285

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |missed-optimization
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-11
     Ever confirmed|0                           |1
           Severity|normal                      |enhancement

--- Comment #1 from Richard Biener <rguenth at gcc dot gnu.org> ---
Confirmed.
>From gcc-bugs-return-534101-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 09:45:53 2016
Return-Path: <gcc-bugs-return-534101-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 31132 invoked by alias); 11 Aug 2016 09:45:52 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 31045 invoked by uid 48); 11 Aug 2016 09:45:40 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/73142] [5/6 Regression] Reading a namelist fails - my code worked until 4.8.2
Date: Thu, 11 Aug 2016 09:45:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: jvdelisle at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: priority target_milestone short_desc
Message-ID: <bug-73142-4-GDciIqb50z@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73142-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73142-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01437.txt.bz2
Content-length: 563

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73142

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P3                          |P4
   Target Milestone|---                         |5.5
            Summary|[4.9/5/6 Regression]        |[5/6 Regression] Reading a
                   |Reading a namelist fails -  |namelist fails - my code
                   |my code worked until 4.8.2  |worked until 4.8.2
>From gcc-bugs-return-534102-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 09:47:03 2016
Return-Path: <gcc-bugs-return-534102-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 32642 invoked by alias); 11 Aug 2016 09:47:02 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 32431 invoked by uid 48); 11 Aug 2016 09:46:49 -0000
From: "tnu at i dot ilkor.com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/73584] New: Outlook support number 1-800-810-1018 Microsoft Office Technical Support Number
Date: Thu, 11 Aug 2016 09:47:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: tnu at i dot ilkor.com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73584-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01438.txt.bz2
Content-length: 15185

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73584

            Bug ID: 73584
           Summary: Outlook support number 1-800-810-1018 Microsoft Office
                    Technical Support Number
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: tnu at i dot ilkor.com
  Target Milestone: ---

Outlook support number 1-800-810-1018 Microsoft Office Technical Support Number
`Outlook support number 1-800-810-1018 Microsoft Office Technical Support
Number
USA Toll Free: 1-800-810-1018 (UK) 1-800-445-2790 (CANADA+USA) for Microsoft
related technical issues. Outlook,Office, Defender, Antivirus, Microsoft
Azure,Microsoft Servers,Windows 7 / 8 /10 Note:- We are third party independent
Microsoft tech support service provider.
Instant Help microsoft outlook Express customer service Hotline Phone number,
outlook Express support Hotline Phone number, microsoft outlook Express
technical support Hotline Phone number
Look Help microsoft outlook Express customer service Hotline Phone number,
outlook Express support Hotline Phone number, microsoft outlook Express
technical support Hotline Phone number
Outlook Customer Service Number, Outlook Customer Support Phone Number in
florida-california
()

`Outlook support number 1-800-810-1018 Microsoft Office Technical Support
Number
`Outlook support number 1-800-810-1018 Microsoft Office Technical Support
Number
Microsoft Office Technical Support Number 1-800-810-1018
Toll Free: 1-800-810-1018 (USA) 1-877-424-6647 (CANADA) for Microsoft related
technical issues. Outlook,Office, Defender, Antivirus, Microsoft
Azure,Microsoft Servers,Windows 7 / 8 /10 Note:- We are third party independent
Microsoft tech support service provider.
Instant Help microsoft outlook Express customer service Hotline Phone number,
outlook Express support Hotline Phone number, microsoft outlook Express
technical support Hotline Phone number
Look Help microsoft outlook Express customer service Hotline Phone number,
outlook Express support Hotline Phone number, microsoft outlook Express
technical support Hotline Phone number
Outlook Customer Service Number, Outlook Customer Support Phone Number in
florida-california
()

Microsoft Office Technical Support Number 1-800-810-1018
Microsoft Office Technical Support Number 1-800-810-1018

Microsoft Office Technical Support Number 1-800-810-1018

Toll Free: 1-800-810-1018 (USA) 1-877-424-6647 (CANADA) for Microsoft related
technical issues. Outlook,Office, Defender, Antivirus, Microsoft
Azure,Microsoft Servers,Windows 7 / 8 /10 Note:- We are third party independent
Microsoft tech support service provider.
Instant Help microsoft outlook Express customer service Hotline Phone number,
outlook Express support Hotline Phone number, microsoft outlook Express
technical support Hotline Phone number
Look Help microsoft outlook Express customer service Hotline Phone number,
outlook Express support Hotline Phone number, microsoft outlook Express
technical support Hotline Phone number
Outlook Customer Service Number, Outlook Customer Support Phone Number in
florida-california
()
Outlook Customer Service Number, Outlook Customer Support Phone Number,
here.USA all tech support Outlook Customer Care Telephone Number USA Outlook
tech support number, Outlook customer support number, Outlook customer support
phone number, Outlook customer service phone number, Outlook Payrol.l customer
service phone number , Outlook tech support phone number.

Microsoft outlook email 365
office 365 email outlook
office 365 email outlook 2013
office 365 email outlook 2007
office 365 email outlook 2003
office 365 email outlook 2010
outlook 365 email settings
microsoft outlook Express customer service
outlook Express support Phone number,
microsoft outlook Express technical support Phone number
outlook express phone number customer service
outlook express problems
free outlook express support phone number
outlook express online support
microsoft tech support phone number
microsoft technical support
microsoft outlook support number
microsoft support number
outlook express support phone number
outlook express customer support phone number
outlook express tech support phone number
outlook express customer service phone number
outlook express error number 0x800c0133
microsoft outlook Express technical support Phone number.pdfmicrosoft outlook
Express customer service
microsoft outlook Express customer service number
microsoft outlook Express help
microsoft outlook Express help and support number
microsoft outlook Express help phone number
Microsoft outlook Express phone number
microsoft outlook Express search not working
microsoft outlook Express server
microsoft outlook Express setup
microsoft outlook Express sign in
microsoft outlook Express sign in support number
microsoft outlook Express sign up
microsoft outlook Express signature
microsoft outlook Express signature support number
microsoft outlook Express stuck in outbox
http://www.arcgis.co...e414283a1f04d89
microsoft outlook Express technical issues and conflict
microsoft outlook Express technical issues and conflict support phone number
microsoft outlook Express technical issues and need to close
microsoft outlook Express technical issues and need to close tech support
number
microsoft outlook Express technical issues and service
microsoft outlook Express technical issues and service phone number
microsoft outlook Express technical issues and solution contact number
microsoft outlook Express technical issues and solution phone number
microsoft outlook Express technical issues and solution ppt
microsoft outlook Express technical issues and solutions
microsoft outlook Express technical issues and solutions pdf
microsoft outlook Express technical issues and solutions tech support phone
number
microsoft outlook Express technical issues company service
microsoft outlook Express technical issues company service phone number
microsoft outlook Express technical issues contact number
microsoft outlook Express technical issues contact person
microsoft outlook Express technical issues contact phone number
microsoft outlook Express technical issues customer support
microsoft outlook Express technical issues customer support phone number
microsoft outlook Express technical issues phone number
microsoft outlook Express technical issues problem solving
microsoft outlook Express technical issues problem solving phone number
microsoft outlook Express technical issues services
microsoft outlook Express technical issues services phonen number
microsoft outlook Express technical issues support
microsoft outlook Express technical issues support number
microsoft outlook Express technical issues support number usa
microsoft outlook Express technical issues support phone number
microsoft outlook Express technical issues support problem solving
microsoft outlook Express technical issues support usa
microsoft outlook Express technical issues today
microsoft outlook Express technical issues with Mail
microsoft outlook Express technical issues with phone number
microsoft outlook Express technical issues with phone
microsoft outlook Express technical problems
microsoft outlook Express technical questions
microsoft outlook Express technical support
microsoft outlook Express technical support australia
microsoft outlook Express technical support canada
microsoft outlook Express technical support contact number
microsoft outlook Express technical support number
Microsoft outlook Express Technical Support Number
microsoft outlook Express technical support number australia
Microsoft outlook Express Technical Support Number UK
Microsoft outlook Express technical support number us
microsoft outlook Express technical support number usa
microsoft outlook Express technical support number
microsoft outlook Express technical support phone number
microsoft outlook Express technical support phone number usa
microsoft outlook Express technical support telephone number
microsoft outlook Express technical support telephone number
microsoft outlook Express technical support toll free number
microsoft outlook Express telephone number
Microsoft outlook Express telephone number us
microsoft outlook Express telephone support
microsoft outlook Express telephone tech support
microsoft outlook Express test help
microsoft outlook Express test questions
microsoft outlook Express toolbar
microsoft outlook Express tools
microsoft outlook Express training
microsoft outlook Express trouble sending
microsoft outlook Express trouble shooting
microsoft outlook Express troubleshoot
microsoft outlook Express troubleshooting
microsoft outlook Express troubleshooting 2007
microsoft outlook Express troubleshooting 2010
microsoft outlook Express troubleshooting 2013
microsoft outlook Express troubleshooting phone number
microsoft outlook Express troubleshooting windows 7
microsoft outlook Express tutorial
microsoft outlook Express uninstall completely
microsoft outlook Express update
microsoft outlook Express update problems
microsoft outlook Express updates
microsoft outlook Express updates 2014
microsoft outlook Express upgrade
microsoft outlook Express web
microsoft outlook Express web access
microsoft outlook Express web access designating Mail
microsoft outlook Express web access help
microsoft outlook Express web access logon
microsoft outlook Express web access logon e-account
microsoft outlook Express web access logon website
microsoft outlook Express web access updates
microsoft outlook Express web app
microsoft outlook Express web app help
microsoft outlook Express web app sign in
microsoft outlook Express web name error
microsoft outlook Express webmail
microsoft outlook Express will not open
microsoft outlook Express will not open error message
microsoft outlook Express will not send Mail
microsoft outlook Express will not send Mails
microsoft outlook Express windows 7
microsoft outlook Express windows 8 mega million
microsoft outlook Express windows live mail
microsoft outlook Express won t open
microsoft outlook Express won't open
microsoft outlook Express won't send Mails
microsoft outlook Express corporate outlook Express phone number
microsoft outlook Express.com
microsoft outlook Express.com help
microsoft outlook Express.com support
microsoft outlook Express.exe
microsoft outlook Express/technical support
microsoft outlook Express: cannot open the outlook Express window
microsoft outlook Express07
microsoft outlook Express365
microsoft outlook Expresshelp
microsoft outlook Expresss
microsoft msn outlook Express customer service contact number
microsoft msn outlook Express customer service phone number
microsoft msn outlook Express customer service telephone number
microsoft msn outlook Express customer service toll free number
microsoft outlook Express customer service phone number usa
microsoft outlook Express 10 help and support phone number ,
microsoft outlook Express 2003 help and support number ,
microsoft outlook Express 2003 support phone numer ,
microsoft outlook Express 2007 technical support phone number
microsoft outlook Express 2010 help and support numeber ,
microsoft outlook Express 2010 outlook Express help
microsoft outlook Express 2010 technical support phone number
microsoft outlook Express 2013 technical support phone number usa
microsoft outlook Express calendar help technical suppor phone number,
microsoft outlook Express corporate phone number
microsoft outlook Express corporation phone number
microsoft outlook Express customer care phone number
microsoft outlook Express customer phone number
microsoft outlook Express customer service and support
microsoft outlook Express customer service and support phone number
microsoft outlook Express customer service contact number
microsoft outlook Express customer service Mail
microsoft outlook Express customer service number
microsoft outlook Express customer service phone number
microsoft outlook Express customer service phone number united states
microsoft outlook Express customer services phone number
microsoft outlook Express customer support
microsoft outlook Express customer support Mail
microsoft outlook Express customer support number
microsoft outlook Express access tech seupport phone nubmmer ,
microsoft outlook Express help and support number ,
microsoft outlook Express recovery technical suppor phonre number,
microsoft outlook Express help line
microsoft outlook Express outlook Express 2003 support
microsoft outlook Express outlook Express 2010 help
microsoft outlook Express tech support
microsoft outlook Express tech support phone number
microsoft outlook Express tech support phone numbers
microsoft outlook Express technical assistance By Mail
microsoft outlook Express technical help and suppport phone number ,
microsoft outlook Express technical support
microsoft outlook Express technical support for iphone
microsoft outlook Express technical support for iphone phone number
microsoft outlook Express technical support for windows 7
microsoft outlook Express technical support for windows 7 phone number
microsoft outlook Express technical support by chat
microsoft outlook Express technical support By Free phone number
microsoft outlook Express technical support for android
microsoft outlook Express technical support for android phone number
microsoft outlook Express technical support for ios
microsoft outlook Express technical support for ios phone number
microsoft outlook Express technical support for ipad
microsoft outlook Express technical support for ipad phone number
microsoft outlook Express technical support for windows 10
microsoft outlook Express technical support for windows 10 phone number
microsoft outlook Express technical support for windows 8
microsoft outlook Express technical support for windows 8 phone number
microsoft outlook Express technical support for windows xp
microsoft outlook Express technical support for windows xp phone number
microsoft outlook Express technical support for xp
microsoft outlook Express technical support phone number
microsoft outlook Express technical support telephone number
outlook Express 2007 support
outlook Express 2007 yahoo mails settings
outlook Express 2010 customer service-telephone-number
outlook Express 2010 support
outlook Express 2010 support phone number
outlook Express 2010 technical support
outlook Express 2010 technical support phone number
outlook Express 2011 support
outlook Express 2013 support phone number
outlook Express 365 | outlook Express 365 login | outlook Express 365 help
outlook Express 365 billing support phone number
outlook Express 365 business support phone number
outlook Express 365 customer service phone number
outlook Express 365 customer support phone number
outlook Express 365 enterprise support | outlook Express 365 home support
outlook Express 365 helpline | microsoft 365 help
outlook Express 365 Home Premium Help
outlook Express 365 home support | outlook Express 365 support contact number
outlook Express 365 phone
>From gcc-bugs-return-534103-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 09:47:24 2016
Return-Path: <gcc-bugs-return-534103-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 33664 invoked by alias); 11 Aug 2016 09:47:23 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 33468 invoked by uid 48); 11 Aug 2016 09:47:11 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/72866] [7 Regression] Compile time hog w/ -O3 (-Ofast)
Date: Thu, 11 Aug 2016 09:47:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: compile-time-hog
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-72866-4-gOswYgiVzE@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72866-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72866-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01439.txt.bz2
Content-length: 442

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72866

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |7.0

--- Comment #2 from Richard Biener <rguenth at gcc dot gnu.org> ---
Was kind-of expected but what exactly is the bad algorithm compile-time wise?
>From gcc-bugs-return-534104-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 09:49:48 2016
Return-Path: <gcc-bugs-return-534104-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 36223 invoked by alias); 11 Aug 2016 09:49:48 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 36125 invoked by uid 48); 11 Aug 2016 09:49:35 -0000
From: "tnu at i dot ilkor.com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73588] New: Official 18002613851 outlook Express 365 phone support | outlook Express 365 support phone number
Date: Thu, 11 Aug 2016 09:49:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: tnu at i dot ilkor.com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73588-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01440.txt.bz2
Content-length: 11532

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73588

            Bug ID: 73588
           Summary: Official 18002613851 outlook Express 365 phone support
                    | outlook Express 365 support phone number
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: tnu at i dot ilkor.com
  Target Milestone: ---

Official 18002613851 outlook Express 365 phone support | outlook Express 365
support phone number


Official 18002613851 outlook Express 365 phone support | outlook Express 365
support phone number
outlook Express 365 phone support | outlook Express 365 support phone number
outlook Express 365 sales phone number
outlook Express 365 sign in | outlook Express 365 sign in assistant
outlook Express 365 support | outlook Express 365 support phone number
outlook Express 365 support phone
outlook Express 365 support phone number
outlook Express 365 support phone number us
outlook Express 365 support phone number usa
outlook Express 365 support phone numbers
outlook Express 365 tech support phone number
outlook Express 365 tech support phone number us
outlook Express 365 Technical Support
outlook Express 365 technical support phone number
outlook Express 365 technical support phone number us
outlook Express contact number
outlook Express contact phone number
outlook Express customer care number
outlook Express Customer Service
outlook Express customer service contact number
outlook Express customer service number
outlook Express customer service number us
outlook Express Customer Service Number usa
outlook Express customer service phone
outlook Express customer service phone number
outlook Express customer service telephone number
outlook Express Customer Service usa
outlook Express customer support
outlook Express customer support number
outlook Express customer support phone number
outlook Express contact number
outlook Express Customer Service Number
outlook Express customer service phone number
outlook Express help number
outlook Express Helpline
outlook Express phone number
outlook Express support
outlook Express support contact number
outlook Express support number
outlook Express support phone number
outlook Express tech support
outlook Express tech support phone number
outlook Express configuration
outlook Express configuration for gmail
outlook Express Customer Service Phone Number
outlook Express Helpline
outlook Express question and answer
outlook Express support
outlook Express support phone number
outlook Express tech support
outlook Express tech support number
outlook Express tech support phone number
outlook Express tech support
outlook Express tech support number
outlook Express technical support
outlook Express technical support number
outlook Express technical support phone number
outlook Express technical support phone number
outlook Express for macintosh
outlook Express help number
outlook Express help phone number
outlook Express Helpline
outlook Express helpline number
outlook Express Helpline US
outlook Express mac configuration
outlook Express support
outlook Express microsoft 2007 configuration
outlook Express microsoft configuration
outlook Express microsoft exchange server configuration
outlook Express number
outlook Express online support
outlook Express Password Change
outlook Express Password Expired
outlook Express Password not Accepted
outlook Express Password Recovery
outlook Express Password Requirement
outlook Express Password Reset
outlook Express Password Settings
outlook Express phone number
outlook Express phone number us
outlook Express phone support
outlook Express support caontact number us
outlook Express support chat
outlook Express support contact number
outlook Express support Mail
outlook Express support number
outlook Express support number us
outlook Express support number usa
outlook Express support phone
outlook Express support phone number
outlook Express support phone number canada
outlook Express support telephone number
outlook Express Tech Support
outlook Express Tech Support Chat
outlook Express Tech Support Mail
outlook Express tech support for mac
outlook Express tech support forum
outlook Express tech support fro mac
outlook Express tech support number
outlook Express Tech Support Number Canada
outlook Express tech support number usa
outlook Express tech support phone number
outlook Express tech support telephone number
outlook Express techinacal support facebook
outlook Express techinacal support facebook page
outlook Express techincal support
outlook Express techincal support number
outlook Express techincal support phone number
outlook Express technical help and support phone number
outlook Express Technical Support
outlook Express technical support australia
outlook Express technical support contact number
outlook Express technical support Mail
outlook Express technical support facebook page
outlook Express technical support number
outlook Express technical support number usa
outlook Express Technical Support Phone Number
outlook Express technical support phone number us
outlook Express technical support phone number usa
outlook Express technical support phone number
outlook Express technical support phone
outlook Express technical support questions
outlook Express technical support support number usa
outlook Express technical support telephone number
outlook Express technical support us
outlook Express Technical Support Usa
outlook Express technical support
outlook Express technical suppot help and support phone number
outlook Express technical suppot questions
outlook Express technical suppot telephone number
outlook Express telephone number
outlook Express telephone support
outlook Express customer care number
outlook Express customer service contact number
outlook Express customer service contact number
outlook Express customer service contact number
outlook Express customer service phone number
outlook Express customer service phone number
outlook Express customer service phone number
outlook Express customer service telephone number
outlook Express customer service telephone number
outlook Express customer service telephone number
outlook Express customer service toll free number
outlook Express customer service toll free number
outlook Express customer service toll free number
outlook Express customer support
outlook Express customer support contact number
outlook Express customer support contact number
outlook Express customer support contact number
outlook Express customer support contact number
outlook Express customer support phone number
outlook Express customer support telephone number
outlook Express customer support telephone number
outlook Express customer support toll free number
outlook Express customer support toll free number
outlook Express help
outlook Express home student configuration process
outlook Express support Services
outlook Express tech help
outlook Express tech support

outlook phone number
outlook contact number
outlook support phone number
outlook help phone number
outlook not working
how to find contacts in outlook
outlook express problems
outlook helpline number
outlook com email
outlook com mail
contact outlook email support
outlook email support number
outlook mail support number
outlook help desk number

outlook customer service
outlook express
outlook express support
outlook mail support
outlook express email
outlook support
outlook 2013 extensions
outlook 2010 not working
contacts on outlook 2013
how to update phone number in Outlook
outlook problems
outlook technical support
contact outlook support
contact outlook
outlook contact number
outlook email help
outlook express problems
outlook email support
outlook support email
outlook express online support
microsoft outlook support
windows mail support
outlook express support phone number
outlook express support number
who owns outlook express
outlook explorer
0utlook express
outlook support phone number
outlook contact
outlook customer support
outlook customer service phone number
outlook help phone number
outlook troubleshooting
outlook com support
outlook com help
outlook tech support number
contact outlook email support
outlook help email
problems with outlook
outlook email
outlook com phone number
outlook phone support
outlook help
outlook express 6
outlook express mail
outlook express problems
outlook 2003
outlook express help
install outlook express
outlook troubleshooting
outlook problems
outlook express check email
outlook express 7
outlook support number
outlook technical support
outlook email help
email outlook express
outlook 6
outlook email support
outlook support email
reinstall outlook express
internet outlook
outlook 2010 support
outlook express update
outlook email setup
outlook customer support
outlook express xp
outlook customer service
update outlook express
outlook missing emails
outlook express email
outlook mail
outlook express 6
outlook express mail
install outlook express
outlook express problems
email outlook express
outlook express check email
outlook express 7
express outlook
outlook express 2010
outlook express help
0utlook express
outlook 6
outlook express update
outlook express support
outlook express 2007
outlook express xp
update outlook express
outlook ekspress
outlook express for xp
outlook express setup
fix outlook express
setting up outlook express
outlook express email setup
outlook express to outlook
outlook express email sign in
outlook express 8
outlook express win 7
outlook express troubleshooting
outlook 2004
outlook express down
outlook express setup download
outlook express to outlook com
outlook express is a
how do i open outlook express
import outlook express
how to access outlook express
new outlook mail account
hotmail com live mail
miss email
Outlook help centre
outlook mail
hotmail com support
hotmail com sign in email inbox
outlook mail support
domain live
outlook mail help
outlook mail sign in
hotmail domain
live com inbox
contact outlook mail support
email support
email help
outlook mail customer service
office outlook mail
my outlook mail
live outlook mail
outlook mail sign up
microsoftoutlook
web outlook mail
custom domain email
outlook mail service
live com email account
live domain email
outlok mail
check outlook mail
live email domain
custom domain
outlook mail client
outlookemail
sign up outlook mail
outlook Express tech support contact number
outlook Express tech support contact number
outlook Express tech support number
outlook Express tech support phone number
outlook Express tech support Services
outlook Express tech support telephone number
outlook Express tech support telephone number
outlook Express tech support toll free number
outlook Express tech support toll free number
outlook Express technical support
outlook Express technical support contact number
outlook Express technical support contact number
outlook Express technical support phone number
outlook Express technical support telephone number
outlook Express technical support toll free number
outlook Express technical support toll free number
outlook Express.com customer service phone number
outlook Express.com customer support
outlook Express.com customer support phone number
outlook Express.com help phone number
outlook Express.com phone number
outlook Express.com support number
outlook Express.com support phone number
outlook Express.com technical support
>From gcc-bugs-return-534105-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 09:50:12 2016
Return-Path: <gcc-bugs-return-534105-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 37215 invoked by alias); 11 Aug 2016 09:50:12 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 36926 invoked by uid 48); 11 Aug 2016 09:49:57 -0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/58306] Broken profiling for unrar sources: error: corrupted value profile: value profile counter (X out of Y) inconsistent with basic-block count
Date: Thu, 11 Aug 2016 09:50:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-58306-4-wELpBUbbTT@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-58306-4@http.gcc.gnu.org/bugzilla/>
References: <bug-58306-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01441.txt.bz2
Content-length: 850

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58306

--- Comment #32 from Martin Liška <marxin at gcc dot gnu.org> ---
(In reply to Andreas Schwab from comment #30)
> /daten/aranym/gcc/gcc-20160811/Build/gcc/testsuite/g++/../../libgcov.
> a(_gcov_time_profiler.o): In function `__gcov_time_profiler_atomic':
> /daten/aranym/gcc/gcc-20160811/Build/m68k-linux/libgcc/../../../libgcc/
> libgcov-profiler.c:352: undefined reference to `__atomic_fetch_add_8'
> collect2: error: ld returned 1 exit status
> compiler exited with status 1
> FAIL: g++.dg/other/pr55650.C  -std=gnu++98 (test for excess errors)

Sorry for the breakage, I misread that gcov_type is always 64-bit long. Thus,
having a system w/o memory load/store instructions of size 64-bit,
-fprofile-update=atomic must be disabled and libgcov should not have *_atomic
functions.
>From gcc-bugs-return-534106-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 09:59:02 2016
Return-Path: <gcc-bugs-return-534106-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 62446 invoked by alias); 11 Aug 2016 09:59:02 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 62339 invoked by uid 48); 11 Aug 2016 09:58:49 -0000
From: "morwenn29 at hotmail dot fr" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/69565] Heap operations could surely be faster
Date: Thu, 11 Aug 2016 09:59:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 5.3.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: morwenn29 at hotmail dot fr
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-69565-4-i8LzNslvAq@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69565-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69565-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01442.txt.bz2
Content-length: 541

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69565

--- Comment #3 from Morwenn <morwenn29 at hotmail dot fr> ---
It was a modified version of the following benchmark for sorting algorithms:
https://github.com/Morwenn/cpp-sort/blob/master/benchmarks/bench.cpp

I benchmarked the library's heap_sort (which is basically a copy-paste of
libc++'s make_heap + sort_heap) against the standard library's std::make_heap +
std::sort_heap. I was using MinGW with GCC 5.3 at the time, so the standard
functions corresponded to those in libstdc++.
>From gcc-bugs-return-534107-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 10:05:56 2016
Return-Path: <gcc-bugs-return-534107-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 74892 invoked by alias); 11 Aug 2016 10:05:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 74819 invoked by uid 48); 11 Aug 2016 10:05:43 -0000
From: "hau at e dot bege.ro" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/73599] New: UK..1 800-445-2790++ Norton 360 support phone number om Norton tech support phone number Norton 360 Tech Support Number
Date: Thu, 11 Aug 2016 10:05:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: hau at e dot bege.ro
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73599-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01443.txt.bz2
Content-length: 8537

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73599

            Bug ID: 73599
           Summary: UK..1 800-445-2790++ Norton 360 support phone number
                    om Norton tech support phone number Norton 360 Tech
                    Support Number
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: hau at e dot bege.ro
  Target Milestone: ---

UK..1 800-445-2790++ Norton 360 support phone number om Norton tech support
phone number Norton 360 Tech Support Number
UK..1 800-810-1018++ Norton 360 support phone number om Norton tech support
phone number Norton 360 Tech Support Number
Australia>>>> AUS-1 800-059-007++ Norton 360 support phone number Norton tech
support phone number  Norton 360 Tech Support Number

AUS  >>>> AUS-1 800-059-007++ Norton 360 support phone number AUS-1
800-059-007AUS/canada Norton 360 Tech Support Number @@!1-800-059-007;!!Norton
360 Support Number

Norton Live Support and Help‎ 18(00-059-007 @@ Norton tech support phone number
Norton Live Support and Help‎ 18(00-059-007 @@ Norton tech support phone number
Norton Live Support and Help‎ 18(00-059-007 Norton 360 support phone number AUS
AUS Canada>>>> AUS-1 800-059-007++ Norton 360 support phone number AUS-1
800-059-007AUS/canada Norton 360 Tech Support Number @@!1-800-059-007;!!Norton
360 Support Number
WikiGenes- @+++1800-059-007++000Norton 360 support phone
number1800059007AUS/canada
Norton antivirus technical support phone number 1.800-059-007
hdfc toll free customer care number(((!1.800-059-007)) Norton 360 Tech Support
Number @@!1-800-059-007!! Norton 360 Support Number
Norton toll free customer care number 1.800-059-007
Norton toll free customer care number 1.800-059-007
Norton toll free customer care number 1.800-059-007
Norton toll free customer care number 1.800-059-007>>>>>
Norton technical support phone number ((1.800-059-007))
Norton technical support number 1.800-059-007
Norton technical support number 1.800-059-007
symantec technical support number 1.800-059-007
Norton antivirus technical support number 1.800-059-007
Norton support phone number 1.800-059-007
Norton locations Norton 360 Tech Support Number @@!1-800-059-007!! Norton 360
Support Number Norton 360 Tech Support Number @@!1-800-059-007!! Norton 360
Support Number
Norton customer service
Norton antivirus customer care__Norton Support phone number 1.800-059-007
Norton customer support phone number 1.800-059-007
Norton customer support phone number 1.800-059-007
Norton antivirus customer support phone number 1.800-059-007Norton antivirus
customer service phone number 1.800-059-007
Norton antivirus technical support phone number 1.800-059-007
Norton antivirus tech support phone number 1.800-059-007
Norton antivirus phone number 1.800-059-007 Norton 360 Tech Support Number
@@!1-800-059-007!! Norton 360 Support Number
Norton security center phone number 1.800-059-007
Norton support telephone number 1.800-059-007
Norton 360 technical support phone number 1.800-059-007
symantec technical support phone number 1.800-059-007
Norton tech support phone number 1.800-059-007 Norton 360 Tech Support Number
@@!1-800-059-007!! Norton 360 Support Number
apple technical support phone number 1.800-059-007 AUS
microsoft technical support phone number 1.800-059-007 AUS
gmail technical support phone number 1.800-059-007 AUS
kaspersky technical support phone number 1.800-059-007 AUS
lenovo technical support phone number 1.800-059-007 AUS
epson technical support phone number 1.800-059-007 AUS
Norton technical support phone number 1.800-059-007 Norton 360 Tech Support
Number @@!1-800-059-007!! Norton 360 Support Number
Norton AntiVirus Customer Service Phone Number #1: 800-059-007
Norton Phone number 1-800-059-007 Norton 360 phone number Norton 360 support
phone number
Free~* C@ll 1.800-059-007 Norton 360 technical support phone number AUS
1.800-059-007 Norton 360 technical support phone number Norton free call
~* C@ll 1.800-059-007 Norton 360 technical support phone number AUS
1.800-059-007 Norton 360 technical support phone number Norton free call Norton
360 Tech Support Number @@!1-800-059-007!! Norton 360 Support Number
PHONE support AUS @1.800-059-007 Norton antivirus technical support phone
number
Norton locations
Norton online support
Norton Support phone number 1.800-059-007
Norton customer care Norton tech support phone number 1.800-059-007
Norton tech support phone number 1.800-059-007
Norton antivirus tech support phone number 1.800-059-007
Norton locations Norton 360 Tech Support Number @@!1-800-059-007!! Norton 360
Support Number
Norton Support phone number 1.800-059-007
service Norton com
Norton login
Norton technical support phone number 1.800-059-007
Norton customer service
Norton Support phone number 1.800-059-007
Norton support telephone number 1.800-059-007
Norton support phone number 1.800-059-007
Norton antivirus support phone number 1.800-059-007 Norton 360 Tech Support
Number @@!1-800-059-007!! Norton 360 Support Number
Norton antivirus tech support phone number 1.800-059-007
Norton antivirus customer service phone number 1.800-059-007
Norton 360 technical support phone number 1.800-059-007
symantec technical support phone number 1.800-059-007
Norton technical support phone number 1.800-059-007
Norton customer service telephone number 1.800-059-007
Norton antivirus phone number 1.800-059-007
Norton antivirus customer service phone number 1.800-059-007
Norton antivirus customer service Support Norton 360 Tech Support Number
@@!1-800-059-007!! Norton 360 Support Number
Norton antivirus phone number 1.800-059-007
Norton phone number 1.800-059-007 cancel subscription
Norton technical support phone number 1.800-059-007
Norton 800 phone number 1.800-059-007
snapdeal toll free customer care number 1.800-059-007
sbi toll free customer care number 1.800-059-007
airtel toll free customer care number 1.800-059-007
Norton customer service number 1.800-059-007
Norton call center Norton 360 Tech Support Number @@!1-800-059-007!! Norton 360
Support Number
Norton customer service email address
Norton customer care no Norton 360 Tech Support Number @@!1-800-059-007!!
Norton 360 Support Number
call Norton support
chat with Norton support
Norton customer support
Norton antivirus customer service number 1.800-059-007
Norton Norton 360 Tech Support Number @@!1-800-059-007!! Norton 360 Support
Number
Norton call center
Norton hq
Norton office locations
Norton support site
Norton telephone number 1.800-059-007 for customer support
Norton customer service contact number 1.800-059-007
Norton customer care
Norton toll free number 1.800-059-007
Norton security contact number 1.800-059-007
contact Vipre
Norton headquarters Norton 360 Tech Support Number @@!1-800-059-007!! Norton
360 Support Number
Norton customer service chat
Norton customer service telephone number 1.800-059-007
Norton Support phone number 1.800-059-007
Norton customer support
Norton customer service refund
Norton login
Norton locations
Norton customer service number 1.800-059-007 uk
Norton locations
Norton customer service email address
Norton support site Norton 360 Tech Support Number @@!1-800-059-007!! Norton
360 Support Number
Norton technical support phone number 1.800-059-007
Norton technical support live chat
Norton technical support email address
Norton technical support number 1.800-059-007
Norton technical support number 1.800-059-007 Norton 360 Tech Support Number
@@!1-800-059-007!! Norton 360 Support Number
symantec technical support number 1.800-059-007
Norton antivirus technical support number 1.800-059-007
Norton customer support phone number 1.800-059-007
Norton customer support number 1.800-059-007
Norton customer support number 1.800-059-007 Norton 360 Tech Support Number
@@!1-800-059-007!! Norton 360 Support Number
Norton antivirus customer support number 1.800-059-007
Norton locations Norton 360 Tech Support Number @@!1-800-059-007!! Norton 360
Support Number
Norton Support phone number 1.800-059-007
Norton corporate phone number 1.800-059-007 Norton 360 Tech Support Number
@@!1-800-059-007!! Norton 360 Support Number
Norton customer service Support
Norton technical support phone number 1.800-059-007
Norton tech support phone number 1.800-059-007
Norton tech support number 1.800-059-007
Norton tech support number 1.800-059-007 FREE
>From gcc-bugs-return-534108-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 10:08:31 2016
Return-Path: <gcc-bugs-return-534108-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 77813 invoked by alias); 11 Aug 2016 10:08:31 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 77126 invoked by uid 48); 11 Aug 2016 10:08:18 -0000
From: "hau at e dot bege.ro" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73602] New: UK..1 800-445-2790++ Webroot 360 support phone number om Webroot tech support phone number Webroot 360 Tech Support Number
Date: Thu, 11 Aug 2016 10:08:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: hau at e dot bege.ro
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73602-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01444.txt.bz2
Content-length: 8722

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73602

            Bug ID: 73602
           Summary: UK..1 800-445-2790++ Webroot 360 support phone number
                    om Webroot tech support phone number Webroot 360 Tech
                    Support Number
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: hau at e dot bege.ro
  Target Milestone: ---

UK..1 800-445-2790++ Webroot 360 support phone number om Webroot tech support
phone number Webroot 360 Tech Support Number
UK..1 800-810-1018++ Webroot 360 support phone number om Webroot tech support
phone number Webroot 360 Tech Support Number
Australia>>>> AUS-1 800-059-007++ Webroot 360 support phone number Webroot tech
support phone number  Webroot 360 Tech Support Number

AUS  >>>> AUS-1 800-059-007++ Webroot 360 support phone number AUS-1
800-059-007AUS/canada Webroot 360 Tech Support Number
@@!1-800-059-007;!!Webroot 360 Support Number

Webroot Live Support and Help‎ 18(00-059-007 @@ Webroot tech support phone
number
Webroot Live Support and Help‎ 18(00-059-007 @@ Webroot tech support phone
number
Webroot Live Support and Help‎ 18(00-059-007 Webroot 360 support phone number
AUS
AUS Canada>>>> AUS-1 800-059-007++ Webroot 360 support phone number AUS-1
800-059-007AUS/canada Webroot 360 Tech Support Number
@@!1-800-059-007;!!Webroot 360 Support Number
WikiGenes- @+++1800-059-007++000Webroot 360 support phone
number1800059007AUS/canada
Webroot antivirus technical support phone number 1.800-059-007
hdfc toll free customer care number(((!1.800-059-007)) Webroot 360 Tech Support
Number @@!1-800-059-007!! Webroot 360 Support Number
Webroot toll free customer care number 1.800-059-007
Webroot toll free customer care number 1.800-059-007
Webroot toll free customer care number 1.800-059-007
Webroot toll free customer care number 1.800-059-007>>>>>
Webroot technical support phone number ((1.800-059-007))
Webroot technical support number 1.800-059-007
Webroot technical support number 1.800-059-007
symantec technical support number 1.800-059-007
Webroot antivirus technical support number 1.800-059-007
Webroot support phone number 1.800-059-007
Webroot locations Webroot 360 Tech Support Number @@!1-800-059-007!! Webroot
360 Support Number Webroot 360 Tech Support Number @@!1-800-059-007!! Webroot
360 Support Number
Webroot customer service
Webroot antivirus customer care__Webroot Support phone number 1.800-059-007
Webroot customer support phone number 1.800-059-007
Webroot customer support phone number 1.800-059-007
Webroot antivirus customer support phone number 1.800-059-007Webroot antivirus
customer service phone number 1.800-059-007
Webroot antivirus technical support phone number 1.800-059-007
Webroot antivirus tech support phone number 1.800-059-007
Webroot antivirus phone number 1.800-059-007 Webroot 360 Tech Support Number
@@!1-800-059-007!! Webroot 360 Support Number
Webroot security center phone number 1.800-059-007
Webroot support telephone number 1.800-059-007
Webroot 360 technical support phone number 1.800-059-007
symantec technical support phone number 1.800-059-007
Webroot tech support phone number 1.800-059-007 Webroot 360 Tech Support Number
@@!1-800-059-007!! Webroot 360 Support Number
apple technical support phone number 1.800-059-007 AUS
microsoft technical support phone number 1.800-059-007 AUS
gmail technical support phone number 1.800-059-007 AUS
kaspersky technical support phone number 1.800-059-007 AUS
lenovo technical support phone number 1.800-059-007 AUS
epson technical support phone number 1.800-059-007 AUS
Webroot technical support phone number 1.800-059-007 Webroot 360 Tech Support
Number @@!1-800-059-007!! Webroot 360 Support Number
Webroot AntiVirus Customer Service Phone Number #1: 800-059-007
Webroot Phone number 1-800-059-007 Webroot 360 phone number Webroot 360 support
phone number
Free~* C@ll 1.800-059-007 Webroot 360 technical support phone number AUS
1.800-059-007 Webroot 360 technical support phone number Webroot free call
~* C@ll 1.800-059-007 Webroot 360 technical support phone number AUS
1.800-059-007 Webroot 360 technical support phone number Webroot free call
Webroot 360 Tech Support Number @@!1-800-059-007!! Webroot 360 Support Number
PHONE support AUS @1.800-059-007 Webroot antivirus technical support phone
number
Webroot locations
Webroot online support
Webroot Support phone number 1.800-059-007
Webroot customer care Webroot tech support phone number 1.800-059-007
Webroot tech support phone number 1.800-059-007
Webroot antivirus tech support phone number 1.800-059-007
Webroot locations Webroot 360 Tech Support Number @@!1-800-059-007!! Webroot
360 Support Number
Webroot Support phone number 1.800-059-007
service Webroot com
Webroot login
Webroot technical support phone number 1.800-059-007
Webroot customer service
Webroot Support phone number 1.800-059-007
Webroot support telephone number 1.800-059-007
Webroot support phone number 1.800-059-007
Webroot antivirus support phone number 1.800-059-007 Webroot 360 Tech Support
Number @@!1-800-059-007!! Webroot 360 Support Number
Webroot antivirus tech support phone number 1.800-059-007
Webroot antivirus customer service phone number 1.800-059-007
Webroot 360 technical support phone number 1.800-059-007
symantec technical support phone number 1.800-059-007
Webroot technical support phone number 1.800-059-007
Webroot customer service telephone number 1.800-059-007
Webroot antivirus phone number 1.800-059-007
Webroot antivirus customer service phone number 1.800-059-007
Webroot antivirus customer service Support Webroot 360 Tech Support Number
@@!1-800-059-007!! Webroot 360 Support Number
Webroot antivirus phone number 1.800-059-007
Webroot phone number 1.800-059-007 cancel subscription
Webroot technical support phone number 1.800-059-007
Webroot 800 phone number 1.800-059-007
snapdeal toll free customer care number 1.800-059-007
sbi toll free customer care number 1.800-059-007
airtel toll free customer care number 1.800-059-007
Webroot customer service number 1.800-059-007
Webroot call center Webroot 360 Tech Support Number @@!1-800-059-007!! Webroot
360 Support Number
Webroot customer service email address
Webroot customer care no Webroot 360 Tech Support Number @@!1-800-059-007!!
Webroot 360 Support Number
call Webroot support
chat with Webroot support
Webroot customer support
Webroot antivirus customer service number 1.800-059-007
Webroot Webroot 360 Tech Support Number @@!1-800-059-007!! Webroot 360 Support
Number
Webroot call center
Webroot hq
Webroot office locations
Webroot support site
Webroot telephone number 1.800-059-007 for customer support
Webroot customer service contact number 1.800-059-007
Webroot customer care
Webroot toll free number 1.800-059-007
Webroot security contact number 1.800-059-007
contact Vipre
Webroot headquarters Webroot 360 Tech Support Number @@!1-800-059-007!! Webroot
360 Support Number
Webroot customer service chat
Webroot customer service telephone number 1.800-059-007
Webroot Support phone number 1.800-059-007
Webroot customer support
Webroot customer service refund
Webroot login
Webroot locations
Webroot customer service number 1.800-059-007 uk
Webroot locations
Webroot customer service email address
Webroot support site Webroot 360 Tech Support Number @@!1-800-059-007!! Webroot
360 Support Number
Webroot technical support phone number 1.800-059-007
Webroot technical support live chat
Webroot technical support email address
Webroot technical support number 1.800-059-007
Webroot technical support number 1.800-059-007 Webroot 360 Tech Support Number
@@!1-800-059-007!! Webroot 360 Support Number
symantec technical support number 1.800-059-007
Webroot antivirus technical support number 1.800-059-007
Webroot customer support phone number 1.800-059-007
Webroot customer support number 1.800-059-007
Webroot customer support number 1.800-059-007 Webroot 360 Tech Support Number
@@!1-800-059-007!! Webroot 360 Support Number
Webroot antivirus customer support number 1.800-059-007
Webroot locations Webroot 360 Tech Support Number @@!1-800-059-007!! Webroot
360 Support Number
Webroot Support phone number 1.800-059-007
Webroot corporate phone number 1.800-059-007 Webroot 360 Tech Support Number
@@!1-800-059-007!! Webroot 360 Support Number
Webroot customer service Support
Webroot technical support phone number 1.800-059-007
Webroot tech support phone number 1.800-059-007
Webroot tech support number 1.800-059-007
Webroot tech support number 1.800-059-007 FREE
>From gcc-bugs-return-534109-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 10:09:00 2016
Return-Path: <gcc-bugs-return-534109-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 78720 invoked by alias); 11 Aug 2016 10:09:00 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 78594 invoked by uid 48); 11 Aug 2016 10:08:46 -0000
From: "dst151602 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug debug/73603] New: (((18666602799((avg support phone number avg tech support
Date: Thu, 11 Aug 2016 10:09:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: debug
X-Bugzilla-Version: new-ra
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dst151602 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73603-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01445.txt.bz2
Content-length: 6776

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73603

            Bug ID: 73603
           Summary: (((18666602799((avg support phone number avg tech
                    support
           Product: gcc
           Version: new-ra
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: debug
          Assignee: unassigned at gcc dot gnu.org
          Reporter: dst151602 at gmail dot com
  Target Milestone: ---

~~CANADA_____18|||6666||||02799+++++++ Avg Support Phone number, Avg antivirus
customer care phone numberAVG Phone number. 18|||6666||||02799.AVG Antivirus
Support Phone Number .AVG Antivirus Customer Care Phone Number
USA!!!!!! AVG 1800-750-6584 AVG Antivirus helpline, AVG Antivirus technical
support phone number, AVG
Antivirus tech support number 18|||6666||||02799AVG Antivirus tech support
phone number USA !!Call aus
18|||6666||||02799AVG Tech Support Phone Number UK-18|||6666||||02799AVG
support number, AVG support,
AVG Antivirus support, AVG tech support, AVG technical support, AVG customer
service number, AVG
customer service, AVG tech support number, AVG support center, AVG Antivirus
support number, hewlett
packard support, AVG contact number, AVG phone number, AVG help and support,
AVG customer support,
AVG Antivirus help, AVG technical support number, AVG support phone number,
hewlett packard
customer service, AVG Antiviruss support, AVG customer service phone number,
AVG number, AVG
customer care, AVG contact, AVG tech support phone number, AVG support chat,
AVG customer support
number, AVG customer care number, contact AVG support, AVG help, AVG phone, AVG
Antivirus support
phone number, AVG customer support phone number, AVG Antivirus tech support,
AVG phone support,
AVG technical support phone number, AVG laptop support number, hewlett packard
Antivirus support,
AVG helpline, AVG telephone support, AVG online support, AVG support contact,
AVG chat support, hewlett
packard phone number, AVG Antivirus customer service, AVG Antivirus tech
support number, AVG
product support, hewlett packard customer service phone number, AVG computer
support number, AVG
support contact number, AVG support Antivirus, AVG computer support, AVG tech
support chat, AVG
helpline number, AVG laptop support, hewlett packard tech support, AVG online
chat, hewlett packard
technical support, AVG Antivirus help line, phone number for AVG support,
hewlett packard support
phone number, AVG Antivirus technical support, hewlett packard customer service
number, AVG service
number, hewlett packard helpline, AVG customer care no,18|||6666||||027994AVG
Antivirus customer service
number, AVG help number, AVG Antivirus customer service phone number, AVG 1800
number, AVG
support phone, AVG support line, hewlett packard contact number, AVG Antivirus
tech support phone
number, AVG Antivirus customer support phone number, AVG Antiviruss help, call
AVG support, AVG
Antivirus support chat, hewlett packard support number, hewlett packard tech
support number, AVG
support telephone number, hewlett packard tech support phone number, call AVG,
AVG contact support,
hewlett packard technical support phone number, AVG support centre, hewlett
packard customer
support, AVG desktop support, AVG laptop customer service, contact AVG
Antivirus support, AVG pc
support, AVG laptop customer care number, AVG support for Antiviruss, AVG
Antivirus customer care, AVG
customer care phone number, hewlett packard help, phone number for AVG, AVG
online help, AVG laptop
customer care, AVG helpline phone number, AVG Antivirus customer support, AVG
technical support chat,
AVG computer help, AVG support numbers, AVG technical support contact number,
AVG telephone
number, AVG Antivirus technical support phone number, AVG Antivirus helpline,
AVG support Antiviruss,
AVG support online, AVG Antivirus contact number, AVG help phone number, AVG
Antivirus customer care
number, contact hewlett packard by phone, AVG Antivirus phone support, hewlett
packard Antiviruss 
support, AVG tech support phone, AVG technical help, AVG laptop tech support
number, contact AVG by
phone, AVG support call, AVG computers support, hewlett packard customer
service telephone number,
phone number for hewlett packard, AVG online support chat, AVG laptop customer
service number, AVG
online chat support, AVG Antiviruss customer service, hewlett packard customer
service phone, AVG
laptop tech support, AVG service phone number, hewlett packard Antivirus help,
phone number for AVG
Antiviruss, AVG troubleshooting phone number, AVG 800 number, hewlett packard
technical support
number, contact AVG support phone, phone number for AVG Antivirus support, AVG
customer support
chat, AVG help and support number, contact hewlett packard, AVG laptop support
phone number, AVG
Antiviruss customer service phone number, AVG laptop customer service phone
number, AVG computer
support phone number, AVG pavilion support, AVG computer customer service, AVG
customer services,
hewlett packard telephone number, AVG helpline no, AVG help desk number,
contact AVG support phone
number, hewlett packard contact, AVG phone numbers, AVG Antiviruss customer
care number, AVG
Antivirus help and support, contact AVG technical support, AVG contact numbers,
contact AVG support
chat, call AVG tech support, AVG customer service phone, AVG help support, AVG
computer tech support,
AVG assistance phone number, AVG customer service telephone number, hewlett
packard Antivirus
support phone number, AVG contact support number, AVG support center phone
number, AVG support
phone numbers, tech support for AVG, AVG it support, AVG laptop helpline, AVG
technical, AVG laptop
technical support number, AVG Antiviruss tech support phone number, AVG
Antiviruss support phone
number, hewlett packard help desk phone number, AVG computer tech support phone
number, AVG
customer service number for laptop, AVG Antivirus helpline number, contact AVG
support by phone,
hewlett packard support center, AVG laptop customer care no, AVG Antivirus
support telephone number,
AVG support services, AVG customer service number for Antiviruss, AVG product
support number, AVG
laptop tech support phone number, AVG Antivirus helpline phone number, contact
AVG customer
support, hewlett packard customer support phone number, AVG Antiviruss
technical support, AVG
customer care center, support for AVG Antiviruss, AVG Antivirus support center,
phone number for AVG
tech support, AVG desktop customer care number, AVG laptops support, AVG
Antivirus online support,
AVG Antivirus phone number, hewlett packard Antiviruss support phone number,
technical support for
AVG Antiviruss phone number, AVG help center phone number
>From gcc-bugs-return-534111-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 10:10:48 2016
Return-Path: <gcc-bugs-return-534111-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 82695 invoked by alias); 11 Aug 2016 10:10:48 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 82541 invoked by uid 48); 11 Aug 2016 10:10:35 -0000
From: "hau at e dot bege.ro" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73605] New: UK..1 800-445-2790++ AVG support phone number om AVG tech support phone number AVG 360 Tech Support Number
Date: Thu, 11 Aug 2016 10:10:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: hau at e dot bege.ro
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73605-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01447.txt.bz2
Content-length: 7968

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73605

            Bug ID: 73605
           Summary: UK..1 800-445-2790++ AVG support phone number om AVG
                    tech support phone number AVG 360 Tech Support Number
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: hau at e dot bege.ro
  Target Milestone: ---

UK..1 800-445-2790++ AVG support phone number om AVG tech support phone number
AVG 360 Tech Support Number
UK..1 800-810-1018++ AVG 360 support phone number om AVG tech support phone
number AVG 360 Tech Support Number
Australia>>>> AUS-1 800-059-007++ AVG 360 support phone number AVG tech support
phone number  AVG 360 Tech Support Number

AUS  >>>> AUS-1 800-059-007++ AVG 360 support phone number AUS-1
800-059-007AUS/canada AVG 360 Tech Support Number @@!1-800-059-007;!!AVG 360
Support Number

AVG Live Support and Help‎ 18(00-059-007 @@ AVG tech support phone number
AVG Live Support and Help‎ 18(00-059-007 @@ AVG tech support phone number
AVG Live Support and Help‎ 18(00-059-007 AVG 360 support phone number AUS
AUS Canada>>>> AUS-1 800-059-007++ AVG 360 support phone number AUS-1
800-059-007AUS/canada AVG 360 Tech Support Number @@!1-800-059-007;!!AVG 360
Support Number
WikiGenes- @+++1800-059-007++000AVG 360 support phone
number1800059007AUS/canada
AVG antivirus technical support phone number 1.800-059-007
hdfc toll free customer care number(((!1.800-059-007)) AVG 360 Tech Support
Number @@!1-800-059-007!! AVG 360 Support Number
AVG toll free customer care number 1.800-059-007
AVG toll free customer care number 1.800-059-007
AVG toll free customer care number 1.800-059-007
AVG toll free customer care number 1.800-059-007>>>>>
AVG technical support phone number ((1.800-059-007))
AVG technical support number 1.800-059-007
AVG technical support number 1.800-059-007
symantec technical support number 1.800-059-007
AVG antivirus technical support number 1.800-059-007
AVG support phone number 1.800-059-007
AVG locations AVG 360 Tech Support Number @@!1-800-059-007!! AVG 360 Support
Number AVG 360 Tech Support Number @@!1-800-059-007!! AVG 360 Support Number
AVG customer service
AVG antivirus customer care__AVG Support phone number 1.800-059-007
AVG customer support phone number 1.800-059-007
AVG customer support phone number 1.800-059-007
AVG antivirus customer support phone number 1.800-059-007AVG antivirus customer
service phone number 1.800-059-007
AVG antivirus technical support phone number 1.800-059-007
AVG antivirus tech support phone number 1.800-059-007
AVG antivirus phone number 1.800-059-007 AVG 360 Tech Support Number
@@!1-800-059-007!! AVG 360 Support Number
AVG security center phone number 1.800-059-007
AVG support telephone number 1.800-059-007
AVG 360 technical support phone number 1.800-059-007
symantec technical support phone number 1.800-059-007
AVG tech support phone number 1.800-059-007 AVG 360 Tech Support Number
@@!1-800-059-007!! AVG 360 Support Number
apple technical support phone number 1.800-059-007 AUS
microsoft technical support phone number 1.800-059-007 AUS
gmail technical support phone number 1.800-059-007 AUS
kaspersky technical support phone number 1.800-059-007 AUS
lenovo technical support phone number 1.800-059-007 AUS
epson technical support phone number 1.800-059-007 AUS
AVG technical support phone number 1.800-059-007 AVG 360 Tech Support Number
@@!1-800-059-007!! AVG 360 Support Number
AVG AntiVirus Customer Service Phone Number #1: 800-059-007
AVG Phone number 1-800-059-007 AVG 360 phone number AVG 360 support phone
number
Free~* C@ll 1.800-059-007 AVG 360 technical support phone number AUS
1.800-059-007 AVG 360 technical support phone number AVG free call
~* C@ll 1.800-059-007 AVG 360 technical support phone number AUS 1.800-059-007
AVG 360 technical support phone number AVG free call AVG 360 Tech Support
Number @@!1-800-059-007!! AVG 360 Support Number
PHONE support AUS @1.800-059-007 AVG antivirus technical support phone number
AVG locations
AVG online support
AVG Support phone number 1.800-059-007
AVG customer care AVG tech support phone number 1.800-059-007
AVG tech support phone number 1.800-059-007
AVG antivirus tech support phone number 1.800-059-007
AVG locations AVG 360 Tech Support Number @@!1-800-059-007!! AVG 360 Support
Number
AVG Support phone number 1.800-059-007
service AVG com
AVG login
AVG technical support phone number 1.800-059-007
AVG customer service
AVG Support phone number 1.800-059-007
AVG support telephone number 1.800-059-007
AVG support phone number 1.800-059-007
AVG antivirus support phone number 1.800-059-007 AVG 360 Tech Support Number
@@!1-800-059-007!! AVG 360 Support Number
AVG antivirus tech support phone number 1.800-059-007
AVG antivirus customer service phone number 1.800-059-007
AVG 360 technical support phone number 1.800-059-007
symantec technical support phone number 1.800-059-007
AVG technical support phone number 1.800-059-007
AVG customer service telephone number 1.800-059-007
AVG antivirus phone number 1.800-059-007
AVG antivirus customer service phone number 1.800-059-007
AVG antivirus customer service Support AVG 360 Tech Support Number
@@!1-800-059-007!! AVG 360 Support Number
AVG antivirus phone number 1.800-059-007
AVG phone number 1.800-059-007 cancel subscription
AVG technical support phone number 1.800-059-007
AVG 800 phone number 1.800-059-007
snapdeal toll free customer care number 1.800-059-007
sbi toll free customer care number 1.800-059-007
airtel toll free customer care number 1.800-059-007
AVG customer service number 1.800-059-007
AVG call center AVG 360 Tech Support Number @@!1-800-059-007!! AVG 360 Support
Number
AVG customer service email address
AVG customer care no AVG 360 Tech Support Number @@!1-800-059-007!! AVG 360
Support Number
call AVG support
chat with AVG support
AVG customer support
AVG antivirus customer service number 1.800-059-007
AVG AVG 360 Tech Support Number @@!1-800-059-007!! AVG 360 Support Number
AVG call center
AVG hq
AVG office locations
AVG support site
AVG telephone number 1.800-059-007 for customer support
AVG customer service contact number 1.800-059-007
AVG customer care
AVG toll free number 1.800-059-007
AVG security contact number 1.800-059-007
contact Vipre
AVG headquarters AVG 360 Tech Support Number @@!1-800-059-007!! AVG 360 Support
Number
AVG customer service chat
AVG customer service telephone number 1.800-059-007
AVG Support phone number 1.800-059-007
AVG customer support
AVG customer service refund
AVG login
AVG locations
AVG customer service number 1.800-059-007 uk
AVG locations
AVG customer service email address
AVG support site AVG 360 Tech Support Number @@!1-800-059-007!! AVG 360 Support
Number
AVG technical support phone number 1.800-059-007
AVG technical support live chat
AVG technical support email address
AVG technical support number 1.800-059-007
AVG technical support number 1.800-059-007 AVG 360 Tech Support Number
@@!1-800-059-007!! AVG 360 Support Number
symantec technical support number 1.800-059-007
AVG antivirus technical support number 1.800-059-007
AVG customer support phone number 1.800-059-007
AVG customer support number 1.800-059-007
AVG customer support number 1.800-059-007 AVG 360 Tech Support Number
@@!1-800-059-007!! AVG 360 Support Number
AVG antivirus customer support number 1.800-059-007
AVG locations AVG 360 Tech Support Number @@!1-800-059-007!! AVG 360 Support
Number
AVG Support phone number 1.800-059-007
AVG corporate phone number 1.800-059-007 AVG 360 Tech Support Number
@@!1-800-059-007!! AVG 360 Support Number
AVG customer service Support
AVG technical support phone number 1.800-059-007
AVG tech support phone number 1.800-059-007
AVG tech support number 1.800-059-007
AVG tech support number 1.800-059-007 FREE
>From gcc-bugs-return-534110-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 10:10:06 2016
Return-Path: <gcc-bugs-return-534110-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 81644 invoked by alias); 11 Aug 2016 10:10:06 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 81462 invoked by uid 48); 11 Aug 2016 10:09:53 -0000
From: "mfjfbnsddvnj at yopmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: =?UTF-8?B?W0J1ZyBtaWRkbGUtZW5kLzczNjA0XSBOZXc6IEF1cyBBVkfihKIrKysxLTg4?= =?UTF-8?B?OCs5MzYrNTU2OSBAQEBBVkcgQW50aXZpcnVzIHRlY2ggc3VwcG9ydCBwaG9u?= =?UTF-8?B?ZSBudW1iZXIgQVZHIEFudGl2aXJ1cyB0ZWNobmljYWwgU3VwcG9ydCBwaG9u?= =?UTF-8?B?ZSBOdW1iZXIgQVZHIEFudGl2aXJ1cyBzdXBwb3J0IHBob25lIG51bWJlcg==?Date: Thu, 11 Aug 2016 10:10:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 5.4.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mfjfbnsddvnj at yopmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73604-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01446.txt.bz2
Content-length: 18452

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73604

            Bug ID: 73604
           Summary: Aus AVGâ„¢+++1-888+936+5569 @@@AVG Antivirus tech
                    support phone number AVG Antivirus technical Support
                    phone Number AVG Antivirus support phone number
           Product: gcc
           Version: 5.4.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: middle-end
          Assignee: unassigned at gcc dot gnu.org
          Reporter: mfjfbnsddvnj at yopmail dot com
  Target Milestone: ---

Aus AVGâ„¢+++1-888+936+5569 @@@AVG Antivirus tech support phone number AVG
Antivirus technical Support phone Number AVG Antivirus support phone number
Aus AVGâ„¢+++1-800+769+903 @@@AVG Antivirus tech support phone number AVG
Antivirus technical Support phone Number AVG Antivirus support phone number


Aus AVGâ„¢+++1-800+769+903 @@@AVG Antivirus tech support phone number AVG
Antivirus technical Support phone Number AVG Antivirus support phone number 
Support**i?â„¢+1-800-769-903 AVG Tech Support Phone number, AVG customer support
phone number AVG customer care phone number,AVG +?â„¢UK +1-800-078-6054 AVG Tech
Support Phone number, AVG customer support phone number AVG customer care phone
number AVG USA((((USa= 1+800+445+2790 ))))) AVG Antivirus tech Support Phone
Number, AVG Antivirus Technical Support Phone Number, AVG Antivirus Customer
Support phone Number AVG Antivirus help desk number, AVG telephone number AVG
Support Phone Number 1-800-769-903 Aus, AVG Antivirus Support Phone Number, AVG
Technical Support Phone Number, AVG Customer Support Number?? AVG Support Phone
Number 1-800-769-903 Aus, AVG Antivirus Support Phone Number, AVG Technical
Support Phone Number, AVG Customer Support Number?? AVG phone number
#$#1-800-769-903##$AVG Antivirus phone number AVG security phone number AVG
phone number #$#1-800-769-903##$AVG support phone number AVG symantec phone
number AVG phone number customer service #$#1-800-769-903##$AVG customer
service phone number AVG tech support phone number AVG technical support phone
number AVG phone numbers AVG help phone number AVG Antivirus support phone
number #$#1-800-769-903##$AVG phone support AVG contact phone number AVG
internet security phone number AVG support phone number AVG phone AVG 800 phone
number phone number for AVG phone numbers AVG Antivirus customer service phone
number AVG customer support phone number find a phone number AVG uk phone
number Aus phone number phone number for AVG Antivirus tech support phone
number AVG phone support free phone numbers phone number AVG phone number get
human find phone number phone number for AVG security us phone number phone
number Aus #$#1-800-769-903##$AVG Antivirus contact phone number AVG phone
number for support AVG contact number phone number for AVG Antivirus Aus phone
numbers phone number search us phone numbers find phone numbers AVG helpline
phone number business phone numbers residential phone numbers irs phone number
phone number directory free phone number AVG number AVG whose phone number is
this AVG AVG account AVG Antivirus find a phone number free AVG internet
security AVG support number AVG security AVG phone number billing symantec AVG
removal tool AVG support AVG support phone number Aus AVG renewal phone number
#$#1-800-769-903##$symantec phone number AVG utilities AVG download AVG virus
phone number my AVG account AVG download AVG customer service AVG anti virus
AVG account login AVG sign in AVG australia phone number AVG phone number AVG
symantec Antivirus AVG AVG s#$#1-800-769-903##$ AVG login tech support phone
number download AVG information phone number AVG my account symantec support
anti virus get phone number AVG virus AVG support AVG sales phone number AVG by
symantec phone number my AVG AVG internet security download AVG trial AVG virus
protection AVG technical support phone number AVG customer service phone number
AVG telephone number AVG security suite AVG contact AVG trial AVG phone support
number AVG Antivirus technical support phone number symantec AVG AVG help AVG
products AVG online AVG internet phone numbers search AVG free trial AVG tech
support AVG phone numberuk AVG security download contact AVG AVG renewal phone
numbers Aus AVG by symantec AVG update AVG internet security customer service
phone number #$#1-800-769-903##$my AVG account login AVG Antivirus phone
support number download AVG AVG product key home phone numbers AVG Antivirus
customer support phone number AVG s Antivirus AVG product key AVG power eraser
nortan AVG ghost anti virus protection reinstall AVG AVG AVG Antivirus phone
AVG key install AVG symantec support phone number AVG phone number customer
support AVG website check AVG free download norto AVG customer service number
norten AVG Antivirus update free AVG AVG software AVG ghost 15 AVG backup AVG
phone number support AVG Antivirus phone number tech support AVG billing phone
number AVG uk AVG technical support mcfee AVG firewall AVG internet security
product key AVG anti virus AVG live update AVG Antivirus customer service AVG
customer service phone number Aus buy AVG get a phone number AVG tech support
number virus protection #$#1-800-769-903##$AVG customer support phone number
for AVG support AVG Antivirus support AVG protection AVG review AVG website
download AVG internet security AVG account sign in AVG Antivirus AVG
uninstaller free AVG Antivirus AVG Antivirus AVG Antivirus phone number support
northon AVG helpline AVG Antivirus login how to get phone numbers AVG Antivirus
AVG Antivirus trial AVG number AVG log in AVG Antivirus free phone numbers free
AVG disk doctor AVG systemworks AVG Antivirus download internet security AVG
virus removal AVG account phone number AVG live chat buy AVG Antivirus AVG
internet security login AVG search AVG software phone number anti virus
software AVG tech support phone number free AVG AVG mobile AVG free AVG
Antivirus software AVG free Antivirus AVG Antivirus phone number customer
service AVG online backup AVG Antivirus phone support notron quick heal AVG
toll free number #$#1-800-769-903##$AVG download manager AVG identity safe
download AVG Antivirus AVG install AVG internet security 2011 AVG anti virus
phone number phone number for AVG customer service AVG customer phone number
AVG customer support phone number symantec removal tool AVG safe search AVG
price AVG toolbar AVG av AVG Antivirus coupon AVG nz phone number AVG 800
number AVG downloads AVG Antivirus free trial AVG internet security 2012 AVG
cancellation phone number AVG updates phone book phone numbers in Aus telephone
number AVG helpline number phone directory contact AVG by phone AVG
subscription AVG ghost download AVG com support phone number AVG Antivirus
contact AVG Antivirus contact number technical support phone number AVG phone
Antivirus AVG free AVG support phone number us AVG removal tool phone number
for AVG Antivirus customer service AVG update AVG Antivirus number AVG
Antivirus phone number AVG phone support AVG spyware toll free numbers AVG
store AVG online family find free phone numbers AVG account Antivirus AVG
gratis AVG Antivirus account AVG contact phone number AVG system works AVG
internet security support phone number symantec #$#1-800-769-903##$AVG AVG
utilities 15 contact AVG Antivirus AVG s AVG Antivirus renewal AVG support
phone number Aus AVG customer service phone number billing AVG internet
security support Aus number AVG review AVG annual renewal free Antivirus AVG
anti virus AVG AVG renewal AVG Antivirus online trend Antivirus how to contact
AVG Antivirus by phone AVG anitvirus norotn support AVG AVG security contact
number us numbers AVG phone support number AVG technical support number AVG
customer care AVG help desk phone number contact AVG Antivirus by phone AVG
Antivirus tech support number AVG Antivirus tech support AVG customer service
AVG anti virus software #$#1-800-769-903##$AVG anti virus protection search for
phone numbers AVG activation what is AVG AVG full AVG support phone AVG contact
us AVG renewal code Antivirus AVG free symantec technical support phone number
AVG security customer service phone number AVG Aus AVG security support tech
support number Antivirus support install AVG Antivirus phone number for AVG
Antivirus support live chat phone numbers AVG customer service phone number Aus
phone number in us AVG internet security 2010 AVG ghost 15.0 symantec tech
support phone number AVG customer support phone number vanity numbers phone
number service AVG my account login symantec technical support AVG Antivirus
support number Antivirus AVG symantec support number AVG for phone phone number
of Aus phone number for business AVG 1 800 number phone number for AVG internet
security AVG hotline AVG internet security contact phone number symantec
#$#1-800-769-903##$AVG Antivirus phone number for AVG tech support AVG customer
support phone number Aus AVG support symantec contact AVG security symantec
customer service phone number AVG Antivirus 2011 AVG customer service phone
number uk AVG contact number how to remove AVG AVG customer service phone
numbers AVG 2011 AVG help AVG customer care phone number AVG online support
helpline phone number 1 800 phone numbers AVG sonar AVG security phone support
AVG security contact AVG contact AVG Antivirus customer service phone number
information phone numbers AVG Antivirus sign in AVG Antivirus price AVG
customer service telephone number www AVG com #$#1-800-769-903##$ support phone
numbers antiviry AVG Antivirus help desk phone number AVG subscription renewal
AVG help desk 1 800 number what is AVG AVG internet security contact number
nortan Antivirus Antivirus free AVG AVG Antivirus customer service number AVG
pc checkup how to contact AVG by phone AVG security contact phone number phone
numbers us contact AVG internet security AVG Antivirus full how do i find a
phone number for free AVG contact number uk AVG internet security renewal cheap
AVG Antivirus AVG deals AVG customer service number Aus AVG phone contact AVG
customer care number AVG Antivirus help phone number for AVG AVG 2012
#$#1-800-769-903##$AVG help phone number support for AVG AVG help number call
AVG AVG 2010 AVG security customer service how do i find phone numbers AVG
Antivirus customer service phone number Aus AVG 1800 number AVG Antivirus for
phone install AVG internet security AVG symantec customer service phone number
AVG Antivirus sale phone number for AVG symantec customer service AVG 1 AVG
sale AVG support uk phone number nortion AVG Antivirus AVG installation
symantec customer service AVG Antivirus 800 number how to contact AVG by phone
AVG home compare AVG products AVG customer support number anti virus products
AVG problems AVG .com phone number AVG 800 find contact number AVG siteadvisor
#$#1-800-769-903##$AVG Antivirus telephone number AVG account login business
phone numbers free AVG Antivirus deals AVG symantec support phone number AVG
Antivirus updates contact AVG AVG price nortan anti virus symantec customer
support phone number how to install AVG Antivirus AVG site AVG an contact AVG
support download AVG anti virus AVG reviews AVG Antivirus 2010 AVG Antivirus
protection phone number for AVG by symantec AVG 5.0 phone numbers in us get a
phone number for free symantec tech support AVG support number AVG helpdesk
#$#1-800-769-903##$AVG sales AVG Antivirus technical support number AVG
customer service phone AVG phone AVG internet security help AVG live update not
working AVG Antivirus toll free number AVG customer support telephone number
AVG Antivirus contact phone number AVG Antivirus AVG login to my account AVG
security help AVG customer service number us AVG telephone number how to get
phone numbers free phone number for AVG Antivirus billing symantec help vanity
toll free numbers AVG support website AVG Antivirus technical support phone
numbers of AVG v5 phone number AVG Antivirus customer service AVG symantec
support #$#1-800-769-903##$contact AVG by phone symantec contact AVG homepage
AVG Antivirus customer service phone number us AVG Antivirus customer support
number symantec contact number find a free phone number symantec help desk
phone number how to install AVG AVG Antivirus phone contact telephone support
by phone numbers AVG a AVG Antivirus customer support AVG internet security
2011 download AVG service Antivirus tech support buy AVG direct renewal phone
number business AVG Antivirus 3 user AVG online help get phone numbers for free
technical support number AVG tech support telephone number anti virus anti
virus AVG services phone number for symantec customer service symantec phone
number customer service AVG security telephone number AVG information on phone
number AVG customer services phone number phone number of us AVG internet
security contact AVG antivrus best Antivirus for phone AVG internet security
telephone number get phone number for free AVG live AVG support telephone
number AVG customer services AVG for free best AVG Antivirus Aus number phone
AVG Antivirus address symantec customer support phone numbers of Aus vanity 800
numbers AVG billing support for Antivirus phone numbers in the us how much is
AVG AVG contact number us AVG contact contact number for AVG support for AVG
Antivirus AVG symantec AVG contact number Aus find free phone number AVG uk
contact AVG telephone number customer service AVG server Antivirus AVG
Antivirus helpline number AVG tech support AVG internet security customer
service AVG cleansweep AVG customer service phone number us symantec technical
support number AVG customer service number latest AVG Antivirus AVG help and
support phone number Antivirus tech support anti virus full toll free vanity
numbers AVG contact telephone number Antivirus technical support AVG contact
number for customer service anti virus service tech support Aus AVG 4.0 Aus
contact number where to find phone numbers telephone number for AVG how to
contact AVG AVG telephone support AVG help desk number AVG Antivirus Aus AVG
Antivirus symantec AVG student AVG 3 user AVG search engine how do you find
phone numbers Antivirus technical support AVG customer support AVG support
number Aus AVG problems tech support for AVG AVG Antivirus website AVG contact
numbers AVG customer service help me find a phone number AVG Antivirus account
login AVG live support phone with numbers AVG Antivirus helpline AVG Antivirus
products information for phone numbers AVG contact number for billing AVG virus
software chat with phone number AVG repair AVG Aus anti virus a contact number
for AVG Antivirus call AVG support renew AVG Antivirus AVG version 5.0 AVG
customer service toll free number AVG official website 800 vanity numbers phone
numbers business free phone number for business AVG corporate Aus tech support
AVG helpline AVG troubleshooting AVG confidential get free phone numbers where
can i get phone numbers for free about AVG Antivirus Antivirus products phone
number in the us phone contact numbers cheap AVG call AVG Antivirus AVG s anti
virus toll free phone support phone numbers #$#1-800-769-903##$symantec
customer support center problems with AVG anti virus business help phone
numbers AVG Antivirus free vanity toll free phone numbers symantec phone
support information on a phone number AVG antiviris AVG anit virus AVG customer
service 800 number phone AVG Antivirus free business phone numbers AVG
technical support phone tech support anti AVG virus AVG save and restore
contact symantec support virus protection AVG customer service number for AVG
Antivirus phone numbers find AVG internet Antivirus AVG telephone an virus
symantec customer service number free information for phone numbers how can i
find phone numbers AVG toll free number Aus #$#1-800-769-903##$AVG tm find an
phone number phone service number AVG support teHlephone number AVG online
Antivirus what this phone number how to contact AVG Antivirus AVG contact
information AVG Antivirus contact information AVG customer service phone AVG
Antivirus subscription AVG symantec customer service customer services number
AVG help support AVG tech support number phone numbers in the Aus tech support
numbers vanity 800 number AVG Antivirus for free technical support for AVG
telephone number for AVG Antivirus AVG Antivirus 2OO9 toll free 800 AVG
Antivirus removal AVG and AVG AVG s support personalized phone numbers AVG toll
free Antivirus help call #$#1-800-769-903##$AVG support free Antivirus AVG AVG
Antivirus symantec tech support number tech support in Aus is AVG free AVG us
how phone number symantec customer support number 800 phone Antivirus
anti-virus AVG technical support number Aus how do i get phone numbers for free
AVG anti virus AVG Antivirus server AVG netbook edition contact technical
support free tech support phone number phone number 1 800 what anti virus
business tech support free number Aus AVG support symantec business support AVG
from symantec AVG live chat support AVG antispyware a free phone number
Antivirus AVG AVG for business customer service AVG cheapest AVG AVG faq free
contact information call technical support toll free 800 numbers AVG contact us
number AVG support Aus anti virus on phone AVG telephone support AVG Antivirus
brasil get AVG free AVG Antivirus AVG Antivirus information symantec telephone
number Antivirus support number AVG live help free toll number symantec help
desk AVG support AVG Antivirus contact us AVG anti virus update number for AVG
Antivirus AVG create account AVG contact telephone AVG virus list AVG support
Antivirus login AVG Antivirus customer service number for AVG AVG help and
support AVG support toll free number phone AVG AVG contact customer support AVG
customer 800 number for AVG Antivirus customer service telephone number AVG
Antivirus by symantec AVG Antivirus business best AVG anti vyras AVG virus help
AVG support.com AVG by symantec #$#1-800-769-903##$AVG helpline uk 800 vanity
number contact help number telephone number for AVG Antivirus customer service
AVG live chat what are anti virus contact tech support AVG
products#$#1-800-769-903##$###########@
>From gcc-bugs-return-534112-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 10:11:27 2016
Return-Path: <gcc-bugs-return-534112-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 83672 invoked by alias); 11 Aug 2016 10:11:27 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 83564 invoked by uid 48); 11 Aug 2016 10:11:14 -0000
From: "dst151602 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug debug/73606] New: chal jhandu call usa 1+8+6+6+6+6-0-2-7-9-9 avg tech support avg technical support number
Date: Thu, 11 Aug 2016 10:11:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: debug
X-Bugzilla-Version: new-ra
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dst151602 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73606-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01448.txt.bz2
Content-length: 6807

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73606

            Bug ID: 73606
           Summary: chal jhandu call usa 1+8+6+6+6+6-0-2-7-9-9 avg tech
                    support avg technical support number
           Product: gcc
           Version: new-ra
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: debug
          Assignee: unassigned at gcc dot gnu.org
          Reporter: dst151602 at gmail dot com
  Target Milestone: ---

~~CANADA_____18|||6666||||02799+++++++ Avg Support Phone number, Avg antivirus
customer care phone numberAVG Phone number. 18|||6666||||02799.AVG Antivirus
Support Phone Number .AVG Antivirus Customer Care Phone Number
USA!!!!!! AVG 1800-750-6584 AVG Antivirus helpline, AVG Antivirus technical
support phone number, AVG
Antivirus tech support number 18|||6666||||02799AVG Antivirus tech support
phone number USA !!Call aus
18|||6666||||02799AVG Tech Support Phone Number UK-18|||6666||||02799AVG
support number, AVG support,
AVG Antivirus support, AVG tech support, AVG technical support, AVG customer
service number, AVG
customer service, AVG tech support number, AVG support center, AVG Antivirus
support number, hewlett
packard support, AVG contact number, AVG phone number, AVG help and support,
AVG customer support,
AVG Antivirus help, AVG technical support number, AVG support phone number,
hewlett packard
customer service, AVG Antiviruss support, AVG customer service phone number,
AVG number, AVG
customer care, AVG contact, AVG tech support phone number, AVG support chat,
AVG customer support
number, AVG customer care number, contact AVG support, AVG help, AVG phone, AVG
Antivirus support
phone number, AVG customer support phone number, AVG Antivirus tech support,
AVG phone support,
AVG technical support phone number, AVG laptop support number, hewlett packard
Antivirus support,
AVG helpline, AVG telephone support, AVG online support, AVG support contact,
AVG chat support, hewlett
packard phone number, AVG Antivirus customer service, AVG Antivirus tech
support number, AVG
product support, hewlett packard customer service phone number, AVG computer
support number, AVG
support contact number, AVG support Antivirus, AVG computer support, AVG tech
support chat, AVG
helpline number, AVG laptop support, hewlett packard tech support, AVG online
chat, hewlett packard
technical support, AVG Antivirus help line, phone number for AVG support,
hewlett packard support
phone number, AVG Antivirus technical support, hewlett packard customer service
number, AVG service
number, hewlett packard helpline, AVG customer care no,18|||6666||||027994AVG
Antivirus customer service
number, AVG help number, AVG Antivirus customer service phone number, AVG 1800
number, AVG
support phone, AVG support line, hewlett packard contact number, AVG Antivirus
tech support phone
number, AVG Antivirus customer support phone number, AVG Antiviruss help, call
AVG support, AVG
Antivirus support chat, hewlett packard support number, hewlett packard tech
support number, AVG
support telephone number, hewlett packard tech support phone number, call AVG,
AVG contact support,
hewlett packard technical support phone number, AVG support centre, hewlett
packard customer
support, AVG desktop support, AVG laptop customer service, contact AVG
Antivirus support, AVG pc
support, AVG laptop customer care number, AVG support for Antiviruss, AVG
Antivirus customer care, AVG
customer care phone number, hewlett packard help, phone number for AVG, AVG
online help, AVG laptop
customer care, AVG helpline phone number, AVG Antivirus customer support, AVG
technical support chat,
AVG computer help, AVG support numbers, AVG technical support contact number,
AVG telephone
number, AVG Antivirus technical support phone number, AVG Antivirus helpline,
AVG support Antiviruss,
AVG support online, AVG Antivirus contact number, AVG help phone number, AVG
Antivirus customer care
number, contact hewlett packard by phone, AVG Antivirus phone support, hewlett
packard Antiviruss 
support, AVG tech support phone, AVG technical help, AVG laptop tech support
number, contact AVG by
phone, AVG support call, AVG computers support, hewlett packard customer
service telephone number,
phone number for hewlett packard, AVG online support chat, AVG laptop customer
service number, AVG
online chat support, AVG Antiviruss customer service, hewlett packard customer
service phone, AVG
laptop tech support, AVG service phone number, hewlett packard Antivirus help,
phone number for AVG
Antiviruss, AVG troubleshooting phone number, AVG 800 number, hewlett packard
technical support
number, contact AVG support phone, phone number for AVG Antivirus support, AVG
customer support
chat, AVG help and support number, contact hewlett packard, AVG laptop support
phone number, AVG
Antiviruss customer service phone number, AVG laptop customer service phone
number, AVG computer
support phone number, AVG pavilion support, AVG computer customer service, AVG
customer services,
hewlett packard telephone number, AVG helpline no, AVG help desk number,
contact AVG support phone
number, hewlett packard contact, AVG phone numbers, AVG Antiviruss customer
care number, AVG
Antivirus help and support, contact AVG technical support, AVG contact numbers,
contact AVG support
chat, call AVG tech support, AVG customer service phone, AVG help support, AVG
computer tech support,
AVG assistance phone number, AVG customer service telephone number, hewlett
packard Antivirus
support phone number, AVG contact support number, AVG support center phone
number, AVG support
phone numbers, tech support for AVG, AVG it support, AVG laptop helpline, AVG
technical, AVG laptop
technical support number, AVG Antiviruss tech support phone number, AVG
Antiviruss support phone
number, hewlett packard help desk phone number, AVG computer tech support phone
number, AVG
customer service number for laptop, AVG Antivirus helpline number, contact AVG
support by phone,
hewlett packard support center, AVG laptop customer care no, AVG Antivirus
support telephone number,
AVG support services, AVG customer service number for Antiviruss, AVG product
support number, AVG
laptop tech support phone number, AVG Antivirus helpline phone number, contact
AVG customer
support, hewlett packard customer support phone number, AVG Antiviruss
technical support, AVG
customer care center, support for AVG Antiviruss, AVG Antivirus support center,
phone number for AVG
tech support, AVG desktop customer care number, AVG laptops support, AVG
Antivirus online support,
AVG Antivirus phone number, hewlett packard Antiviruss support phone number,
technical support for
AVG Antiviruss phone number, AVG help center phone number
>From gcc-bugs-return-534113-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 10:14:03 2016
Return-Path: <gcc-bugs-return-534113-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 96616 invoked by alias); 11 Aug 2016 10:14:02 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 96510 invoked by uid 48); 11 Aug 2016 10:13:50 -0000
From: "fyzr at ye dot nonze.ro" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73608] New: USA..1 800-445-2790++ Panda support phone number om Panda tech support phone number Panda 360 Tech Support Number
Date: Thu, 11 Aug 2016 10:14:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: fyzr at ye dot nonze.ro
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73608-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01449.txt.bz2
Content-length: 530

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73608

            Bug ID: 73608
           Summary: USA..1 800-445-2790++ Panda support phone number om
                    Panda tech support phone number Panda 360 Tech Support
                    Number
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: fyzr at ye dot nonze.ro
  Target Milestone: ---
>From gcc-bugs-return-534114-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 10:15:04 2016
Return-Path: <gcc-bugs-return-534114-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 97831 invoked by alias); 11 Aug 2016 10:15:03 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 97621 invoked by uid 48); 11 Aug 2016 10:14:50 -0000
From: "fyzr at ye dot nonze.ro" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73610] New: USA..1 800-445-2790++ Webroot support phone number om Webroot tech support phone number Webroot 360 Tech Support Number
Date: Thu, 11 Aug 2016 10:15:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: fyzr at ye dot nonze.ro
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73610-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01450.txt.bz2
Content-length: 8717

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73610

            Bug ID: 73610
           Summary: USA..1 800-445-2790++ Webroot support phone number om
                    Webroot tech support phone number Webroot 360 Tech
                    Support Number
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: fyzr at ye dot nonze.ro
  Target Milestone: ---

USA..1 800-445-2790++ Webroot support phone number om Webroot tech support
phone number Webroot 360 Tech Support Number
UK..1 800-810-1018++ Webroot 360 support phone number om Webroot tech support
phone number Webroot 360 Tech Support Number
Australia>>>> AUS-1 800-059-007++ Webroot 360 support phone number Webroot tech
support phone number  Webroot 360 Tech Support Number

AUS  >>>> AUS-1 800-059-007++ Webroot 360 support phone number AUS-1
800-059-007AUS/canada Webroot 360 Tech Support Number
@@!1-800-059-007;!!Webroot 360 Support Number

Webroot Live Support and Help‎ 18(00-059-007 @@ Webroot tech support phone
number
Webroot Live Support and Help‎ 18(00-059-007 @@ Webroot tech support phone
number
Webroot Live Support and Help‎ 18(00-059-007 Webroot 360 support phone number
AUS
AUS Canada>>>> AUS-1 800-059-007++ Webroot 360 support phone number AUS-1
800-059-007AUS/canada Webroot 360 Tech Support Number
@@!1-800-059-007;!!Webroot 360 Support Number
WikiGenes- @+++1800-059-007++000Webroot 360 support phone
number1800059007AUS/canada
Webroot antivirus technical support phone number 1.800-059-007
hdfc toll free customer care number(((!1.800-059-007)) Webroot 360 Tech Support
Number @@!1-800-059-007!! Webroot 360 Support Number
Webroot toll free customer care number 1.800-059-007
Webroot toll free customer care number 1.800-059-007
Webroot toll free customer care number 1.800-059-007
Webroot toll free customer care number 1.800-059-007>>>>>
Webroot technical support phone number ((1.800-059-007))
Webroot technical support number 1.800-059-007
Webroot technical support number 1.800-059-007
symantec technical support number 1.800-059-007
Webroot antivirus technical support number 1.800-059-007
Webroot support phone number 1.800-059-007
Webroot locations Webroot 360 Tech Support Number @@!1-800-059-007!! Webroot
360 Support Number Webroot 360 Tech Support Number @@!1-800-059-007!! Webroot
360 Support Number
Webroot customer service
Webroot antivirus customer care__Webroot Support phone number 1.800-059-007
Webroot customer support phone number 1.800-059-007
Webroot customer support phone number 1.800-059-007
Webroot antivirus customer support phone number 1.800-059-007Webroot antivirus
customer service phone number 1.800-059-007
Webroot antivirus technical support phone number 1.800-059-007
Webroot antivirus tech support phone number 1.800-059-007
Webroot antivirus phone number 1.800-059-007 Webroot 360 Tech Support Number
@@!1-800-059-007!! Webroot 360 Support Number
Webroot security center phone number 1.800-059-007
Webroot support telephone number 1.800-059-007
Webroot 360 technical support phone number 1.800-059-007
symantec technical support phone number 1.800-059-007
Webroot tech support phone number 1.800-059-007 Webroot 360 Tech Support Number
@@!1-800-059-007!! Webroot 360 Support Number
apple technical support phone number 1.800-059-007 AUS
microsoft technical support phone number 1.800-059-007 AUS
gmail technical support phone number 1.800-059-007 AUS
kaspersky technical support phone number 1.800-059-007 AUS
lenovo technical support phone number 1.800-059-007 AUS
epson technical support phone number 1.800-059-007 AUS
Webroot technical support phone number 1.800-059-007 Webroot 360 Tech Support
Number @@!1-800-059-007!! Webroot 360 Support Number
Webroot AntiVirus Customer Service Phone Number #1: 800-059-007
Webroot Phone number 1-800-059-007 Webroot 360 phone number Webroot 360 support
phone number
Free~* C@ll 1.800-059-007 Webroot 360 technical support phone number AUS
1.800-059-007 Webroot 360 technical support phone number Webroot free call
~* C@ll 1.800-059-007 Webroot 360 technical support phone number AUS
1.800-059-007 Webroot 360 technical support phone number Webroot free call
Webroot 360 Tech Support Number @@!1-800-059-007!! Webroot 360 Support Number
PHONE support AUS @1.800-059-007 Webroot antivirus technical support phone
number
Webroot locations
Webroot online support
Webroot Support phone number 1.800-059-007
Webroot customer care Webroot tech support phone number 1.800-059-007
Webroot tech support phone number 1.800-059-007
Webroot antivirus tech support phone number 1.800-059-007
Webroot locations Webroot 360 Tech Support Number @@!1-800-059-007!! Webroot
360 Support Number
Webroot Support phone number 1.800-059-007
service Webroot com
Webroot login
Webroot technical support phone number 1.800-059-007
Webroot customer service
Webroot Support phone number 1.800-059-007
Webroot support telephone number 1.800-059-007
Webroot support phone number 1.800-059-007
Webroot antivirus support phone number 1.800-059-007 Webroot 360 Tech Support
Number @@!1-800-059-007!! Webroot 360 Support Number
Webroot antivirus tech support phone number 1.800-059-007
Webroot antivirus customer service phone number 1.800-059-007
Webroot 360 technical support phone number 1.800-059-007
symantec technical support phone number 1.800-059-007
Webroot technical support phone number 1.800-059-007
Webroot customer service telephone number 1.800-059-007
Webroot antivirus phone number 1.800-059-007
Webroot antivirus customer service phone number 1.800-059-007
Webroot antivirus customer service Support Webroot 360 Tech Support Number
@@!1-800-059-007!! Webroot 360 Support Number
Webroot antivirus phone number 1.800-059-007
Webroot phone number 1.800-059-007 cancel subscription
Webroot technical support phone number 1.800-059-007
Webroot 800 phone number 1.800-059-007
snapdeal toll free customer care number 1.800-059-007
sbi toll free customer care number 1.800-059-007
airtel toll free customer care number 1.800-059-007
Webroot customer service number 1.800-059-007
Webroot call center Webroot 360 Tech Support Number @@!1-800-059-007!! Webroot
360 Support Number
Webroot customer service email address
Webroot customer care no Webroot 360 Tech Support Number @@!1-800-059-007!!
Webroot 360 Support Number
call Webroot support
chat with Webroot support
Webroot customer support
Webroot antivirus customer service number 1.800-059-007
Webroot Webroot 360 Tech Support Number @@!1-800-059-007!! Webroot 360 Support
Number
Webroot call center
Webroot hq
Webroot office locations
Webroot support site
Webroot telephone number 1.800-059-007 for customer support
Webroot customer service contact number 1.800-059-007
Webroot customer care
Webroot toll free number 1.800-059-007
Webroot security contact number 1.800-059-007
contact Vipre
Webroot headquarters Webroot 360 Tech Support Number @@!1-800-059-007!! Webroot
360 Support Number
Webroot customer service chat
Webroot customer service telephone number 1.800-059-007
Webroot Support phone number 1.800-059-007
Webroot customer support
Webroot customer service refund
Webroot login
Webroot locations
Webroot customer service number 1.800-059-007 uk
Webroot locations
Webroot customer service email address
Webroot support site Webroot 360 Tech Support Number @@!1-800-059-007!! Webroot
360 Support Number
Webroot technical support phone number 1.800-059-007
Webroot technical support live chat
Webroot technical support email address
Webroot technical support number 1.800-059-007
Webroot technical support number 1.800-059-007 Webroot 360 Tech Support Number
@@!1-800-059-007!! Webroot 360 Support Number
symantec technical support number 1.800-059-007
Webroot antivirus technical support number 1.800-059-007
Webroot customer support phone number 1.800-059-007
Webroot customer support number 1.800-059-007
Webroot customer support number 1.800-059-007 Webroot 360 Tech Support Number
@@!1-800-059-007!! Webroot 360 Support Number
Webroot antivirus customer support number 1.800-059-007
Webroot locations Webroot 360 Tech Support Number @@!1-800-059-007!! Webroot
360 Support Number
Webroot Support phone number 1.800-059-007
Webroot corporate phone number 1.800-059-007 Webroot 360 Tech Support Number
@@!1-800-059-007!! Webroot 360 Support Number
Webroot customer service Support
Webroot technical support phone number 1.800-059-007
Webroot tech support phone number 1.800-059-007
Webroot tech support number 1.800-059-007
Webroot tech support number 1.800-059-007 FREE
>From gcc-bugs-return-534115-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 10:31:38 2016
Return-Path: <gcc-bugs-return-534115-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 19562 invoked by alias); 11 Aug 2016 10:31:37 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 19165 invoked by uid 48); 11 Aug 2016 10:31:31 -0000
From: "jaiwoerufn at yopmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/73639] New: AVG Support++1888+936++5569>>>>> AVG Antivirus Support Phone Number,=AVG tech support phone number<<<1888+936++5569>AVG technical support number
Date: Thu, 11 Aug 2016 10:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jaiwoerufn at yopmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73639-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01451.txt.bz2
Content-length: 7968

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73639

            Bug ID: 73639
           Summary: AVG Support++1888+936++5569>>>>> AVG Antivirus Support
                    Phone Number,=AVG tech support phone
                    number<<<1888+936++5569>AVG technical support number
           Product: gcc
           Version: 6.2.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: jaiwoerufn at yopmail dot com
  Target Milestone: ---

AVG Support++1888+936++5569>>>>> AVG Antivirus Support Phone Number,=AVG tech
support phone number<<<1888+936++5569>AVG technical support number
AVG Support++1844+778++8603>>>>> AVG Antivirus Support Phone Number,=AVG tech
support phone number<<<1844+778++8603>AVG technical support number

Avg Live Support and Help‎ 18(00-778-8603 @@ Avg tech support phone number
Avg Live Support and Help‎ 18(00-778-8603 @@ Avg tech support phone number
Avg Live Support and Help‎ 18(00-778-8603 Avg 360 support phone number usa
USA Canada>>>> 1 844-778-8603++ Avg 360 support phone number 1
844-778-8603usa/canada Avg 360 Tech Support Number @@!1-844-778-8603;!!Avg 360
Support Number
WikiGenes- @+++1844-778-8603++000Avg 360 support phone
number18447788603usa/canada
Avg antivirus technical support phone number 1.844-778-8603
hdfc toll free customer care number(((!1.844-778-8603)) Avg 360 Tech Support
Number @@!1-844-778-8603!! Avg 360 Support Number
Avg toll free customer care number 1.844-778-8603
Avg toll free customer care number 1.844-778-8603
Avg toll free customer care number 1.844-778-8603
Avg toll free customer care number 1.844-778-8603>>>>>
Avg technical support phone number ((1.844-778-8603))
Avg technical support number 1.844-778-8603
Avg technical support number 1.844-778-8603
symantec technical support number @@@@@@@@@@@@@@@@@ 1.844-778-8603
Avg antivirus technical support number 1.844-778-8603
Avg support phone number 1.844-778-8603
Avg locations Avg 360 Tech Support Number @@!1-844-778-8603!! Avg 360 Support
Number Avg 360 Tech Support Number @@!1-844-778-8603!! Avg 360 Support Number
Avg customer service
Avg antivirus customer care__Avg Support phone number 1.844-778-8603
Avg customer support phone number 1.844-778-8603
Avg customer support phone number 1.844-778-8603
Avg antivirus customer support phone number 1.844-778-8603Avg antivirus
customer service phone number 1.844-778-8603
Avg antivirus technical support phone number 1.844-778-8603
Avg antivirus tech support phone number 1.844-778-8603
Avg antivirus phone number 1.844-778-8603 Avg 360 Tech Support Number
@@!1-844-778-8603!! Avg 360 Support Number
Avg security center phone number 1.844-778-8603
Avg support telephone number 1.844-778-8603
Avg 360 technical support phone number 1.844-778-8603
symantec technical support phone number 1.844-778-8603
Avg tech support phone number 1.844-778-8603 Avg 360 Tech Support Number
@@!1-844-778-8603!! Avg 360 Support Number
apple technical support phone number 1.844-778-8603 usa
microsoft technical support phone number 1.844-778-8603 usa
gmail technical support phone number 1.844-778-8603 usa
kaspersky technical support phone number 1.844-778-8603 usa
lenovo technical support phone number 1.844-778-8603 usa
epson technical support phone number 1.844-778-8603 usa
Avg technical support phone number 1.844-778-8603 Avg 360 Tech Support Number
@@!1-844-778-8603!! Avg 360 Support Number
Avg AntiVirus Customer Service Phone Number #1: 844-778-8603
Avg Phone number 1-844-778-8603 Avg 360 phone number Avg 360 support phone
number
Free~* C@ll 1.844-778-8603 Avg 360 technical support phone number usa
1.844-778-8603 Avg 360 technical support phone number Avg free call
~* C@ll 1.844-778-8603 Avg 360 technical support phone number usa
1.844-778-8603 Avg 360 technical support phone number Avg free call Avg 360
Tech Support Number @@!1-844-778-8603!! Avg 360 Support Number
PHONE support USA @1.844-778-8603 Avg antivirus technical support phone number
Avg locations
Avg online support
Avg Support phone number 1.844-778-8603
Avg customer care Avg tech support phone number 1.844-778-8603
Avg tech support phone number 1.844-778-8603
Avg antivirus tech support phone number 1.844-778-8603
Avg locations Avg 360 Tech Support Number @@!1-844-778-8603!! Avg 360 Support
Number
Avg Support phone number 1.844-778-8603
service Avg com
Avg login
Avg technical support phone number 1.844-778-8603
Avg customer service
Avg Support phone number 1.844-778-8603
Avg support telephone number 1.844-778-8603
Avg support phone number 1.844-778-8603
Avg antivirus support phone number 1.844-778-8603 Avg 360 Tech Support Number
@@!1-844-778-8603!! Avg 360 Support Number
Avg antivirus tech support phone number 1.844-778-8603
Avg antivirus customer service phone number 1.844-778-8603
Avg 360 technical support phone number 1.844-778-8603
symantec technical support phone number 1.844-778-8603
Avg technical support phone number 1.844-778-8603
Avg customer service telephone number 1.844-778-8603
Avg antivirus phone number 1.844-778-8603
Avg antivirus customer service phone number 1.844-778-8603
Avg antivirus customer service Support Avg 360 Tech Support Number
@@!1-844-778-8603!! Avg 360 Support Number
Avg antivirus phone number 1.844-778-8603
Avg phone number 1.844-778-8603 cancel subscription
Avg technical support phone number 1.844-778-8603
Avg 844 phone number 1.844-778-8603
snapdeal toll free customer care number 1.844-778-8603
sbi toll free customer care number 1.844-778-8603
airtel toll free customer care number 1.844-778-8603
Avg customer service number 1.844-778-8603
Avg call center Avg 360 Tech Support Number @@!1-844-778-8603!! Avg 360 Support
Number
Avg customer service email address
Avg customer care no Avg 360 Tech Support Number @@!1-844-778-8603!! Avg 360
Support Number
call Avg support
chat with Avg support
Avg customer support
Avg antivirus customer service number 1.844-778-8603
Avg Avg 360 Tech Support Number @@!1-844-778-8603!! Avg 360 Support Number
Avg call center
Avg hq
Avg office locations
Avg support site
Avg telephone number 1.844-778-8603 for customer support
Avg customer service contact number 1.844-778-8603
Avg customer care
Avg toll free number 1.844-778-8603
Avg security contact number 1.844-778-8603
contact Vipre
Avg headquarters Avg 360 Tech Support Number @@!1-844-778-8603!! Avg 360
Support Number
Avg customer service chat
Avg customer service telephone number 1.844-778-8603
Avg Support phone number 1.844-778-8603
Avg customer support
Avg customer service refund
Avg login
Avg locations
Avg customer service number 1.844-778-8603 uk
Avg locations
Avg customer service email address
Avg support site Avg 360 Tech Support Number @@!1-844-778-8603!! Avg 360
Support Number
Avg technical support phone number 1.844-778-8603
Avg technical support live chat
Avg technical support email address
Avg technical support number 1.844-778-8603
Avg technical support number 1.844-778-8603 Avg 360 Tech Support Number
@@!1-844-778-8603!! Avg 360 Support Number
symantec technical support number 1.844-778-8603
Avg antivirus technical support number 1.844-778-8603
Avg customer support phone number 1.844-778-8603
Avg customer support number 1.844-778-8603
Avg customer support number 1.844-778-8603 Avg 360 Tech Support Number
@@!1-844-778-8603!! Avg 360 Support Number
Avg antivirus customer support number 1.844-778-8603
Avg locations Avg 360 Tech Support Number @@!1-844-778-8603!! Avg 360 Support
Number
Avg Support phone number 1.844-778-8603
Avg corporate phone number 1.844-778-8603 Avg 360 Tech Support Number
@@!1-844-778-8603!! Avg 360 Support Number
Avg customer service Support
Avg technical support phone number 1.844-778-8603
Avg tech support phone number 1.844-778-8603
Avg tech support number 1.844-778-8603
Avg tech support number 1.844-778-8603 FREE
>From gcc-bugs-return-534116-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 10:36:54 2016
Return-Path: <gcc-bugs-return-534116-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 29514 invoked by alias); 11 Aug 2016 10:36:54 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 29462 invoked by uid 48); 11 Aug 2016 10:36:48 -0000
From: "jaiwoerufn at yopmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/73643] New: AVG Support Phone Number@@!!1 888“6+5569 AVG support phone number
Date: Thu, 11 Aug 2016 10:36:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 5.2.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jaiwoerufn at yopmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73643-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01452.txt.bz2
Content-length: 12559

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73643

            Bug ID: 73643
           Summary: AVG Support Phone Number@@!!1 888=936+5569 AVG support
                    phone number
           Product: gcc
           Version: 5.2.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: middle-end
          Assignee: unassigned at gcc dot gnu.org
          Reporter: jaiwoerufn at yopmail dot com
  Target Milestone: ---

AVG Support Phone Number@@!!1 888=936+5569 AVG support phone number
AVG helpline phone number@~1888-291-2867 AVG tech Support Number AVG antivirus
customer service phone number

AVG helpline phone number@~1888-291-2867 AVG tech Support Number AVG antivirus
customer service phone number
AVG HelpLiNe @+1888++291++2867 AVG support phone number

AVG helpline phone number@~1888-291-2867 AVG tech Support Number AVG antivirus
customer service phone number

1888++291++2867) Technical support number
1888++291++2867 AVG Antivirus Technical Support
1-888-291-2867 contact AVG antivirus customer service phone number
1888++291++2867 phone number for AVG customer service
1888++291++2867 phone number for AVG antivirus technical support
1888++291++2867 phone number for AVG antivirus customer service
phone number for AVG antivirus technical support
phone number for AVG security
AVG antivirus customer care phone number
AVG antivirus customer service billing
AVG antivirus customer service email address
AVG antivirus customer service live chat
AVG antivirus customer service telephone number
AVG antivirus customer support usa phone number
AVG antivirus help desk support phone number free in usa
AVG antivirus phone number customer service us
AVG antivirus phone number support
AVG antivirus support phone number
AVG antivirus tech support phone number free in usa
AVG antivirus tech support phone number
AVG antivirus technical support customer service
AVG antivirus technical support number
AVG antivirus telephone number
AVG antivirus toll free customer care number
AVG antivirus toll free number in usa
AVG antivirus contact phone number in usa
AVG antivirus customer service number
AVG antivirus customer service phone number
AVG antivirus customer service telephone number
AVG antivirus customer support number
AVG antivirus customer support phone number
AVG antivirus customer support phone number
AVG antivirus help desk phone number in usa
AVG antivirus phone number
AVG antivirus phone number support for technical issue in usa
AVG antivirus support phone number
AVG antivirus technical support help desk phone number
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG customer service number
AVG customer service telephone number
AVG customer services email
AVG customer support email address
AVG customer support number
AVG customer support phone number
AVG customer service phone number
AVG internet security contact phone number
AVG internet security customer service phone number
AVG internet security phone number
AVG internet security help phone number
AVG internet security phone number in usa
AVG internet security support phone number
AVG internet security technical support
AVG phone number customer service
AVG phone numbers customer support
AVG phone support number
AVG security contact phone number
AVG security phone number customer service
AVG security support phone number
AVG support contact number
AVG support email address
AVG support phone number
AVG support telephone number
AVG support telephone number usa
AVG support telephone number
AVG tech support number
AVG tech support phone number
AVG tech support phone number free
AVG technical support phone number
AVG technical support cutomer phone number
AVG technical support phone number
AVG technical support number free in usa
AVG technical support number toll free number
AVG technical support phone number
AVG technologies phone number
AVG telephone support number
AVG antivirus customer support phone number
AVG antivirus customer service phone number
AVG customer support phone number
AVG phone number customer service
AVG technical support telephone number
contact AVG antivirus customer service phone number
customer service number for AVG antivirus
phone number for AVG antivirus
phone number for AVG antivirus customer service
phone number for AVG antivirus support
phone number for AVG customer service
phone number for AVG customer service
phone number for AVG customer support
phone number for AVG tech support
phone number AVG antivirus customer service
AVG antivirus customer service number
AVG antivirus customer service phone
AVG antivirus customer service phone number
AVG antivirus customer service phone number us
AVG antivirus customer service telephone number
AVG antivirus customer support
AVG antivirus customer support number
AVG antivirus phone number customer service us
AVG antivirus phone number support
AVG antivirus phone support
AVG antivirus phone support number
AVG antivirus support phone number
AVG antivirus tech support phone number
AVG antivirus technical support
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG customer service phone number
AVG customer support phone number
AVG helpline phone number
AVG internet security customer service
AVG internet security customer service phone number
AVG internet security help phone number
AVG internet security phone number customer service
AVG phone number customer service
AVG phone number customer support
AVG security customer service phone number
AVG security phone number customer service
AVG support phone number
AVG support telephone number
AVG tech support number
AVG tech support phone number
AVG technical support
AVG technical support number
AVG technical support phone number
AVG antivirus customer support phone number
AVG antivirus phone number customer service
AVG antivirus tech support number
AVG customer service phone number
AVG customer service phone numbers
AVG internet security technical support
AVG tech support phone number us
AVG technical support telephone number
contact AVG antivirus
contact AVG by phone
contact AVG customer service
contact AVG antivirus customer service phone number
contactAVG antivirus tech support usa
customer service AVG phone number
download AVG titanium
dri AVG customer service number
dri AVG customer service phone number
dri AVG phone number
how to contact AVG by email
how to delete AVG from mac
micro trend customer service
norton antivirus customer service number
phone number for AVG customer service
phone number forAVG customer service
phone number forAVG customer support
phone number forAVG tech support
phone number forAVG technical support
phone number for AVG antivirus technical support
phone number for AVG security
phone number for AVG support
phone number for AVG technical support
phone number for AVG antivirus customer service
phone number for AVG customer service
remove AVG from mac
technical support for antivirus AVG
telephone number forAVG technical support
telephone AVG antivirus
AVG antivirus contact number
AVG antivirus customer care
AVG antivirus customer care number
AVG antivirus customer care number usa
AVG antivirus customer service
AVG antivirus customer service number :idea: :evil: :D :) :lol: :( :o :shock:
AVG antivirus customer service phone number
AVG antivirus customer service phone number usa
AVG antivirus customer service telephone number
AVG antivirus customer support
AVG antivirus customer support in usa
AVG antivirus customer support number
AVG antivirus customer support phone number
AVG antivirus for phone
AVG antivirus free antivirus support
AVG antivirus help phone number
AVG antivirus helpline number
AVG antivirus online support
AVG antivirus phone
AVG antivirus phone number
AVG antivirus phone number in usa
AVG antivirus phone number usa
AVG antivirus phone support
AVG antivirus plus tech support
AVG antivirus protection
AVG antivirus support
AVG antivirus support number
AVG antivirus support phone number
AVG antivirus support services
AVG antivirus support telephone number
AVG antivirus tech support
AVG antivirus tech support phone number free in usa
AVG antivirus tech support number
AVG antivirus tech support phone number
AVG antivirus technical support
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG antivirus toll free customer care number
AVG antivirus toll free number
AVG antivirus contact phone number in usa
AVG antivirus help desk phone number in usa
AVG antivirus phone number support for technical issue in usa
AVG antivirus support phone number
AVG antivirus technical support help desk phone number
AVG antivirus technical support phone number
AVG contact number
AVG contact number usa
AVG contact phone number
AVG contact support
AVG contact number usa
AVG contact phone number
AVG contact phone number usa
AVG customer & technical support
AVG customer care
AVG customer care center
AVG customer care email
AVG customer care number
AVG customer care number
AVG customer care number usa
AVG customer care number usa toll free
AVG customer care phone number usa
AVG customer care tchnical support
AVG customer care toll free
AVG customer care toll free number
AVG customer care usa
AVG customer help
AVG customer number
AVG customer portal*********
AVG customer service
AVG customer service billing
AVG customer service email address
AVG customer service number
AVG customer service phone
AVG customer service phone number
AVG customer service phone number us
AVG customer service phone number usa
AVG customer service reviews
AVG customer service telephone number
AVG customer service usa
AVG customer support
AVG customer support number
AVG customer support phone
AVG customer support phone number
AVG customer service number
AVG customer service number usa
AVG customer service phone number
AVG customer support number
AVG customer support phone number
AVG free phone support
AVG gold support phone number
AVG help desk phone number
AVG help phone number
AVG helpline
AVG helpline phone number
AVG hotline customer service phone number
AVG internet security customer service
AVG internet security phone number
AVG internet security phone number in usa
AVG lab usa customer service
AVG labs usa customer serviceAVG
AVG phone number
AVG phone number customer service
AVG phone number support
AVG phone number tech support
AVG phone number technical support
AVG phone numbers customer support
AVG phone support
AVG phone support number
AVG phone number customer service
AVG phone number support
AVG phone number tech support
AVG phone number usa
AVG security contact phone number
AVG security phone number
AVG security support phone number
AVG software customer service
AVG software customer service number
AVG support center###########
AVG support contact number
AVG support email address
AVG support phone number
AVG support telephone number
AVG support number usa
AVG support phone number
AVG support phone number usa
AVG tech support
AVG tech support center
AVG tech support contact
AVG tech support number
AVG tech support number usa
AVG tech support phone
AVG tech support phone number
AVG tech support phone number free
AVG tech support number
AVG tech support number usa
AVG tech support phone number
AVG technical support
AVG technical support number
AVG technical support phone number
AVG technical support phone number usa
AVG technical support reviews
AVG technical support usa
AVG technical support phone number
AVG technical support number
AVG technical support number toll free number
AVG technical support number usa
AVG technical support phone number
AVG technical support phone number usa
AVG technologies phone number
AVG telephone number
AVG telephone support number
AVG toll free number
AVG toll free number usa
AVG usa customer care for tech support
AVG usa customer service
AVG usa phone number/////////////
AVG antivirus customer service phone number
AVG antivirus customer service phone number
AVG antivirus customer support phone number
AVG antivirus customer support phone number
AVG antivirus technical support number
AVG customer service phone number usa
AVG internet security support phone number
AVG.com customer service
AVG antivirus antispyware 2011
AVG antivirus customer support
AVG antivirus serial key
AVG antivirus serial number
AVG antivirus support
AVG antivirus technical support
AVG business support*************
AVG contact support
AVG customer care number
AVG customer service 844
AVG customer service nu
>From gcc-bugs-return-534117-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 11:00:41 2016
Return-Path: <gcc-bugs-return-534117-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 65430 invoked by alias); 11 Aug 2016 11:00:41 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 65183 invoked by uid 48); 11 Aug 2016 11:00:26 -0000
From: "anton at samba dot org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/73650] New: powerpc: -mcpuå00mc hits ICE: insn does not satisfy its constraints
Date: Thu, 11 Aug 2016 11:00:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: anton at samba dot org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter cc target_milestone cf_gcctarget attachments.created
Message-ID: <bug-73650-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01453.txt.bz2
Content-length: 1830

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73650

            Bug ID: 73650
           Summary: powerpc: -mcpu=e500mc hits ICE: insn does not satisfy
                    its constraints
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: target
          Assignee: unassigned at gcc dot gnu.org
          Reporter: anton at samba dot org
                CC: amodra at gcc dot gnu.org, segher at gcc dot gnu.org,
                    wschmidt at gcc dot gnu.org
  Target Milestone: ---
            Target: powerpc32-linux

Created attachment 39160
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39160&action=edit
Test case

The following test case hits an ICE:

# gcc -m32 -mcpu=e500mc -O2 testcase.c

testcase.c:11:1: error: insn does not satisfy its constraints:
 }
 ^
(insn 75 71 90 3 (parallel [
            (set (reg:CC 75 7 [204])
                (compare:CC (reg/v:SI 9 9 [orig:190 n ] [190])
                    (const_int 0 [0])))
            (set (reg:SI 66 ctr [orig:203 n ] [203])
                (reg/v:SI 9 9 [orig:190 n ] [190]))
        ]) 465 {*movsi_internal2}
     (nil))
testcase.c:11:1: internal compiler error: in extract_constrain_insn, at
recog.c:2211
0x10840b93 _fatal_insn(char const*, rtx_def const*, char const*, int, char
const*)
        ../../gcc/gcc/rtl-error.c:108
0x10840beb _fatal_insn_not_found(rtx_def const*, char const*, int, char const*)
        ../../gcc/gcc/rtl-error.c:119
0x10806797 extract_constrain_insn(rtx_insn*)
        ../../gcc/gcc/recog.c:2211
0x106eeae7 check_rtl
        ../../gcc/gcc/lra.c:2108
0x106f486f lra(_IO_FILE*)
        ../../gcc/gcc/lra.c:2516
0x106941ff do_reload
        ../../gcc/gcc/ira.c:5384
0x106941ff execute
        ../../gcc/gcc/ira.c:5568
>From gcc-bugs-return-534118-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 11:05:44 2016
Return-Path: <gcc-bugs-return-534118-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 79883 invoked by alias); 11 Aug 2016 11:05:44 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 79565 invoked by uid 48); 11 Aug 2016 11:05:31 -0000
From: "markjohn at yopmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug web/73652] New: (((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone number
Date: Thu, 11 Aug 2016 11:05:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: web
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: minor
X-Bugzilla-Who: markjohn at yopmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73652-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01454.txt.bz2
Content-length: 19101

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73652

            Bug ID: 73652
           Summary: (((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech
                    support phone number
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: minor
          Priority: P3
         Component: web
          Assignee: unassigned at gcc dot gnu.org
          Reporter: markjohn at yopmail dot com
  Target Milestone: ---

(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone
number(((1.8.4.4.8.7.2.2.9.6.5)))Norton antivirus tech support phone number
>From gcc-bugs-return-534119-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 11:17:56 2016
Return-Path: <gcc-bugs-return-534119-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 118341 invoked by alias); 11 Aug 2016 11:17:55 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 118267 invoked by uid 48); 11 Aug 2016 11:17:42 -0000
From: "wenzel@mitsuba-renderer.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/73350] AVX512: GCC optimizes away rounding flags
Date: Thu, 11 Aug 2016 11:17:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wenzel@mitsuba-renderer.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-73350-4-lY3ybHLVzF@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73350-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73350-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01455.txt.bz2
Content-length: 389

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73350

--- Comment #1 from Wenzel Jakob <wenzel@mitsuba-renderer.org> ---
Sorry, there was a stupid typo in my message below. The middle part should have
read

At optimization level, -O1, this currently stops working (tested with GCC
trunk):

$ g++ test.c -o test -mavx512f -O1 -fomit-frame-pointer -fomit-frame-pointer &&
./test
0.00000
>From gcc-bugs-return-534120-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 11:21:09 2016
Return-Path: <gcc-bugs-return-534120-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 6350 invoked by alias); 11 Aug 2016 11:21:09 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 2910 invoked by uid 48); 11 Aug 2016 11:20:56 -0000
From: "j.a.c.k.s.f.t.t at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug driver/73657] New: Cisco Customer Care !!~1 888 811 4532!!~Number
Date: Thu, 11 Aug 2016 11:21:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: driver
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: j.a.c.k.s.f.t.t at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73657-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01456.txt.bz2
Content-length: 2180

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73657

            Bug ID: 73657
           Summary: Cisco Customer Care !!~1 888 811 4532!!~Number
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: driver
          Assignee: unassigned at gcc dot gnu.org
          Reporter: j.a.c.k.s.f.t.t at gmail dot com
  Target Milestone: ---

phone number for skype  []1 888 811 4532[]
skype telephone number  []1 888 811 4532[]
skype customer service 800 number       []1 888 811 4532[]
skype support phone number      []1 888 811 4532[]
skype phone service     []1 888 811 4532[]
skype customer service chat     []1 888 811 4532[]
contact skype   []1 888 811 4532[]
skype 800 number        []1 888 811 4532[]
call skype customer service     []1 888 811 4532[]
skype toll free number  []1 888 811 4532[]
skype numbers   []1 888 811 4532[]
skype contact   []1 888 811 4532[]
contact skype support   []1 888 811 4532[]
skype help phone number []1 888 811 4532[]
skype customer support phone number     []1 888 811 4532[]
call skype support      []1 888 811 4532[]
skype contact phone number      []1 888 811 4532[]
skype phone numbers     []1 888 811 4532[]
free skype phone number []1 888 811 4532[]
skype customer service phone    []1 888 811 4532[]
skype support chat      []1 888 811 4532[]
skype contact info      []1 888 811 4532[]
get a skype phone number        []1 888 811 4532[]
skype customer phone number     []1 888 811 4532[]
how to contact skype    []1 888 811 4532[]
skype number    []1 888 811 4532[]
skype email support     []1 888 811 4532[]
skype contact us        []1 888 811 4532[]
skype contacts  []1 888 811 4532[]
skype live support      []1 888 811 4532[]
skype support email     []1 888 811 4532[]
how do i contact        []1 888 811 4532[]
what is a skype number  []1 888 811 4532[]
skype telephone []1 888 811 4532[]
skype contact list      []1 888 811 4532[]
skype online number     []1 888 811 4532[]
skype call      []1 888 811 4532[]
skype live chat support []1 888 811 4532[]
skype help chat []1 888 811 4532[]
skype chat support      []1 888 811 4532[]
>From gcc-bugs-return-534121-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 11:21:58 2016
Return-Path: <gcc-bugs-return-534121-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 7449 invoked by alias); 11 Aug 2016 11:21:57 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 7358 invoked by uid 48); 11 Aug 2016 11:21:45 -0000
From: "uub at r dot rulfer.com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/73658] New: AVG Support Phone Number@@!!1 800+445+2790 AVG support phone number
Date: Thu, 11 Aug 2016 11:21:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: uub at r dot rulfer.com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73658-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01457.txt.bz2
Content-length: 12624

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73658

            Bug ID: 73658
           Summary: AVG Support Phone Number@@!!1 800+445+2790 AVG support
                    phone number
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: middle-end
          Assignee: unassigned at gcc dot gnu.org
          Reporter: uub at r dot rulfer.com
  Target Milestone: ---

AVG Support Phone Number@@!!1 800+445+2790 AVG support phone number



AVG Support Phone Number@@!!1 800=445+2790 AVG support phone number
AVG helpline phone number@~1800-445-2790 AVG tech Support Number AVG antivirus
customer service phone number

AVG helpline phone number@~1800-445-2790 AVG tech Support Number AVG antivirus
customer service phone number
AVG HelpLiNe @+1800++445++2790 AVG support phone number

AVG helpline phone number@~1800-445-2790 AVG tech Support Number AVG antivirus
customer service phone number

1800++445++2790) Technical support number
1800++445++2790 AVG Antivirus Technical Support
1-800-445-2790 contact AVG antivirus customer service phone number
1800++445++2790 phone number for AVG customer service
1800++445++2790 phone number for AVG antivirus technical support
1800++445++2790 phone number for AVG antivirus customer service
phone number for AVG antivirus technical support
phone number for AVG security
AVG antivirus customer care phone number
AVG antivirus customer service billing
AVG antivirus customer service email address
AVG antivirus customer service live chat
AVG antivirus customer service telephone number
AVG antivirus customer support usa phone number
AVG antivirus help desk support phone number free in usa
AVG antivirus phone number customer service us
AVG antivirus phone number support
AVG antivirus support phone number
AVG antivirus tech support phone number free in usa
AVG antivirus tech support phone number
AVG antivirus technical support customer service
AVG antivirus technical support number
AVG antivirus telephone number
AVG antivirus toll free customer care number
AVG antivirus toll free number in usa
AVG antivirus contact phone number in usa
AVG antivirus customer service number
AVG antivirus customer service phone number
AVG antivirus customer service telephone number
AVG antivirus customer support number
AVG antivirus customer support phone number
AVG antivirus customer support phone number
AVG antivirus help desk phone number in usa
AVG antivirus phone number
AVG antivirus phone number support for technical issue in usa
AVG antivirus support phone number
AVG antivirus technical support help desk phone number
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG customer service number
AVG customer service telephone number
AVG customer services email
AVG customer support email address
AVG customer support number
AVG customer support phone number
AVG customer service phone number
AVG internet security contact phone number
AVG internet security customer service phone number
AVG internet security phone number
AVG internet security help phone number
AVG internet security phone number in usa
AVG internet security support phone number
AVG internet security technical support
AVG phone number customer service
AVG phone numbers customer support
AVG phone support number
AVG security contact phone number
AVG security phone number customer service
AVG security support phone number
AVG support contact number
AVG support email address
AVG support phone number
AVG support telephone number
AVG support telephone number usa
AVG support telephone number
AVG tech support number
AVG tech support phone number
AVG tech support phone number free
AVG technical support phone number
AVG technical support cutomer phone number
AVG technical support phone number
AVG technical support number free in usa
AVG technical support number toll free number
AVG technical support phone number
AVG technologies phone number
AVG telephone support number
AVG antivirus customer support phone number
AVG antivirus customer service phone number
AVG customer support phone number
AVG phone number customer service
AVG technical support telephone number
contact AVG antivirus customer service phone number
customer service number for AVG antivirus
phone number for AVG antivirus
phone number for AVG antivirus customer service
phone number for AVG antivirus support
phone number for AVG customer service
phone number for AVG customer service
phone number for AVG customer support
phone number for AVG tech support
phone number AVG antivirus customer service
AVG antivirus customer service number
AVG antivirus customer service phone
AVG antivirus customer service phone number
AVG antivirus customer service phone number us
AVG antivirus customer service telephone number
AVG antivirus customer support
AVG antivirus customer support number
AVG antivirus phone number customer service us
AVG antivirus phone number support
AVG antivirus phone support
AVG antivirus phone support number
AVG antivirus support phone number
AVG antivirus tech support phone number
AVG antivirus technical support
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG customer service phone number
AVG customer support phone number
AVG helpline phone number
AVG internet security customer service
AVG internet security customer service phone number
AVG internet security help phone number
AVG internet security phone number customer service
AVG phone number customer service
AVG phone number customer support
AVG security customer service phone number
AVG security phone number customer service
AVG support phone number
AVG support telephone number
AVG tech support number
AVG tech support phone number
AVG technical support
AVG technical support number
AVG technical support phone number
AVG antivirus customer support phone number
AVG antivirus phone number customer service
AVG antivirus tech support number
AVG customer service phone number
AVG customer service phone numbers
AVG internet security technical support
AVG tech support phone number us
AVG technical support telephone number
contact AVG antivirus
contact AVG by phone
contact AVG customer service
contact AVG antivirus customer service phone number
contactAVG antivirus tech support usa
customer service AVG phone number
download AVG titanium
dri AVG customer service number
dri AVG customer service phone number
dri AVG phone number
how to contact AVG by email
how to delete AVG from mac
micro trend customer service
norton antivirus customer service number
phone number for AVG customer service
phone number forAVG customer service
phone number forAVG customer support
phone number forAVG tech support
phone number forAVG technical support
phone number for AVG antivirus technical support
phone number for AVG security
phone number for AVG support
phone number for AVG technical support
phone number for AVG antivirus customer service
phone number for AVG customer service
remove AVG from mac
technical support for antivirus AVG
telephone number forAVG technical support
telephone AVG antivirus
AVG antivirus contact number
AVG antivirus customer care
AVG antivirus customer care number
AVG antivirus customer care number usa
AVG antivirus customer service
AVG antivirus customer service number :idea: :evil: :D :) :lol: :( :o :shock:
AVG antivirus customer service phone number
AVG antivirus customer service phone number usa
AVG antivirus customer service telephone number
AVG antivirus customer support
AVG antivirus customer support in usa
AVG antivirus customer support number
AVG antivirus customer support phone number
AVG antivirus for phone
AVG antivirus free antivirus support
AVG antivirus help phone number
AVG antivirus helpline number
AVG antivirus online support
AVG antivirus phone
AVG antivirus phone number
AVG antivirus phone number in usa
AVG antivirus phone number usa
AVG antivirus phone support
AVG antivirus plus tech support
AVG antivirus protection
AVG antivirus support
AVG antivirus support number
AVG antivirus support phone number
AVG antivirus support services
AVG antivirus support telephone number
AVG antivirus tech support
AVG antivirus tech support phone number free in usa
AVG antivirus tech support number
AVG antivirus tech support phone number
AVG antivirus technical support
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG antivirus toll free customer care number
AVG antivirus toll free number
AVG antivirus contact phone number in usa
AVG antivirus help desk phone number in usa
AVG antivirus phone number support for technical issue in usa
AVG antivirus support phone number
AVG antivirus technical support help desk phone number
AVG antivirus technical support phone number
AVG contact number
AVG contact number usa
AVG contact phone number
AVG contact support
AVG contact number usa
AVG contact phone number
AVG contact phone number usa
AVG customer & technical support
AVG customer care
AVG customer care center
AVG customer care email
AVG customer care number
AVG customer care number
AVG customer care number usa
AVG customer care number usa toll free
AVG customer care phone number usa
AVG customer care tchnical support
AVG customer care toll free
AVG customer care toll free number
AVG customer care usa
AVG customer help
AVG customer number
AVG customer portal*********
AVG customer service
AVG customer service billing
AVG customer service email address
AVG customer service number
AVG customer service phone
AVG customer service phone number
AVG customer service phone number us
AVG customer service phone number usa
AVG customer service reviews
AVG customer service telephone number
AVG customer service usa
AVG customer support
AVG customer support number
AVG customer support phone
AVG customer support phone number
AVG customer service number
AVG customer service number usa
AVG customer service phone number
AVG customer support number
AVG customer support phone number
AVG free phone support
AVG gold support phone number
AVG help desk phone number
AVG help phone number
AVG helpline
AVG helpline phone number
AVG hotline customer service phone number
AVG internet security customer service
AVG internet security phone number
AVG internet security phone number in usa
AVG lab usa customer service
AVG labs usa customer serviceAVG
AVG phone number
AVG phone number customer service
AVG phone number support
AVG phone number tech support
AVG phone number technical support
AVG phone numbers customer support
AVG phone support
AVG phone support number
AVG phone number customer service
AVG phone number support
AVG phone number tech support
AVG phone number usa
AVG security contact phone number
AVG security phone number
AVG security support phone number
AVG software customer service
AVG software customer service number
AVG support center###########
AVG support contact number
AVG support email address
AVG support phone number
AVG support telephone number
AVG support number usa
AVG support phone number
AVG support phone number usa
AVG tech support
AVG tech support center
AVG tech support contact
AVG tech support number
AVG tech support number usa
AVG tech support phone
AVG tech support phone number
AVG tech support phone number free
AVG tech support number
AVG tech support number usa
AVG tech support phone number
AVG technical support
AVG technical support number
AVG technical support phone number
AVG technical support phone number usa
AVG technical support reviews
AVG technical support usa
AVG technical support phone number
AVG technical support number
AVG technical support number toll free number
AVG technical support number usa
AVG technical support phone number
AVG technical support phone number usa
AVG technologies phone number
AVG telephone number
AVG telephone support number
AVG toll free number
AVG toll free number usa
AVG usa customer care for tech support
AVG usa customer service
AVG usa phone number/////////////
AVG antivirus customer service phone number
AVG antivirus customer service phone number
AVG antivirus customer support phone number
AVG antivirus customer support phone number
AVG antivirus technical support number
AVG customer service phone number usa
AVG internet security support phone number
AVG.com customer service
AVG antivirus antispyware 2011
AVG antivirus customer support
AVG antivirus serial key
AVG antivirus serial number
AVG antivirus support
AVG antivirus technical support
AVG business support*************
AVG contact support
AVG customer care number
AVG customer service 844
AVG customer service nu
>From gcc-bugs-return-534123-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 11:46:17 2016
Return-Path: <gcc-bugs-return-534123-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 68134 invoked by alias); 11 Aug 2016 11:46:17 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 68060 invoked by uid 48); 11 Aug 2016 11:46:12 -0000
From: "asolokha at gmx dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/71629] [7 Regression] ICE in lra_set_insn_recog_data, at lra.c:964 w/ -O2 -mlra
Date: Thu, 11 Aug 2016 11:46:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code, ra
X-Bugzilla-Severity: normal
X-Bugzilla-Who: asolokha at gmx dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71629-4-fzCrKPcIpq@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71629-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71629-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01459.txt.bz2
Content-length: 1130

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71629

--- Comment #2 from Arseny Solokha <asolokha at gmx dot com> ---
gcc ICEs w/ the same error but different backtrace compiling the following
testcase w/ -Os -mlra:

int z4, pe;
long long int wv, ca, hv, a5;

void
kw (int d9)
{
  for (;;)
  {
    int f4 = 0;

    if (ca != 0)
    {
      long long int *jd = (long long int *)hv;
      long long int v4 = 1;
      int md = d9;

      do
      {
        if (wv == 0)
          a5 = 0;
        if (a5 != 0)
        {
          if ((*jd / hv) > (*jd > z4))
            f4 = md;
          for (hv = 0; hv < 6; ++hv)
            wv = -z4 | a5;
        }
        for (ca = -1; ca < 10; ++ca)
        {
          d9 = (int)&v4;
          pe /= 3;
        }
      }
      while (f4 != 0);
    }
  }
}

% powerpc-e500v2-linux-gnuspe-gcc-7.0.0-alpha20160731 -w -c -Os -mlra
-fstack-protector -fPIC cfwcdil3.c
cfwcdil3.c: In function 'kw':
cfwcdil3.c:37:1: internal compiler error: in lra_set_insn_recog_data, at
lra.c:964

In this case gcc generates SPE instructions (evstdd, evldd), as -mno-lra
suggests.
>From gcc-bugs-return-534122-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 11:46:17 2016
Return-Path: <gcc-bugs-return-534122-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 68122 invoked by alias); 11 Aug 2016 11:46:16 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 67975 invoked by uid 48); 11 Aug 2016 11:46:04 -0000
From: "j.a.c.k.s.f.tt at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/73681] New: 1 888 811 4532 How To Connect To Wireless Router
Date: Thu, 11 Aug 2016 11:46:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: j.a.c.k.s.f.tt at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73681-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01458.txt.bz2
Content-length: 1137

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73681

            Bug ID: 73681
           Summary: 1 888 811 4532 How To Connect To Wireless Router
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ada
          Assignee: unassigned at gcc dot gnu.org
          Reporter: j.a.c.k.s.f.tt at gmail dot com
  Target Milestone: ---

cisco router tech support phone number
cisco service contract
cisco headquarters address
cisco customer service
cisco support number
cisco tech support number
cisco tech support
cisco phone number
cisco customer service number
cisco phone support
cisco customer support
contact cisco
cisco number
cisco support phone number
cisco corporate address
cisco systems phone number
cisco router customer service
cisco router tech support
cisco contact number
contact number
cisco corporate headquarters
cisco router customer support phone number
cisco hr phone number
cisco conference call
cisco services
cisco unified contact center express
cisco headquarters
cisco tac support number
cisco technical support
>From gcc-bugs-return-534124-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 11:56:58 2016
Return-Path: <gcc-bugs-return-534124-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 106847 invoked by alias); 11 Aug 2016 11:56:57 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 106745 invoked by uid 48); 11 Aug 2016 11:56:45 -0000
From: "eyerurjmkhj at yopmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/73690] New: File:D.e.s.k Support +1-888-9.3.6-55.69 Norton T.e.c.h S.u.p.p.o.r.t P.h.o.n.e n.u.m.b.e.r.pdf
Date: Thu, 11 Aug 2016 11:56:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: eyerurjmkhj at yopmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73690-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01460.txt.bz2
Content-length: 9668

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73690

            Bug ID: 73690
           Summary: File:D.e.s.k Support +1-888-9.3.6-55.69 Norton T.e.c.h
                    S.u.p.p.o.r.t P.h.o.n.e n.u.m.b.e.r.pdf
           Product: gcc
           Version: 6.1.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: eyerurjmkhj at yopmail dot com
  Target Milestone: ---

File:D.e.s.k Support +1-888-9.3.6-55.69 Norton T.e.c.h S.u.p.p.o.r.t P.h.o.n.e
n.u.m.b.e.r.pdf

D.e.s.k_Support_+1-877-5.2.3-36.78_Norton_T.e.c.h_S.u.p.p.o.r.t_P.h.o.n.e_n.u.m.b.e.r.pdf‎
(file size: 3 KB, MIME type: application/pdf)
!CANADA 18444434666 Norton antivirus customer suppOrt number usaasdaa
UCanaDa..@1844-443-4666(USA), 1844-443-4666(UK), 1844-443-4666(AUS)@Norton
telephone support@))))!@ $$@$$$ Norton computer support number
+@$$$@$$$@$@))))!@1844-443-4666(USA), 1844-443-4666(UK), 1844-443-4666(AUS)@USA
CALL Norton Antivirus Tech Support Phone Number, Norton Antivirus Customer
service number... +@$$$@$$$@$@))@1-844-443-4666@USA CALL Norton Antivirus Tech
Support Phone Number, Norton Antivirus Customer service number..
++@@@helpline@@USA_CALL_1-844-443-4666_Norton_ANTIVIRUS_TECHNICAL_SUPPORT_PHONE_NUMBER,CUSTOMER_SERVICE_NUMBER_USA
? $CALL %%USA((1-844-443-4666))_!!Norton Antivirus tech Support Number
@1-844-443-4666@ Norton Antivirus Tech Support Phone Number Call wireless
1-844-443-4666 1-844-443-4666 Norton Tech Support Phone Number Canada Norton
antivirus customer service number1-844-443-4666 Norton support number, Norton
support, Norton antivirus support, Norton tech support, Norton technical
support, Norton customer service number, Norton customer service, Norton tech
support number, ##Norton support center##, Norton antivirus support number,
hewlett packard support, Norton contact number, Norton phone number, Norton
help and support, Norton customer support, Norton antivirus help, Norton
technical support number, Norton support phone number, hewlett packard customer
service, Norton antiviruss support, Norton customer service phone number,
Norton number, Norton customer care, Norton contact, Norton tech support phone
number, Norton support chat, Norton customer support number, Norton customer
care number, contact Norton support, Norton help, Norton phone, Norton
antivirus support phone number, Norton customer support phone number, Norton
antivirus tech support, Norton phone support, Norton technical support phone
number, Norton laptop support number, hewlett packard antivirus support, Norton
helpline, Norton telephone support, Norton online support, Norton support
contact, Norton chat support, hewlett packard phone number, Norton antivirus
customer service, Norton antivirus tech support number, Norton product support,
hewlett packard customer service phone number, Norton computer support number,
Norton support contact number, Norton support antivirus, Norton computer
support, Norton tech support chat, Norton helpline number, Norton laptop
support, hewlett packard tech support, Norton online chat, hewlett packard
technical support, Norton antivirus help line, phone number for Norton support,
hewlett packard support phone number, Norton antivirus technical support,
hewlett packard customer service number, Norton service number, hewlett packard
helpline, Norton customer care no, Norton antivirus customer service number,
Norton help number, Norton antivirus customer service phone number, Norton 1844
number, Norton support phone, Norton support line, hewlett packard contact
number, Norton antivirus tech support phone number, Norton antivirus customer
support phone number, Norton antiviruss help, call Norton support, ##Norton
antivirus support## chat, hewlett packard support number, hewlett packard tech
support number, Norton support telephone number, hewlett packard tech support
phone number, call Norton, Norton contact support, hewlett packard technical
support phone number, Norton support centre, hewlett packard customer support,
Norton desktop support, Norton laptop customer service, contact Norton
antivirus support, Norton pc support, Norton laptop customer care number,
Norton support for antiviruss, Norton antivirus customer care, Norton customer
care phone number, hewlett packard help, phone number for Norton, Norton online
help, Norton laptop customer care, Norton helpline phone number, Norton
antivirus customer support, Norton technical support chat, Norton computer
help, Norton support numbers, Norton technical support contact number, Norton
telephone number, Norton antivirus technical support phone number, Norton
antivirus helpline, Norton support antiviruss, Norton support online, Norton
antivirus contact number, Norton help phone number, Norton antivirus customer
care number, contact hewlett packard by phone, Norton antivirus phone support,
hewlett packard antiviruss support, Norton tech support phone, Norton technical
help, Norton laptop tech support number, contact Norton by phone, Norton
support call, Norton computers support, hewlett packard customer service
telephone number, phone number for hewlett packard, Norton online support chat,
Norton laptop customer service number, Norton online chat support, Norton
antiviruss customer service, hewlett packard customer service phone, Norton
laptop tech support, Norton service phone number, hewlett packard antivirus
help, phone number for Norton antiviruss, Norton troubleshooting phone number,
Norton 844 number, hewlett packard technical support number, contact Norton
support phone, phone number for Norton antivirus support, Norton customer
support chat, Norton help and support number, contact hewlett packard, Norton
laptop support phone number, Norton antiviruss customer service phone number,
Norton laptop customer service phone number, Norton computer support phone
number, Norton pavilion support, Norton computer customer service, Norton
customer services, hewlett packard telephone number, Norton helpline no, Norton
help desk number, contact Norton support phone number, hewlett packard contact,
Norton phone numbers, Norton antiviruss customer care number, Norton antivirus
help and support, contact Norton technical support, Norton contact numbers,
contact Norton support chat, call Norton tech support, Norton customer service
phone, Norton help support, Norton computer tech support, Norton assistance
phone number, Norton customer service telephone number, hewlett packard
antivirus support phone number, Norton contact support number, Norton support
center phone number, Norton support phone numbers, tech support for Norton,
Norton it support, Norton laptop helpline, Norton technical, Norton laptop
technical support number, Norton antiviruss tech support phone number, Norton
antiviruss support phone number, hewlett packard help desk phone number, Norton
computer tech support phone number, Norton customer service number for laptop,
Norton antivirus helpline number, contact Norton support by phone, hewlett
packard support center, Norton laptop customer care no, Norton antivirus
support telephone number, Norton support services, Norton customer service
number for antiviruss, Norton product support number, Norton laptop tech
support phone number, Norton antivirus helpline phone number, contact Norton
customer support, hewlett packard customer support phone number, Norton
antiviruss technical support, Norton customer care center, support for Norton
antiviruss, Norton antivirus support center, phone number for Norton tech
support, Norton desktop customer care number, Norton laptops support, Norton
antivirus online support, Norton antivirus phone number, hewlett packard
antiviruss support phone number, technical support for Norton antiviruss phone
number, Norton help center phone number, contact Norton tech support, call
Norton antivirus support, Norton antiviruss customer support, Norton computer
customer service number, Norton antiviruss helpline, Norton customer care
contact number, Norton laptop help, Norton computer customer service phone
number, phone number for hewlett packard customer service, hewlett packard 844
number, Norton antivirus help phone number, Norton antiviruss help phone
number, Norton antivirus phone number for customer service, Norton computer
technical support phone number, customer service Norton, Norton support
technical support number, contact number for Norton, Norton computers support
phone number, Norton antiviruss support number, Norton antivirus technical
support number, contact Norton tech support by phone, Norton computer customer
care number, Norton antivirus 844 number, call Norton customer service, Norton
antivirus help center, Norton computers customer service, Norton antivirus help
desk, hewlett packard computer support, Norton antiviruss technical support
number, Norton help desk phone number, Norton antivirus support phone, Norton
contact help, contact Norton laptop support, Norton customer service contact
number, support for Norton antivirus, Norton antivirus customer care no, Norton
computer phone number, Norton tech help, Norton pc support number, Norton
laptop customer support, Norton desktop support number, support Norton
antivirus, Norton support hours, number for Norton support, Norton support
customer service number, Norton contact phone number, customer service number
for Norton antiviruss, Norton computers help, Norton tech support contact
number, Norton phone support number..
>From gcc-bugs-return-534125-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 11:58:11 2016
Return-Path: <gcc-bugs-return-534125-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 112241 invoked by alias); 11 Aug 2016 11:58:11 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 111457 invoked by uid 55); 11 Aug 2016 11:57:58 -0000
From: "joseph at codesourcery dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug web/72856] Trottle bug creation for newly created accounts (to limit spam)
Date: Thu, 11 Aug 2016 11:58:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: web
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: joseph at codesourcery dot com
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: LpSolit at netscape dot net
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72856-4-HevINFMndc@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72856-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72856-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01461.txt.bz2
Content-length: 620

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72856

--- Comment #7 from joseph at codesourcery dot com <joseph at codesourcery dot com> ---
Are lots of the spam bugs coming from the same IP address, or from lots of 
different IP addresses - is it readily possibly to tell what IP address 
created a given bug?  (If lots come from the same IP address, hooking 
Bugzilla up to something like fail2ban to block connections from the IP 
address that created a bug marked as spam could help.)

Much the same question applies to spam account creations (throttle account 
creations from the same IP address).
>From gcc-bugs-return-534126-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 12:01:47 2016
Return-Path: <gcc-bugs-return-534126-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 119350 invoked by alias); 11 Aug 2016 12:01:47 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 118951 invoked by uid 48); 11 Aug 2016 12:01:34 -0000
From: "Ingthe39 at rhyta dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/73691] New: USA - 1-888-527-3401 AVG antivirus 24/7 tech support phone number UK - 1-888-527-3401 AVG antivirus 24/7 tech support phone number AUS - 1-888-527-3401 AVG antivirus 24/7 tech support phone number
Date: Thu, 11 Aug 2016 12:01:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: trans-mem
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: Ingthe39 at rhyta dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73691-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01462.txt.bz2
Content-length: 18274

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73691

            Bug ID: 73691
           Summary: USA - 1-888-527-3401 AVG antivirus 24/7 tech support
                    phone number UK - 1-888-527-3401 AVG antivirus 24/7
                    tech support phone number AUS - 1-888-527-3401 AVG
                    antivirus 24/7 tech support phone number
           Product: gcc
           Version: trans-mem
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: Ingthe39 at rhyta dot com
  Target Milestone: ---

AVG antivirus technical support AVG support phone number AVG tech support toll
free number in AUS AVG tech support phone number AVG tech support phone number
free AVG technical support phone number AVG technologies phone number AVG
telephone support number AVG support contact number AVG antivirus customer
support phone number AVG antivirus problems AVG antivirus tech support AVG
antivirus technical support AVG antivirus toll free number AVG com customer
service phone number AVG contact phone number AVG contact telephone number AVG
customer service contact number AVG customer service email AVG customer service
phone number AVG customer service telephone number AVG customer services email
AVG customer support email address AVG customer support number AVG customer
support phone number AVG internet security contact phone number AVG internet
security customer service phone number AVG internet security phone number AVG
phone number customer service AVG phone numbers customer support AVG phone
support number AVG antivirus tech support contact number AVG antivirus tech
support email address AVG antivirus support phone number AVG antivirus support
telephone number AVG antivirus tech support number AVG antivirus tech support
phone number AVG antivirus tech support phone number free AVG antivirus
technical support phone number AVG antivirus technologies phone number AVG
antivirus telephone support number AVG antivirus technical support number AVG
antivirus technical support help desk phone number AVG technical support number
toll free number AVG technical support phone number AVG antivirus customer
support phone number AVG antivirus customer service phone number phone number
for AVG antivirus customer service contact AVG antivirus customer service phone
number AVG symantec support phone number AVG symantec customer service phone
number phone number for AVG symantec customer service symantec AVG customer
service phone number AVG security support phone number AVG internet security
support phone number phone number for AVG security AVG internet security phone
number in AUS AVG antivirus contact phone number in AUS AVG security contact
phone number AVG antivirus help desk phone number in AUS AVG antivirus tech
support phone number free in AUS AVG antivirus support phone number AVG
antivirus phone number support for technical issue in AUS phone number for AVG
antivirus technical support AVG antivirus customer service telephone number AVG
antivirus toll free customer care number AVG antivirus technical support toll
free number AVG antivirus technical support Phone Number in AUS call AVG
technical support helpdesk phone number AVG telephone number for technical
support AVG antivirus customer care number number AVG antivirus customer
helpline number AVG antivirus technologies customer care number AVG antivirus
toll free number in AUS AVG antivirus customer support phone number AVG
antivirus customer service phone number AVG antivirus customer service number
AVG antivirus contact phone number AVG antivirus help phone number AVG security
support phone number AVG support phone number AUS AVG customer support phone
number AVG telephone number how to contact AVG customer service AVG tech
support phone number AVG customer support phone number AUS AVG tech support
phone number free AVG technical support phone number AVG customer service phone
number AVG technical support phone number AUS AVG customer service phone number
AUS AVG free support phone number AVG customer support phone number us AVG
customer support telephone number AVG technical support contact number
telephone number for AVG customer support AVG antivirus software problems AVG
antivirus tech support phone number AVG antivirus customer service phone number
AVG technical support AVG contact info for tech support AVG antivirus contact
phone number AVG customer service contact number AVG support sales AVG customer
service phone AVG antivirus technical support toll free number AVG antivirus
technical support email address AVG antivirus customer support phone number AVG
antivirus telephone support number AVG ntivirus contact phone number for AUS
AVG antivirus technical support contact number AVG antivirus technical support
chat AVG antivirus customer care number AVG antivirus helpline number AVG
antivirus support phone number AVG antivirus technical support number AVG
antivirus toll free number AVG technical support phone number AVG antivirus
technical support number AVG security support phone number AVG internet
security support phone number phone number for AVG security AVG internet
security phone number in AUS AVG antivirus contact phone number in AUS AVG
security contact phone number AVG antivirus help desk phone number in AUS AVG
internet security phone number AVG phone number customer service AVG phone
numbers customer support AVG phone support number AVG support contact number
AVG support email address AVG support phone number AVG support telephone number
AVG tech support number AVG technologies phone number AVG telephone support
number AVG customer care number AUS AVG antivirus customer care AVG customer
care tchnical support AVG customer care number AUS toll free AVG customer care
AUS AVG AUS customer care for tech support AVG customer care toll free number
phone number for AVG customer service phone number for AVG customer support AVG
technical support number AVG customer service number phone number for AVG
technical support phone number for AVG tech support AVG antivirus support
number AVG antivirus contact number AVG antivirus phone number AUS AVG phone
number support AVG contact phone number AVG antivirus support AVG antivirus
tech support AVG antivirus support telephone number AVG tech support AVG
antivirus phone support contact AVG antivirus tech support AUS AVG customer
service AUS AVG.com customer service AVG internet security customer service AVG
AUS customer service AVG lab AUS customer service AVG labs AUS customer service
AVG AUS customer care number for AVG antivirus technical support contact AVG
technical support AVG lab technical support call AVG technical support AVG
technical support AUS AVG antivirus support services AVG online antivirus
support AVG antivirus online tech support AVG antivirus remote tech support AVG
antivirus 24/7 tech support AVG antivirus email tech support AVG antivirus tech
support AUS AVG antivirus tech support online AVG antivirus AUS tech support
AVG antivirus phone tech support AVG antivirus tech support AVG virus customer
service customer service AVG AVG software customer service customer service for
AVG AVG antivirus help AVG antivirus help desk AVG antivirus customer service
AVG antivirus customer support AVG antivirus customer service phone AVG
antivirus customer service uk customer service AVG antivirus phone number for
AVG support AVG com support phone number AVG phone number for support AVG phone
support AVG support telephone number AUS AVG internet security contact phone
number AVG internet security customer service phone number AVG antivirus plus
tech support AVG technical support phone number AVG antivirus technical support
help desk phone number AVG technical support number toll free number AVG
technical support phone number AVG antivirus customer support phone number AVG
antivirus customer service phone number AVG antivirus customer support phone
number AVG antivirus customer service phone number phone number for AVG
antivirus customer service contact AVG antivirus customer service phone number
AVG customer service phone number phone number for AVG customer service AVG
security support phone number phone number for AVG security AVG internet
security phone number in AUS AVG antivirus contact phone number in AUS AVG
security contact phone number AVG antivirus help desk phone number in AUS AVG
antivirus tech support phone number free in AUS AVG antivirus support phone
number AVG antivirus phone number support for technical issue in AUS phone
number for AVG antivirus technical support AVG antivirus customer service
telephone number AVG antivirus toll free customer care number AVG technical
support number AVG tech support phone number AVG support phone number AVG
customer support phone number AVG antivirus technical support phone number AVG
technical support phone number AUS phone number for AVG technical support AVG
customer service phone number AUS AVG customer service number AVG technical
support number AUS AVG customer support number AVG tech support number phone
number for AVG support AVG support phone number AUS AVG phone number customer
service AVG phone number tech support AVG help phone number AVG help desk phone
number AVG phone number AUS AVG contact phone number AUS AVG contact phone
number customer service AVG phone number AVG phone number support AVG security
phone number AVG customer service number AUS AVG contact number AUS AVG AUS
phone number AVG support number AUS AVG tech support number AUS phone number
for AVG technical support phone number for AVG tech support telephone number
forAVG technical support AVG antivirus help phone number AVG phone number
technical support contactAVG antivirus tech support AUS kaspersky.com customer
service AVG labs AUS customer service AVG AVG antivirus phone number in AUS AVG
antivirus technical support customer care number AVG antivirus technical
support email address AVG ntivirus contact phone number for AUS AVG antivirus
technical support contact number AVG technical support phone number AVG
security phone number customer service phone number for AVG customer service
AVG antivirus customer support phone number AVG antivirus help desk support
phone number free in AUS phone number 

for AVG antivirus technical support AVG technical support number free in AUS
AVG technical support cutomer phone number AVG antivirus technical support
phone number

 support number Avg 360 phone..
AVG antivirus customer care phone number
AVG antivirus customer service billing
AVG antivirus customer service email address
AVG antivirus customer service live chat
AVG antivirus customer service telephone number
AVG antivirus customer support usa phone number
AVG antivirus help desk support phone number free in usa
AVG antivirus phone number customer service us
AVG antivirus phone number support
AVG antivirus support phone number
AVG antivirus tech support phone number free in usa
AVG antivirus tech support phone number
AVG antivirus technical support customer service
AVG antivirus technical support number
AVG antivirus telephone number
AVG antivirus toll free customer care number
AVG antivirus toll free number in usa
AVG antivirus contact phone number in usa
AVG antivirus customer service number
AVG antivirus customer service phone number
AVG antivirus customer service telephone number
AVG antivirus customer support number
AVG antivirus customer support phone number
AVG antivirus customer support phone number
AVG antivirus help desk phone number in usa
AVG antivirus phone number
AVG antivirus phone number support for technical issue in usa
AVG antivirus support phone number
AVG antivirus technical support help desk phone number
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG customer service number
AVG customer service telephone number
AVG customer services email
AVG customer support email address
AVG customer support number
AVG customer support phone number
AVG customer service phone number
AVG internet security contact phone number
AVG internet security customer service phone number
AVG internet security phone number
AVG internet security help phone number
AVG internet security phone number in usa
AVG internet security support phone number
AVG internet security technical support
AVG phone number customer service
AVG phone numbers customer support
AVG phone support number
AVG security contact phone number
AVG security phone number customer service
AVG security support phone number
AVG support contact number
AVG support email address
AVG support phone number
AVG support telephone number
AVG support telephone number usa
AVG support telephone number
AVG tech support number
AVG tech support phone number
AVG tech support phone number free
AVG technical support phone number
AVG technical support cutomer phone number
AVG technical support phone number
AVG technical support number free in usa
AVG technical support number toll free number
AVG technical support phone number
AVG technologies phone number
AVG telephone support number
AVG antivirus customer support phone number
AVG antivirus customer service phone number
AVG customer support phone number
AVG phone number customer service
AVG technical support telephone number
contact AVG antivirus customer service phone number
customer service number for AVG antivirus
phone number for AVG antivirus
phone number for AVG antivirus customer service
phone number for AVG antivirus support
phone number for AVG customer service
phone number for AVG customer service
phone number for AVG customer support
phone number for AVG tech support
phone number AVG antivirus customer service
AVG antivirus customer service number
AVG antivirus customer service phone
AVG antivirus customer service phone number
AVG antivirus customer service phone number us
AVG antivirus customer service telephone number
AVG antivirus customer support
AVG antivirus customer support number
AVG antivirus phone number customer service us
AVG antivirus phone number support
AVG antivirus phone support
AVG antivirus phone support number
AVG antivirus support phone number
AVG antivirus tech support phone number
AVG antivirus technical support
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG customer service phone number
AVG customer support phone number
AVG helpline phone number
AVG internet security customer service
AVG internet security customer service phone number
AVG internet security help phone number
AVG internet security phone number customer service
AVG phone number customer service
AVG phone number customer support
AVG security customer service phone number
AVG security phone number customer service
AVG support phone number
AVG support telephone number
AVG tech support number
AVG tech support phone number
AVG technical support
AVG technical support number
AVG technical support phone number
AVG antivirus customer support phone number
AVG antivirus phone number customer service
AVG antivirus tech support number
AVG customer service phone number
AVG customer service phone numbers
AVG internet security technical support
AVG tech support phone number us
AVG technical support telephone number
contact AVG antivirus
contact AVG by phone
contact AVG customer service
contact AVG antivirus customer service phone number
contactAVG antivirus tech support usa
customer service AVG phone number
download AVG titanium
dri AVG customer service number
dri AVG customer service phone number
dri AVG phone number
how to contact AVG by email
how to delete AVG from mac
micro trend customer service
norton antivirus customer service number
phone number for AVG customer service
phone number forAVG customer service
phone number forAVG customer support
phone number forAVG tech support
phone number forAVG technical support
phone number for AVG antivirus technical support
phone number for AVG security
phone number for AVG support
phone number for AVG technical support
phone number for AVG antivirus customer service
phone number for AVG customer service
remove AVG from mac
technical support for antivirus AVG
telephone number forAVG technical support
telephone AVG antivirus
AVG antivirus contact number
AVG antivirus customer care
AVG antivirus customer care number
AVG antivirus customer care number usa
AVG antivirus customer service
AVG antivirus customer service number :idea: :evil: :D :) :lol: :( :o :shock:
AVG antivirus customer service phone number
AVG antivirus customer service phone number usa
AVG antivirus customer service telephone number
AVG antivirus customer support
AVG antivirus customer support in usa
AVG antivirus customer support number
AVG antivirus customer support phone number
AVG antivirus for phone
AVG antivirus free antivirus support
AVG antivirus help phone number
AVG antivirus helpline number
AVG antivirus online support
AVG antivirus phone
AVG antivirus phone number
AVG antivirus phone number in usa
AVG antivirus phone number usa
AVG antivirus phone support
AVG antivirus plus tech support
AVG antivirus protection
AVG antivirus support
AVG antivirus support number
AVG antivirus support phone number
AVG antivirus support services
AVG antivirus support telephone number
AVG antivirus tech support
AVG antivirus tech support phone number free in usa
AVG antivirus tech support number
AVG antivirus tech support phone number
AVG antivirus technical support
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG antivirus toll free customer care number
AVG antivirus toll free number
AVG antivirus contact phone number in usa
AVG antivirus help desk phone number in usa
AVG antivirus phone number support for technical issue in usa
AVG antivirus support phone number
AVG antivirus technical support help desk phone number
AVG antivirus technical support phone number
AVG contact number
AVG contact number usa
AVG contact phone number
AVG contact support
AVG contact number usa
AVG contact phone number
AVG contact phone number usa
AVG customer & technical support
AVG customer care
>From gcc-bugs-return-534127-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 12:03:46 2016
Return-Path: <gcc-bugs-return-534127-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 121052 invoked by alias); 11 Aug 2016 12:03:46 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 120935 invoked by uid 48); 11 Aug 2016 12:03:32 -0000
From: "tulipawn at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/69004] Building t-engine on ARM fails during -fprofile-use stage
Date: Thu, 11 Aug 2016 12:03:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 5.3.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: tulipawn at gmail dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-69004-4-fL8TZbQ2aw@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69004-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69004-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01463.txt.bz2
Content-length: 541

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69004

--- Comment #26 from PeteVine <tulipawn at gmail dot com> ---
I've just tried your patch and it seems it has improved matters somewhat but
now I'm getting this:

lj_gc.c
../src/luajit2/src/lj_gc.c: In function ‘lj_mem_realloc’:
../src/luajit2/src/lj_gc.c:803:5: error: corrupted value profile: ic profile
counter (5689420 out of 5689366) inconsistent with basic-block count (5689366)
   p = g->allocf(g->allocd, p, osz, nsz);
   ~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>From gcc-bugs-return-534128-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 12:04:02 2016
Return-Path: <gcc-bugs-return-534128-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 122049 invoked by alias); 11 Aug 2016 12:03:59 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 121149 invoked by uid 48); 11 Aug 2016 12:03:46 -0000
From: "aartigarg54 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73692] New: 1-888-269-0130 Escan Antivirus Customer Service/Escan Antivirus Customer Tollfree Number, Escan Antivirus Customer Care Number, Escan Antivirus Guidance Number,Escan Antivirus Tech Support Number
Date: Thu, 11 Aug 2016 12:03:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: aartigarg54 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73692-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01464.txt.bz2
Content-length: 16787

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73692

            Bug ID: 73692
           Summary: 1-888-269-0130 Escan Antivirus Customer Service/Escan
                    Antivirus Customer Tollfree Number, Escan Antivirus
                    Customer Care Number, Escan Antivirus Guidance
                    Number,Escan Antivirus Tech Support Number
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: aartigarg54 at gmail dot com
  Target Milestone: ---

USA Canada UK Australia(((!1 8882690130)))Escan Antivirus tech support number
Escan Antivirus customer phone number, Escan Antivirus cusomer service number,
Escan Antivirus help desk number, Escan Antivirus customer care number, Escan
Antivirus support phone number, Escan Antivirus password recovery phone number,
Escan Antivirus account recovery phone number, Escan Antivirus toll free numbe
help,JUSTs Call USA 1-888-269-0130 Escan Antivirus tech support number,
Wireless Escan Antivirus customer service number, Escan Antivirus support
number,Escan Antivirus phone number Escan Antivirus customer phone number
helpline number,USA CANADA>>1888269-0130 Escan Antivirus TECH SUPPORT PHONE
NUMBER Escan Antivirus CUSTOMER SERVICE PHONE NUMBER here.1888-269-0130 Escan
Antivirus TECH SUPPORT PHONE NUMBER %%%Escan Antivirus CUSTOMER SERVICE PHONE
NUMBER Escan Antivirus technical support number Escan Antivirus helpdesk number
Escan Antivirus helpdesk phone number Escan Antivirus Helpline number,Escan
Antivirus Phone number USA CANADA,(((1888269-0130))))-Escan Antivirus phone
number===Escan Antivirus tech support PHONE NUMBER Helpline tollfree
===!!===1888269-0130== Escan Antivirus tech support phone number ==!! ====Escan
Antivirus install TECH SUPPORT PHONE NUMBER FREE USA CANADA !!1888-269-0130
Escan Antivirus TECH SUPPORT PHONE NUMBER %%%Escan Antivirus CUSTOMER SERVICE
PHONE NUMBER ===!!! ***Escan Antivirus customer service phone number!!! Escan
Antivirus phone number==== Escan Antivirus telephone
number!!1888-269-0130==Escan Antivirus PHONE NUMBER!!!TECH SUPPORT phone number
++Escan Antivirus TOLL FREE PHONE NUMBERPhone Number 1888-269-0130 USA CANADA,
Escan Antivirus 360 Support Phone Number, Escan Antivirus Technical Support
Phone Numbe here. Escan Antivirus tech support number Escan Antivirus Help Desk
Number !!1888-269-0130 Describe toll free Escan Antivirus Phone Number 1888-
269-0130 USA CANADA, Escan Antivirus 360 Support Phone Number, Escan Antivirus
Technical Support Phone Number here.toll free Escan Antivirus Phone Number
1888-269-0130 USA CANADA, Escan Antivirus 360 Support Phone Number, Escan
Antivirus Technical Support Phone Number toll free Escan Antivirus Phone Number
1888-269-0130 USA CANADA, Escan Antivirus 360 Support Phone Number, Escan
Antivirus Technical Support Phone Number, Escan Antivirus Customer Support
Number?? This article is in need of a technical review. This article is in need
of an editorial review. Escan Antivirus Phone Number 1888-269-0130 USA CANADA,
Escan Antivirus Support Phone Number, Escan Antivirus Technical Support Phone
Number, Escan Antivirus Customer Support Number?? Escan Antivirus Support Phone
Number 1888-269-0130 USA CANADA, Escan Antivirus Phone Number, Escan Antivirus
Technical Support Phone Number, Escan Antivirus Service Support Number Escan
Antivirus Support Phone Number 1888-269-0130 USA CANADA, Escan Antivirus Phone
Number, Escan Antivirus Technical Support Phone Number, Escan Antivirus Service
Support Number?? Escan Antivirus Phone Number 1888-269-0130 USA CANADA, Escan
Antivirus 360 Support Phone Number, Escan Antivirus Technical Support Phone
Number, Escan Antivirus Customer Support Number?? Escan Antivirus Support Phone
Number 1888-269-0130 USA CANADA, Escan Antivirus Support Phone Number, Escan
Antivirus Technical Support Phone Number, Escan Antivirus Customer Support
Number?? Escan Antivirus phone number #$#1888-269-0130##$Escan Antivirus phone
number Escan Antivirus security phone number Escan Antivirus 360 phone number
#$#1888-269-0130##$Escan Antivirus support phone number Escan Antivirus
symantec phone number Escan Antivirus phone number customer service
#$#1888-269-0130##$ Escan Antivirus tech support number Escan Antivirus Help
Desk Number !!1888-269-0130 Escan Antivirus customer service phone number Escan
Antivirus tech support phone number Escan Antivirus technical support phone
number Escan Antivirus phone numbers Escan Antivirus help phone number Escan
Antivirus support phone number #$#1888-269-0130##$Escan Antivirus phone support
Escan Antivirus contact phone number Escan Antivirus internet security phone
number Escan Antivirus 360 support phone number Escan Antivirus phone Escan
Antivirus 1888 phone number phone number for Escan Antivirus phone numbers
Escan Antivirus customer service phone number Escan Antivirus customer support
phone number find a phone number Escan Antivirus USA CANADA phone number USA
CANADA phone number phone number for Escan Antivirus tech support phone number
Escan Antivirus 360 phone support free phone numbers phone number Escan
Antivirus phone number get human find phone number phone number for Escan
Antivirus security us phone number phone number USA CANADA
#$#1888-269-0130##$Escan Antivirus contact phone number Escan Antivirus phone
number for support Escan Antivirus contact number phone number for Escan
Antivirus USA CANADA phone numbers phone number search us phone numbers find
phone numbers Nortoumber Escan Antivirus 1888 number Escan Antivirus downloads
Escan Antivirus free trial Escan Antivirus internet security 2012 Escan
Antivirus cancellation phone number Escan Antivirus updates phone book phone
numbers in USA CANADA telephone number Escan Antivirus helpline number phone
directory contact Escan Antivirus by phone Escan Antivirus subscription Escan
Antivirus ghost download Escan Antivirus com support phone number Escan
Antivirus contact Escan Antivirus contact number technical support phone number
Escan Antivirus phone Escan Antivirus 360 free Escan Antivirus support toll
free Escan Antivirus Phone Number 1888-269-0130 FREE FREE USA CANADA, Escan
Antivirus 360 Support Phone Number, Escan Antivirus Technical Support Phone
Number toll free Escan Antivirus Phone Number 1888-269-0130 USA CANADA, Escan
Antivirus 360 Support Phone Number, Escan Antivirus Technical Support Phone
Numbe (last edited 2016-02-28 FREE USA CANADA !!1888-269-0130 Escan Antivirus
TECH SUPPORT PHONE USACanada Help@+@+1888-269 0130+@+ ESCAN ANTIVIRUS customer
service phone number usa, ESCAN ANTIVIRUS customer support phone number Canada
here. Describe @@Call, 1-888-269 0130 for ESCAN ANTIVIRUS customer support
telephone number, ESCAN ANTIVIRUS Toll Free, @(1-888-269 0130)@-: ESCAN
ANTIVIRUS Technical Support Number, ESCAN ANTIVIRUS help desk phone number
vides online solution for all USA/CANADA clients. For any help of query call I
888-269 0130 to get all ESCAN ANTIVIRUS account solution. 1888-269 0130 For any
help of query call 1 888-269 0130 to get all ESCAN ANTIVIRUS account solution.
@@Call, 1-888-269 0130 for all type help by ESCAN ANTIVIRUS support telephone
number, Escan Antivirus support phone number, Escan Antivirus support phone
number, Escan Antivirus help phone number, ESCAN ANTIVIRUS technical support
number. Escan Antivirus support number, ESCAN ANTIVIRUS phone number, ESCAN
ANTIVIRUS tech support number, ESCAN ANTIVIRUS customer support number, ESCAN
ANTIVIRUS customer support phone number, ESCAN ANTIVIRUS customer service phone
number, ESCAN ANTIVIRUS payroll customer service phone number, ESCAN ANTIVIRUS
support phone number ESCAN ANTIVIRUS help number- Escan Antivirus Helpline
Number; ESCAN ANTIVIRUS help phone number- Escan Antivirus Helpline Number,
ESCAN ANTIVIRUS Tech Support Toll free Number, ESCAN ANTIVIRUS Support
Telephone Number, ESCAN ANTIVIRUS Tech Support Telephone number, ESCAN
ANTIVIRUS Tech Support contact number, ESCAN ANTIVIRUS support contact number,
ESCAN ANTIVIRUS technical support contact number, ESCAN ANTIVIRUS help desk
phone number. Escan Antivirus password recovery support phone number. Call,
@(1-888-269 0130)@-: ESCAN ANTIVIRUS password recovery support phone number.
It@@Call, 1-888-269 0130 for ESCAN ANTIVIRUS customer support telephone number,
Escan Antivirus support phone number is very popular toll free number which
vide by ESCAN ANTIVIRUS technical support, ESCAN ANTIVIRUS Customer Service
Phone Number, ESCAN ANTIVIRUS Customer Service Number, ESCAN ANTIVIRUS Customer
Support Phone Number, ESCAN ANTIVIRUS Customer Support Number, ESCAN ANTIVIRUS
Customer Service Helpline Number, ESCAN ANTIVIRUS Customer Care Number, ESCAN
ANTIVIRUS support team phone number. ESCAN ANTIVIRUS password recovery support
phone number. Call,@(1-888-269 0130)@-: ESCAN ANTIVIRUS help number- Escan
Antivirus Helpline Number; ESCAN ANTIVIRUS help phone number, ESCAN ANTIVIRUS
Helpline Number, ESCAN ANTIVIRUS Tech Support Toll free Number, ESCAN ANTIVIRUS
Support Telephone Number, ESCAN ANTIVIRUS Tech Support Telephone number, ESCAN
ANTIVIRUS Tech Support contact number, ESCAN ANTIVIRUS support contact number,
ESCAN ANTIVIRUS technical support contact number, ESCAN ANTIVIRUS support phone
number, ESCAN ANTIVIRUS payroll support phone number. ESCAN ANTIVIRUS payroll
customer support phone number.. ESCAN ANTIVIRUS password reset support phone
number. for all type help by ESCAN ANTIVIRUS support telephone number, ESCAN
ANTIVIRUS help phone number, ESCAN ANTIVIRUS technical support number. Escan
Antivirus support number, ESCAN ANTIVIRUS phone number, ESCAN ANTIVIRUS tech
support number, ESCAN ANTIVIRUS customer support number, ESCAN ANTIVIRUS
customer support phone number, ESCAN ANTIVIRUS customer service phone number,
ESCAN ANTIVIRUS payroll customer service phone number ESCAN ANTIVIRUS Toll
Free, @(1-888-269 0130)@-: ESCAN ANTIVIRUS Technical Support number usa, ESCAN
ANTIVIRUS help desk phone number usa vides online solution for all USA/CANADA
clients. For any help of query call I 888-269 0130 to get all ESCAN ANTIVIRUS
account solution. 1888-269 0130 For any help of query call 1 888-269 0130 to
get all ESCAN ANTIVIRUS account solution. @@Call, 1-888-269 0130 for all type
help by ESCAN ANTIVIRUS support phone number usa, Escan Antivirus support phone
number usa, Escan Antivirus support phone number usa, Escan Antivirus help
phone number usa, ESCAN ANTIVIRUS technical support number usa. Escan Antivirus
support number usa, ESCAN ANTIVIRUS phone number usa, ESCAN ANTIVIRUS tech
support number usa, ESCAN ANTIVIRUS customer support number usa, ESCAN
ANTIVIRUS customer support phone number usa, ESCAN ANTIVIRUS customer service
phone number usa, ESCAN ANTIVIRUS payroll customer service phone number usa,
ESCAN ANTIVIRUS support phone number usa ESCAN ANTIVIRUS help number usa- Escan
Antivirus Helpline number usa; ESCAN ANTIVIRUS help phone number usa- Escan
Antivirus Helpline number usa, ESCAN ANTIVIRUS Tech Support Toll free number
usa, ESCAN ANTIVIRUS Support Telephone number usa, ESCAN ANTIVIRUS Tech Support
Telephone number usa, ESCAN ANTIVIRUS Tech Support contact number usa, ESCAN
ANTIVIRUS support contact number usa, ESCAN ANTIVIRUS technical support contact
number usa, ESCAN ANTIVIRUS help desk phone number usa. Escan Antivirus
password recovery support phone number usa. Call, @(1-888-269 0130)@-: ESCAN
ANTIVIRUS password recovery support phone number usa. It is very popular toll
free number usa which vide by ESCAN ANTIVIRUS technical support, ESCAN
ANTIVIRUS Customer Service Phone number usa, ESCAN ANTIVIRUS Customer Service
number usa, ESCAN ANTIVIRUS Customer Support Phone number usa, ESCAN ANTIVIRUS
Customer Support number usa, ESCAN ANTIVIRUS Customer Service Helpline number
usa, ESCAN ANTIVIRUS Customer Care number usa, ESCAN ANTIVIRUS support team
phone number usa. ESCAN ANTIVIRUS password recovery support phone number usa.
Call,@(1-888-269 0130)@-: ESCAN ANTIVIRUS help number usa- Escan Antivirus
Helpline number usa; ESCAN ANTIVIRUS help phone number usa, ESCAN ANTIVIRUS
Helpline number usa, ESCAN ANTIVIRUS Tech Support Toll free number usa, ESCAN
ANTIVIRUS Support Telephone number usa, ESCAN ANTIVIRUS Tech Support Telephone
number usa, ESCAN ANTIVIRUS Tech Support contact number usa, ESCAN ANTIVIRUS
support contact number usa, ESCAN ANTIVIRUS technical support contact number
usa, ESCAN ANTIVIRUS support phone number usa, ESCAN ANTIVIRUS payroll support
phone number usa. ESCAN ANTIVIRUS payroll customer support phone number usa..
ESCAN ANTIVIRUS password reset support phone number usa. for all type help by
ESCAN ANTIVIRUS support telephone number usa, ESCAN ANTIVIRUS help phone number
usa, ESCAN ANTIVIRUS technical support number usa. Escan Antivirus support
number usa, ESCAN ANTIVIRUS phone number usa, ESCAN ANTIVIRUS tech support
number usa, ESCAN ANTIVIRUS customer support number usa, ESCAN ANTIVIRUS
customer support phone number usa, ESCAN ANTIVIRUS customer service phone
number usa, ESCAN ANTIVIRUS payroll customer service phone number usa @@Call,
I-888-269 0130 for all type help by ESCAN ANTIVIRUS support telephone number,
Escan Antivirus support phone number, Escan Antivirus support phone number,
Escan Antivirus help phone number, ESCAN ANTIVIRUS technical support number.
Escan Antivirus support number, ESCAN ANTIVIRUS phone number, ESCAN ANTIVIRUS
tech support number, ESCAN ANTIVIRUS customer support number, ESCAN ANTIVIRUS
customer support phone number, ESCAN ANTIVIRUS customer service phone number,
ESCAN ANTIVIRUS payroll customer service phone number, ESCAN ANTIVIRUS support
phone number ESCAN ANTIVIRUS help number- Escan Antivirus Helpline Number;
ESCAN ANTIVIRUS help phone number- Escan Antivirus Helpline Number, ESCAN
ANTIVIRUS Tech Support Toll free Number, ESCAN ANTIVIRUS Support Telephone
Number, ESCAN ANTIVIRUS Tech Support Telephone number, ESCAN ANTIVIRUS Tech
Support contact number, ESCAN ANTIVIRUS support contact number, ESCAN ANTIVIRUS
technical support contact number, ESCAN ANTIVIRUS help desk phone number. Escan
Antivirus password recovery support phone number. Call, @(I-888-269 0130)@-:
ESCAN ANTIVIRUS password recovery support phone number. It is very popular toll
free number which vide by ESCAN ANTIVIRUS technical support, ESCAN ANTIVIRUS
Customer Service Phone Number, ESCAN ANTIVIRUS Customer Service Number, ESCAN
ANTIVIRUS Customer Support Phone Number, ESCAN ANTIVIRUS Customer Support
Number, ESCAN ANTIVIRUS Customer Service Helpline Number, ESCAN ANTIVIRUS
Customer Care Number, ESCAN ANTIVIRUS support team phone number. ESCAN
ANTIVIRUS password recovery support phone number. Call,@(I-888-269 0130)@-:
ESCAN ANTIVIRUS help number- Escan Antivirus Helpline Number; ESCAN ANTIVIRUS
help phone number, ESCAN ANTIVIRUS Helpline Number, ESCAN ANTIVIRUS Tech
Support Toll free Number, ESCAN ANTIVIRUS Support Telephone Number, ESCAN
ANTIVIRUS Tech Support Telephone number, ESCAN ANTIVIRUS Tech Support contact
number, ESCAN ANTIVIRUS support contact number, ESCAN ANTIVIRUS technical
support contact number, ESCAN ANTIVIRUS support phone number, ESCAN ANTIVIRUS
payroll support phone number. ESCAN ANTIVIRUS payroll customer support phone
number.. ESCAN ANTIVIRUS password reset support phone number. for all type help
by ESCAN ANTIVIRUS support telephone number, ESCAN ANTIVIRUS help phone number,
ESCAN ANTIVIRUS technical support number. Escan Antivirus support number, ESCAN
ANTIVIRUS phone number, ESCAN ANTIVIRUS tech support number, ESCAN ANTIVIRUS
customer support number, ESCAN ANTIVIRUS customer support phone number, ESCAN
ANTIVIRUS customer service phone number, ESCAN ANTIVIRUS payroll customer
service phone number Describe USACanada+@+1888-269 0130+@+ ESCAN ANTIVIRUS
customer service phone number usa, ESCAN ANTIVIRUS customer support phone
number Canada here. NUMBER %%%Escan Antivirus CUSTOMER SERVICE PHONE NUMBERFREE
USA CANADA !!1888-269-0130 Escan Antivirus TECH SUPPORT PHONE NUMBER %%%Escan
Antivirus CUSTOMER SERVICE PHONE NUMBERFREE USA CANADA !!1888-269-0130 Escan
Antivirus TECH SUPPORT PHONE NUMBER %%%Escan Antivirus CUSTOMER SERVICE PHONE
NUMBERFREE USA CANADA !!1888-269-0130 Escan Antivirus TECH SUPPORT PHONE NUMBER
%%%Escan Antivirus CUSTOMER SERVICE PHONE NUMBER.USA 1-888-269-0130 Escan
Antivirus tech support number Escan Antivirus Help Desk Number !!1888-269-0130
>From gcc-bugs-return-534129-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 12:04:46 2016
Return-Path: <gcc-bugs-return-534129-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 123250 invoked by alias); 11 Aug 2016 12:04:46 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 123148 invoked by uid 48); 11 Aug 2016 12:04:33 -0000
From: "najfhquifnkl at yopmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libf2c/73693] New: @@VG helpline phone number@~*$*$*$--1!!888!!936!!5569 NORTON tech Support Number NORTON antivirus customer service phone number
Date: Thu, 11 Aug 2016 12:04:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libf2c
X-Bugzilla-Version: 4.4.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: najfhquifnkl at yopmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73693-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01465.txt.bz2
Content-length: 14983

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73693

            Bug ID: 73693
           Summary: @@VG helpline phone number@~*$*$*$--1!!888!!936!!5569
                    NORTON tech Support Number NORTON antivirus customer
                    service phone number
           Product: gcc
           Version: 4.4.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: libf2c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: najfhquifnkl at yopmail dot com
  Target Milestone: ---

@@VG helpline phone number@~*$*$*$--1!!888!!936!!5569 NORTON tech Support
Number NORTON antivirus customer service phone number
@@VG helpline phone number@~*$*$*$--1!!844!!778!!8603 NORTON tech Support
Number NORTON antivirus customer service phone number@@VG helpline phone
number@~*$*$*$--1!!844!!778!!8603 NORTON tech Support Number NORTON antivirus
customer service phone number@@VG helpline phone
number@~*$*$*$--1!!844!!778!!8603 NORTON tech Support Number NORTON antivirus
customer service phone number@@VG helpline phone
number@~*$*$*$--1!!844!!778!!8603 NORTON tech Support Number NORTON antivirus
customer service phone number@@VG helpline phone
number@~*$*$*$--1!!844!!778!!8603 NORTON tech Support Number NORTON antivirus
customer service phone number

@@VG helpline phone number@~*$*$*$--1!!844!!778!!8603 NORTON tech Support
Number NORTON antivirus customer service phone number
+1-844-778-8603) Technical support number
CANADA+1844-778-8603 NORTON Antivirus Technical Support
USA-1844-778-8603contact NORTON antivirus customer service phone number
AUS-1844-778-8603 phone number for NORTON customer service
UK-1844-778-8603 phone number for NORTON antivirus technical support
1-844-778-8603 phone number for NORTON antivirus customer service
phone number for NORTON antivirus technical support
phone number for NORTON security
NORTON antivirus customer care phone number
NORTON antivirus customer service billing
NORTON antivirus customer service email address
NORTON antivirus customer service live chat
NORTON antivirus customer service telephone number
NORTON antivirus customer support usa phone number
NORTON antivirus help desk support phone number free in usa
NORTON antivirus phone number customer service us
NORTON antivirus phone number support
NORTON antivirus support phone number
NORTON antivirus tech support phone number free in usa
NORTON antivirus tech support phone number
NORTON antivirus technical support customer service
NORTON antivirus technical support number
NORTON antivirus telephone number
NORTON antivirus toll free customer care number
NORTON antivirus toll free number in usa
NORTON antivirus contact phone number in usa
NORTON antivirus customer service number
NORTON antivirus customer service phone number
NORTON antivirus customer service telephone number
NORTON antivirus customer support number
NORTON antivirus customer support phone number
NORTON antivirus customer support phone number
NORTON antivirus help desk phone number in usa
NORTON antivirus phone number
NORTON antivirus phone number support for technical issue in usa
NORTON antivirus support phone number
NORTON antivirus technical support help desk phone number
NORTON antivirus technical support number
NORTON antivirus technical support phone number
NORTON customer service number
NORTON customer service telephone number
NORTON customer services email
NORTON customer support email address
NORTON customer support number
NORTON customer support phone number
NORTON customer service phone number
NORTON internet security contact phone number
NORTON internet security customer service phone number
NORTON internet security phone number
NORTON internet security help phone number
NORTON internet security phone number in usa
NORTON internet security support phone number
NORTON internet security technical support
NORTON phone number customer service
NORTON phone numbers customer support
NORTON phone support number
NORTON security contact phone number
NORTON security phone number customer service
NORTON security support phone number
NORTON support contact number
NORTON support email address
NORTON support phone number
NORTON support telephone number
NORTON support telephone number usa
NORTON support telephone number
NORTON tech support number
NORTON tech support phone number
NORTON tech support phone number free
NORTON technical support phone number
NORTON technical support cutomer phone number
NORTON technical support phone number
NORTON technical support number free in usa
NORTON technical support number toll free number
NORTON technical support phone number
NORTON technologies phone number
NORTON telephone support number
NORTON antivirus customer support phone number
NORTON antivirus customer service phone number
NORTON customer support phone number
NORTON phone number customer service
NORTON technical support telephone number
contact NORTON antivirus customer service phone number
customer service number for NORTON antivirus
phone number for NORTON antivirus
phone number for NORTON antivirus customer service
phone number for NORTON antivirus support
phone number for NORTON customer service
phone number for NORTON customer service
phone number for NORTON customer support
phone number for NORTON tech support
phone number NORTON antivirus customer service
NORTON antivirus customer service number
NORTON antivirus customer service phone
NORTON antivirus customer service phone number
NORTON antivirus customer service phone number us
NORTON antivirus customer service telephone number
NORTON antivirus customer support
NORTON antivirus customer support number
NORTON antivirus phone number customer service us
NORTON antivirus phone number support
NORTON antivirus phone support
NORTON antivirus phone support number
NORTON antivirus support phone number
NORTON antivirus tech support phone number
NORTON antivirus technical support
NORTON antivirus technical support number
NORTON antivirus technical support phone number
NORTON customer service phone number
NORTON customer support phone number
NORTON helpline phone number
NORTON internet security customer service
NORTON internet security customer service phone number
NORTON internet security help phone number
NORTON internet security phone number customer service
NORTON phone number customer service
NORTON phone number customer support
NORTON security customer service phone number
NORTON security phone number customer service
NORTON support phone number
NORTON support telephone number
NORTON tech support number
NORTON tech support phone number
NORTON technical support
NORTON technical support number
NORTON technical support phone number
NORTON antivirus customer support phone number
NORTON antivirus phone number customer service
NORTON antivirus tech support number
NORTON customer service phone number
NORTON customer service phone numbers
NORTON internet security technical support
NORTON tech support phone number us
NORTON technical support telephone number
contact NORTON antivirus
contact NORTON by phone
contact NORTON customer service
contact NORTON antivirus customer service phone number
contactNORTON antivirus tech support usa
customer service NORTON phone number
download NORTON titanium
dri NORTON customer service number
dri NORTON customer service phone number
dri NORTON phone number
how to contact NORTON by email
how to delete NORTON from mac
micro trend customer service
NORTON antivirus customer service number
phone number for NORTON customer service
phone number forNORTON customer service
phone number forNORTON customer support
phone number forNORTON tech support
phone number forNORTON technical support
phone number for NORTON antivirus technical support
phone number for NORTON security
phone number for NORTON support
phone number for NORTON technical support
phone number for NORTON antivirus customer service
phone number for NORTON customer service
remove NORTON from mac
technical support for antivirus NORTON
telephone number forNORTON technical support
telephone NORTON antivirus
NORTON antivirus contact number
NORTON antivirus customer care
NORTON antivirus customer care number
NORTON antivirus customer care number usa
NORTON antivirus customer service
NORTON antivirus customer service number :idea: :evil: :D :) :lol: :( :o
:shock:
NORTON antivirus customer service phone number
NORTON antivirus customer service phone number usa
NORTON antivirus customer service telephone number
NORTON antivirus customer support
NORTON antivirus customer support in usa
NORTON antivirus customer support number
NORTON antivirus customer support phone number
NORTON antivirus for phone
NORTON antivirus free antivirus support
NORTON antivirus help phone number
NORTON antivirus helpline number
NORTON antivirus online support
NORTON antivirus phone
NORTON antivirus phone number
NORTON antivirus phone number in usa
NORTON antivirus phone number usa
NORTON antivirus phone support
NORTON antivirus plus tech support
NORTON antivirus protection
NORTON antivirus support
NORTON antivirus support number
NORTON antivirus support phone number
NORTON antivirus support services
NORTON antivirus support telephone number
NORTON antivirus tech support
NORTON antivirus tech support phone number free in usa
NORTON antivirus tech support number
NORTON antivirus tech support phone number
NORTON antivirus technical support
NORTON antivirus technical support number
NORTON antivirus technical support phone number
NORTON antivirus toll free customer care number
NORTON antivirus toll free number
NORTON antivirus contact phone number in usa
NORTON antivirus help desk phone number in usa
NORTON antivirus phone number support for technical issue in usa
NORTON antivirus support phone number
NORTON antivirus technical support help desk phone number
NORTON antivirus technical support phone number
NORTON contact number
NORTON contact number usa
NORTON contact phone number
NORTON contact support
NORTON contact number usa
NORTON contact phone number
NORTON contact phone number usa
NORTON customer & technical support
NORTON customer care
NORTON customer care center
NORTON customer care email
NORTON customer care number
NORTON customer care number
NORTON customer care number usa
NORTON customer care number usa toll free
NORTON customer care phone number usa
NORTON customer care tchnical support
NORTON customer care toll free
NORTON customer care toll free number
NORTON customer care usa
NORTON customer help
NORTON customer number
NORTON customer portal
NORTON customer service
NORTON customer service billing
NORTON customer service email address
NORTON customer service number
NORTON customer service phone
NORTON customer service phone number
NORTON customer service phone number us
NORTON customer service phone number usa
NORTON customer service reviews
NORTON customer service telephone number
NORTON customer service usa
NORTON customer support
NORTON customer support number
NORTON customer support phone
NORTON customer support phone number
NORTON customer service number
NORTON customer service number usa
NORTON customer service phone number
NORTON customer support number
NORTON customer support phone number
NORTON free phone support
NORTON gold support phone number
NORTON help desk phone number
NORTON help phone number
NORTON helpline
NORTON helpline phone number
NORTON hotline customer service phone number
NORTON internet security customer service
NORTON internet security phone number
NORTON internet security phone number in usa
NORTON lab usa customer service
NORTON labs usa customer serviceNORTON
NORTON phone number
NORTON phone number customer service
NORTON phone number support
NORTON phone number tech support
NORTON phone number technical support
NORTON phone numbers customer support
NORTON phone support
NORTON phone support number
NORTON phone number customer service
NORTON phone number support
NORTON phone number tech support
NORTON phone number usa
NORTON security contact phone number
NORTON security phone number
NORTON security support phone number
NORTON software customer service
NORTON software customer service number
NORTON support center
NORTON support contact number
NORTON support email address
NORTON support phone number
NORTON support telephone number
NORTON support number usa
NORTON support phone number
NORTON support phone number usa
NORTON tech support
NORTON tech support center
NORTON tech support contact
NORTON tech support number
NORTON tech support number usa
NORTON tech support phone
NORTON tech support phone number
NORTON tech support phone number free
NORTON tech support number
NORTON tech support number usa
NORTON tech support phone number
NORTON technical support
NORTON technical support number
NORTON technical support phone number
NORTON technical support phone number usa
NORTON technical support reviews
NORTON technical support usa
NORTON technical support phone number
NORTON technical support number
NORTON technical support number toll free number
NORTON technical support number usa
NORTON technical support phone number
NORTON technical support phone number usa
NORTON technologies phone number
NORTON telephone number
NORTON telephone support number
NORTON toll free number
NORTON toll free number usa
NORTON usa customer care for tech support
NORTON usa customer service
NORTON usa phone number
NORTON antivirus customer service phone number
NORTON antivirus customer service phone number
NORTON antivirus customer support phone number
NORTON antivirus customer support phone number
NORTON antivirus technical support number
NORTON customer service phone number usa
NORTON internet security support phone number
NORTON.com customer service
NORTON antivirus antispyware 2011
NORTON antivirus customer support
NORTON antivirus serial key
NORTON antivirus serial number
NORTON antivirus support
NORTON antivirus technical support
NORTON business support
NORTON contact support
NORTON customer care number
NORTON customer service 844
NORTON customer service number
NORTON customer service phone number
NORTON customer service telephone number
NORTON customer support
NORTON grentry non payment
NORTON helpline support number
NORTON internet security customer service
NORTON internet security technical support
NORTON oem customer service
NORTON pc cillin technical support
NORTON phone support
NORTON removal tool download
NORTON subscription renewal
NORTON support contact
NORTON support hotline
NORTON support phone number
NORTON tech support phone number
NORTON technical support
NORTON technical support chat
NORTON technical support phone number
NORTON technical support phone number usa
NORTON telephone number
NORTON titanium antivirus
NORTON titanium internet security
NORTON titanium maximum
NORTON titanium maximum security
NORTON titanium problems
NORTON titanium removal tool
NORTON titanium reviews
NORTON titanium support
NORTON virus removal service
uninstall NORTON smart surfing for mac
>From gcc-bugs-return-534130-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 12:09:39 2016
Return-Path: <gcc-bugs-return-534130-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 2519 invoked by alias); 11 Aug 2016 12:09:38 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 2345 invoked by uid 48); 11 Aug 2016 12:09:26 -0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/73434] [6/7 Regression] Wrong code with casting, branches and aliasing
Date: Thu, 11 Aug 2016 12:09:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc short_desc
Message-ID: <bug-73434-4-NOpwAoFQs7@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73434-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73434-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01466.txt.bz2
Content-length: 690

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73434

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ebotcazou at gcc dot gnu.org,
                   |                            |jakub at gcc dot gnu.org
            Summary|[6 Regression] Wrong code   |[6/7 Regression] Wrong code
                   |with casting, branches and  |with casting, branches and
                   |aliasing                    |aliasing

--- Comment #2 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Broken with r229714.
>From gcc-bugs-return-534131-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 12:26:54 2016
Return-Path: <gcc-bugs-return-534131-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 23075 invoked by alias); 11 Aug 2016 12:26:54 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 22924 invoked by uid 48); 11 Aug 2016 12:26:41 -0000
From: "njdghudjjb at yopmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/73696] New: NORTON Support Phone Number!!1 888.936.5569 NORTON support phone number
Date: Thu, 11 Aug 2016 12:26:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 4.4.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: njdghudjjb at yopmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73696-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01467.txt.bz2
Content-length: 14410

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73696

            Bug ID: 73696
           Summary: NORTON Support Phone Number!!1 888.936.5569 NORTON
                    support phone number
           Product: gcc
           Version: 4.4.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: njdghudjjb at yopmail dot com
  Target Milestone: ---

NORTON Support Phone Number!!1 888.936.5569 NORTON support phone number NORTON
Support Phone Number!!1 888.936.5569 NORTON support phone number
Norton helpline phone number@~1800-969-1649 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1800-9691649**Norton antivirus support phone
number
usa+1-800-969-1649) Technical support number
CANADA+1800-969-1649 Norton Antivirus Technical Support
USA-1800-969-1969contact Norton antivirus customer service phone number
AUS-1-800-969-1649 phone number for Norton customer service
UK-1800-969-1649 phone number for Norton antivirus technical support
1-800-969-1649 phone number for Norton antivirus customer service
phone number for Norton antivirus technical support
phone number for Norton security
Norton customer service telephone number
Norton customer support
Norton grentry non payment
Norton helpline support number
Norton internet security customer service
Norton internet security technical support
Norton oem customer service
Norton pc cillin technical support
Norton phone support
Norton removal tool download
Norton subscription renewal
Norton support contact
Norton support hotline
Norton support phone number
Norton tech support phone number
Norton technical support
Norton technical support chat
Norton technical support phone number
Norton technical support phone number usa
Norton telephone number
Norton titanium antivirus
Norton titanium internet security
Norton titanium maximum
Norton titanium maximum security
Norton titanium problems
Norton titanium removal tool
Norton titanium reviews
Norton titanium support
Norton virus removal service
uninstall Norton smart surfing for mac
usa customer care number for Norton antivirus
Norton antivirus phone number support for technical issue in usa
Norton antivirus support phone number
Norton antivirus technical support help desk phone number
Norton antivirus technical support number
Norton antivirus technical support phone number
Norton customer service number
Norton customer service telephone number
Norton customer services email
Norton customer support email address
Norton customer support number
Norton customer support phone number
Norton customer service phone number
Norton internet security contact phone number
Norton internet security customer service phone number
Norton internet security phone number
Norton internet security help phone number
Norton internet security phone number in usa
Norton internet security support phone number
Norton internet security technical support
Norton phone number customer service
Norton phone numbers customer support
Norton phone support number
Norton security contact phone number
Norton security phone number customer service
Norton security support phone number
Norton support contact number
Norton support email address
Norton support phone number
Norton support telephone number
Norton support telephone number usa
Norton support telephone number
Norton tech support number

Norton antivirus customer care phone number
Norton antivirus customer service billing
Norton antivirus customer service email address
Norton antivirus customer service live chat
Norton antivirus customer service telephone number
Norton antivirus customer support usa phone number
Norton antivirus help desk support phone number free in usa
Norton antivirus phone number customer service us
Norton antivirus phone number support
Norton antivirus support phone number
Norton antivirus tech support phone number free in usa
Norton antivirus tech support phone number
Norton antivirus technical support customer service
Norton antivirus technical support number
Norton antivirus telephone number
Norton antivirus toll free customer care number
Norton antivirus toll free number in usa
Norton antivirus contact phone number in usa
Norton antivirus customer service number
Norton antivirus customer service phone number
Norton antivirus customer service telephone number
Norton antivirus customer support number
Norton antivirus customer support phone number
Norton antivirus customer support phone number
Norton antivirus help desk phone number in usa
Norton antivirus phone number
Norton tech support phone number
Norton tech support phone number free
Norton technical support phone number
Norton technical support cutomer phone number
Norton technical support phone number
Norton technical support number free in usa
Norton technical support number toll free number
Norton technical support phone number
Norton technologies phone number
Norton telephone support number
Norton antivirus customer support phone number
Norton antivirus customer service phone number
Norton customer support phone number
Norton phone number customer service
Norton technical support telephone number
contact Norton antivirus customer service phone number
customer service number for Norton antivirus
phone number for Norton antivirus
phone number for Norton antivirus customer service
phone number for Norton antivirus support
phone number for Norton customer service
phone number for Norton customer service
phone number for Norton customer support
phone number for Norton tech support
phone number Norton antivirus customer service
Norton antivirus customer service number
Norton antivirus customer service phone
Norton antivirus customer service phone number
Norton antivirus customer service phone number us
Norton antivirus customer service telephone number
Norton antivirus customer support
Norton antivirus customer support number
Norton antivirus phone number customer service us
Norton antivirus phone number support
Norton antivirus phone support
Norton antivirus phone support number
Norton antivirus support phone number
Norton antivirus tech support phone number
Norton antivirus technical support
Norton antivirus technical support number
Norton antivirus technical support phone number
Norton customer service phone number
Norton customer support phone number
Norton helpline phone number
Norton internet security customer service
Norton internet security customer service phone number
Norton internet security help phone number
Norton internet security phone number customer service
Norton phone number customer service
Norton phone number customer support
Norton security customer service phone number

Norton internet security phone number
Norton internet security phone number in usa
Norton lab usa customer service
Norton labs usa customer serviceNorton
Norton phone number
Norton phone number customer service
Norton phone number support
Norton phone number tech support
Norton phone number technical support
Norton phone numbers customer support
Norton phone support
Norton phone support number
Norton phone number customer service
Norton phone number support
Norton phone number tech support
Norton phone number usa
Norton security contact phone number
Norton security phone number
Norton security support phone number
Norton software customer service
Norton software customer service number
Norton support center
Norton support contact number
Norton support email address
Norton support phone number
Norton support telephone number
Norton support number usa
Norton support phone number
Norton support phone number usa
Norton tech support
Norton tech support center
Norton tech support contact
Norton tech support number
Norton tech support number usa
Norton tech support phone
Norton tech support phone number
Norton tech support phone number free
Norton tech support number
Norton tech support number usa
Norton tech support phone number
Norton technical support
Norton technical support number
Norton technical support phone number
Norton technical support phone number usa
Norton technical support reviews
Norton technical support usa
Norton technical support phone number
Norton technical support number
Norton technical support number toll free number
Norton technical support number usa
Norton technical support phone number
Norton technical support phone number usa
Norton technologies phone number
Norton telephone number
Norton telephone support number
Norton toll free number
Norton toll free number usa
Norton usa customer care for tech support
Norton usa customer service
Norton usa phone number

Norton security phone number customer service
Norton support phone number
Norton support telephone number
Norton tech support number
Norton tech support phone number
Norton technical support
Norton technical support number
Norton technical support phone number
Norton antivirus customer support phone number
Norton antivirus phone number customer service
Norton antivirus tech support number
Norton customer service phone number
Norton customer service phone numbers
Norton internet security technical support
Norton tech support phone number us
Norton technical support telephone number
contact Norton antivirus
contact Norton by phone
contact Norton customer service
contact Norton antivirus customer service phone number
contactNorton antivirus tech support usa
customer service Norton phone number
download Norton titanium
dri Norton customer service number
dri Norton customer service phone number
dri Norton phone number
how to contact Norton by email
how to delete Norton from mac
micro trend customer service
norton antivirus customer service number
phone number for Norton customer service
phone number forNorton customer service
phone number forNorton customer support
phone number forNorton tech support
phone number forNorton technical support
phone number for Norton antivirus technical support
phone number for Norton security
phone number for Norton support
phone number for Norton technical support
phone number for Norton antivirus customer service
phone number for Norton customer service
remove Norton from mac
technical support for antivirus Norton
telephone number forNorton technical support
telephone Norton antivirus
Norton antivirus contact number
Norton antivirus customer care
Norton antivirus customer care number
Norton antivirus customer care number usa
Norton antivirus customer service
Norton antivirus customer service number :idea: :evil: :D :) :lol: :( :o
:shock:
Norton antivirus customer service phone number
Norton antivirus customer service phone number usa
Norton antivirus customer service telephone number
Norton antivirus customer support
Norton antivirus customer support in usa
Norton antivirus customer support number
Norton antivirus customer support phone number
Norton antivirus for phone
Norton antivirus free antivirus support
Norton antivirus help phone number
Norton antivirus helpline number
Norton antivirus online support
Norton antivirus phone
Norton antivirus phone number
Norton antivirus phone number in usa
Norton antivirus phone number usa
Norton antivirus phone support
Norton antivirus plus tech support
Norton antivirus protection
Norton antivirus support
Norton antivirus support number
Norton antivirus support phone number
Norton antivirus support services
Norton antivirus support telephone number
Norton antivirus tech support
Norton antivirus tech support phone number free in usa
Norton antivirus tech support number
Norton antivirus tech support phone number
Norton antivirus technical support
Norton antivirus technical support number
Norton antivirus technical support phone number
Norton antivirus toll free customer care number
Norton antivirus toll free number
Norton antivirus contact phone number in usa
Norton antivirus help desk phone number in usa
Norton antivirus phone number support for technical issue in usa
Norton antivirus support phone number
Norton antivirus technical support help desk phone number
Norton antivirus technical support phone number
Norton contact number
Norton contact number usa
Norton contact phone number
Norton contact support
Norton contact number usa
Norton contact phone number
Norton contact phone number usa
Norton customer & technical support
Norton customer care
Norton customer care center
Norton customer care email
Norton customer care number
Norton customer care number
Norton customer care number usa
Norton customer care number usa toll free
Norton customer care phone number usa
Norton customer care tchnical support
Norton customer care toll free
Norton customer care toll free number
Norton customer care usa
Norton customer help
Norton customer number
Norton customer portal
Norton customer service
Norton customer service billing
Norton customer service email address
Norton customer service number
Norton customer service phone
Norton customer service phone number
Norton customer service phone number us
Norton customer service phone number usa
Norton customer service reviews
Norton customer service telephone number
Norton customer service usa
Norton customer support
Norton customer support number
Norton customer support phone
Norton customer support phone number
Norton customer service number
Norton customer service number usa
Norton customer service phone number
Norton customer support number
Norton customer support phone number
Norton free phone support
Norton gold support phone number
Norton help desk phone number
Norton help phone number
Norton helpline
Norton helpline phone number
Norton hotline customer service phone number
Norton internet security customer service
Norton antivirus customer service phone number
Norton antivirus customer service phone number
Norton antivirus customer support phone number
Norton antivirus customer support phone number
Norton antivirus technical support number
Norton customer service phone number usa
Norton internet security support phone number
Norton.com customer service
Norton antivirus antispyware 2011
Norton antivirus customer support
Norton antivirus serial key
Norton antivirus serial number
Norton antivirus support
Norton antivirus technical support
Norton business support
Norton contact support
Norton customer care number
Norton customer service 800
Norton customer service number
Norton customer service phone number
>From gcc-bugs-return-534132-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 12:28:19 2016
Return-Path: <gcc-bugs-return-534132-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 25633 invoked by alias); 11 Aug 2016 12:28:19 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 25312 invoked by uid 48); 11 Aug 2016 12:28:06 -0000
From: "needhi876sharma at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: =?UTF-8?B?W0J1ZyBkZWJ1Zy83MzY5N10gTmV3OiBTa3lwZSAxLTg4OC02NDktODYzOFN1?= =?UTF-8?B?cHBvcnQgQ2FsbEBAIFVTwqBUb2xswqBGcmVlwqAgMS04ODgtNjQ5LTg2Mzgg?= =?UTF-8?B?U2t5cGUgMS04ODgtNjQ5LTg2Mzh0ZWNowqBzdXBwb3J0wqBwaG9uZcKgbnVt?= =?UTF-8?B?YmVy?Date: Thu, 11 Aug 2016 12:28:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: debug
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: needhi876sharma at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-73697-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01468.txt.bz2
Content-length: 5330

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73697

            Bug ID: 73697
           Summary: Skype 1-888-649-8638Support Call@@ US Toll Free
                    1-888-649-8638 Skype 1-888-649-8638tech support phone
                    number
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: debug
          Assignee: unassigned at gcc dot gnu.org
          Reporter: needhi876sharma at gmail dot com
  Target Milestone: ---

Created attachment 39163
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39163&action=edit
Skype 1-888-649-8638Support Call@@ US Toll Free  1-888-649-8638 Skype
1-888-649-8638tech support phone number

@@Call, +1-888-649-8638 for all type help by SKYPE tech support phone number,
Intuit SKYPE Tech Support Phone Number, SKYPE Help Desk Phone Number, SKYPE
tech support number, SKYPE technical support phone number, @@@ SKYPE phone
number, SKYPE technical support number, SKYPE support phone number, SKYPE
technical support, SKYPE Customer Service Phone Number, SKYPE Customer Service
Number, SKYPE Customer Support Phone Number, SKYPE Customer Support Number,
@@1-888-649-8638@@ SKYPE Customer Service Helpline Number, SKYPE Customer Care
Number, SKYPE support team phone number, @@1-888-649-8638@@SKYPE help
number-SKYPE Helpline Number; SKYPE help phone number-SKYPE Helpline Number,
SKYPE Tech Support Toll free Number, SKYPE Support Telephone Number, SKYPE Tech
Support Telephone number, SKYPE Tech Support contact number, SKYPE support
contact number, SKYPE technical support contact number. Call, +1-888-649-8638
SKYPE tech support phone number, Intuit SKYPE Tech Support Phone Number, SKYPE
Help Desk Phone Number, SKYPE tech support number, SKYPE technical support
phone number, SKYPE phone number, SKYPE technical support number, SKYPE support
phone number. It is very popular toll free number which provide by SKYPE
technical support, SKYPE Customer Service Phone Number, SKYPE Customer Service
Number, SKYPE Customer Support Phone Number, SKYPE Customer Support Number,
SKYPE Customer Service Helpline Number, SKYPE Customer Care Number, SKYPE
support team phone number. Call, SKYPE tech support phone number, Intuit SKYPE
Tech Support Phone Number, SKYPE Help Desk Phone Number, SKYPE tech support
number, SKYPE technical support phone number, SKYPE phone number, SKYPE
technical support number, SKYPE support phone number, SKYPE technical support,
SKYPE Customer Service Phone Number, SKYPE Customer Service Number, SKYPE
Customer Support Phone Number, SKYPE Customer Support Number, SKYPE Customer
Service Helpline Number, SKYPE Customer Care Number, SKYPE support team phone
number, #SKYPE Tech Support Phone +1-888-649-8638 Number SKYPE customer support
number
SKYPE 1-888-649-8638 technical support
SKYPE support phone number
SKYPE tech support toll free number in usa
SKYPE tech support phone number
SKYPE tech support phone number free
SKYPE technical support phone number
SKYPE technologies phone number
SKYPE telephone support number
SKYPE support contact number
SKYPE 1-888-649-8638 customer support phone number
SKYPE 1-888-649-8638 problems
SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 technical support
 SKYPE 1-888-649-8638 toll free number
 SKYPE com customer service phone number
SKYPE contact phone number
SKYPE contact telephone number
SKYPE customer service contact number
SKYPE customer service email
SKYPE customer service phone number
SKYPE customer service telephone number
SKYPE customer services email
SKYPE customer support email address
SKYPE customer support number
SKYPE customer support phone number
SKYPE 1-888-649-8638 tech support assistant
SKYPE support assistant
SKYPE tech support
+SKYPE 1-888-649-8638 +online +support
+SBCGLOBAL+support+number
+SBCGLOBAL+online+support
SKYPE 1-888-649-8638 number technical support
SKYPE 1-888-649-8638 service number
SKYPE 1-888-649-8638 support contact phone number
SKYPE 1-888-649-8638 telephone support number
telephone number SKYPE 1-888-649-8638
customer service number SKYPE 1-888-649-8638
compaq SKYPE 1-888-649-8638 support
SKYPE 1-888-649-8638 compaq support
SKYPE 1-888-649-8638 customer service
SKYPE 1-888-649-8638 contact phone number
SKYPE 1-888-649-8638 customer phone number
SKYPE 1-888-649-8638 customer services number
SKYPE 1-888-649-8638 customer support telephone number
SKYPE 1-888-649-8638 support online
SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 service phone number
SKYPE 1-888-649-8638 support customer service number
SKYPE 1-888-649-8638 tech support phone numbers
SKYPE 1-888-649-8638 technical support contact number
SKYPE 1-888-649-8638 telephone number customer service
number SKYPE 1-888-649-8638 tech support
online SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 customer support
SKYPE 1-888-649-8638 customer service
SKYPE 1-888-649-8638 online support
SKYPE 1-888-649-8638 phone number customer support
SKYPE 1-888-649-8638 support telephone numbers
SKYPE 1-888-649-8638 technical support numbers
SKYPE 1-888-649-8638 usa support
telephone number SKYPE 1-888-649-8638 support
SKYPE 1-888-649-8638 support
SKYPE support
SKYPE 1-888-649-8638 tech support
>From gcc-bugs-return-534133-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 12:32:42 2016
Return-Path: <gcc-bugs-return-534133-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 52860 invoked by alias); 11 Aug 2016 12:32:42 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 52821 invoked by uid 48); 11 Aug 2016 12:32:38 -0000
From: "sherubacha00 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: =?UTF-8?B?W0J1ZyBwbHVnaW5zLzczNjk4XSBOZXc6IFNreXBlIDEtODg4LTY0OS04NjM4?= =?UTF-8?B?U3VwcG9ydCBDYWxsQEAgVVPCoFRvbGzCoEZyZWXCoCAxLTg4OC02NDktODYz?= =?UTF-8?B?OCBTa3lwZSAxLTg4OC02NDktODYzOHRlY2jCoHN1cHBvcnTCoHBob25lwqBu?= =?UTF-8?B?dW1iZXLCoGZyZWU=?Date: Thu, 11 Aug 2016 12:32:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: plugins
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: sherubacha00 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-73698-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01469.txt.bz2
Content-length: 5400

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73698

            Bug ID: 73698
           Summary: Skype 1-888-649-8638Support Call@@ US Toll Free
                    1-888-649-8638 Skype 1-888-649-8638tech support phone
                    number free
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: plugins
          Assignee: unassigned at gcc dot gnu.org
          Reporter: sherubacha00 at gmail dot com
  Target Milestone: ---

Created attachment 39164
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39164&action=edit
@@Call, +1-888-649-8638 for all type help by SKYPE tech support phone number,
Intuit SKYPE Tech Support Phone Number, SKYPE Help Desk Phone Number, SKYPE
tech support number, SKYPE technical support p

@@Call, +1-888-649-8638 for all type help by SKYPE tech support phone number,
Intuit SKYPE Tech Support Phone Number, SKYPE Help Desk Phone Number, SKYPE
tech support number, SKYPE technical support phone number, @@@ SKYPE phone
number, SKYPE technical support number, SKYPE support phone number, SKYPE
technical support, SKYPE Customer Service Phone Number, SKYPE Customer Service
Number, SKYPE Customer Support Phone Number, SKYPE Customer Support Number,
@@1-888-649-8638@@ SKYPE Customer Service Helpline Number, SKYPE Customer Care
Number, SKYPE support team phone number, @@1-888-649-8638@@SKYPE help
number-SKYPE Helpline Number; SKYPE help phone number-SKYPE Helpline Number,
SKYPE Tech Support Toll free Number, SKYPE Support Telephone Number, SKYPE Tech
Support Telephone number, SKYPE Tech Support contact number, SKYPE support
contact number, SKYPE technical support contact number. Call, +1-888-649-8638
SKYPE tech support phone number, Intuit SKYPE Tech Support Phone Number, SKYPE
Help Desk Phone Number, SKYPE tech support number, SKYPE technical support
phone number, SKYPE phone number, SKYPE technical support number, SKYPE support
phone number. It is very popular toll free number which provide by SKYPE
technical support, SKYPE Customer Service Phone Number, SKYPE Customer Service
Number, SKYPE Customer Support Phone Number, SKYPE Customer Support Number,
SKYPE Customer Service Helpline Number, SKYPE Customer Care Number, SKYPE
support team phone number. Call, SKYPE tech support phone number, Intuit SKYPE
Tech Support Phone Number, SKYPE Help Desk Phone Number, SKYPE tech support
number, SKYPE technical support phone number, SKYPE phone number, SKYPE
technical support number, SKYPE support phone number, SKYPE technical support,
SKYPE Customer Service Phone Number, SKYPE Customer Service Number, SKYPE
Customer Support Phone Number, SKYPE Customer Support Number, SKYPE Customer
Service Helpline Number, SKYPE Customer Care Number, SKYPE support team phone
number, #SKYPE Tech Support Phone +1-888-649-8638 Number SKYPE customer support
number
SKYPE 1-888-649-8638 technical support
SKYPE support phone number
SKYPE tech support toll free number in usa
SKYPE tech support phone number
SKYPE tech support phone number free
SKYPE technical support phone number
SKYPE technologies phone number
SKYPE telephone support number
SKYPE support contact number
SKYPE 1-888-649-8638 customer support phone number
SKYPE 1-888-649-8638 problems
SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 technical support
 SKYPE 1-888-649-8638 toll free number
 SKYPE com customer service phone number
SKYPE contact phone number
SKYPE contact telephone number
SKYPE customer service contact number
SKYPE customer service email
SKYPE customer service phone number
SKYPE customer service telephone number
SKYPE customer services email
SKYPE customer support email address
SKYPE customer support number
SKYPE customer support phone number
SKYPE 1-888-649-8638 tech support assistant
SKYPE support assistant
SKYPE tech support
+SKYPE 1-888-649-8638 +online +support
+SBCGLOBAL+support+number
+SBCGLOBAL+online+support
SKYPE 1-888-649-8638 number technical support
SKYPE 1-888-649-8638 service number
SKYPE 1-888-649-8638 support contact phone number
SKYPE 1-888-649-8638 telephone support number
telephone number SKYPE 1-888-649-8638
customer service number SKYPE 1-888-649-8638
compaq SKYPE 1-888-649-8638 support
SKYPE 1-888-649-8638 compaq support
SKYPE 1-888-649-8638 customer service
SKYPE 1-888-649-8638 contact phone number
SKYPE 1-888-649-8638 customer phone number
SKYPE 1-888-649-8638 customer services number
SKYPE 1-888-649-8638 customer support telephone number
SKYPE 1-888-649-8638 support online
SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 service phone number
SKYPE 1-888-649-8638 support customer service number
SKYPE 1-888-649-8638 tech support phone numbers
SKYPE 1-888-649-8638 technical support contact number
SKYPE 1-888-649-8638 telephone number customer service
number SKYPE 1-888-649-8638 tech support
online SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 customer support
SKYPE 1-888-649-8638 customer service
SKYPE 1-888-649-8638 online support
SKYPE 1-888-649-8638 phone number customer support
SKYPE 1-888-649-8638 support telephone numbers
SKYPE 1-888-649-8638 technical support numbers
SKYPE 1-888-649-8638 usa support
telephone number SKYPE 1-888-649-8638 support
SKYPE 1-888-649-8638 support
SKYPE support
SKYPE 1-888-649-8638 tech support
>From gcc-bugs-return-534134-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 12:33:50 2016
Return-Path: <gcc-bugs-return-534134-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 58084 invoked by alias); 11 Aug 2016 12:33:50 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 58012 invoked by uid 48); 11 Aug 2016 12:33:43 -0000
From: "sherubacha00 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: =?UTF-8?B?W0J1ZyBwbHVnaW5zLzczNjk5XSBOZXc6IFNreXBlIDEtODg4LTY0OS04NjM4?= =?UTF-8?B?U3VwcG9ydCBDYWxsQEAgVVPCoFRvbGzCoEZyZWXCoCAxLTg4OC02NDktODYz?= =?UTF-8?B?OCBTa3lwZSAxLTg4OC02NDktODYzOHRlY2jCoHN1cHBvcnTCoHBob25lwqBu?= =?UTF-8?B?dW1iZXLCoGZyZWU=?Date: Thu, 11 Aug 2016 12:33:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: plugins
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: sherubacha00 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73699-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01470.txt.bz2
Content-length: 5096

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73699

            Bug ID: 73699
           Summary: Skype 1-888-649-8638Support Call@@ US Toll Free
                    1-888-649-8638 Skype 1-888-649-8638tech support phone
                    number free
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: plugins
          Assignee: unassigned at gcc dot gnu.org
          Reporter: sherubacha00 at gmail dot com
  Target Milestone: ---

@@Call, +1-888-649-8638 for all type help by SKYPE tech support phone number,
Intuit SKYPE Tech Support Phone Number, SKYPE Help Desk Phone Number, SKYPE
tech support number, SKYPE technical support phone number, @@@ SKYPE phone
number, SKYPE technical support number, SKYPE support phone number, SKYPE
technical support, SKYPE Customer Service Phone Number, SKYPE Customer Service
Number, SKYPE Customer Support Phone Number, SKYPE Customer Support Number,
@@1-888-649-8638@@ SKYPE Customer Service Helpline Number, SKYPE Customer Care
Number, SKYPE support team phone number, @@1-888-649-8638@@SKYPE help
number-SKYPE Helpline Number; SKYPE help phone number-SKYPE Helpline Number,
SKYPE Tech Support Toll free Number, SKYPE Support Telephone Number, SKYPE Tech
Support Telephone number, SKYPE Tech Support contact number, SKYPE support
contact number, SKYPE technical support contact number. Call, +1-888-649-8638
SKYPE tech support phone number, Intuit SKYPE Tech Support Phone Number, SKYPE
Help Desk Phone Number, SKYPE tech support number, SKYPE technical support
phone number, SKYPE phone number, SKYPE technical support number, SKYPE support
phone number. It is very popular toll free number which provide by SKYPE
technical support, SKYPE Customer Service Phone Number, SKYPE Customer Service
Number, SKYPE Customer Support Phone Number, SKYPE Customer Support Number,
SKYPE Customer Service Helpline Number, SKYPE Customer Care Number, SKYPE
support team phone number. Call, SKYPE tech support phone number, Intuit SKYPE
Tech Support Phone Number, SKYPE Help Desk Phone Number, SKYPE tech support
number, SKYPE technical support phone number, SKYPE phone number, SKYPE
technical support number, SKYPE support phone number, SKYPE technical support,
SKYPE Customer Service Phone Number, SKYPE Customer Service Number, SKYPE
Customer Support Phone Number, SKYPE Customer Support Number, SKYPE Customer
Service Helpline Number, SKYPE Customer Care Number, SKYPE support team phone
number, #SKYPE Tech Support Phone +1-888-649-8638 Number SKYPE customer support
number
SKYPE 1-888-649-8638 technical support
SKYPE support phone number
SKYPE tech support toll free number in usa
SKYPE tech support phone number
SKYPE tech support phone number free
SKYPE technical support phone number
SKYPE technologies phone number
SKYPE telephone support number
SKYPE support contact number
SKYPE 1-888-649-8638 customer support phone number
SKYPE 1-888-649-8638 problems
SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 technical support
 SKYPE 1-888-649-8638 toll free number
 SKYPE com customer service phone number
SKYPE contact phone number
SKYPE contact telephone number
SKYPE customer service contact number
SKYPE customer service email
SKYPE customer service phone number
SKYPE customer service telephone number
SKYPE customer services email
SKYPE customer support email address
SKYPE customer support number
SKYPE customer support phone number
SKYPE 1-888-649-8638 tech support assistant
SKYPE support assistant
SKYPE tech support
+SKYPE 1-888-649-8638 +online +support
+SBCGLOBAL+support+number
+SBCGLOBAL+online+support
SKYPE 1-888-649-8638 number technical support
SKYPE 1-888-649-8638 service number
SKYPE 1-888-649-8638 support contact phone number
SKYPE 1-888-649-8638 telephone support number
telephone number SKYPE 1-888-649-8638
customer service number SKYPE 1-888-649-8638
compaq SKYPE 1-888-649-8638 support
SKYPE 1-888-649-8638 compaq support
SKYPE 1-888-649-8638 customer service
SKYPE 1-888-649-8638 contact phone number
SKYPE 1-888-649-8638 customer phone number
SKYPE 1-888-649-8638 customer services number
SKYPE 1-888-649-8638 customer support telephone number
SKYPE 1-888-649-8638 support online
SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 service phone number
SKYPE 1-888-649-8638 support customer service number
SKYPE 1-888-649-8638 tech support phone numbers
SKYPE 1-888-649-8638 technical support contact number
SKYPE 1-888-649-8638 telephone number customer service
number SKYPE 1-888-649-8638 tech support
online SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 customer support
SKYPE 1-888-649-8638 customer service
SKYPE 1-888-649-8638 online support
SKYPE 1-888-649-8638 phone number customer support
SKYPE 1-888-649-8638 support telephone numbers
SKYPE 1-888-649-8638 technical support numbers
SKYPE 1-888-649-8638 usa support
telephone number SKYPE 1-888-649-8638 support
SKYPE 1-888-649-8638 support
SKYPE support
SKYPE 1-888-649-8638 tech support
>From gcc-bugs-return-534135-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 12:35:54 2016
Return-Path: <gcc-bugs-return-534135-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 60459 invoked by alias); 11 Aug 2016 12:35:53 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 60326 invoked by uid 48); 11 Aug 2016 12:35:41 -0000
From: "sherubacha00 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: =?UTF-8?B?W0J1ZyBwbHVnaW5zLzczNzAxXSBOZXc6IFNreXBlIDEtODg4LTY0OS04NjM4?= =?UTF-8?B?U3VwcG9ydCBDYWxsQEAgVVPCoFRvbGzCoEZyZWXCoCAxLTg4OC02NDktODYz?= =?UTF-8?B?OCBTa3lwZSAxLTg4OC02NDktODYzOHRlY2huaWNhbMKgc3VwcG9ydMKgcGhv?= =?UTF-8?B?bmXCoG51bWJlcg==?Date: Thu, 11 Aug 2016 12:35:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: plugins
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: sherubacha00 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-73701-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01471.txt.bz2
Content-length: 5225

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73701

            Bug ID: 73701
           Summary: Skype 1-888-649-8638Support Call@@ US Toll Free
                    1-888-649-8638 Skype 1-888-649-8638technical support
                    phone number
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: plugins
          Assignee: unassigned at gcc dot gnu.org
          Reporter: sherubacha00 at gmail dot com
  Target Milestone: ---

Created attachment 39165
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39165&action=edit
Skype help 1.888.649.8638 number

@@Call, +1-888-649-8638 for all type help by SKYPE tech support phone number,
Intuit SKYPE Tech Support Phone Number, SKYPE Help Desk Phone Number, SKYPE
tech support number, SKYPE technical support phone number, @@@ SKYPE phone
number, SKYPE technical support number, SKYPE support phone number, SKYPE
technical support, SKYPE Customer Service Phone Number, SKYPE Customer Service
Number, SKYPE Customer Support Phone Number, SKYPE Customer Support Number,
@@1-888-649-8638@@ SKYPE Customer Service Helpline Number, SKYPE Customer Care
Number, SKYPE support team phone number, @@1-888-649-8638@@SKYPE help
number-SKYPE Helpline Number; SKYPE help phone number-SKYPE Helpline Number,
SKYPE Tech Support Toll free Number, SKYPE Support Telephone Number, SKYPE Tech
Support Telephone number, SKYPE Tech Support contact number, SKYPE support
contact number, SKYPE technical support contact number. Call, +1-888-649-8638
SKYPE tech support phone number, Intuit SKYPE Tech Support Phone Number, SKYPE
Help Desk Phone Number, SKYPE tech support number, SKYPE technical support
phone number, SKYPE phone number, SKYPE technical support number, SKYPE support
phone number. It is very popular toll free number which provide by SKYPE
technical support, SKYPE Customer Service Phone Number, SKYPE Customer Service
Number, SKYPE Customer Support Phone Number, SKYPE Customer Support Number,
SKYPE Customer Service Helpline Number, SKYPE Customer Care Number, SKYPE
support team phone number. Call, SKYPE tech support phone number, Intuit SKYPE
Tech Support Phone Number, SKYPE Help Desk Phone Number, SKYPE tech support
number, SKYPE technical support phone number, SKYPE phone number, SKYPE
technical support number, SKYPE support phone number, SKYPE technical support,
SKYPE Customer Service Phone Number, SKYPE Customer Service Number, SKYPE
Customer Support Phone Number, SKYPE Customer Support Number, SKYPE Customer
Service Helpline Number, SKYPE Customer Care Number, SKYPE support team phone
number, #SKYPE Tech Support Phone +1-888-649-8638 Number SKYPE customer support
number
SKYPE 1-888-649-8638 technical support
SKYPE support phone number
SKYPE tech support toll free number in usa
SKYPE tech support phone number
SKYPE tech support phone number free
SKYPE technical support phone number
SKYPE technologies phone number
SKYPE telephone support number
SKYPE support contact number
SKYPE 1-888-649-8638 customer support phone number
SKYPE 1-888-649-8638 problems
SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 technical support
 SKYPE 1-888-649-8638 toll free number
 SKYPE com customer service phone number
SKYPE contact phone number
SKYPE contact telephone number
SKYPE customer service contact number
SKYPE customer service email
SKYPE customer service phone number
SKYPE customer service telephone number
SKYPE customer services email
SKYPE customer support email address
SKYPE customer support number
SKYPE customer support phone number
SKYPE 1-888-649-8638 tech support assistant
SKYPE support assistant
SKYPE tech support
+SKYPE 1-888-649-8638 +online +support
+SBCGLOBAL+support+number
+SBCGLOBAL+online+support
SKYPE 1-888-649-8638 number technical support
SKYPE 1-888-649-8638 service number
SKYPE 1-888-649-8638 support contact phone number
SKYPE 1-888-649-8638 telephone support number
telephone number SKYPE 1-888-649-8638
customer service number SKYPE 1-888-649-8638
compaq SKYPE 1-888-649-8638 support
SKYPE 1-888-649-8638 compaq support
SKYPE 1-888-649-8638 customer service
SKYPE 1-888-649-8638 contact phone number
SKYPE 1-888-649-8638 customer phone number
SKYPE 1-888-649-8638 customer services number
SKYPE 1-888-649-8638 customer support telephone number
SKYPE 1-888-649-8638 support online
SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 service phone number
SKYPE 1-888-649-8638 support customer service number
SKYPE 1-888-649-8638 tech support phone numbers
SKYPE 1-888-649-8638 technical support contact number
SKYPE 1-888-649-8638 telephone number customer service
number SKYPE 1-888-649-8638 tech support
online SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 customer support
SKYPE 1-888-649-8638 customer service
SKYPE 1-888-649-8638 online support
SKYPE 1-888-649-8638 phone number customer support
SKYPE 1-888-649-8638 support telephone numbers
SKYPE 1-888-649-8638 technical support numbers
SKYPE 1-888-649-8638 usa support
telephone number SKYPE 1-888-649-8638 support
SKYPE 1-888-649-8638 support
SKYPE support
SKYPE 1-888-649-8638 tech support
>From gcc-bugs-return-534136-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 12:37:52 2016
Return-Path: <gcc-bugs-return-534136-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 103746 invoked by alias); 11 Aug 2016 12:37:52 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 99422 invoked by uid 48); 11 Aug 2016 12:37:47 -0000
From: "sherubacha00 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: =?UTF-8?B?W0J1ZyBwbHVnaW5zLzczNzA0XSBOZXc6IFNreXBlIDEtODg4LTY0OS04NjM4?= =?UTF-8?B?U3VwcG9ydCBDYWxsQEAgVVPCoFRvbGzCoEZyZWXCoCAxLTg4OC02NDktODYz?= =?UTF-8?B?OCBTa3lwZSAxLTg4OC02NDktODYzOHN1cHBvcnTCoHBob25lwqBudW1iZXI=?Date: Thu, 11 Aug 2016 12:37:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: plugins
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: sherubacha00 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-73704-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01472.txt.bz2
Content-length: 5221

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73704

            Bug ID: 73704
           Summary: Skype 1-888-649-8638Support Call@@ US Toll Free
                    1-888-649-8638 Skype 1-888-649-8638support phone
                    number
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: plugins
          Assignee: unassigned at gcc dot gnu.org
          Reporter: sherubacha00 at gmail dot com
  Target Milestone: ---

Created attachment 39166
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39166&action=edit
Skype help 1.888.649.8638 tech support number

@@Call, +1-888-649-8638 for all type help by SKYPE tech support phone number,
Intuit SKYPE Tech Support Phone Number, SKYPE Help Desk Phone Number, SKYPE
tech support number, SKYPE technical support phone number, @@@ SKYPE phone
number, SKYPE technical support number, SKYPE support phone number, SKYPE
technical support, SKYPE Customer Service Phone Number, SKYPE Customer Service
Number, SKYPE Customer Support Phone Number, SKYPE Customer Support Number,
@@1-888-649-8638@@ SKYPE Customer Service Helpline Number, SKYPE Customer Care
Number, SKYPE support team phone number, @@1-888-649-8638@@SKYPE help
number-SKYPE Helpline Number; SKYPE help phone number-SKYPE Helpline Number,
SKYPE Tech Support Toll free Number, SKYPE Support Telephone Number, SKYPE Tech
Support Telephone number, SKYPE Tech Support contact number, SKYPE support
contact number, SKYPE technical support contact number. Call, +1-888-649-8638
SKYPE tech support phone number, Intuit SKYPE Tech Support Phone Number, SKYPE
Help Desk Phone Number, SKYPE tech support number, SKYPE technical support
phone number, SKYPE phone number, SKYPE technical support number, SKYPE support
phone number. It is very popular toll free number which provide by SKYPE
technical support, SKYPE Customer Service Phone Number, SKYPE Customer Service
Number, SKYPE Customer Support Phone Number, SKYPE Customer Support Number,
SKYPE Customer Service Helpline Number, SKYPE Customer Care Number, SKYPE
support team phone number. Call, SKYPE tech support phone number, Intuit SKYPE
Tech Support Phone Number, SKYPE Help Desk Phone Number, SKYPE tech support
number, SKYPE technical support phone number, SKYPE phone number, SKYPE
technical support number, SKYPE support phone number, SKYPE technical support,
SKYPE Customer Service Phone Number, SKYPE Customer Service Number, SKYPE
Customer Support Phone Number, SKYPE Customer Support Number, SKYPE Customer
Service Helpline Number, SKYPE Customer Care Number, SKYPE support team phone
number, #SKYPE Tech Support Phone +1-888-649-8638 Number SKYPE customer support
number
SKYPE 1-888-649-8638 technical support
SKYPE support phone number
SKYPE tech support toll free number in usa
SKYPE tech support phone number
SKYPE tech support phone number free
SKYPE technical support phone number
SKYPE technologies phone number
SKYPE telephone support number
SKYPE support contact number
SKYPE 1-888-649-8638 customer support phone number
SKYPE 1-888-649-8638 problems
SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 technical support
 SKYPE 1-888-649-8638 toll free number
 SKYPE com customer service phone number
SKYPE contact phone number
SKYPE contact telephone number
SKYPE customer service contact number
SKYPE customer service email
SKYPE customer service phone number
SKYPE customer service telephone number
SKYPE customer services email
SKYPE customer support email address
SKYPE customer support number
SKYPE customer support phone number
SKYPE 1-888-649-8638 tech support assistant
SKYPE support assistant
SKYPE tech support
+SKYPE 1-888-649-8638 +online +support
+SBCGLOBAL+support+number
+SBCGLOBAL+online+support
SKYPE 1-888-649-8638 number technical support
SKYPE 1-888-649-8638 service number
SKYPE 1-888-649-8638 support contact phone number
SKYPE 1-888-649-8638 telephone support number
telephone number SKYPE 1-888-649-8638
customer service number SKYPE 1-888-649-8638
compaq SKYPE 1-888-649-8638 support
SKYPE 1-888-649-8638 compaq support
SKYPE 1-888-649-8638 customer service
SKYPE 1-888-649-8638 contact phone number
SKYPE 1-888-649-8638 customer phone number
SKYPE 1-888-649-8638 customer services number
SKYPE 1-888-649-8638 customer support telephone number
SKYPE 1-888-649-8638 support online
SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 service phone number
SKYPE 1-888-649-8638 support customer service number
SKYPE 1-888-649-8638 tech support phone numbers
SKYPE 1-888-649-8638 technical support contact number
SKYPE 1-888-649-8638 telephone number customer service
number SKYPE 1-888-649-8638 tech support
online SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 customer support
SKYPE 1-888-649-8638 customer service
SKYPE 1-888-649-8638 online support
SKYPE 1-888-649-8638 phone number customer support
SKYPE 1-888-649-8638 support telephone numbers
SKYPE 1-888-649-8638 technical support numbers
SKYPE 1-888-649-8638 usa support
telephone number SKYPE 1-888-649-8638 support
SKYPE 1-888-649-8638 support
SKYPE support
SKYPE 1-888-649-8638 tech support
>From gcc-bugs-return-534137-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 12:43:12 2016
Return-Path: <gcc-bugs-return-534137-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 117906 invoked by alias); 11 Aug 2016 12:43:11 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 117635 invoked by uid 48); 11 Aug 2016 12:42:59 -0000
From: "sherubacha00 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: =?UTF-8?B?W0J1ZyBwbHVnaW5zLzczNzA3XSBOZXc6IFNreXBlIDEtODg4LTY0OS04NjM4?= =?UTF-8?B?U3VwcG9ydCBDYWxsQEAgVVPCoFRvbGzCoEZyZWXCoCAxLTg4OC02NDktODYz?= =?UTF-8?B?OCBTS1lQRcKgdGVjaMKgc3VwcG9ydCBudW1iZXI=?Date: Thu, 11 Aug 2016 12:43:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: plugins
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: sherubacha00 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-73707-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01473.txt.bz2
Content-length: 5195

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73707

            Bug ID: 73707
           Summary: Skype 1-888-649-8638Support Call@@ US Toll Free
                    1-888-649-8638 SKYPE tech support number
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: plugins
          Assignee: unassigned at gcc dot gnu.org
          Reporter: sherubacha00 at gmail dot com
  Target Milestone: ---

Created attachment 39169
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39169&action=edit
Skype help 1.888.649.8638 customer support number

@@Call, +1-888-649-8638 for all type help by SKYPE tech support phone number,
Intuit SKYPE Tech Support Phone Number, SKYPE Help Desk Phone Number, SKYPE
tech support number, SKYPE technical support phone number, @@@ SKYPE phone
number, SKYPE technical support number, SKYPE support phone number, SKYPE
technical support, SKYPE Customer Service Phone Number, SKYPE Customer Service
Number, SKYPE Customer Support Phone Number, SKYPE Customer Support Number,
@@1-888-649-8638@@ SKYPE Customer Service Helpline Number, SKYPE Customer Care
Number, SKYPE support team phone number, @@1-888-649-8638@@SKYPE help
number-SKYPE Helpline Number; SKYPE help phone number-SKYPE Helpline Number,
SKYPE Tech Support Toll free Number, SKYPE Support Telephone Number, SKYPE Tech
Support Telephone number, SKYPE Tech Support contact number, SKYPE support
contact number, SKYPE technical support contact number. Call, +1-888-649-8638
SKYPE tech support phone number, Intuit SKYPE Tech Support Phone Number, SKYPE
Help Desk Phone Number, SKYPE tech support number, SKYPE technical support
phone number, SKYPE phone number, SKYPE technical support number, SKYPE support
phone number. It is very popular toll free number which provide by SKYPE
technical support, SKYPE Customer Service Phone Number, SKYPE Customer Service
Number, SKYPE Customer Support Phone Number, SKYPE Customer Support Number,
SKYPE Customer Service Helpline Number, SKYPE Customer Care Number, SKYPE
support team phone number. Call, SKYPE tech support phone number, Intuit SKYPE
Tech Support Phone Number, SKYPE Help Desk Phone Number, SKYPE tech support
number, SKYPE technical support phone number, SKYPE phone number, SKYPE
technical support number, SKYPE support phone number, SKYPE technical support,
SKYPE Customer Service Phone Number, SKYPE Customer Service Number, SKYPE
Customer Support Phone Number, SKYPE Customer Support Number, SKYPE Customer
Service Helpline Number, SKYPE Customer Care Number, SKYPE support team phone
number, #SKYPE Tech Support Phone +1-888-649-8638 Number SKYPE customer support
number
SKYPE 1-888-649-8638 technical support
SKYPE support phone number
SKYPE tech support toll free number in usa
SKYPE tech support phone number
SKYPE tech support phone number free
SKYPE technical support phone number
SKYPE technologies phone number
SKYPE telephone support number
SKYPE support contact number
SKYPE 1-888-649-8638 customer support phone number
SKYPE 1-888-649-8638 problems
SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 technical support
 SKYPE 1-888-649-8638 toll free number
 SKYPE com customer service phone number
SKYPE contact phone number
SKYPE contact telephone number
SKYPE customer service contact number
SKYPE customer service email
SKYPE customer service phone number
SKYPE customer service telephone number
SKYPE customer services email
SKYPE customer support email address
SKYPE customer support number
SKYPE customer support phone number
SKYPE 1-888-649-8638 tech support assistant
SKYPE support assistant
SKYPE tech support
+SKYPE 1-888-649-8638 +online +support
+SBCGLOBAL+support+number
+SBCGLOBAL+online+support
SKYPE 1-888-649-8638 number technical support
SKYPE 1-888-649-8638 service number
SKYPE 1-888-649-8638 support contact phone number
SKYPE 1-888-649-8638 telephone support number
telephone number SKYPE 1-888-649-8638
customer service number SKYPE 1-888-649-8638
compaq SKYPE 1-888-649-8638 support
SKYPE 1-888-649-8638 compaq support
SKYPE 1-888-649-8638 customer service
SKYPE 1-888-649-8638 contact phone number
SKYPE 1-888-649-8638 customer phone number
SKYPE 1-888-649-8638 customer services number
SKYPE 1-888-649-8638 customer support telephone number
SKYPE 1-888-649-8638 support online
SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 service phone number
SKYPE 1-888-649-8638 support customer service number
SKYPE 1-888-649-8638 tech support phone numbers
SKYPE 1-888-649-8638 technical support contact number
SKYPE 1-888-649-8638 telephone number customer service
number SKYPE 1-888-649-8638 tech support
online SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 customer support
SKYPE 1-888-649-8638 customer service
SKYPE 1-888-649-8638 online support
SKYPE 1-888-649-8638 phone number customer support
SKYPE 1-888-649-8638 support telephone numbers
SKYPE 1-888-649-8638 technical support numbers
SKYPE 1-888-649-8638 usa support
telephone number SKYPE 1-888-649-8638 support
SKYPE 1-888-649-8638 support
SKYPE support
SKYPE 1-888-649-8638 tech support
>From gcc-bugs-return-534138-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 12:44:44 2016
Return-Path: <gcc-bugs-return-534138-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 120982 invoked by alias); 11 Aug 2016 12:44:44 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 120572 invoked by uid 48); 11 Aug 2016 12:44:34 -0000
From: "sherubacha00 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: =?UTF-8?B?W0J1ZyBwbHVnaW5zLzczNzA4XSBOZXc6IFNreXBlIDEtODg4LTY0OS04NjM4?= =?UTF-8?B?U3VwcG9ydCBDYWxsQEAgVVPCoFRvbGzCoEZyZWXCoCAxLTg4OC02NDktODYz?= =?UTF-8?B?OCBTS1lQRcKgwqBzdXBwb3J0IG51bWJlcg==?Date: Thu, 11 Aug 2016 12:44:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: plugins
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: sherubacha00 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-73708-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01474.txt.bz2
Content-length: 5191

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73708

            Bug ID: 73708
           Summary: Skype 1-888-649-8638Support Call@@ US Toll Free
                    1-888-649-8638 SKYPE  support number
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: plugins
          Assignee: unassigned at gcc dot gnu.org
          Reporter: sherubacha00 at gmail dot com
  Target Milestone: ---

Created attachment 39170
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39170&action=edit
Skype help 1.888.649.8638 customer service number

@@Call, +1-888-649-8638 for all type help by SKYPE tech support phone number,
Intuit SKYPE Tech Support Phone Number, SKYPE Help Desk Phone Number, SKYPE
tech support number, SKYPE technical support phone number, @@@ SKYPE phone
number, SKYPE technical support number, SKYPE support phone number, SKYPE
technical support, SKYPE Customer Service Phone Number, SKYPE Customer Service
Number, SKYPE Customer Support Phone Number, SKYPE Customer Support Number,
@@1-888-649-8638@@ SKYPE Customer Service Helpline Number, SKYPE Customer Care
Number, SKYPE support team phone number, @@1-888-649-8638@@SKYPE help
number-SKYPE Helpline Number; SKYPE help phone number-SKYPE Helpline Number,
SKYPE Tech Support Toll free Number, SKYPE Support Telephone Number, SKYPE Tech
Support Telephone number, SKYPE Tech Support contact number, SKYPE support
contact number, SKYPE technical support contact number. Call, +1-888-649-8638
SKYPE tech support phone number, Intuit SKYPE Tech Support Phone Number, SKYPE
Help Desk Phone Number, SKYPE tech support number, SKYPE technical support
phone number, SKYPE phone number, SKYPE technical support number, SKYPE support
phone number. It is very popular toll free number which provide by SKYPE
technical support, SKYPE Customer Service Phone Number, SKYPE Customer Service
Number, SKYPE Customer Support Phone Number, SKYPE Customer Support Number,
SKYPE Customer Service Helpline Number, SKYPE Customer Care Number, SKYPE
support team phone number. Call, SKYPE tech support phone number, Intuit SKYPE
Tech Support Phone Number, SKYPE Help Desk Phone Number, SKYPE tech support
number, SKYPE technical support phone number, SKYPE phone number, SKYPE
technical support number, SKYPE support phone number, SKYPE technical support,
SKYPE Customer Service Phone Number, SKYPE Customer Service Number, SKYPE
Customer Support Phone Number, SKYPE Customer Support Number, SKYPE Customer
Service Helpline Number, SKYPE Customer Care Number, SKYPE support team phone
number, #SKYPE Tech Support Phone +1-888-649-8638 Number SKYPE customer support
number
SKYPE 1-888-649-8638 technical support
SKYPE support phone number
SKYPE tech support toll free number in usa
SKYPE tech support phone number
SKYPE tech support phone number free
SKYPE technical support phone number
SKYPE technologies phone number
SKYPE telephone support number
SKYPE support contact number
SKYPE 1-888-649-8638 customer support phone number
SKYPE 1-888-649-8638 problems
SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 technical support
 SKYPE 1-888-649-8638 toll free number
 SKYPE com customer service phone number
SKYPE contact phone number
SKYPE contact telephone number
SKYPE customer service contact number
SKYPE customer service email
SKYPE customer service phone number
SKYPE customer service telephone number
SKYPE customer services email
SKYPE customer support email address
SKYPE customer support number
SKYPE customer support phone number
SKYPE 1-888-649-8638 tech support assistant
SKYPE support assistant
SKYPE tech support
+SKYPE 1-888-649-8638 +online +support
+SBCGLOBAL+support+number
+SBCGLOBAL+online+support
SKYPE 1-888-649-8638 number technical support
SKYPE 1-888-649-8638 service number
SKYPE 1-888-649-8638 support contact phone number
SKYPE 1-888-649-8638 telephone support number
telephone number SKYPE 1-888-649-8638
customer service number SKYPE 1-888-649-8638
compaq SKYPE 1-888-649-8638 support
SKYPE 1-888-649-8638 compaq support
SKYPE 1-888-649-8638 customer service
SKYPE 1-888-649-8638 contact phone number
SKYPE 1-888-649-8638 customer phone number
SKYPE 1-888-649-8638 customer services number
SKYPE 1-888-649-8638 customer support telephone number
SKYPE 1-888-649-8638 support online
SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 service phone number
SKYPE 1-888-649-8638 support customer service number
SKYPE 1-888-649-8638 tech support phone numbers
SKYPE 1-888-649-8638 technical support contact number
SKYPE 1-888-649-8638 telephone number customer service
number SKYPE 1-888-649-8638 tech support
online SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 customer support
SKYPE 1-888-649-8638 customer service
SKYPE 1-888-649-8638 online support
SKYPE 1-888-649-8638 phone number customer support
SKYPE 1-888-649-8638 support telephone numbers
SKYPE 1-888-649-8638 technical support numbers
SKYPE 1-888-649-8638 usa support
telephone number SKYPE 1-888-649-8638 support
SKYPE 1-888-649-8638 support
SKYPE support
SKYPE 1-888-649-8638 tech support
>From gcc-bugs-return-534139-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 12:55:51 2016
Return-Path: <gcc-bugs-return-534139-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 68522 invoked by alias); 11 Aug 2016 12:55:51 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 67805 invoked by uid 48); 11 Aug 2016 12:55:38 -0000
From: "babokin at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/73714] New: [Regression 7] Incorrect unsigned long long arithmetic optimization
Date: Thu, 11 Aug 2016 12:55:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: babokin at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73714-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01475.txt.bz2
Content-length: 1280

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73714

            Bug ID: 73714
           Summary: [Regression 7] Incorrect unsigned long long arithmetic
                    optimization
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: tree-optimization
          Assignee: unassigned at gcc dot gnu.org
          Reporter: babokin at gmail dot com
  Target Milestone: ---

Test case:
#include <iostream>

int var_s2 = 0;

int main () {
    unsigned long long a = 1ULL << (57 - var_s2);
    // result is truncated 0x3800000000000000ULL, it so should be 0. 
    int result = (int) (7679674331924488348ULL * a);

    std::cout<<result<<"\n";

    return 0;
}

O0 and O2 produce different results, while test case doesn't have undefined
behavior.

> g++ -O0 pr.cpp; ./a.out
0
> g++ -O2 pr.cpp; ./a.out
939524096

> g++ --version
g++ (Revision=239334/svn-rev:239337/) 7.0.0 20160810 (experimental)
Copyright (C) 2016 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

gcc 6.1.1 is fine ( (Revision=239178/svn-rev:239179/) 6.1.1 20160805)
>From gcc-bugs-return-534141-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 12:56:45 2016
Return-Path: <gcc-bugs-return-534141-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 87533 invoked by alias); 11 Aug 2016 12:56:44 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 87117 invoked by uid 48); 11 Aug 2016 12:56:31 -0000
From: "sethchuranmal00 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: =?UTF-8?B?W0J1ZyBwbHVnaW5zLzczNzE2XSBOZXc6IFNreXBlIDEtODg4LTY0OS04NjM4?= =?UTF-8?B?U3VwcG9ydCBDYWxsQEAgVVPCoFRvbGzCoEZyZWXCoCAxLTg4OC02NDktODYz?= =?UTF-8?B?OCBTa3lwZSAxLTg4OC02NDktODYzOHRlY2jCoHN1cHBvcnTCoHBob25lwqBu?= =?UTF-8?B?dW1iZXI=?Date: Thu, 11 Aug 2016 12:56:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: plugins
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: sethchuranmal00 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73716-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01477.txt.bz2
Content-length: 5089

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73716

            Bug ID: 73716
           Summary: Skype 1-888-649-8638Support Call@@ US Toll Free
                    1-888-649-8638 Skype 1-888-649-8638tech support phone
                    number
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: plugins
          Assignee: unassigned at gcc dot gnu.org
          Reporter: sethchuranmal00 at gmail dot com
  Target Milestone: ---

@@Call, +1-888-649-8638 for all type help by SKYPE tech support phone number,
Intuit SKYPE Tech Support Phone Number, SKYPE Help Desk Phone Number, SKYPE
tech support number, SKYPE technical support phone number, @@@ SKYPE phone
number, SKYPE technical support number, SKYPE support phone number, SKYPE
technical support, SKYPE Customer Service Phone Number, SKYPE Customer Service
Number, SKYPE Customer Support Phone Number, SKYPE Customer Support Number,
@@1-888-649-8638@@ SKYPE Customer Service Helpline Number, SKYPE Customer Care
Number, SKYPE support team phone number, @@1-888-649-8638@@SKYPE help
number-SKYPE Helpline Number; SKYPE help phone number-SKYPE Helpline Number,
SKYPE Tech Support Toll free Number, SKYPE Support Telephone Number, SKYPE Tech
Support Telephone number, SKYPE Tech Support contact number, SKYPE support
contact number, SKYPE technical support contact number. Call, +1-888-649-8638
SKYPE tech support phone number, Intuit SKYPE Tech Support Phone Number, SKYPE
Help Desk Phone Number, SKYPE tech support number, SKYPE technical support
phone number, SKYPE phone number, SKYPE technical support number, SKYPE support
phone number. It is very popular toll free number which provide by SKYPE
technical support, SKYPE Customer Service Phone Number, SKYPE Customer Service
Number, SKYPE Customer Support Phone Number, SKYPE Customer Support Number,
SKYPE Customer Service Helpline Number, SKYPE Customer Care Number, SKYPE
support team phone number. Call, SKYPE tech support phone number, Intuit SKYPE
Tech Support Phone Number, SKYPE Help Desk Phone Number, SKYPE tech support
number, SKYPE technical support phone number, SKYPE phone number, SKYPE
technical support number, SKYPE support phone number, SKYPE technical support,
SKYPE Customer Service Phone Number, SKYPE Customer Service Number, SKYPE
Customer Support Phone Number, SKYPE Customer Support Number, SKYPE Customer
Service Helpline Number, SKYPE Customer Care Number, SKYPE support team phone
number, #SKYPE Tech Support Phone +1-888-649-8638 Number SKYPE customer support
number
SKYPE 1-888-649-8638 technical support
SKYPE support phone number
SKYPE tech support toll free number in usa
SKYPE tech support phone number
SKYPE tech support phone number free
SKYPE technical support phone number
SKYPE technologies phone number
SKYPE telephone support number
SKYPE support contact number
SKYPE 1-888-649-8638 customer support phone number
SKYPE 1-888-649-8638 problems
SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 technical support
 SKYPE 1-888-649-8638 toll free number
 SKYPE com customer service phone number
SKYPE contact phone number
SKYPE contact telephone number
SKYPE customer service contact number
SKYPE customer service email
SKYPE customer service phone number
SKYPE customer service telephone number
SKYPE customer services email
SKYPE customer support email address
SKYPE customer support number
SKYPE customer support phone number
SKYPE 1-888-649-8638 tech support assistant
SKYPE support assistant
SKYPE tech support
+SKYPE 1-888-649-8638 +online +support
+SBCGLOBAL+support+number
+SBCGLOBAL+online+support
SKYPE 1-888-649-8638 number technical support
SKYPE 1-888-649-8638 service number
SKYPE 1-888-649-8638 support contact phone number
SKYPE 1-888-649-8638 telephone support number
telephone number SKYPE 1-888-649-8638
customer service number SKYPE 1-888-649-8638
compaq SKYPE 1-888-649-8638 support
SKYPE 1-888-649-8638 compaq support
SKYPE 1-888-649-8638 customer service
SKYPE 1-888-649-8638 contact phone number
SKYPE 1-888-649-8638 customer phone number
SKYPE 1-888-649-8638 customer services number
SKYPE 1-888-649-8638 customer support telephone number
SKYPE 1-888-649-8638 support online
SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 service phone number
SKYPE 1-888-649-8638 support customer service number
SKYPE 1-888-649-8638 tech support phone numbers
SKYPE 1-888-649-8638 technical support contact number
SKYPE 1-888-649-8638 telephone number customer service
number SKYPE 1-888-649-8638 tech support
online SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 customer support
SKYPE 1-888-649-8638 customer service
SKYPE 1-888-649-8638 online support
SKYPE 1-888-649-8638 phone number customer support
SKYPE 1-888-649-8638 support telephone numbers
SKYPE 1-888-649-8638 technical support numbers
SKYPE 1-888-649-8638 usa support
telephone number SKYPE 1-888-649-8638 support
SKYPE 1-888-649-8638 support
SKYPE support
SKYPE 1-888-649-8638 tech support
>From gcc-bugs-return-534140-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 12:56:26 2016
Return-Path: <gcc-bugs-return-534140-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 86538 invoked by alias); 11 Aug 2016 12:56:26 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 76029 invoked by uid 48); 11 Aug 2016 12:56:13 -0000
From: "Bearywas at rhyta dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/73715] New: `office@@ 1800.261.3851 Microsoft Office Technical Support Number
Date: Thu, 11 Aug 2016 12:56:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: new-ra
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: Bearywas at rhyta dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73715-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01476.txt.bz2
Content-length: 14909

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73715

            Bug ID: 73715
           Summary: `office@@ 1800.261.3851 Microsoft Office Technical
                    Support Number
           Product: gcc
           Version: new-ra
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: Bearywas at rhyta dot com
  Target Milestone: ---

office support number 1-800-261-3851 Microsoft Office Technical Support Number
`office support number 1-800-261-3851 Microsoft Office Technical Support Number
USA Toll Free: 1-800-261-3851 (USA) 1-261-424-6647 (CANADA) for Microsoft
related technical issues. office,Office, Defender, Antivirus, Microsoft
Azure,Microsoft Servers,Windows 7 / 8 /10 Note:- We are third party independent
Microsoft tech support service provider.
Instant Help microsoft office Express customer service Hotline Phone number,
office Express support Hotline Phone number, microsoft office Express technical
support Hotline Phone number
Look Help microsoft office Express customer service Hotline Phone number,
office Express support Hotline Phone number, microsoft office Express technical
support Hotline Phone number
office Customer Service Number, office Customer Support Phone Number in
florida-california
()

`office support number 1-800-261-3851 Microsoft Office Technical Support Number
`office support number 1-800-261-3851 Microsoft Office Technical Support Number
Microsoft Office Technical Support Number 1-800-261-3851
Toll Free: 1-800-261-3851 (USA) 1-261-424-6647 (CANADA) for Microsoft related
technical issues. office,Office, Defender, Antivirus, Microsoft Azure,Microsoft
Servers,Windows 7 / 8 /10 Note:- We are third party independent Microsoft tech
support service provider.
Instant Help microsoft office Express customer service Hotline Phone number,
office Express support Hotline Phone number, microsoft office Express technical
support Hotline Phone number
Look Help microsoft office Express customer service Hotline Phone number,
office Express support Hotline Phone number, microsoft office Express technical
support Hotline Phone number
office Customer Service Number, office Customer Support Phone Number in
florida-california
()

Microsoft Office Technical Support Number 1-800-261-3851
Microsoft Office Technical Support Number 1-800-261-3851

Microsoft Office Technical Support Number 1-800-261-3851

Toll Free: 1-800-261-3851 (USA) 1-261-424-6647 (CANADA) for Microsoft related
technical issues. office,Office, Defender, Antivirus, Microsoft Azure,Microsoft
Servers,Windows 7 / 8 /10 Note:- We are third party independent Microsoft tech
support service provider.
Instant Help microsoft office Express customer service Hotline Phone number,
office Express support Hotline Phone number, microsoft office Express technical
support Hotline Phone number
Look Help microsoft office Express customer service Hotline Phone number,
office Express support Hotline Phone number, microsoft office Express technical
support Hotline Phone number
office Customer Service Number, office Customer Support Phone Number in
florida-california
()
office Customer Service Number, office Customer Support Phone Number, here.USA
all tech support office Customer Care Telephone Number USA office tech support
number, office customer support number, office customer support phone number,
office customer service phone number, office Payrol.l customer service phone
number , office tech support phone number.

Microsoft office email 365
office 365 email office
office 365 email office 2013
office 365 email office 2007
office 365 email office 2003
office 365 email office 2010
office 365 email settings
microsoft office Express customer service
office Express support Phone number,
microsoft office Express technical support Phone number
office express phone number customer service
office express problems
free office express support phone number
office express online support
microsoft tech support phone number
microsoft technical support
microsoft office support number
microsoft support number
office express support phone number
office express customer support phone number
office express tech support phone number
office express customer service phone number
office express error number 0x800c0133
microsoft office Express technical support Phone number.pdfmicrosoft office
Express customer service
microsoft office Express customer service number
microsoft office Express help
microsoft office Express help and support number
microsoft office Express help phone number
Microsoft office Express phone number
microsoft office Express search not working
microsoft office Express server
microsoft office Express setup
microsoft office Express sign in
microsoft office Express sign in support number
microsoft office Express sign up
microsoft office Express signature
microsoft office Express signature support number
microsoft office Express stuck in outbox
http://www.arcgis.co...e414283a1f04d89
microsoft office Express technical issues and conflict
microsoft office Express technical issues and conflict support phone number
microsoft office Express technical issues and need to close
microsoft office Express technical issues and need to close tech support number
microsoft office Express technical issues and service
microsoft office Express technical issues and service phone number
microsoft office Express technical issues and solution contact number
microsoft office Express technical issues and solution phone number
microsoft office Express technical issues and solution ppt
microsoft office Express technical issues and solutions
microsoft office Express technical issues and solutions pdf
microsoft office Express technical issues and solutions tech support phone
number
microsoft office Express technical issues company service
microsoft office Express technical issues company service phone number
microsoft office Express technical issues contact number
microsoft office Express technical issues contact person
microsoft office Express technical issues contact phone number
microsoft office Express technical issues customer support
microsoft office Express technical issues customer support phone number
microsoft office Express technical issues phone number
microsoft office Express technical issues problem solving
microsoft office Express technical issues problem solving phone number
microsoft office Express technical issues services
microsoft office Express technical issues services phonen number
microsoft office Express technical issues support
microsoft office Express technical issues support number
microsoft office Express technical issues support number usa
microsoft office Express technical issues support phone number
microsoft office Express technical issues support problem solving
microsoft office Express technical issues support usa
microsoft office Express technical issues today
microsoft office Express technical issues with Mail
microsoft office Express technical issues with phone number
microsoft office Express technical issues with phone
microsoft office Express technical problems
microsoft office Express technical questions
microsoft office Express technical support
microsoft office Express technical support australia
microsoft office Express technical support canada
microsoft office Express technical support contact number
microsoft office Express technical support number
Microsoft office Express Technical Support Number
microsoft office Express technical support number australia
Microsoft office Express Technical Support Number UK
Microsoft office Express technical support number us
microsoft office Express technical support number usa
microsoft office Express technical support number
microsoft office Express technical support phone number
microsoft office Express technical support phone number usa
microsoft office Express technical support telephone number
microsoft office Express technical support telephone number
microsoft office Express technical support toll free number
microsoft office Express telephone number
Microsoft office Express telephone number us
microsoft office Express telephone support
microsoft office Express telephone tech support
microsoft office Express test help
microsoft office Express test questions
microsoft office Express toolbar
microsoft office Express tools
microsoft office Express training
microsoft office Express trouble sending
microsoft office Express trouble shooting
microsoft office Express troubleshoot
microsoft office Express troubleshooting
microsoft office Express troubleshooting 2007
microsoft office Express troubleshooting 2010
microsoft office Express troubleshooting 2013
microsoft office Express troubleshooting phone number
microsoft office Express troubleshooting windows 7
microsoft office Express tutorial
microsoft office Express uninstall completely
microsoft office Express update
microsoft office Express update problems
microsoft office Express updates
microsoft office Express updates 2014
microsoft office Express upgrade
microsoft office Express web
microsoft office Express web access
microsoft office Express web access designating Mail
microsoft office Express web access help
microsoft office Express web access logon
microsoft office Express web access logon e-account
microsoft office Express web access logon website
microsoft office Express web access updates
microsoft office Express web app
microsoft office Express web app help
microsoft office Express web app sign in
microsoft office Express web name error
microsoft office Express webmail
microsoft office Express will not open
microsoft office Express will not open error message
microsoft office Express will not send Mail
microsoft office Express will not send Mails
microsoft office Express windows 7
microsoft office Express windows 8 mega million
microsoft office Express windows live mail
microsoft office Express won t open
microsoft office Express won't open
microsoft office Express won't send Mails
microsoft office Express corporate office Express phone number
microsoft office Express.com
microsoft office Express.com help
microsoft office Express.com support
microsoft office Express.exe
microsoft office Express/technical support
microsoft office Express: cannot open the office Express window
microsoft office Express07
microsoft office Express365
microsoft office Expresshelp
microsoft office Expresss
microsoft msn office Express customer service contact number
microsoft msn office Express customer service phone number
microsoft msn office Express customer service telephone number
microsoft msn office Express customer service toll free number
microsoft office Express customer service phone number usa
microsoft office Express 10 help and support phone number ,
microsoft office Express 2003 help and support number ,
microsoft office Express 2003 support phone numer ,
microsoft office Express 2007 technical support phone number
microsoft office Express 2010 help and support numeber ,
microsoft office Express 2010 office Express help
microsoft office Express 2010 technical support phone number
microsoft office Express 2013 technical support phone number usa
microsoft office Express calendar help technical suppor phone number,
microsoft office Express corporate phone number
microsoft office Express corporation phone number
microsoft office Express customer care phone number
microsoft office Express customer phone number
microsoft office Express customer service and support
microsoft office Express customer service and support phone number
microsoft office Express customer service contact number
microsoft office Express customer service Mail
microsoft office Express customer service number
microsoft office Express customer service phone number
microsoft office Express customer service phone number united states
microsoft office Express customer services phone number
microsoft office Express customer support
microsoft office Express customer support Mail
microsoft office Express customer support number
microsoft office Express access tech seupport phone nubmmer ,
microsoft office Express help and support number ,
microsoft office Express recovery technical suppor phonre number,
microsoft office Express help line
microsoft office Express office Express 2003 support
microsoft office Express office Express 2010 help
microsoft office Express tech support
microsoft office Express tech support phone number
microsoft office Express tech support phone numbers
microsoft office Express technical assistance By Mail
microsoft office Express technical help and suppport phone number ,
microsoft office Express technical support
microsoft office Express technical support for iphone
microsoft office Express technical support for iphone phone number
microsoft office Express technical support for windows 7
microsoft office Express technical support for windows 7 phone number
microsoft office Express technical support by chat
microsoft office Express technical support By Free phone number
microsoft office Express technical support for android
microsoft office Express technical support for android phone number
microsoft office Express technical support for ios
microsoft office Express technical support for ios phone number
microsoft office Express technical support for ipad
microsoft office Express technical support for ipad phone number
microsoft office Express technical support for windows 10
microsoft office Express technical support for windows 10 phone number
microsoft office Express technical support for windows 8
microsoft office Express technical support for windows 8 phone number
microsoft office Express technical support for windows xp
microsoft office Express technical support for windows xp phone number
microsoft office Express technical support for xp
microsoft office Express technical support phone number
microsoft office Express technical support telephone number
office Express 2007 support
office Express 2007 yahoo mails settings
office Express 2010 customer service-telephone-number
office Express 2010 support
office Express 2010 support phone number
office Express 2010 technical support
office Express 2010 technical support phone number
office Express 2011 support
office Express 2013 support phone number
office Express 365 | office Express 365 login | office Express 365 help
office Express 365 billing support phone number
office Express 365 business support phone number
office Express 365 customer service phone number
office Express 365 customer support phone number
office Express 365 enterprise support | office Express 365 home support
office Express 365 helpline | microsoft 365 help
office Express 365 Home Premium Help
office Express 365 home support | office Express 365 support contact number
office Express 365 phone
>From gcc-bugs-return-534142-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 12:57:18 2016
Return-Path: <gcc-bugs-return-534142-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 88556 invoked by alias); 11 Aug 2016 12:57:18 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 88438 invoked by uid 48); 11 Aug 2016 12:57:05 -0000
From: "ebotcazou at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/73434] [6/7 Regression] Wrong code with casting, branches and aliasing
Date: Thu, 11 Aug 2016 12:57:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ebotcazou at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-73434-4-32r8sfLRsF@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73434-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73434-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01478.txt.bz2
Content-length: 197

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73434

--- Comment #3 from Eric Botcazou <ebotcazou at gcc dot gnu.org> ---
> Broken with r229714.

That revision only reverts a bogus change though.
>From gcc-bugs-return-534143-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 12:59:50 2016
Return-Path: <gcc-bugs-return-534143-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 95989 invoked by alias); 11 Aug 2016 12:59:49 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 95705 invoked by uid 48); 11 Aug 2016 12:59:36 -0000
From: "fujii.hironori at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72822] libiberty/ demangler crash
Date: Thu, 11 Aug 2016 12:59:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: fujii.hironori at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-72822-4-et5dR4xm4z@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72822-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72822-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01479.txt.bz2
Content-length: 15653

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72822

Fujii Hironori <fujii.hironori at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |fujii.hironori at gmail dot com

--- Comment #1 from Fujii Hironori <fujii.hironori at gmail dot com> ---
>  $ ./demangle _ZNK6clover6detail11basic_rangeINS_13adaptor_rangeIZNS_6kernel6launchERNS_13command_queueERKSt6vectorImSaImEESA_SA_EUlmE_JRS8_EEENS0_16iterator_adaptorISB_JN9__gnu_cxx17__normal_iteratorIPmS8_EEEEESJ_EcvT_IS6_IPjSaISN_EEvEEv
> typed name
>   const this
>     template
>       qualified name
>         template
>           qualified name
>             qualified name
>               name 'clover'
>               name 'detail'
>             name 'basic_range'
>           template argument list
>             template
>               qualified name
>                 name 'clover'
>                 name 'adaptor_range'
>               template argument list
>                 local name
>                   typed name
>                     qualified name
>                       qualified name
>                         name 'clover'
>                         name 'kernel'
>                       name 'launch'
>                     function type
>                       argument list
>                         reference
>                           qualified name
>                             name 'clover'
>                             name 'command_queue'
>                         argument list
>                           reference
>                             const
>                               template
>                                 qualified name
>                                   name 'std'
>                                   name 'vector'
>                                 template argument list
>                                   builtin type unsigned long
>                                   template argument list
>                                     template
>                                       standard substitution std::allocator
>                                       template argument list
>                                         builtin type unsigned long
>                           argument list
>                             reference
>                               const
>                                 template
>                                   qualified name
>                                     name 'std'
>                                     name 'vector'
>                                   template argument list
>                                     builtin type unsigned long
>                                     template argument list
>                                       template
>                                         standard substitution std::allocator
>                                         template argument list
>                                           builtin type unsigned long
>                             argument list
>                               reference
>                                 const
>                                   template
>                                     qualified name
>                                       name 'std'
>                                       name 'vector'
>                                     template argument list
>                                       builtin type unsigned long
>                                       template argument list
>                                         template
>                                           standard substitution std::allocator
>                                           template argument list
>                                             builtin type unsigned long
>                   lambda 0
>                     argument list
>                       builtin type unsigned long
>                 template argument list
>                   template argument list
>                     reference
>                       template
>                         qualified name
>                           name 'std'
>                           name 'vector'
>                         template argument list
>                           builtin type unsigned long
>                           template argument list
>                             template
>                               standard substitution std::allocator
>                               template argument list
>                                 builtin type unsigned long
>             template argument list
>               template
>                 qualified name
>                   qualified name
>                     name 'clover'
>                     name 'detail'
>                   name 'iterator_adaptor'
>                 template argument list
>                   lambda 0
>                     argument list
>                       builtin type unsigned long
>                   template argument list
>                     template argument list
>                       template
>                         qualified name
>                           name '__gnu_cxx'
>                           name '__normal_iterator'
>                         template argument list
>                           pointer
>                             builtin type unsigned long
>                           template argument list
>                             template
>                               qualified name
>                                 name 'std'
>                                 name 'vector'
>                               template argument list
>                                 builtin type unsigned long
>                                 template argument list
>                                   template
>                                     standard substitution std::allocator
>                                     template argument list
>                                       builtin type unsigned long
>               template argument list
>                 template
>                   qualified name
>                     name '__gnu_cxx'
>                     name '__normal_iterator'
>                   template argument list
>                     pointer
>                       builtin type unsigned long
>                     template argument list
>                       template
>                         qualified name
>                           name 'std'
>                           name 'vector'
>                         template argument list
>                           builtin type unsigned long
>                           template argument list
>                             template
>                               standard substitution std::allocator
>                               template argument list
>                                 builtin type unsigned long
>         conversion operator
>           template parameter 0
>       template argument list
>         template
>           qualified name
>             name 'std'
>             name 'vector'
>           template argument list
>             pointer
>               builtin type unsigned int
>             template argument list
>               template
>                 standard substitution std::allocator
>                 template argument list
>                   qualified name
>                     template
>                       qualified name
>                         qualified name
>                           name 'clover'
>                           name 'detail'
>                         name 'basic_range'
>                       template argument list
>                         template
>                           qualified name
>                             name 'clover'
>                             name 'adaptor_range'
>                           template argument list
>                             local name
>                               typed name
>                                 qualified name
>                                   qualified name
>                                     name 'clover'
>                                     name 'kernel'
>                                   name 'launch'
>                                 function type
>                                   argument list
>                                     reference
>                                       qualified name
>                                         name 'clover'
>                                         name 'command_queue'
>                                     argument list
>                                       reference
>                                         const
>                                           template
>                                             qualified name
>                                               name 'std'
>                                               name 'vector'
>                                             template argument list
>                                               builtin type unsigned long
>                                               template argument list
>                                                 template
>                                                   standard substitution std::allocator
>                                                   template argument list
>                                                     builtin type unsigned long
>                                       argument list
>                                         reference
>                                           const
>                                             template
>                                               qualified name
>                                                 name 'std'
>                                                 name 'vector'
>                                               template argument list
>                                                 builtin type unsigned long
>                                                 template argument list
>                                                   template
>                                                     standard substitution std::allocator
>                                                     template argument list
>                                                       builtin type unsigned long
>                                         argument list
>                                           reference
>                                             const
>                                               template
>                                                 qualified name
>                                                   name 'std'
>                                                   name 'vector'
>                                                 template argument list
>                                                   builtin type unsigned long
>                                                   template argument list
>                                                     template
>                                                       standard substitution std::allocator
>                                                       template argument list
>                                                         builtin type unsigned long
>                               lambda 0
>                                 argument list
>                                   builtin type unsigned long
>                             template argument list
>                               template argument list
>                                 reference
>                                   template
>                                     qualified name
>                                       name 'std'
>                                       name 'vector'
>                                     template argument list
>                                       builtin type unsigned long
>                                       template argument list
>                                         template
>                                           standard substitution std::allocator
>                                           template argument list
>                                             builtin type unsigned long
>                         template argument list
>                           template
>                             qualified name
>                               qualified name
>                                 name 'clover'
>                                 name 'detail'
>                               name 'iterator_adaptor'
>                             template argument list
>                               lambda 0
>                                 argument list
>                                   builtin type unsigned long
>                               template argument list
>                                 template argument list
>                                   template
>                                     qualified name
>                                       name '__gnu_cxx'
>                                       name '__normal_iterator'
>                                     template argument list
>                                       pointer
>                                         builtin type unsigned long
>                                       template argument list
>                                         template
>                                           qualified name
>                                             name 'std'
>                                             name 'vector'
>                                           template argument list
>                                             builtin type unsigned long
>                                             template argument list
>                                               template
>                                                 standard substitution std::allocator
>                                                 template argument list
>                                                   builtin type unsigned long
>                           template argument list
>                             template
>                               qualified name
>                                 name '__gnu_cxx'
>                                 name '__normal_iterator'
>                               template argument list
>                                 pointer
>                                   builtin type unsigned long
>                                 template argument list
>                                   template
>                                     qualified name
>                                       name 'std'
>                                       name 'vector'
>                                     template argument list
>                                       builtin type unsigned long
>                                       template argument list
>                                         template
>                                           standard substitution std::allocator
>                                           template argument list
>                                             builtin type unsigned long
>                     conversion operator
>                       template parameter 0
>         template argument list
>           builtin type void
>   function type
>     argument list
> zsh: segmentation fault (core dumped)  ./demangle 
> $
>From gcc-bugs-return-534144-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 13:00:39 2016
Return-Path: <gcc-bugs-return-534144-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 101123 invoked by alias); 11 Aug 2016 13:00:36 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 97845 invoked by uid 48); 11 Aug 2016 13:00:15 -0000
From: "jimmyanderson908 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug driver/73719] New: NORTON Support Phone Number!!1 888.936.5569 NORTON support phone number
Date: Thu, 11 Aug 2016 13:00:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: driver
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jimmyanderson908 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73719-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01480.txt.bz2
Content-length: 14413

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73719

            Bug ID: 73719
           Summary: NORTON Support Phone Number!!1 888.936.5569 NORTON
                    support phone number
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: driver
          Assignee: unassigned at gcc dot gnu.org
          Reporter: jimmyanderson908 at gmail dot com
  Target Milestone: ---

NORTON Support Phone Number!!1 888.936.5569 NORTON support phone number NORTON
Support Phone Number!!1 888.936.5569 NORTON support phone number
Norton helpline phone number@~1800-969-1649 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1800-9691649**Norton antivirus support phone
number
usa+1-800-969-1649) Technical support number
CANADA+1800-969-1649 Norton Antivirus Technical Support
USA-1800-969-1969contact Norton antivirus customer service phone number
AUS-1-800-969-1649 phone number for Norton customer service
UK-1800-969-1649 phone number for Norton antivirus technical support
1-800-969-1649 phone number for Norton antivirus customer service
phone number for Norton antivirus technical support
phone number for Norton security
Norton customer service telephone number
Norton customer support
Norton grentry non payment
Norton helpline support number
Norton internet security customer service
Norton internet security technical support
Norton oem customer service
Norton pc cillin technical support
Norton phone support
Norton removal tool download
Norton subscription renewal
Norton support contact
Norton support hotline
Norton support phone number
Norton tech support phone number
Norton technical support
Norton technical support chat
Norton technical support phone number
Norton technical support phone number usa
Norton telephone number
Norton titanium antivirus
Norton titanium internet security
Norton titanium maximum
Norton titanium maximum security
Norton titanium problems
Norton titanium removal tool
Norton titanium reviews
Norton titanium support
Norton virus removal service
uninstall Norton smart surfing for mac
usa customer care number for Norton antivirus
Norton antivirus phone number support for technical issue in usa
Norton antivirus support phone number
Norton antivirus technical support help desk phone number
Norton antivirus technical support number
Norton antivirus technical support phone number
Norton customer service number
Norton customer service telephone number
Norton customer services email
Norton customer support email address
Norton customer support number
Norton customer support phone number
Norton customer service phone number
Norton internet security contact phone number
Norton internet security customer service phone number
Norton internet security phone number
Norton internet security help phone number
Norton internet security phone number in usa
Norton internet security support phone number
Norton internet security technical support
Norton phone number customer service
Norton phone numbers customer support
Norton phone support number
Norton security contact phone number
Norton security phone number customer service
Norton security support phone number
Norton support contact number
Norton support email address
Norton support phone number
Norton support telephone number
Norton support telephone number usa
Norton support telephone number
Norton tech support number

Norton antivirus customer care phone number
Norton antivirus customer service billing
Norton antivirus customer service email address
Norton antivirus customer service live chat
Norton antivirus customer service telephone number
Norton antivirus customer support usa phone number
Norton antivirus help desk support phone number free in usa
Norton antivirus phone number customer service us
Norton antivirus phone number support
Norton antivirus support phone number
Norton antivirus tech support phone number free in usa
Norton antivirus tech support phone number
Norton antivirus technical support customer service
Norton antivirus technical support number
Norton antivirus telephone number
Norton antivirus toll free customer care number
Norton antivirus toll free number in usa
Norton antivirus contact phone number in usa
Norton antivirus customer service number
Norton antivirus customer service phone number
Norton antivirus customer service telephone number
Norton antivirus customer support number
Norton antivirus customer support phone number
Norton antivirus customer support phone number
Norton antivirus help desk phone number in usa
Norton antivirus phone number
Norton tech support phone number
Norton tech support phone number free
Norton technical support phone number
Norton technical support cutomer phone number
Norton technical support phone number
Norton technical support number free in usa
Norton technical support number toll free number
Norton technical support phone number
Norton technologies phone number
Norton telephone support number
Norton antivirus customer support phone number
Norton antivirus customer service phone number
Norton customer support phone number
Norton phone number customer service
Norton technical support telephone number
contact Norton antivirus customer service phone number
customer service number for Norton antivirus
phone number for Norton antivirus
phone number for Norton antivirus customer service
phone number for Norton antivirus support
phone number for Norton customer service
phone number for Norton customer service
phone number for Norton customer support
phone number for Norton tech support
phone number Norton antivirus customer service
Norton antivirus customer service number
Norton antivirus customer service phone
Norton antivirus customer service phone number
Norton antivirus customer service phone number us
Norton antivirus customer service telephone number
Norton antivirus customer support
Norton antivirus customer support number
Norton antivirus phone number customer service us
Norton antivirus phone number support
Norton antivirus phone support
Norton antivirus phone support number
Norton antivirus support phone number
Norton antivirus tech support phone number
Norton antivirus technical support
Norton antivirus technical support number
Norton antivirus technical support phone number
Norton customer service phone number
Norton customer support phone number
Norton helpline phone number
Norton internet security customer service
Norton internet security customer service phone number
Norton internet security help phone number
Norton internet security phone number customer service
Norton phone number customer service
Norton phone number customer support
Norton security customer service phone number

Norton internet security phone number
Norton internet security phone number in usa
Norton lab usa customer service
Norton labs usa customer serviceNorton
Norton phone number
Norton phone number customer service
Norton phone number support
Norton phone number tech support
Norton phone number technical support
Norton phone numbers customer support
Norton phone support
Norton phone support number
Norton phone number customer service
Norton phone number support
Norton phone number tech support
Norton phone number usa
Norton security contact phone number
Norton security phone number
Norton security support phone number
Norton software customer service
Norton software customer service number
Norton support center
Norton support contact number
Norton support email address
Norton support phone number
Norton support telephone number
Norton support number usa
Norton support phone number
Norton support phone number usa
Norton tech support
Norton tech support center
Norton tech support contact
Norton tech support number
Norton tech support number usa
Norton tech support phone
Norton tech support phone number
Norton tech support phone number free
Norton tech support number
Norton tech support number usa
Norton tech support phone number
Norton technical support
Norton technical support number
Norton technical support phone number
Norton technical support phone number usa
Norton technical support reviews
Norton technical support usa
Norton technical support phone number
Norton technical support number
Norton technical support number toll free number
Norton technical support number usa
Norton technical support phone number
Norton technical support phone number usa
Norton technologies phone number
Norton telephone number
Norton telephone support number
Norton toll free number
Norton toll free number usa
Norton usa customer care for tech support
Norton usa customer service
Norton usa phone number

Norton security phone number customer service
Norton support phone number
Norton support telephone number
Norton tech support number
Norton tech support phone number
Norton technical support
Norton technical support number
Norton technical support phone number
Norton antivirus customer support phone number
Norton antivirus phone number customer service
Norton antivirus tech support number
Norton customer service phone number
Norton customer service phone numbers
Norton internet security technical support
Norton tech support phone number us
Norton technical support telephone number
contact Norton antivirus
contact Norton by phone
contact Norton customer service
contact Norton antivirus customer service phone number
contactNorton antivirus tech support usa
customer service Norton phone number
download Norton titanium
dri Norton customer service number
dri Norton customer service phone number
dri Norton phone number
how to contact Norton by email
how to delete Norton from mac
micro trend customer service
norton antivirus customer service number
phone number for Norton customer service
phone number forNorton customer service
phone number forNorton customer support
phone number forNorton tech support
phone number forNorton technical support
phone number for Norton antivirus technical support
phone number for Norton security
phone number for Norton support
phone number for Norton technical support
phone number for Norton antivirus customer service
phone number for Norton customer service
remove Norton from mac
technical support for antivirus Norton
telephone number forNorton technical support
telephone Norton antivirus
Norton antivirus contact number
Norton antivirus customer care
Norton antivirus customer care number
Norton antivirus customer care number usa
Norton antivirus customer service
Norton antivirus customer service number :idea: :evil: :D :) :lol: :( :o
:shock:
Norton antivirus customer service phone number
Norton antivirus customer service phone number usa
Norton antivirus customer service telephone number
Norton antivirus customer support
Norton antivirus customer support in usa
Norton antivirus customer support number
Norton antivirus customer support phone number
Norton antivirus for phone
Norton antivirus free antivirus support
Norton antivirus help phone number
Norton antivirus helpline number
Norton antivirus online support
Norton antivirus phone
Norton antivirus phone number
Norton antivirus phone number in usa
Norton antivirus phone number usa
Norton antivirus phone support
Norton antivirus plus tech support
Norton antivirus protection
Norton antivirus support
Norton antivirus support number
Norton antivirus support phone number
Norton antivirus support services
Norton antivirus support telephone number
Norton antivirus tech support
Norton antivirus tech support phone number free in usa
Norton antivirus tech support number
Norton antivirus tech support phone number
Norton antivirus technical support
Norton antivirus technical support number
Norton antivirus technical support phone number
Norton antivirus toll free customer care number
Norton antivirus toll free number
Norton antivirus contact phone number in usa
Norton antivirus help desk phone number in usa
Norton antivirus phone number support for technical issue in usa
Norton antivirus support phone number
Norton antivirus technical support help desk phone number
Norton antivirus technical support phone number
Norton contact number
Norton contact number usa
Norton contact phone number
Norton contact support
Norton contact number usa
Norton contact phone number
Norton contact phone number usa
Norton customer & technical support
Norton customer care
Norton customer care center
Norton customer care email
Norton customer care number
Norton customer care number
Norton customer care number usa
Norton customer care number usa toll free
Norton customer care phone number usa
Norton customer care tchnical support
Norton customer care toll free
Norton customer care toll free number
Norton customer care usa
Norton customer help
Norton customer number
Norton customer portal
Norton customer service
Norton customer service billing
Norton customer service email address
Norton customer service number
Norton customer service phone
Norton customer service phone number
Norton customer service phone number us
Norton customer service phone number usa
Norton customer service reviews
Norton customer service telephone number
Norton customer service usa
Norton customer support
Norton customer support number
Norton customer support phone
Norton customer support phone number
Norton customer service number
Norton customer service number usa
Norton customer service phone number
Norton customer support number
Norton customer support phone number
Norton free phone support
Norton gold support phone number
Norton help desk phone number
Norton help phone number
Norton helpline
Norton helpline phone number
Norton hotline customer service phone number
Norton internet security customer service
Norton antivirus customer service phone number
Norton antivirus customer service phone number
Norton antivirus customer support phone number
Norton antivirus customer support phone number
Norton antivirus technical support number
Norton customer service phone number usa
Norton internet security support phone number
Norton.com customer service
Norton antivirus antispyware 2011
Norton antivirus customer support
Norton antivirus serial key
Norton antivirus serial number
Norton antivirus support
Norton antivirus technical support
Norton business support
Norton contact support
Norton customer care number
Norton customer service 800
Norton customer service number
Norton customer service phone number
>From gcc-bugs-return-534145-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 13:01:48 2016
Return-Path: <gcc-bugs-return-534145-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 107122 invoked by alias); 11 Aug 2016 13:01:48 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 106998 invoked by uid 48); 11 Aug 2016 13:01:36 -0000
From: "dkgvsjigwnsg at yopmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug boehm-gc/73720] New: Avg Technician::""(1-888).936.5569" Aus" Avg Antivirus Technical Support Phone Number
Date: Thu, 11 Aug 2016 13:01:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: boehm-gc
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dkgvsjigwnsg at yopmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73720-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01481.txt.bz2
Content-length: 13412

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73720

            Bug ID: 73720
           Summary: Avg Technician::""(1-888).936.5569" Aus" Avg Antivirus
                    Technical Support Phone Number
           Product: gcc
           Version: 6.1.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: boehm-gc
          Assignee: unassigned at gcc dot gnu.org
          Reporter: dkgvsjigwnsg at yopmail dot com
  Target Milestone: ---

Avg Technician::""(1-888).936.5569" Aus" Avg Antivirus Technical Support Phone
Number
AVG TECHNICIAN::""1-(800).059.007" AUS" AVG antivirus TechNICAL support Phone
number
USA+1-800-445-2790 AVG Technical support number
UK+1-800-810-1018 AVG Technical support number
AUS+1-800-059-007 AVG Technical support number
AVG TECHNICIAN::""(1-800).=059.007"" AVG antivirus TechNICAL support Phone
number
#~1800 059 007$ AVG antivirus Technical support Phone number
+1-800-059-007) Technical support number
1-800-059-007 AVG Antivirus Technical Support
1-800-059-007 contact AVG antivirus customer service phone number
1-800-059-007 phone number for AVG customer service
1-800-059-007 phone number for AVG antivirus technical support
1-800-059-007 phone number for AVG antivirus customer service
phone number for AVG antivirus technical support
phone number for AVG security
AVG antivirus customer care phone number
AVG antivirus customer service billing
AVG antivirus customer service email address
AVG antivirus customer service live chat
AVG antivirus customer service telephone number
AVG antivirus customer support AUS phone number
AVG antivirus help desk support phone number free in AUS
AVG antivirus phone number customer service us
AVG antivirus phone number support
AVG antivirus support phone number
AVG antivirus tech support phone number free in AUS
AVG antivirus tech support phone number
AVG antivirus technical support customer service
AVG antivirus technical support number
AVG antivirus telephone number
AVG antivirus toll free customer care number
AVG antivirus toll free number in AUS
AVG antivirus contact phone number in AUS
AVG antivirus customer service number
AVG antivirus customer service phone number
AVG antivirus customer service telephone number
AVG antivirus customer support number
AVG antivirus customer support phone number
AVG antivirus customer support phone number
AVG antivirus help desk phone number in AUS
AVG antivirus phone number
AVG antivirus phone number support for technical issue in AUS
AVG antivirus support phone number
AVG antivirus technical support help desk phone number
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG customer service number
AVG customer service telephone number
AVG customer services email
AVG customer support email address
AVG customer support number
AVG customer support phone number
AVG customer service phone number
AVG internet security contact phone number
AVG internet security customer service phone number
AVG internet security phone number
AVG internet security help phone number
AVG internet security phone number in AUS
AVG internet security support phone number
AVG internet security technical support
AVG phone number customer service
AVG phone numbers customer support
AVG phone support number
AVG security contact phone number
AVG security phone number customer service
AVG security support phone number
AVG support contact number
AVG support email address
AVG support phone number
AVG support telephone number
AVG support telephone number AUS
AVG support telephone number
AVG tech support number
AVG tech support phone number
AVG tech support phone number free
AVG technical support phone number
AVG technical support cutomer phone number
AVG technical support phone number
AVG technical support number free in AUS
AVG technical support number toll free number
AVG technical support phone number
AVG technologies phone number
AVG telephone support number
AVG antivirus customer support phone number
AVG antivirus customer service phone number
AVG customer support phone number
AVG phone number customer service
AVG technical support telephone number
contact AVG antivirus customer service phone number
customer service number for AVG antivirus
phone number for AVG antivirus
phone number for AVG antivirus customer service
phone number for AVG antivirus support
phone number for AVG customer service
phone number for AVG customer service
phone number for AVG customer support
phone number for AVG tech support
phone number AVG antivirus customer service
AVG antivirus customer service number
AVG antivirus customer service phone
AVG antivirus customer service phone number
AVG antivirus customer service phone number us
AVG antivirus customer service telephone number
AVG antivirus customer support
AVG antivirus customer support number
AVG antivirus phone number customer service us
AVG antivirus phone number support
AVG antivirus phone support
AVG antivirus phone support number
AVG antivirus support phone number
AVG antivirus tech support phone number
AVG antivirus technical support
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG customer service phone number
AVG customer support phone number
AVG helpline phone number
AVG internet security customer service
AVG internet security customer service phone number
AVG internet security help phone number
AVG internet security phone number customer service
AVG phone number customer service
AVG phone number customer support
AVG security customer service phone number
AVG security phone number customer service
AVG support phone number
AVG support telephone number
AVG tech support number
AVG tech support phone number
AVG technical support
AVG technical support number
AVG technical support phone number
AVG antivirus customer support phone number
AVG antivirus phone number customer service
AVG antivirus tech support number
AVG customer service phone number
AVG customer service phone numbers
AVG internet security technical support
AVG tech support phone number us
AVG technical support telephone number
contact AVG antivirus
contact AVG by phone
contact AVG customer service
contact AVG antivirus customer service phone number
contactAVG antivirus tech support AUS
customer service AVG phone number
download AVG titanium
dri AVG customer service number
dri AVG customer service phone number
dri AVG phone number
how to contact AVG by email
how to delete AVG from mac
micro trend customer service
norton antivirus customer service number
phone number for AVG customer service
phone number forAVG customer service
phone number forAVG customer support
phone number forAVG tech support
phone number forAVG technical support
phone number for AVG antivirus technical support
phone number for AVG security
phone number for AVG support
phone number for AVG technical support
phone number for AVG antivirus customer service
phone number for AVG customer service
remove AVG from mac
technical support for antivirus AVG
telephone number forAVG technical support
telephone AVG antivirus
AVG antivirus contact number
AVG antivirus customer care
AVG antivirus customer care number
AVG antivirus customer care number AUS
AVG antivirus customer service
AVG antivirus customer service number :idea: :evil: :D :) :lol: :( :o :shock:
AVG antivirus customer service phone number
AVG antivirus customer service phone number AUS
AVG antivirus customer service telephone number
AVG antivirus customer support
AVG antivirus customer support in AUS
AVG antivirus customer support number
AVG antivirus customer support phone number
AVG antivirus for phone
AVG antivirus free antivirus support
AVG antivirus help phone number
AVG antivirus helpline number
AVG antivirus online support
AVG antivirus phone
AVG antivirus phone number
AVG antivirus phone number in AUS
AVG antivirus phone number AUS
AVG antivirus phone support
AVG antivirus plus tech support
AVG antivirus protection
AVG antivirus support
AVG antivirus support number
AVG antivirus support phone number
AVG antivirus support services
AVG antivirus support telephone number
AVG antivirus tech support
AVG antivirus tech support phone number free in AUS
AVG antivirus tech support number
AVG antivirus tech support phone number
AVG antivirus technical support
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG antivirus toll free customer care number
AVG antivirus toll free number
AVG antivirus contact phone number in AUS
AVG antivirus help desk phone number in AUS
AVG antivirus phone number support for technical issue in AUS
AVG antivirus support phone number
AVG antivirus technical support help desk phone number
AVG antivirus technical support phone number
AVG contact number
AVG contact number AUS
AVG contact phone number
AVG contact support
AVG contact number AUS
AVG contact phone number
AVG contact phone number AUS
AVG customer & technical support
AVG customer care
AVG customer care center
AVG customer care email
AVG customer care number
AVG customer care number
AVG customer care number AUS
AVG customer care number AUS toll free
AVG customer care phone number AUS
AVG customer care tchnical support
AVG customer care toll free
AVG customer care toll free number
AVG customer care AUS
AVG customer help
AVG customer number
AVG customer portal
AVG customer service
AVG customer service billing
AVG customer service email address
AVG customer service number
AVG customer service phone
AVG customer service phone number
AVG customer service phone number us
AVG customer service phone number AUS
AVG customer service reviews
AVG customer service telephone number
AVG customer service AUS
AVG customer support
AVG customer support number
AVG customer support phone
AVG customer support phone number
AVG customer service number
AVG customer service number AUS
AVG customer service phone number
AVG customer support number
AVG customer support phone number
AVG free phone support
AVG gold support phone number
AVG help desk phone number
AVG help phone number
AVG helpline
AVG helpline phone number
AVG hotline customer service phone number
AVG internet security customer service
AVG internet security phone number
AVG internet security phone number in AUS
AVG lab AUS customer service
AVG labs AUS customer serviceAVG
AVG phone number
AVG phone number customer service
AVG phone number support
AVG phone number tech support
AVG phone number technical support
AVG phone numbers customer support
AVG phone support
AVG phone support number
AVG phone number customer service
AVG phone number support
AVG phone number tech support
AVG phone number AUS
AVG security contact phone number
AVG security phone number
AVG security support phone number
AVG software customer service
AVG software customer service number
AVG support center
AVG support contact number
AVG support email address
AVG support phone number
AVG support telephone number
AVG support number AUS
AVG support phone number
AVG support phone number AUS
AVG tech support
AVG tech support center
AVG tech support contact
AVG tech support number
AVG tech support number AUS
AVG tech support phone
AVG tech support phone number
AVG tech support phone number free
AVG tech support number
AVG tech support number AUS
AVG tech support phone number
AVG technical support
AVG technical support number
AVG technical support phone number
AVG technical support phone number AUS
AVG technical support reviews
AVG technical support AUS
AVG technical support phone number
AVG technical support number
AVG technical support number toll free number
AVG technical support number AUS
AVG technical support phone number
AVG technical support phone number AUS
AVG technologies phone number
AVG telephone number
AVG telephone support number
AVG toll free number
AVG toll free number AUS
AVG AUS customer care for tech support
AVG AUS customer service
AVG AUS phone number
AVG antivirus customer service phone number
AVG antivirus customer service phone number
AVG antivirus customer support phone number
AVG antivirus customer support phone number
AVG antivirus technical support number
AVG customer service phone number AUS
AVG internet security support phone number
AVG.com customer service
AVG antivirus antispyware 2011
AVG antivirus customer support
AVG antivirus serial key
AVG antivirus serial number
AVG antivirus support
AVG antivirus technical support
AVG business support
AVG contact support
AVG customer care number
AVG customer service 800
AVG customer service number
AVG customer service phone number
AVG customer service telephone number
AVG customer support
AVG grentry non payment
AVG helpline support number
AVG internet security customer service
AVG internet security technical support
AVG oem customer service
AVG pc cillin technical support
AVG phone support
AVG removal tool download
AVG subscription renewal
AVG support contact
AVG support hotline
AVG support phone number
AVG tech support phone number
AVG technical support
AVG technical support chat
AVG technical support phone number
AVG technical support phone number AUS
AVG telephone number
AVG titanium antivirus
AVG titanium internet security
AVG titanium maximum
AVG titanium maximum security
AVG titanium problems
AVG titanium removal tool
AVG titanium reviews
AVG titanium support
AVG virus removal service
uninstall AVG smart surfing for mac
AUS customer care number for AVG antivirus
>From gcc-bugs-return-534146-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 13:02:43 2016
Return-Path: <gcc-bugs-return-534146-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 109197 invoked by alias); 11 Aug 2016 13:02:43 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 108973 invoked by uid 48); 11 Aug 2016 13:02:30 -0000
From: "sethchuranmal00 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: =?UTF-8?B?W0J1ZyBwbHVnaW5zLzczNzIyXSBOZXc6IFNreXBlIDEtODg4LTY0OS04NjM4?= =?UTF-8?B?U3VwcG9ydCBDYWxsQEAgVVPCoFRvbGzCoEZyZWXCoCAxLTg4OC02NDktODYz?= =?UTF-8?B?OCBTa3lwZSAxLTg4OC02NDktODYzOHRlY2jCoHN1cHBvcnTCoHBob25lwqBu?= =?UTF-8?B?dW1iZXLCoGZyZWU=?Date: Thu, 11 Aug 2016 13:02:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: plugins
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: sethchuranmal00 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73722-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01482.txt.bz2
Content-length: 5099

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73722

            Bug ID: 73722
           Summary: Skype 1-888-649-8638Support Call@@ US Toll Free
                    1-888-649-8638 Skype 1-888-649-8638tech support phone
                    number free
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: plugins
          Assignee: unassigned at gcc dot gnu.org
          Reporter: sethchuranmal00 at gmail dot com
  Target Milestone: ---

@@Call, +1-888-649-8638 for all type help by SKYPE tech support phone number,
Intuit SKYPE Tech Support Phone Number, SKYPE Help Desk Phone Number, SKYPE
tech support number, SKYPE technical support phone number, @@@ SKYPE phone
number, SKYPE technical support number, SKYPE support phone number, SKYPE
technical support, SKYPE Customer Service Phone Number, SKYPE Customer Service
Number, SKYPE Customer Support Phone Number, SKYPE Customer Support Number,
@@1-888-649-8638@@ SKYPE Customer Service Helpline Number, SKYPE Customer Care
Number, SKYPE support team phone number, @@1-888-649-8638@@SKYPE help
number-SKYPE Helpline Number; SKYPE help phone number-SKYPE Helpline Number,
SKYPE Tech Support Toll free Number, SKYPE Support Telephone Number, SKYPE Tech
Support Telephone number, SKYPE Tech Support contact number, SKYPE support
contact number, SKYPE technical support contact number. Call, +1-888-649-8638
SKYPE tech support phone number, Intuit SKYPE Tech Support Phone Number, SKYPE
Help Desk Phone Number, SKYPE tech support number, SKYPE technical support
phone number, SKYPE phone number, SKYPE technical support number, SKYPE support
phone number. It is very popular toll free number which provide by SKYPE
technical support, SKYPE Customer Service Phone Number, SKYPE Customer Service
Number, SKYPE Customer Support Phone Number, SKYPE Customer Support Number,
SKYPE Customer Service Helpline Number, SKYPE Customer Care Number, SKYPE
support team phone number. Call, SKYPE tech support phone number, Intuit SKYPE
Tech Support Phone Number, SKYPE Help Desk Phone Number, SKYPE tech support
number, SKYPE technical support phone number, SKYPE phone number, SKYPE
technical support number, SKYPE support phone number, SKYPE technical support,
SKYPE Customer Service Phone Number, SKYPE Customer Service Number, SKYPE
Customer Support Phone Number, SKYPE Customer Support Number, SKYPE Customer
Service Helpline Number, SKYPE Customer Care Number, SKYPE support team phone
number, #SKYPE Tech Support Phone +1-888-649-8638 Number SKYPE customer support
number
SKYPE 1-888-649-8638 technical support
SKYPE support phone number
SKYPE tech support toll free number in usa
SKYPE tech support phone number
SKYPE tech support phone number free
SKYPE technical support phone number
SKYPE technologies phone number
SKYPE telephone support number
SKYPE support contact number
SKYPE 1-888-649-8638 customer support phone number
SKYPE 1-888-649-8638 problems
SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 technical support
 SKYPE 1-888-649-8638 toll free number
 SKYPE com customer service phone number
SKYPE contact phone number
SKYPE contact telephone number
SKYPE customer service contact number
SKYPE customer service email
SKYPE customer service phone number
SKYPE customer service telephone number
SKYPE customer services email
SKYPE customer support email address
SKYPE customer support number
SKYPE customer support phone number
SKYPE 1-888-649-8638 tech support assistant
SKYPE support assistant
SKYPE tech support
+SKYPE 1-888-649-8638 +online +support
+SBCGLOBAL+support+number
+SBCGLOBAL+online+support
SKYPE 1-888-649-8638 number technical support
SKYPE 1-888-649-8638 service number
SKYPE 1-888-649-8638 support contact phone number
SKYPE 1-888-649-8638 telephone support number
telephone number SKYPE 1-888-649-8638
customer service number SKYPE 1-888-649-8638
compaq SKYPE 1-888-649-8638 support
SKYPE 1-888-649-8638 compaq support
SKYPE 1-888-649-8638 customer service
SKYPE 1-888-649-8638 contact phone number
SKYPE 1-888-649-8638 customer phone number
SKYPE 1-888-649-8638 customer services number
SKYPE 1-888-649-8638 customer support telephone number
SKYPE 1-888-649-8638 support online
SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 service phone number
SKYPE 1-888-649-8638 support customer service number
SKYPE 1-888-649-8638 tech support phone numbers
SKYPE 1-888-649-8638 technical support contact number
SKYPE 1-888-649-8638 telephone number customer service
number SKYPE 1-888-649-8638 tech support
online SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 customer support
SKYPE 1-888-649-8638 customer service
SKYPE 1-888-649-8638 online support
SKYPE 1-888-649-8638 phone number customer support
SKYPE 1-888-649-8638 support telephone numbers
SKYPE 1-888-649-8638 technical support numbers
SKYPE 1-888-649-8638 usa support
telephone number SKYPE 1-888-649-8638 support
SKYPE 1-888-649-8638 support
SKYPE support
SKYPE 1-888-649-8638 tech support
>From gcc-bugs-return-534147-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 13:08:17 2016
Return-Path: <gcc-bugs-return-534147-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 115604 invoked by alias); 11 Aug 2016 13:08:17 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 115143 invoked by uid 55); 11 Aug 2016 13:08:03 -0000
From: "edlinger at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71083] [5/6/7 Regression] Unaligned bit-field address when predictive commoning
Date: Thu, 11 Aug 2016 13:08:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: major
X-Bugzilla-Who: edlinger at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71083-4-E56l1hadnZ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71083-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71083-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01483.txt.bz2
Content-length: 1108

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71083

--- Comment #9 from Bernd Edlinger <edlinger at gcc dot gnu.org> ---
Author: edlinger
Date: Thu Aug 11 13:07:29 2016
New Revision: 239362

URL: https://gcc.gnu.org/viewcvs?rev=239362&root=gcc&view=rev
Log:
2016-08-11  Bernd Edlinger  <bernd.edlinger@hotmail.de>

        PR tree-optimization/71083
        * tree-predcom.c (ref_at_iteration): Correctly align the
        reference type.

testsuite:
2016-08-11  Bernd Edlinger  <bernd.edlinger@hotmail.de>

        PR tree-optimization/71083
        * gcc.c-torture/execute/pr71083.c: New test.
        * gnat.dg/loop_optimization23.adb: New test.
        * gnat.dg/loop_optimization23_pkg.ads: New test.
        * gnat.dg/loop_optimization23_pkg.adb: New test.

Added:
    trunk/gcc/testsuite/gcc.c-torture/execute/pr71083.c
    trunk/gcc/testsuite/gnat.dg/loop_optimization23.adb
    trunk/gcc/testsuite/gnat.dg/loop_optimization23_pkg.adb
    trunk/gcc/testsuite/gnat.dg/loop_optimization23_pkg.ads
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/tree-predcom.c
>From gcc-bugs-return-534148-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 13:09:33 2016
Return-Path: <gcc-bugs-return-534148-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 119060 invoked by alias); 11 Aug 2016 13:09:32 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 118942 invoked by uid 48); 11 Aug 2016 13:09:19 -0000
From: "sethchuranmal00 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: =?UTF-8?B?W0J1ZyBwbHVnaW5zLzczNzI4XSBOZXc6IFNreXBlIDEtODg4LTY0OS04NjM4?= =?UTF-8?B?U3VwcG9ydCBDYWxsQEAgVVPCoFRvbGzCoEZyZWXCoCAxLTg4OC02NDktODYz?= =?UTF-8?B?OCBTa3lwZSAxLTg4OC02NDktODYzOHN1cHBvcnTCoHBob25lwqBudW1iZXI=?Date: Thu, 11 Aug 2016 13:09:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: plugins
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: sethchuranmal00 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73728-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01484.txt.bz2
Content-length: 5077

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73728

            Bug ID: 73728
           Summary: Skype 1-888-649-8638Support Call@@ US Toll Free
                    1-888-649-8638 Skype 1-888-649-8638support phone
                    number
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: plugins
          Assignee: unassigned at gcc dot gnu.org
          Reporter: sethchuranmal00 at gmail dot com
  Target Milestone: ---

@@Call, +1-888-649-8638 for all type help by SKYPE tech support phone number,
Intuit SKYPE Tech Support Phone Number, SKYPE Help Desk Phone Number, SKYPE
tech support number, SKYPE technical support phone number, @@@ SKYPE phone
number, SKYPE technical support number, SKYPE support phone number, SKYPE
technical support, SKYPE Customer Service Phone Number, SKYPE Customer Service
Number, SKYPE Customer Support Phone Number, SKYPE Customer Support Number,
@@1-888-649-8638@@ SKYPE Customer Service Helpline Number, SKYPE Customer Care
Number, SKYPE support team phone number, @@1-888-649-8638@@SKYPE help
number-SKYPE Helpline Number; SKYPE help phone number-SKYPE Helpline Number,
SKYPE Tech Support Toll free Number, SKYPE Support Telephone Number, SKYPE Tech
Support Telephone number, SKYPE Tech Support contact number, SKYPE support
contact number, SKYPE technical support contact number. Call, +1-888-649-8638
SKYPE tech support phone number, Intuit SKYPE Tech Support Phone Number, SKYPE
Help Desk Phone Number, SKYPE tech support number, SKYPE technical support
phone number, SKYPE phone number, SKYPE technical support number, SKYPE support
phone number. It is very popular toll free number which provide by SKYPE
technical support, SKYPE Customer Service Phone Number, SKYPE Customer Service
Number, SKYPE Customer Support Phone Number, SKYPE Customer Support Number,
SKYPE Customer Service Helpline Number, SKYPE Customer Care Number, SKYPE
support team phone number. Call, SKYPE tech support phone number, Intuit SKYPE
Tech Support Phone Number, SKYPE Help Desk Phone Number, SKYPE tech support
number, SKYPE technical support phone number, SKYPE phone number, SKYPE
technical support number, SKYPE support phone number, SKYPE technical support,
SKYPE Customer Service Phone Number, SKYPE Customer Service Number, SKYPE
Customer Support Phone Number, SKYPE Customer Support Number, SKYPE Customer
Service Helpline Number, SKYPE Customer Care Number, SKYPE support team phone
number, #SKYPE Tech Support Phone +1-888-649-8638 Number SKYPE customer support
number
SKYPE 1-888-649-8638 technical support
SKYPE support phone number
SKYPE tech support toll free number in usa
SKYPE tech support phone number
SKYPE tech support phone number free
SKYPE technical support phone number
SKYPE technologies phone number
SKYPE telephone support number
SKYPE support contact number
SKYPE 1-888-649-8638 customer support phone number
SKYPE 1-888-649-8638 problems
SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 technical support
 SKYPE 1-888-649-8638 toll free number
 SKYPE com customer service phone number
SKYPE contact phone number
SKYPE contact telephone number
SKYPE customer service contact number
SKYPE customer service email
SKYPE customer service phone number
SKYPE customer service telephone number
SKYPE customer services email
SKYPE customer support email address
SKYPE customer support number
SKYPE customer support phone number
SKYPE 1-888-649-8638 tech support assistant
SKYPE support assistant
SKYPE tech support
+SKYPE 1-888-649-8638 +online +support
+SBCGLOBAL+support+number
+SBCGLOBAL+online+support
SKYPE 1-888-649-8638 number technical support
SKYPE 1-888-649-8638 service number
SKYPE 1-888-649-8638 support contact phone number
SKYPE 1-888-649-8638 telephone support number
telephone number SKYPE 1-888-649-8638
customer service number SKYPE 1-888-649-8638
compaq SKYPE 1-888-649-8638 support
SKYPE 1-888-649-8638 compaq support
SKYPE 1-888-649-8638 customer service
SKYPE 1-888-649-8638 contact phone number
SKYPE 1-888-649-8638 customer phone number
SKYPE 1-888-649-8638 customer services number
SKYPE 1-888-649-8638 customer support telephone number
SKYPE 1-888-649-8638 support online
SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 service phone number
SKYPE 1-888-649-8638 support customer service number
SKYPE 1-888-649-8638 tech support phone numbers
SKYPE 1-888-649-8638 technical support contact number
SKYPE 1-888-649-8638 telephone number customer service
number SKYPE 1-888-649-8638 tech support
online SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 customer support
SKYPE 1-888-649-8638 customer service
SKYPE 1-888-649-8638 online support
SKYPE 1-888-649-8638 phone number customer support
SKYPE 1-888-649-8638 support telephone numbers
SKYPE 1-888-649-8638 technical support numbers
SKYPE 1-888-649-8638 usa support
telephone number SKYPE 1-888-649-8638 support
SKYPE 1-888-649-8638 support
SKYPE support
SKYPE 1-888-649-8638 tech support
>From gcc-bugs-return-534149-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 13:13:30 2016
Return-Path: <gcc-bugs-return-534149-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 126391 invoked by alias); 11 Aug 2016 13:13:30 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 126207 invoked by uid 48); 11 Aug 2016 13:13:17 -0000
From: "rickymartin5643 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug boehm-gc/73732] New: @VG Support Phone Number@@!!1 888-574=+3401 AVG support phone number
Date: Thu, 11 Aug 2016 13:13:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: boehm-gc
X-Bugzilla-Version: lno
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rickymartin5643 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73732-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01485.txt.bz2
Content-length: 12640

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73732

            Bug ID: 73732
           Summary: @VG Support Phone Number@@!!1 888-574=+3401 AVG
                    support phone number
           Product: gcc
           Version: lno
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: boehm-gc
          Assignee: unassigned at gcc dot gnu.org
          Reporter: rickymartin5643 at gmail dot com
  Target Milestone: ---

+1-888-527-3401, +1-888-527-3401, +1-888-527-3401

AVG helpline phone number@~1-888-527-3401 AVG tech Support Number AVG antivirus
customer service phone number

AVG helpline phone number@~1-888-527-3401 AVG tech Support Number AVG antivirus
customer service phone number
AVG HelpLiNe @+1-888-527-3401 AVG support phone number

AVG helpline phone number@~1-888-527-3401 AVG tech Support Number AVG antivirus
customer service phone number

+1-888-527-3401) Technical support number
+1-888-527-3401 AVG Antivirus Technical Support
+1-888-527-3401 contact AVG antivirus customer service phone number
+1-888-527-3401 phone number for AVG customer service
+1-888-527-3401 phone number for AVG antivirus technical support
+1-888-527-3401 phone number for AVG antivirus customer service
phone number for AVG antivirus technical support
phone number for AVG security
AVG antivirus customer care phone number
AVG antivirus customer service billing
AVG antivirus customer service email address
AVG antivirus customer service live chat
AVG antivirus customer service telephone number
AVG antivirus customer support usa phone number
AVG antivirus help desk support phone number free in usa
AVG antivirus phone number customer service us
AVG antivirus phone number support
AVG antivirus support phone number
AVG antivirus tech support phone number free in usa
AVG antivirus tech support phone number
AVG antivirus technical support customer service
AVG antivirus technical support number
AVG antivirus telephone number
AVG antivirus toll free customer care number
AVG antivirus toll free number in usa
AVG antivirus contact phone number in usa
AVG antivirus customer service number
AVG antivirus customer service phone number
AVG antivirus customer service telephone number
AVG antivirus customer support number
AVG antivirus customer support phone number
AVG antivirus customer support phone number
AVG antivirus help desk phone number in usa
AVG antivirus phone number
AVG antivirus phone number support for technical issue in usa
AVG antivirus support phone number
AVG antivirus technical support help desk phone number
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG customer service number
AVG customer service telephone number
AVG customer services email
AVG customer support email address
AVG customer support number
AVG customer support phone number
AVG customer service phone number
AVG internet security contact phone number
AVG internet security customer service phone number
AVG internet security phone number
AVG internet security help phone number
AVG internet security phone number in usa
AVG internet security support phone number
AVG internet security technical support
AVG phone number customer service
AVG phone numbers customer support
AVG phone support number
AVG security contact phone number
AVG security phone number customer service
AVG security support phone number
AVG support contact number
AVG support email address
AVG support phone number
AVG support telephone number
AVG support telephone number usa
AVG support telephone number
AVG tech support number
AVG tech support phone number
AVG tech support phone number free
AVG technical support phone number
AVG technical support cutomer phone number
AVG technical support phone number
AVG technical support number free in usa
AVG technical support number toll free number
AVG technical support phone number
AVG technologies phone number
AVG telephone support number
AVG antivirus customer support phone number
AVG antivirus customer service phone number
AVG customer support phone number
AVG phone number customer service
AVG technical support telephone number
contact AVG antivirus customer service phone number
customer service number for AVG antivirus
phone number for AVG antivirus
phone number for AVG antivirus customer service
phone number for AVG antivirus support
phone number for AVG customer service
phone number for AVG customer service
phone number for AVG customer support
phone number for AVG tech support
phone number AVG antivirus customer service
AVG antivirus customer service number
AVG antivirus customer service phone
AVG antivirus customer service phone number
AVG antivirus customer service phone number us
AVG antivirus customer service telephone number
AVG antivirus customer support
AVG antivirus customer support number
AVG antivirus phone number customer service us
AVG antivirus phone number support
AVG antivirus phone support
AVG antivirus phone support number
AVG antivirus support phone number
AVG antivirus tech support phone number
AVG antivirus technical support
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG customer service phone number
AVG customer support phone number
AVG helpline phone number
AVG internet security customer service
AVG internet security customer service phone number
AVG internet security help phone number
AVG internet security phone number customer service
AVG phone number customer service
AVG phone number customer support
AVG security customer service phone number
AVG security phone number customer service
AVG support phone number
AVG support telephone number
AVG tech support number
AVG tech support phone number
AVG technical support
AVG technical support number
AVG technical support phone number
AVG antivirus customer support phone number
AVG antivirus phone number customer service
AVG antivirus tech support number
AVG customer service phone number
AVG customer service phone numbers
AVG internet security technical support
AVG tech support phone number us
AVG technical support telephone number
contact AVG antivirus
contact AVG by phone
contact AVG customer service
contact AVG antivirus customer service phone number
contactAVG antivirus tech support usa
customer service AVG phone number
download AVG titanium
dri AVG customer service number
dri AVG customer service phone number
dri AVG phone number
how to contact AVG by email
how to delete AVG from mac
micro trend customer service
norton antivirus customer service number
phone number for AVG customer service
phone number forAVG customer service
phone number forAVG customer support
phone number forAVG tech support
phone number forAVG technical support
phone number for AVG antivirus technical support
phone number for AVG security
phone number for AVG support
phone number for AVG technical support
phone number for AVG antivirus customer service
phone number for AVG customer service
remove AVG from mac
technical support for antivirus AVG
telephone number forAVG technical support
telephone AVG antivirus
AVG antivirus contact number
AVG antivirus customer care
AVG antivirus customer care number
AVG antivirus customer care number usa
AVG antivirus customer service
AVG antivirus customer service number :idea: :evil: :D :) :lol: :( :o :shock:
AVG antivirus customer service phone number
AVG antivirus customer service phone number usa
AVG antivirus customer service telephone number
AVG antivirus customer support
AVG antivirus customer support in usa
AVG antivirus customer support number
AVG antivirus customer support phone number
AVG antivirus for phone
AVG antivirus free antivirus support
AVG antivirus help phone number
AVG antivirus helpline number
AVG antivirus online support
AVG antivirus phone
AVG antivirus phone number
AVG antivirus phone number in usa
AVG antivirus phone number usa
AVG antivirus phone support
AVG antivirus plus tech support
AVG antivirus protection
AVG antivirus support
AVG antivirus support number
AVG antivirus support phone number
AVG antivirus support services
AVG antivirus support telephone number
AVG antivirus tech support
AVG antivirus tech support phone number free in usa
AVG antivirus tech support number
AVG antivirus tech support phone number
AVG antivirus technical support
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG antivirus toll free customer care number
AVG antivirus toll free number
AVG antivirus contact phone number in usa
AVG antivirus help desk phone number in usa
AVG antivirus phone number support for technical issue in usa
AVG antivirus support phone number
AVG antivirus technical support help desk phone number
AVG antivirus technical support phone number
AVG contact number
AVG contact number usa
AVG contact phone number
AVG contact support
AVG contact number usa
AVG contact phone number
AVG contact phone number usa
AVG customer & technical support
AVG customer care
AVG customer care center
AVG customer care email
AVG customer care number
AVG customer care number
AVG customer care number usa
AVG customer care number usa toll free
AVG customer care phone number usa
AVG customer care tchnical support
AVG customer care toll free
AVG customer care toll free number
AVG customer care usa
AVG customer help
AVG customer number
AVG customer portal*********
AVG customer service
AVG customer service billing
AVG customer service email address
AVG customer service number
AVG customer service phone
AVG customer service phone number
AVG customer service phone number us
AVG customer service phone number usa
AVG customer service reviews
AVG customer service telephone number
AVG customer service usa
AVG customer support
AVG customer support number
AVG customer support phone
AVG customer support phone number
AVG customer service number
AVG customer service number usa
AVG customer service phone number
AVG customer support number
AVG customer support phone number
AVG free phone support
AVG gold support phone number
AVG help desk phone number
AVG help phone number
AVG helpline
AVG helpline phone number
AVG hotline customer service phone number
AVG internet security customer service
AVG internet security phone number
AVG internet security phone number in usa
AVG lab usa customer service
AVG labs usa customer serviceAVG
AVG phone number
AVG phone number customer service
AVG phone number support
AVG phone number tech support
AVG phone number technical support
AVG phone numbers customer support
AVG phone support
AVG phone support number
AVG phone number customer service
AVG phone number support
AVG phone number tech support
AVG phone number usa
AVG security contact phone number
AVG security phone number
AVG security support phone number
AVG software customer service
AVG software customer service number
AVG support center###########
AVG support contact number
AVG support email address
AVG support phone number
AVG support telephone number
AVG support number usa
AVG support phone number
AVG support phone number usa
AVG tech support
AVG tech support center
AVG tech support contact
AVG tech support number
AVG tech support number usa
AVG tech support phone
AVG tech support phone number
AVG tech support phone number free
AVG tech support number
AVG tech support number usa
AVG tech support phone number
AVG technical support
AVG technical support number
AVG technical support phone number
AVG technical support phone number usa
AVG technical support reviews
AVG technical support usa
AVG technical support phone number
AVG technical support number
AVG technical support number toll free number
AVG technical support number usa
AVG technical support phone number
AVG technical support phone number usa
AVG technologies phone number
AVG telephone number
AVG telephone support number
AVG toll free number
AVG toll free number usa
AVG usa customer care for tech support
AVG usa customer service
AVG usa phone number/////////////
AVG antivirus customer service phone number
AVG antivirus customer service phone number
AVG antivirus customer support phone number
AVG antivirus customer support phone number
AVG antivirus technical support number
AVG customer service phone number usa
AVG internet security support phone number
AVG.com customer service
AVG antivirus antispyware 2011
AVG antivirus customer support
AVG antivirus serial key
AVG antivirus serial number
AVG antivirus support
AVG antivirus technical support
AVG business support*************
AVG contact support
AVG customer care number
AVG customer service 844
AVG customer service number
AVG customer service phone number
AVG customer service telephone number
AVG customer support
>From gcc-bugs-return-534150-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 13:14:27 2016
Return-Path: <gcc-bugs-return-534150-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 128430 invoked by alias); 11 Aug 2016 13:14:27 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 128111 invoked by uid 48); 11 Aug 2016 13:14:12 -0000
From: "dash0987dash at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: =?UTF-8?B?W0J1ZyBwbHVnaW5zLzczNzMzXSBOZXc6IFNreXBlIDEtODg4LTY0OS04NjM4?= =?UTF-8?B?U3VwcG9ydCBDYWxsQEAgVVPCoFRvbGzCoEZyZWXCoCAxLTg4OC02NDktODYz?= =?UTF-8?B?OCBTS1lQRcKgVGVjaG5pY2FsIFN1cHBvcnQgTnVtYmVy?Date: Thu, 11 Aug 2016 13:14:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: plugins
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dash0987dash at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-73733-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01486.txt.bz2
Content-length: 5191

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73733

            Bug ID: 73733
           Summary: Skype 1-888-649-8638Support Call@@ US Toll Free
                    1-888-649-8638 SKYPE Technical Support Number
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: plugins
          Assignee: unassigned at gcc dot gnu.org
          Reporter: dash0987dash at gmail dot com
  Target Milestone: ---

Created attachment 39173
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39173&action=edit
Skype help 1.888.649.8638 tech support number

@@Call, +1-888-649-8638 for all type help by SKYPE tech support phone number,
Intuit SKYPE Tech Support Phone Number, SKYPE Help Desk Phone Number, SKYPE
tech support number, SKYPE technical support phone number, @@@ SKYPE phone
number, SKYPE technical support number, SKYPE support phone number, SKYPE
technical support, SKYPE Customer Service Phone Number, SKYPE Customer Service
Number, SKYPE Customer Support Phone Number, SKYPE Customer Support Number,
@@1-888-649-8638@@ SKYPE Customer Service Helpline Number, SKYPE Customer Care
Number, SKYPE support team phone number, @@1-888-649-8638@@SKYPE help
number-SKYPE Helpline Number; SKYPE help phone number-SKYPE Helpline Number,
SKYPE Tech Support Toll free Number, SKYPE Support Telephone Number, SKYPE Tech
Support Telephone number, SKYPE Tech Support contact number, SKYPE support
contact number, SKYPE technical support contact number. Call, +1-888-649-8638
SKYPE tech support phone number, Intuit SKYPE Tech Support Phone Number, SKYPE
Help Desk Phone Number, SKYPE tech support number, SKYPE technical support
phone number, SKYPE phone number, SKYPE technical support number, SKYPE support
phone number. It is very popular toll free number which provide by SKYPE
technical support, SKYPE Customer Service Phone Number, SKYPE Customer Service
Number, SKYPE Customer Support Phone Number, SKYPE Customer Support Number,
SKYPE Customer Service Helpline Number, SKYPE Customer Care Number, SKYPE
support team phone number. Call, SKYPE tech support phone number, Intuit SKYPE
Tech Support Phone Number, SKYPE Help Desk Phone Number, SKYPE tech support
number, SKYPE technical support phone number, SKYPE phone number, SKYPE
technical support number, SKYPE support phone number, SKYPE technical support,
SKYPE Customer Service Phone Number, SKYPE Customer Service Number, SKYPE
Customer Support Phone Number, SKYPE Customer Support Number, SKYPE Customer
Service Helpline Number, SKYPE Customer Care Number, SKYPE support team phone
number, #SKYPE Tech Support Phone +1-888-649-8638 Number SKYPE customer support
number
SKYPE 1-888-649-8638 technical support
SKYPE support phone number
SKYPE tech support toll free number in usa
SKYPE tech support phone number
SKYPE tech support phone number free
SKYPE technical support phone number
SKYPE technologies phone number
SKYPE telephone support number
SKYPE support contact number
SKYPE 1-888-649-8638 customer support phone number
SKYPE 1-888-649-8638 problems
SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 technical support
 SKYPE 1-888-649-8638 toll free number
 SKYPE com customer service phone number
SKYPE contact phone number
SKYPE contact telephone number
SKYPE customer service contact number
SKYPE customer service email
SKYPE customer service phone number
SKYPE customer service telephone number
SKYPE customer services email
SKYPE customer support email address
SKYPE customer support number
SKYPE customer support phone number
SKYPE 1-888-649-8638 tech support assistant
SKYPE support assistant
SKYPE tech support
+SKYPE 1-888-649-8638 +online +support
+SBCGLOBAL+support+number
+SBCGLOBAL+online+support
SKYPE 1-888-649-8638 number technical support
SKYPE 1-888-649-8638 service number
SKYPE 1-888-649-8638 support contact phone number
SKYPE 1-888-649-8638 telephone support number
telephone number SKYPE 1-888-649-8638
customer service number SKYPE 1-888-649-8638
compaq SKYPE 1-888-649-8638 support
SKYPE 1-888-649-8638 compaq support
SKYPE 1-888-649-8638 customer service
SKYPE 1-888-649-8638 contact phone number
SKYPE 1-888-649-8638 customer phone number
SKYPE 1-888-649-8638 customer services number
SKYPE 1-888-649-8638 customer support telephone number
SKYPE 1-888-649-8638 support online
SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 service phone number
SKYPE 1-888-649-8638 support customer service number
SKYPE 1-888-649-8638 tech support phone numbers
SKYPE 1-888-649-8638 technical support contact number
SKYPE 1-888-649-8638 telephone number customer service
number SKYPE 1-888-649-8638 tech support
online SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 customer support
SKYPE 1-888-649-8638 customer service
SKYPE 1-888-649-8638 online support
SKYPE 1-888-649-8638 phone number customer support
SKYPE 1-888-649-8638 support telephone numbers
SKYPE 1-888-649-8638 technical support numbers
SKYPE 1-888-649-8638 usa support
telephone number SKYPE 1-888-649-8638 support
SKYPE 1-888-649-8638 support
SKYPE support
SKYPE 1-888-649-8638 tech support
>From gcc-bugs-return-534152-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 13:16:57 2016
Return-Path: <gcc-bugs-return-534152-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 35311 invoked by alias); 11 Aug 2016 13:16:57 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 34440 invoked by uid 48); 11 Aug 2016 13:16:44 -0000
From: "Halk1952 at fleckens dot hu" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/73737] New: u$A - 1-888-527-3401 AVG antivirus 24/7 tech support phone number UK - 1-888-527-3401 AVG antivirus 24/7 tech support phone number AUS - 1-888-527-3401 AVG antivirus 24/7 tech support phone number
Date: Thu, 11 Aug 2016 13:16:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: c++-concepts
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: Halk1952 at fleckens dot hu
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73737-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01488.txt.bz2
Content-length: 12752

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73737

            Bug ID: 73737
           Summary: u$A - 1-888-527-3401 AVG antivirus 24/7 tech support
                    phone number UK - 1-888-527-3401 AVG antivirus 24/7
                    tech support phone number AUS - 1-888-527-3401 AVG
                    antivirus 24/7 tech support phone number
           Product: gcc
           Version: c++-concepts
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: Halk1952 at fleckens dot hu
  Target Milestone: ---

AVG helpline phone number@~1-888-527-3401 AVG tech Support Number AVG antivirus
customer service phone number

AVG helpline phone number@~1-888-527-3401 AVG tech Support Number AVG antivirus
customer service phone number
AVG HelpLiNe @+1-888-527-3401 AVG support phone number

AVG helpline phone number@~1-888-527-3401 AVG tech Support Number AVG antivirus
customer service phone number

+1-888-527-3401) Technical support number
+1-888-527-3401 AVG Antivirus Technical Support
+1-888-527-3401 contact AVG antivirus customer service phone number
+1-888-527-3401 phone number for AVG customer service
+1-888-527-3401 phone number for AVG antivirus technical support
+1-888-527-3401 phone number for AVG antivirus customer service
phone number for AVG antivirus technical support
phone number for AVG security
AVG antivirus customer care phone number
AVG antivirus customer service billing
AVG antivirus customer service email address
AVG antivirus customer service live chat
AVG antivirus customer service telephone number
AVG antivirus customer support usa phone number
AVG antivirus help desk support phone number free in usa
AVG antivirus phone number customer service us
AVG antivirus phone number support
AVG antivirus support phone number
AVG antivirus tech support phone number free in usa
AVG antivirus tech support phone number
AVG antivirus technical support customer service
AVG antivirus technical support number
AVG antivirus telephone number
AVG antivirus toll free customer care number
AVG antivirus toll free number in usa
AVG antivirus contact phone number in usa
AVG antivirus customer service number
AVG antivirus customer service phone number
AVG antivirus customer service telephone number
AVG antivirus customer support number
AVG antivirus customer support phone number
AVG antivirus customer support phone number
AVG antivirus help desk phone number in usa
AVG antivirus phone number
AVG antivirus phone number support for technical issue in usa
AVG antivirus support phone number
AVG antivirus technical support help desk phone number
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG customer service number
AVG customer service telephone number
AVG customer services email
AVG customer support email address
AVG customer support number
AVG customer support phone number
AVG customer service phone number
AVG internet security contact phone number
AVG internet security customer service phone number
AVG internet security phone number
AVG internet security help phone number
AVG internet security phone number in usa
AVG internet security support phone number
AVG internet security technical support
AVG phone number customer service
AVG phone numbers customer support
AVG phone support number
AVG security contact phone number
AVG security phone number customer service
AVG security support phone number
AVG support contact number
AVG support email address
AVG support phone number
AVG support telephone number
AVG support telephone number usa
AVG support telephone number
AVG tech support number
AVG tech support phone number
AVG tech support phone number free
AVG technical support phone number
AVG technical support cutomer phone number
AVG technical support phone number
AVG technical support number free in usa
AVG technical support number toll free number
AVG technical support phone number
AVG technologies phone number
AVG telephone support number
AVG antivirus customer support phone number
AVG antivirus customer service phone number
AVG customer support phone number
AVG phone number customer service
AVG technical support telephone number
contact AVG antivirus customer service phone number
customer service number for AVG antivirus
phone number for AVG antivirus
phone number for AVG antivirus customer service
phone number for AVG antivirus support
phone number for AVG customer service
phone number for AVG customer service
phone number for AVG customer support
phone number for AVG tech support
phone number AVG antivirus customer service
AVG antivirus customer service number
AVG antivirus customer service phone
AVG antivirus customer service phone number
AVG antivirus customer service phone number us
AVG antivirus customer service telephone number
AVG antivirus customer support
AVG antivirus customer support number
AVG antivirus phone number customer service us
AVG antivirus phone number support
AVG antivirus phone support
AVG antivirus phone support number
AVG antivirus support phone number
AVG antivirus tech support phone number
AVG antivirus technical support
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG customer service phone number
AVG customer support phone number
AVG helpline phone number
AVG internet security customer service
AVG internet security customer service phone number
AVG internet security help phone number
AVG internet security phone number customer service
AVG phone number customer service
AVG phone number customer support
AVG security customer service phone number
AVG security phone number customer service
AVG support phone number
AVG support telephone number
AVG tech support number
AVG tech support phone number
AVG technical support
AVG technical support number
AVG technical support phone number
AVG antivirus customer support phone number
AVG antivirus phone number customer service
AVG antivirus tech support number
AVG customer service phone number
AVG customer service phone numbers
AVG internet security technical support
AVG tech support phone number us
AVG technical support telephone number
contact AVG antivirus
contact AVG by phone
contact AVG customer service
contact AVG antivirus customer service phone number
contactAVG antivirus tech support usa
customer service AVG phone number
download AVG titanium
dri AVG customer service number
dri AVG customer service phone number
dri AVG phone number
how to contact AVG by email
how to delete AVG from mac
micro trend customer service
norton antivirus customer service number
phone number for AVG customer service
phone number forAVG customer service
phone number forAVG customer support
phone number forAVG tech support
phone number forAVG technical support
phone number for AVG antivirus technical support
phone number for AVG security
phone number for AVG support
phone number for AVG technical support
phone number for AVG antivirus customer service
phone number for AVG customer service
remove AVG from mac
technical support for antivirus AVG
telephone number forAVG technical support
telephone AVG antivirus
AVG antivirus contact number
AVG antivirus customer care
AVG antivirus customer care number
AVG antivirus customer care number usa
AVG antivirus customer service
AVG antivirus customer service number :idea: :evil: :D :) :lol: :( :o :shock:
AVG antivirus customer service phone number
AVG antivirus customer service phone number usa
AVG antivirus customer service telephone number
AVG antivirus customer support
AVG antivirus customer support in usa
AVG antivirus customer support number
AVG antivirus customer support phone number
AVG antivirus for phone
AVG antivirus free antivirus support
AVG antivirus help phone number
AVG antivirus helpline number
AVG antivirus online support
AVG antivirus phone
AVG antivirus phone number
AVG antivirus phone number in usa
AVG antivirus phone number usa
AVG antivirus phone support
AVG antivirus plus tech support
AVG antivirus protection
AVG antivirus support
AVG antivirus support number
AVG antivirus support phone number
AVG antivirus support services
AVG antivirus support telephone number
AVG antivirus tech support
AVG antivirus tech support phone number free in usa
AVG antivirus tech support number
AVG antivirus tech support phone number
AVG antivirus technical support
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG antivirus toll free customer care number
AVG antivirus toll free number
AVG antivirus contact phone number in usa
AVG antivirus help desk phone number in usa
AVG antivirus phone number support for technical issue in usa
AVG antivirus support phone number
AVG antivirus technical support help desk phone number
AVG antivirus technical support phone number
AVG contact number
AVG contact number usa
AVG contact phone number
AVG contact support
AVG contact number usa
AVG contact phone number
AVG contact phone number usa
AVG customer & technical support
AVG customer care
AVG customer care center
AVG customer care email
AVG customer care number
AVG customer care number
AVG customer care number usa
AVG customer care number usa toll free
AVG customer care phone number usa
AVG customer care tchnical support
AVG customer care toll free
AVG customer care toll free number
AVG customer care usa
AVG customer help
AVG customer number
AVG customer portal*********
AVG customer service
AVG customer service billing
AVG customer service email address
AVG customer service number
AVG customer service phone
AVG customer service phone number
AVG customer service phone number us
AVG customer service phone number usa
AVG customer service reviews
AVG customer service telephone number
AVG customer service usa
AVG customer support
AVG customer support number
AVG customer support phone
AVG customer support phone number
AVG customer service number
AVG customer service number usa
AVG customer service phone number
AVG customer support number
AVG customer support phone number
AVG free phone support
AVG gold support phone number
AVG help desk phone number
AVG help phone number
AVG helpline
AVG helpline phone number
AVG hotline customer service phone number
AVG internet security customer service
AVG internet security phone number
AVG internet security phone number in usa
AVG lab usa customer service
AVG labs usa customer serviceAVG
AVG phone number
AVG phone number customer service
AVG phone number support
AVG phone number tech support
AVG phone number technical support
AVG phone numbers customer support
AVG phone support
AVG phone support number
AVG phone number customer service
AVG phone number support
AVG phone number tech support
AVG phone number usa
AVG security contact phone number
AVG security phone number
AVG security support phone number
AVG software customer service
AVG software customer service number
AVG support center###########
AVG support contact number
AVG support email address
AVG support phone number
AVG support telephone number
AVG support number usa
AVG support phone number
AVG support phone number usa
AVG tech support
AVG tech support center
AVG tech support contact
AVG tech support number
AVG tech support number usa
AVG tech support phone
AVG tech support phone number
AVG tech support phone number free
AVG tech support number
AVG tech support number usa
AVG tech support phone number
AVG technical support
AVG technical support number
AVG technical support phone number
AVG technical support phone number usa
AVG technical support reviews
AVG technical support usa
AVG technical support phone number
AVG technical support number
AVG technical support number toll free number
AVG technical support number usa
AVG technical support phone number
AVG technical support phone number usa
AVG technologies phone number
AVG telephone number
AVG telephone support number
AVG toll free number
AVG toll free number usa
AVG usa customer care for tech support
AVG usa customer service
AVG usa phone number/////////////
AVG antivirus customer service phone number
AVG antivirus customer service phone number
AVG antivirus customer support phone number
AVG antivirus customer support phone number
AVG antivirus technical support number
AVG customer service phone number usa
AVG internet security support phone number
AVG.com customer service
AVG antivirus antispyware 2011
AVG antivirus customer support
AVG antivirus serial key
AVG antivirus serial number
AVG antivirus support
AVG antivirus technical support
AVG business support*************
AVG contact support
AVG customer care number
AVG customer service 844
AVG customer service number
AVG customer service phone number
AVG customer service telephone number
AVG customer support
>From gcc-bugs-return-534151-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 13:16:51 2016
Return-Path: <gcc-bugs-return-534151-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 34611 invoked by alias); 11 Aug 2016 13:16:50 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 34360 invoked by uid 48); 11 Aug 2016 13:16:38 -0000
From: "dash0987dash at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: =?UTF-8?B?W0J1ZyBwbHVnaW5zLzczNzM2XSBOZXc6IFNreXBlIDEtODg4LTY0OS04NjM4?= =?UTF-8?B?U3VwcG9ydCBDYWxsQEAgVVPCoFRvbGzCoEZyZWXCoCAxLTg4OC02NDktODYz?= =?UTF-8?B?OCBTS1lQRcKgwqBzdXBwb3J0IG51bWJlcg==?Date: Thu, 11 Aug 2016 13:16:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: plugins
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dash0987dash at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-73736-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01487.txt.bz2
Content-length: 5187

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73736

            Bug ID: 73736
           Summary: Skype 1-888-649-8638Support Call@@ US Toll Free
                    1-888-649-8638 SKYPE  support number
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: plugins
          Assignee: unassigned at gcc dot gnu.org
          Reporter: dash0987dash at gmail dot com
  Target Milestone: ---

Created attachment 39175
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39175&action=edit
Skype help 1.888.649.8638 tech support number

@@Call, +1-888-649-8638 for all type help by SKYPE tech support phone number,
Intuit SKYPE Tech Support Phone Number, SKYPE Help Desk Phone Number, SKYPE
tech support number, SKYPE technical support phone number, @@@ SKYPE phone
number, SKYPE technical support number, SKYPE support phone number, SKYPE
technical support, SKYPE Customer Service Phone Number, SKYPE Customer Service
Number, SKYPE Customer Support Phone Number, SKYPE Customer Support Number,
@@1-888-649-8638@@ SKYPE Customer Service Helpline Number, SKYPE Customer Care
Number, SKYPE support team phone number, @@1-888-649-8638@@SKYPE help
number-SKYPE Helpline Number; SKYPE help phone number-SKYPE Helpline Number,
SKYPE Tech Support Toll free Number, SKYPE Support Telephone Number, SKYPE Tech
Support Telephone number, SKYPE Tech Support contact number, SKYPE support
contact number, SKYPE technical support contact number. Call, +1-888-649-8638
SKYPE tech support phone number, Intuit SKYPE Tech Support Phone Number, SKYPE
Help Desk Phone Number, SKYPE tech support number, SKYPE technical support
phone number, SKYPE phone number, SKYPE technical support number, SKYPE support
phone number. It is very popular toll free number which provide by SKYPE
technical support, SKYPE Customer Service Phone Number, SKYPE Customer Service
Number, SKYPE Customer Support Phone Number, SKYPE Customer Support Number,
SKYPE Customer Service Helpline Number, SKYPE Customer Care Number, SKYPE
support team phone number. Call, SKYPE tech support phone number, Intuit SKYPE
Tech Support Phone Number, SKYPE Help Desk Phone Number, SKYPE tech support
number, SKYPE technical support phone number, SKYPE phone number, SKYPE
technical support number, SKYPE support phone number, SKYPE technical support,
SKYPE Customer Service Phone Number, SKYPE Customer Service Number, SKYPE
Customer Support Phone Number, SKYPE Customer Support Number, SKYPE Customer
Service Helpline Number, SKYPE Customer Care Number, SKYPE support team phone
number, #SKYPE Tech Support Phone +1-888-649-8638 Number SKYPE customer support
number
SKYPE 1-888-649-8638 technical support
SKYPE support phone number
SKYPE tech support toll free number in usa
SKYPE tech support phone number
SKYPE tech support phone number free
SKYPE technical support phone number
SKYPE technologies phone number
SKYPE telephone support number
SKYPE support contact number
SKYPE 1-888-649-8638 customer support phone number
SKYPE 1-888-649-8638 problems
SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 technical support
 SKYPE 1-888-649-8638 toll free number
 SKYPE com customer service phone number
SKYPE contact phone number
SKYPE contact telephone number
SKYPE customer service contact number
SKYPE customer service email
SKYPE customer service phone number
SKYPE customer service telephone number
SKYPE customer services email
SKYPE customer support email address
SKYPE customer support number
SKYPE customer support phone number
SKYPE 1-888-649-8638 tech support assistant
SKYPE support assistant
SKYPE tech support
+SKYPE 1-888-649-8638 +online +support
+SBCGLOBAL+support+number
+SBCGLOBAL+online+support
SKYPE 1-888-649-8638 number technical support
SKYPE 1-888-649-8638 service number
SKYPE 1-888-649-8638 support contact phone number
SKYPE 1-888-649-8638 telephone support number
telephone number SKYPE 1-888-649-8638
customer service number SKYPE 1-888-649-8638
compaq SKYPE 1-888-649-8638 support
SKYPE 1-888-649-8638 compaq support
SKYPE 1-888-649-8638 customer service
SKYPE 1-888-649-8638 contact phone number
SKYPE 1-888-649-8638 customer phone number
SKYPE 1-888-649-8638 customer services number
SKYPE 1-888-649-8638 customer support telephone number
SKYPE 1-888-649-8638 support online
SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 service phone number
SKYPE 1-888-649-8638 support customer service number
SKYPE 1-888-649-8638 tech support phone numbers
SKYPE 1-888-649-8638 technical support contact number
SKYPE 1-888-649-8638 telephone number customer service
number SKYPE 1-888-649-8638 tech support
online SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 customer support
SKYPE 1-888-649-8638 customer service
SKYPE 1-888-649-8638 online support
SKYPE 1-888-649-8638 phone number customer support
SKYPE 1-888-649-8638 support telephone numbers
SKYPE 1-888-649-8638 technical support numbers
SKYPE 1-888-649-8638 usa support
telephone number SKYPE 1-888-649-8638 support
SKYPE 1-888-649-8638 support
SKYPE support
SKYPE 1-888-649-8638 tech support
>From gcc-bugs-return-534153-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 13:17:24 2016
Return-Path: <gcc-bugs-return-534153-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 36665 invoked by alias); 11 Aug 2016 13:17:24 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 36342 invoked by uid 48); 11 Aug 2016 13:17:16 -0000
From: "ktietz at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/66488] segfault on sizeof(long) < sizeof(void*) and large GCC memory usage
Date: Thu, 11 Aug 2016 13:17:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 5.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ktietz at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-66488-4-37soyXHkdP@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-66488-4@http.gcc.gnu.org/bugzilla/>
References: <bug-66488-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01489.txt.bz2
Content-length: 443

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66488

Kai Tietz <ktietz at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ktietz at gcc dot gnu.org

--- Comment #11 from Kai Tietz <ktietz at gcc dot gnu.org> ---
Patch is obviously correct. Please send it to ML. It is pre-approved.
>From gcc-bugs-return-534154-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 13:19:47 2016
Return-Path: <gcc-bugs-return-534154-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 46126 invoked by alias); 11 Aug 2016 13:19:47 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 45979 invoked by uid 48); 11 Aug 2016 13:19:34 -0000
From: "Nould1956 at einrot dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73740] New: 73573 - AVG TEch Number$$$$$$(((( 1-888-527-3401)))))$$$$$$$ AVG support phone number
Date: Thu, 11 Aug 2016 13:19:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: Nould1956 at einrot dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73740-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01490.txt.bz2
Content-length: 12596

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73740

            Bug ID: 73740
           Summary: 73573 - AVG TEch Number$$$$$$((((
                    1-888-527-3401)))))$$$$$$$ AVG support phone number
           Product: gcc
           Version: 6.1.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: Nould1956 at einrot dot com
  Target Milestone: ---

AVG helpline phone number@~1-888-527-3401 AVG tech Support Number AVG antivirus
customer service phone number

AVG helpline phone number@~1-888-527-3401 AVG tech Support Number AVG antivirus
customer service phone number
AVG HelpLiNe @+1-888-527-3401 AVG support phone number

AVG helpline phone number@~1-888-527-3401 AVG tech Support Number AVG antivirus
customer service phone number

+1-888-527-3401) Technical support number
+1-888-527-3401 AVG Antivirus Technical Support
+1-888-527-3401 contact AVG antivirus customer service phone number
+1-888-527-3401 phone number for AVG customer service
+1-888-527-3401 phone number for AVG antivirus technical support
+1-888-527-3401 phone number for AVG antivirus customer service
phone number for AVG antivirus technical support
phone number for AVG security
AVG antivirus customer care phone number
AVG antivirus customer service billing
AVG antivirus customer service email address
AVG antivirus customer service live chat
AVG antivirus customer service telephone number
AVG antivirus customer support usa phone number
AVG antivirus help desk support phone number free in usa
AVG antivirus phone number customer service us
AVG antivirus phone number support
AVG antivirus support phone number
AVG antivirus tech support phone number free in usa
AVG antivirus tech support phone number
AVG antivirus technical support customer service
AVG antivirus technical support number
AVG antivirus telephone number
AVG antivirus toll free customer care number
AVG antivirus toll free number in usa
AVG antivirus contact phone number in usa
AVG antivirus customer service number
AVG antivirus customer service phone number
AVG antivirus customer service telephone number
AVG antivirus customer support number
AVG antivirus customer support phone number
AVG antivirus customer support phone number
AVG antivirus help desk phone number in usa
AVG antivirus phone number
AVG antivirus phone number support for technical issue in usa
AVG antivirus support phone number
AVG antivirus technical support help desk phone number
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG customer service number
AVG customer service telephone number
AVG customer services email
AVG customer support email address
AVG customer support number
AVG customer support phone number
AVG customer service phone number
AVG internet security contact phone number
AVG internet security customer service phone number
AVG internet security phone number
AVG internet security help phone number
AVG internet security phone number in usa
AVG internet security support phone number
AVG internet security technical support
AVG phone number customer service
AVG phone numbers customer support
AVG phone support number
AVG security contact phone number
AVG security phone number customer service
AVG security support phone number
AVG support contact number
AVG support email address
AVG support phone number
AVG support telephone number
AVG support telephone number usa
AVG support telephone number
AVG tech support number
AVG tech support phone number
AVG tech support phone number free
AVG technical support phone number
AVG technical support cutomer phone number
AVG technical support phone number
AVG technical support number free in usa
AVG technical support number toll free number
AVG technical support phone number
AVG technologies phone number
AVG telephone support number
AVG antivirus customer support phone number
AVG antivirus customer service phone number
AVG customer support phone number
AVG phone number customer service
AVG technical support telephone number
contact AVG antivirus customer service phone number
customer service number for AVG antivirus
phone number for AVG antivirus
phone number for AVG antivirus customer service
phone number for AVG antivirus support
phone number for AVG customer service
phone number for AVG customer service
phone number for AVG customer support
phone number for AVG tech support
phone number AVG antivirus customer service
AVG antivirus customer service number
AVG antivirus customer service phone
AVG antivirus customer service phone number
AVG antivirus customer service phone number us
AVG antivirus customer service telephone number
AVG antivirus customer support
AVG antivirus customer support number
AVG antivirus phone number customer service us
AVG antivirus phone number support
AVG antivirus phone support
AVG antivirus phone support number
AVG antivirus support phone number
AVG antivirus tech support phone number
AVG antivirus technical support
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG customer service phone number
AVG customer support phone number
AVG helpline phone number
AVG internet security customer service
AVG internet security customer service phone number
AVG internet security help phone number
AVG internet security phone number customer service
AVG phone number customer service
AVG phone number customer support
AVG security customer service phone number
AVG security phone number customer service
AVG support phone number
AVG support telephone number
AVG tech support number
AVG tech support phone number
AVG technical support
AVG technical support number
AVG technical support phone number
AVG antivirus customer support phone number
AVG antivirus phone number customer service
AVG antivirus tech support number
AVG customer service phone number
AVG customer service phone numbers
AVG internet security technical support
AVG tech support phone number us
AVG technical support telephone number
contact AVG antivirus
contact AVG by phone
contact AVG customer service
contact AVG antivirus customer service phone number
contactAVG antivirus tech support usa
customer service AVG phone number
download AVG titanium
dri AVG customer service number
dri AVG customer service phone number
dri AVG phone number
how to contact AVG by email
how to delete AVG from mac
micro trend customer service
norton antivirus customer service number
phone number for AVG customer service
phone number forAVG customer service
phone number forAVG customer support
phone number forAVG tech support
phone number forAVG technical support
phone number for AVG antivirus technical support
phone number for AVG security
phone number for AVG support
phone number for AVG technical support
phone number for AVG antivirus customer service
phone number for AVG customer service
remove AVG from mac
technical support for antivirus AVG
telephone number forAVG technical support
telephone AVG antivirus
AVG antivirus contact number
AVG antivirus customer care
AVG antivirus customer care number
AVG antivirus customer care number usa
AVG antivirus customer service
AVG antivirus customer service number :idea: :evil: :D :) :lol: :( :o :shock:
AVG antivirus customer service phone number
AVG antivirus customer service phone number usa
AVG antivirus customer service telephone number
AVG antivirus customer support
AVG antivirus customer support in usa
AVG antivirus customer support number
AVG antivirus customer support phone number
AVG antivirus for phone
AVG antivirus free antivirus support
AVG antivirus help phone number
AVG antivirus helpline number
AVG antivirus online support
AVG antivirus phone
AVG antivirus phone number
AVG antivirus phone number in usa
AVG antivirus phone number usa
AVG antivirus phone support
AVG antivirus plus tech support
AVG antivirus protection
AVG antivirus support
AVG antivirus support number
AVG antivirus support phone number
AVG antivirus support services
AVG antivirus support telephone number
AVG antivirus tech support
AVG antivirus tech support phone number free in usa
AVG antivirus tech support number
AVG antivirus tech support phone number
AVG antivirus technical support
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG antivirus toll free customer care number
AVG antivirus toll free number
AVG antivirus contact phone number in usa
AVG antivirus help desk phone number in usa
AVG antivirus phone number support for technical issue in usa
AVG antivirus support phone number
AVG antivirus technical support help desk phone number
AVG antivirus technical support phone number
AVG contact number
AVG contact number usa
AVG contact phone number
AVG contact support
AVG contact number usa
AVG contact phone number
AVG contact phone number usa
AVG customer & technical support
AVG customer care
AVG customer care center
AVG customer care email
AVG customer care number
AVG customer care number
AVG customer care number usa
AVG customer care number usa toll free
AVG customer care phone number usa
AVG customer care tchnical support
AVG customer care toll free
AVG customer care toll free number
AVG customer care usa
AVG customer help
AVG customer number
AVG customer portal*********
AVG customer service
AVG customer service billing
AVG customer service email address
AVG customer service number
AVG customer service phone
AVG customer service phone number
AVG customer service phone number us
AVG customer service phone number usa
AVG customer service reviews
AVG customer service telephone number
AVG customer service usa
AVG customer support
AVG customer support number
AVG customer support phone
AVG customer support phone number
AVG customer service number
AVG customer service number usa
AVG customer service phone number
AVG customer support number
AVG customer support phone number
AVG free phone support
AVG gold support phone number
AVG help desk phone number
AVG help phone number
AVG helpline
AVG helpline phone number
AVG hotline customer service phone number
AVG internet security customer service
AVG internet security phone number
AVG internet security phone number in usa
AVG lab usa customer service
AVG labs usa customer serviceAVG
AVG phone number
AVG phone number customer service
AVG phone number support
AVG phone number tech support
AVG phone number technical support
AVG phone numbers customer support
AVG phone support
AVG phone support number
AVG phone number customer service
AVG phone number support
AVG phone number tech support
AVG phone number usa
AVG security contact phone number
AVG security phone number
AVG security support phone number
AVG software customer service
AVG software customer service number
AVG support center###########
AVG support contact number
AVG support email address
AVG support phone number
AVG support telephone number
AVG support number usa
AVG support phone number
AVG support phone number usa
AVG tech support
AVG tech support center
AVG tech support contact
AVG tech support number
AVG tech support number usa
AVG tech support phone
AVG tech support phone number
AVG tech support phone number free
AVG tech support number
AVG tech support number usa
AVG tech support phone number
AVG technical support
AVG technical support number
AVG technical support phone number
AVG technical support phone number usa
AVG technical support reviews
AVG technical support usa
AVG technical support phone number
AVG technical support number
AVG technical support number toll free number
AVG technical support number usa
AVG technical support phone number
AVG technical support phone number usa
AVG technologies phone number
AVG telephone number
AVG telephone support number
AVG toll free number
AVG toll free number usa
AVG usa customer care for tech support
AVG usa customer service
AVG usa phone number/////////////
AVG antivirus customer service phone number
AVG antivirus customer service phone number
AVG antivirus customer support phone number
AVG antivirus customer support phone number
AVG antivirus technical support number
AVG customer service phone number usa
AVG internet security support phone number
AVG.com customer service
AVG antivirus antispyware 2011
AVG antivirus customer support
AVG antivirus serial key
AVG antivirus serial number
AVG antivirus support
AVG antivirus technical support
AVG business support*************
AVG contact support
AVG customer care number
AVG customer service 844
AVG customer service number
AVG customer service phone number
AVG customer service telephone number
AVG customer support
>From gcc-bugs-return-534155-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 13:20:29 2016
Return-Path: <gcc-bugs-return-534155-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 47477 invoked by alias); 11 Aug 2016 13:20:29 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 47164 invoked by uid 48); 11 Aug 2016 13:20:12 -0000
From: "ncajksfnao at yopmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/73741] New: Call@1-888-936-5569 | Get quick help for www.office.com/setup, www.office.com/myaccount, www.office.com/verify, login.microsoftonline.com. ms office help line
Date: Thu, 11 Aug 2016 13:20:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ncajksfnao at yopmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73741-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01491.txt.bz2
Content-length: 2351

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73741

            Bug ID: 73741
           Summary: Call@1-888-936-5569 | Get quick help for
                    www.office.com/setup, www.office.com/myaccount,
                    www.office.com/verify, login.microsoftonline.com. ms
                    office help line
           Product: gcc
           Version: 6.2.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: ncajksfnao at yopmail dot com
  Target Milestone: ---

Call@1-888-936-5569 | Get quick help for www.office.com/setup,
www.office.com/myaccount, www.office.com/verify, login.microsoftonline.com. ms
office help line
Call@1-800-261-3851 | Get quick help for www.office.com/setup,
www.office.com/myaccount, www.office.com/verify, login.microsoftonline.com. ms
office help line ... www.office.com/setup www.office.com/setup and follow the
on-screen instructions www.office.com/setup 2016 www.office.com/setup home and
student 2016 office 365 setup download office.com/myaccount product key install
microsoft office 2013 home office setup ms office setup free download
www.office.com/setup microsoft install download office 365
www.msoffice-setup.us/ microsoft www office com setup www office com myaccount
microsoft office 365 install download office online setup office com.
Office.Com/Setup | Microsoft Office Setup | www.office.com/setup
office.com-setup.com/ 1-800-261-3851 - If you are installing Microsoft Office
Setup, MS Office 2013, Office Setup 365 or other Office Products and facing
some problem. You can ...
www.office.com/setup | Microsoft Office Setup Key www.msofficehelpline.com/
1-800-261-3851 | Get quick help for www.office.com/setup,
www.office.com/myaccount, www.office.com/verify, login.microsoftonline.com. ms
office help line ...
www.office.com/setup | Microsoft office setup | office.com/setup | Install ...
www.microsoftofficesetup.com/ visit www.office.com/setup Call 1-800-261-3851
www.office.com/setup fix Office setup problems chat us for free
Office.com/Setup, office.com/support or ask our ...
Microsoft Office Setup - Office.com https://office.com/setup A description for
this result is not available because of this site's robots.txt Learn more
Home
>From gcc-bugs-return-534156-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 13:26:38 2016
Return-Path: <gcc-bugs-return-534156-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 53863 invoked by alias); 11 Aug 2016 13:26:37 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 53659 invoked by uid 48); 11 Aug 2016 13:26:24 -0000
From: "zeccav at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/61910] undefined computation in trans-expr.c gfc_conv_cst_int_power
Date: Thu, 11 Aug 2016 13:26:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 4.9.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: minor
X-Bugzilla-Who: zeccav at gmail dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-61910-4-YJZvwI9BTL@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-61910-4@http.gcc.gnu.org/bugzilla/>
References: <bug-61910-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01492.txt.bz2
Content-length: 155

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61910

--- Comment #7 from Vittorio Zecca <zeccav at gmail dot com> ---
Still there in gcc 7.0 trunk 239276
>From gcc-bugs-return-534157-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 13:26:54 2016
Return-Path: <gcc-bugs-return-534157-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 54663 invoked by alias); 11 Aug 2016 13:26:54 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 54238 invoked by uid 48); 11 Aug 2016 13:26:41 -0000
From: "Forneonand33 at armyspy dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/73751] New: oyeee AVG Call!@!!!(((@!!1-888-527-3401)) Avg c.u.s.t.o.m.e.r s.u.p.p.o.r.t n.u.m.b.e.r u.s.a c.a.n.a.d.a @@C.a.l.l
Date: Thu, 11 Aug 2016 13:26:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: Forneonand33 at armyspy dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73751-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01493.txt.bz2
Content-length: 12656

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73751

            Bug ID: 73751
           Summary: oyeee AVG Call!@!!!(((@!!1-888-527-3401)) Avg
                    c.u.s.t.o.m.e.r s.u.p.p.o.r.t n.u.m.b.e.r u.s.a
                    c.a.n.a.d.a @@C.a.l.l
           Product: gcc
           Version: 5.4.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: Forneonand33 at armyspy dot com
  Target Milestone: ---

AVG helpline phone number@~1-888-527-3401 AVG tech Support Number AVG antivirus
customer service phone number

AVG helpline phone number@~1-888-527-3401 AVG tech Support Number AVG antivirus
customer service phone number
AVG HelpLiNe @+1-888-527-3401 AVG support phone number

AVG helpline phone number@~1-888-527-3401 AVG tech Support Number AVG antivirus
customer service phone number

+1-888-527-3401) Technical support number
+1-888-527-3401 AVG Antivirus Technical Support
+1-888-527-3401 contact AVG antivirus customer service phone number
+1-888-527-3401 phone number for AVG customer service
+1-888-527-3401 phone number for AVG antivirus technical support
+1-888-527-3401 phone number for AVG antivirus customer service
phone number for AVG antivirus technical support
phone number for AVG security
AVG antivirus customer care phone number
AVG antivirus customer service billing
AVG antivirus customer service email address
AVG antivirus customer service live chat
AVG antivirus customer service telephone number
AVG antivirus customer support usa phone number
AVG antivirus help desk support phone number free in usa
AVG antivirus phone number customer service us
AVG antivirus phone number support
AVG antivirus support phone number
AVG antivirus tech support phone number free in usa
AVG antivirus tech support phone number
AVG antivirus technical support customer service
AVG antivirus technical support number
AVG antivirus telephone number
AVG antivirus toll free customer care number
AVG antivirus toll free number in usa
AVG antivirus contact phone number in usa
AVG antivirus customer service number
AVG antivirus customer service phone number
AVG antivirus customer service telephone number
AVG antivirus customer support number
AVG antivirus customer support phone number
AVG antivirus customer support phone number
AVG antivirus help desk phone number in usa
AVG antivirus phone number
AVG antivirus phone number support for technical issue in usa
AVG antivirus support phone number
AVG antivirus technical support help desk phone number
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG customer service number
AVG customer service telephone number
AVG customer services email
AVG customer support email address
AVG customer support number
AVG customer support phone number
AVG customer service phone number
AVG internet security contact phone number
AVG internet security customer service phone number
AVG internet security phone number
AVG internet security help phone number
AVG internet security phone number in usa
AVG internet security support phone number
AVG internet security technical support
AVG phone number customer service
AVG phone numbers customer support
AVG phone support number
AVG security contact phone number
AVG security phone number customer service
AVG security support phone number
AVG support contact number
AVG support email address
AVG support phone number
AVG support telephone number
AVG support telephone number usa
AVG support telephone number
AVG tech support number
AVG tech support phone number
AVG tech support phone number free
AVG technical support phone number
AVG technical support cutomer phone number
AVG technical support phone number
AVG technical support number free in usa
AVG technical support number toll free number
AVG technical support phone number
AVG technologies phone number
AVG telephone support number
AVG antivirus customer support phone number
AVG antivirus customer service phone number
AVG customer support phone number
AVG phone number customer service
AVG technical support telephone number
contact AVG antivirus customer service phone number
customer service number for AVG antivirus
phone number for AVG antivirus
phone number for AVG antivirus customer service
phone number for AVG antivirus support
phone number for AVG customer service
phone number for AVG customer service
phone number for AVG customer support
phone number for AVG tech support
phone number AVG antivirus customer service
AVG antivirus customer service number
AVG antivirus customer service phone
AVG antivirus customer service phone number
AVG antivirus customer service phone number us
AVG antivirus customer service telephone number
AVG antivirus customer support
AVG antivirus customer support number
AVG antivirus phone number customer service us
AVG antivirus phone number support
AVG antivirus phone support
AVG antivirus phone support number
AVG antivirus support phone number
AVG antivirus tech support phone number
AVG antivirus technical support
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG customer service phone number
AVG customer support phone number
AVG helpline phone number
AVG internet security customer service
AVG internet security customer service phone number
AVG internet security help phone number
AVG internet security phone number customer service
AVG phone number customer service
AVG phone number customer support
AVG security customer service phone number
AVG security phone number customer service
AVG support phone number
AVG support telephone number
AVG tech support number
AVG tech support phone number
AVG technical support
AVG technical support number
AVG technical support phone number
AVG antivirus customer support phone number
AVG antivirus phone number customer service
AVG antivirus tech support number
AVG customer service phone number
AVG customer service phone numbers
AVG internet security technical support
AVG tech support phone number us
AVG technical support telephone number
contact AVG antivirus
contact AVG by phone
contact AVG customer service
contact AVG antivirus customer service phone number
contactAVG antivirus tech support usa
customer service AVG phone number
download AVG titanium
dri AVG customer service number
dri AVG customer service phone number
dri AVG phone number
how to contact AVG by email
how to delete AVG from mac
micro trend customer service
norton antivirus customer service number
phone number for AVG customer service
phone number forAVG customer service
phone number forAVG customer support
phone number forAVG tech support
phone number forAVG technical support
phone number for AVG antivirus technical support
phone number for AVG security
phone number for AVG support
phone number for AVG technical support
phone number for AVG antivirus customer service
phone number for AVG customer service
remove AVG from mac
technical support for antivirus AVG
telephone number forAVG technical support
telephone AVG antivirus
AVG antivirus contact number
AVG antivirus customer care
AVG antivirus customer care number
AVG antivirus customer care number usa
AVG antivirus customer service
AVG antivirus customer service number :idea: :evil: :D :) :lol: :( :o :shock:
AVG antivirus customer service phone number
AVG antivirus customer service phone number usa
AVG antivirus customer service telephone number
AVG antivirus customer support
AVG antivirus customer support in usa
AVG antivirus customer support number
AVG antivirus customer support phone number
AVG antivirus for phone
AVG antivirus free antivirus support
AVG antivirus help phone number
AVG antivirus helpline number
AVG antivirus online support
AVG antivirus phone
AVG antivirus phone number
AVG antivirus phone number in usa
AVG antivirus phone number usa
AVG antivirus phone support
AVG antivirus plus tech support
AVG antivirus protection
AVG antivirus support
AVG antivirus support number
AVG antivirus support phone number
AVG antivirus support services
AVG antivirus support telephone number
AVG antivirus tech support
AVG antivirus tech support phone number free in usa
AVG antivirus tech support number
AVG antivirus tech support phone number
AVG antivirus technical support
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG antivirus toll free customer care number
AVG antivirus toll free number
AVG antivirus contact phone number in usa
AVG antivirus help desk phone number in usa
AVG antivirus phone number support for technical issue in usa
AVG antivirus support phone number
AVG antivirus technical support help desk phone number
AVG antivirus technical support phone number
AVG contact number
AVG contact number usa
AVG contact phone number
AVG contact support
AVG contact number usa
AVG contact phone number
AVG contact phone number usa
AVG customer & technical support
AVG customer care
AVG customer care center
AVG customer care email
AVG customer care number
AVG customer care number
AVG customer care number usa
AVG customer care number usa toll free
AVG customer care phone number usa
AVG customer care tchnical support
AVG customer care toll free
AVG customer care toll free number
AVG customer care usa
AVG customer help
AVG customer number
AVG customer portal*********
AVG customer service
AVG customer service billing
AVG customer service email address
AVG customer service number
AVG customer service phone
AVG customer service phone number
AVG customer service phone number us
AVG customer service phone number usa
AVG customer service reviews
AVG customer service telephone number
AVG customer service usa
AVG customer support
AVG customer support number
AVG customer support phone
AVG customer support phone number
AVG customer service number
AVG customer service number usa
AVG customer service phone number
AVG customer support number
AVG customer support phone number
AVG free phone support
AVG gold support phone number
AVG help desk phone number
AVG help phone number
AVG helpline
AVG helpline phone number
AVG hotline customer service phone number
AVG internet security customer service
AVG internet security phone number
AVG internet security phone number in usa
AVG lab usa customer service
AVG labs usa customer serviceAVG
AVG phone number
AVG phone number customer service
AVG phone number support
AVG phone number tech support
AVG phone number technical support
AVG phone numbers customer support
AVG phone support
AVG phone support number
AVG phone number customer service
AVG phone number support
AVG phone number tech support
AVG phone number usa
AVG security contact phone number
AVG security phone number
AVG security support phone number
AVG software customer service
AVG software customer service number
AVG support center###########
AVG support contact number
AVG support email address
AVG support phone number
AVG support telephone number
AVG support number usa
AVG support phone number
AVG support phone number usa
AVG tech support
AVG tech support center
AVG tech support contact
AVG tech support number
AVG tech support number usa
AVG tech support phone
AVG tech support phone number
AVG tech support phone number free
AVG tech support number
AVG tech support number usa
AVG tech support phone number
AVG technical support
AVG technical support number
AVG technical support phone number
AVG technical support phone number usa
AVG technical support reviews
AVG technical support usa
AVG technical support phone number
AVG technical support number
AVG technical support number toll free number
AVG technical support number usa
AVG technical support phone number
AVG technical support phone number usa
AVG technologies phone number
AVG telephone number
AVG telephone support number
AVG toll free number
AVG toll free number usa
AVG usa customer care for tech support
AVG usa customer service
AVG usa phone number/////////////
AVG antivirus customer service phone number
AVG antivirus customer service phone number
AVG antivirus customer support phone number
AVG antivirus customer support phone number
AVG antivirus technical support number
AVG customer service phone number usa
AVG internet security support phone number
AVG.com customer service
AVG antivirus antispyware 2011
AVG antivirus customer support
AVG antivirus serial key
AVG antivirus serial number
AVG antivirus support
AVG antivirus technical support
AVG business support*************
AVG contact support
AVG customer care number
AVG customer service 844
AVG customer service number
AVG customer service phone number
AVG customer service telephone number
AVG customer support
>From gcc-bugs-return-534158-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 13:27:40 2016
Return-Path: <gcc-bugs-return-534158-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 61469 invoked by alias); 11 Aug 2016 13:27:39 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 56128 invoked by uid 48); 11 Aug 2016 13:27:26 -0000
From: "ted001mosby at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: =?UTF-8?B?W0J1ZyBwbHVnaW5zLzczNzUyXSBOZXc6IFNreXBlIDEtODg4LTY0OS04NjM4?= =?UTF-8?B?U3VwcG9ydCBDYWxsQEAgVVPCoFRvbGzCoEZyZWXCoCAxLTg4OC02NDktODYz?= =?UTF-8?B?OCBTa3lwZSAxLTg4OC02NDktODYzOHRlY2jCoHN1cHBvcnTCoHBob25lwqBu?= =?UTF-8?B?dW1iZXLCoGZyZWU=?Date: Thu, 11 Aug 2016 13:27:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: plugins
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ted001mosby at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-73752-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01494.txt.bz2
Content-length: 5242

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73752

            Bug ID: 73752
           Summary: Skype 1-888-649-8638Support Call@@ US Toll Free
                    1-888-649-8638 Skype 1-888-649-8638tech support phone
                    number free
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: plugins
          Assignee: unassigned at gcc dot gnu.org
          Reporter: ted001mosby at gmail dot com
  Target Milestone: ---

Created attachment 39184
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39184&action=edit
Skype help 1.888.649.8638 tech support number

@@Call, +1-888-649-8638 for all type help by SKYPE tech support phone number,
Intuit SKYPE Tech Support Phone Number, SKYPE Help Desk Phone Number, SKYPE
tech support number, SKYPE technical support phone number, @@@ SKYPE phone
number, SKYPE technical support number, SKYPE support phone number, SKYPE
technical support, SKYPE Customer Service Phone Number, SKYPE Customer Service
Number, SKYPE Customer Support Phone Number, SKYPE Customer Support Number,
@@1-888-649-8638@@ SKYPE Customer Service Helpline Number, SKYPE Customer Care
Number, SKYPE support team phone number, @@1-888-649-8638@@SKYPE help
number-SKYPE Helpline Number; SKYPE help phone number-SKYPE Helpline Number,
SKYPE Tech Support Toll free Number, SKYPE Support Telephone Number, SKYPE Tech
Support Telephone number, SKYPE Tech Support contact number, SKYPE support
contact number, SKYPE technical support contact number. Call, +1-888-649-8638
SKYPE tech support phone number, Intuit SKYPE Tech Support Phone Number, SKYPE
Help Desk Phone Number, SKYPE tech support number, SKYPE technical support
phone number, SKYPE phone number, SKYPE technical support number, SKYPE support
phone number. It is very popular toll free number which provide by SKYPE
technical support, SKYPE Customer Service Phone Number, SKYPE Customer Service
Number, SKYPE Customer Support Phone Number, SKYPE Customer Support Number,
SKYPE Customer Service Helpline Number, SKYPE Customer Care Number, SKYPE
support team phone number. Call, SKYPE tech support phone number, Intuit SKYPE
Tech Support Phone Number, SKYPE Help Desk Phone Number, SKYPE tech support
number, SKYPE technical support phone number, SKYPE phone number, SKYPE
technical support number, SKYPE support phone number, SKYPE technical support,
SKYPE Customer Service Phone Number, SKYPE Customer Service Number, SKYPE
Customer Support Phone Number, SKYPE Customer Support Number, SKYPE Customer
Service Helpline Number, SKYPE Customer Care Number, SKYPE support team phone
number, #SKYPE Tech Support Phone +1-888-649-8638 Number SKYPE customer support
number
SKYPE 1-888-649-8638 technical support
SKYPE support phone number
SKYPE tech support toll free number in usa
SKYPE tech support phone number
SKYPE tech support phone number free
SKYPE technical support phone number
SKYPE technologies phone number
SKYPE telephone support number
SKYPE support contact number
SKYPE 1-888-649-8638 customer support phone number
SKYPE 1-888-649-8638 problems
SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 technical support
 SKYPE 1-888-649-8638 toll free number
 SKYPE com customer service phone number
SKYPE contact phone number
SKYPE contact telephone number
SKYPE customer service contact number
SKYPE customer service email
SKYPE customer service phone number
SKYPE customer service telephone number
SKYPE customer services email
SKYPE customer support email address
SKYPE customer support number
SKYPE customer support phone number
SKYPE 1-888-649-8638 tech support assistant
SKYPE support assistant
SKYPE tech support
+SKYPE 1-888-649-8638 +online +support
+SBCGLOBAL+support+number
+SBCGLOBAL+online+support
SKYPE 1-888-649-8638 number technical support
SKYPE 1-888-649-8638 service number
SKYPE 1-888-649-8638 support contact phone number
SKYPE 1-888-649-8638 telephone support number
telephone number SKYPE 1-888-649-8638
customer service number SKYPE 1-888-649-8638
compaq SKYPE 1-888-649-8638 support
SKYPE 1-888-649-8638 compaq support
SKYPE 1-888-649-8638 customer service
SKYPE 1-888-649-8638 contact phone number
SKYPE 1-888-649-8638 customer phone number
SKYPE 1-888-649-8638 customer services number
SKYPE 1-888-649-8638 customer support telephone number
SKYPE 1-888-649-8638 support online
SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 service phone number
SKYPE 1-888-649-8638 support customer service number
SKYPE 1-888-649-8638 tech support phone numbers
SKYPE 1-888-649-8638 technical support contact number
SKYPE 1-888-649-8638 telephone number customer service
number SKYPE 1-888-649-8638 tech support
online SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 customer support
SKYPE 1-888-649-8638 customer service
SKYPE 1-888-649-8638 online support
SKYPE 1-888-649-8638 phone number customer support
SKYPE 1-888-649-8638 support telephone numbers
SKYPE 1-888-649-8638 technical support numbers
SKYPE 1-888-649-8638 usa support
telephone number SKYPE 1-888-649-8638 support
SKYPE 1-888-649-8638 support
SKYPE support
SKYPE 1-888-649-8638 tech support
>From gcc-bugs-return-534159-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 13:28:28 2016
Return-Path: <gcc-bugs-return-534159-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 66126 invoked by alias); 11 Aug 2016 13:28:27 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 65188 invoked by uid 48); 11 Aug 2016 13:28:15 -0000
From: "ted001mosby at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: =?UTF-8?B?W0J1ZyBwbHVnaW5zLzczNzUzXSBOZXc6IFNreXBlIDEtODg4LTY0OS04NjM4?= =?UTF-8?B?U3VwcG9ydCBDYWxsQEAgVVPCoFRvbGzCoEZyZWXCoCAxLTg4OC02NDktODYz?= =?UTF-8?B?OCBTa3lwZSAxLTg4OC02NDktODYzOHRlY2huaWNhbMKgc3VwcG9ydMKgcGhv?= =?UTF-8?B?bmXCoG51bWJlcg==?Date: Thu, 11 Aug 2016 13:28:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: plugins
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ted001mosby at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-73753-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01495.txt.bz2
Content-length: 5237

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73753

            Bug ID: 73753
           Summary: Skype 1-888-649-8638Support Call@@ US Toll Free
                    1-888-649-8638 Skype 1-888-649-8638technical support
                    phone number
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: plugins
          Assignee: unassigned at gcc dot gnu.org
          Reporter: ted001mosby at gmail dot com
  Target Milestone: ---

Created attachment 39185
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39185&action=edit
Skype help 1.888.649.8638 tech support number

@@Call, +1-888-649-8638 for all type help by SKYPE tech support phone number,
Intuit SKYPE Tech Support Phone Number, SKYPE Help Desk Phone Number, SKYPE
tech support number, SKYPE technical support phone number, @@@ SKYPE phone
number, SKYPE technical support number, SKYPE support phone number, SKYPE
technical support, SKYPE Customer Service Phone Number, SKYPE Customer Service
Number, SKYPE Customer Support Phone Number, SKYPE Customer Support Number,
@@1-888-649-8638@@ SKYPE Customer Service Helpline Number, SKYPE Customer Care
Number, SKYPE support team phone number, @@1-888-649-8638@@SKYPE help
number-SKYPE Helpline Number; SKYPE help phone number-SKYPE Helpline Number,
SKYPE Tech Support Toll free Number, SKYPE Support Telephone Number, SKYPE Tech
Support Telephone number, SKYPE Tech Support contact number, SKYPE support
contact number, SKYPE technical support contact number. Call, +1-888-649-8638
SKYPE tech support phone number, Intuit SKYPE Tech Support Phone Number, SKYPE
Help Desk Phone Number, SKYPE tech support number, SKYPE technical support
phone number, SKYPE phone number, SKYPE technical support number, SKYPE support
phone number. It is very popular toll free number which provide by SKYPE
technical support, SKYPE Customer Service Phone Number, SKYPE Customer Service
Number, SKYPE Customer Support Phone Number, SKYPE Customer Support Number,
SKYPE Customer Service Helpline Number, SKYPE Customer Care Number, SKYPE
support team phone number. Call, SKYPE tech support phone number, Intuit SKYPE
Tech Support Phone Number, SKYPE Help Desk Phone Number, SKYPE tech support
number, SKYPE technical support phone number, SKYPE phone number, SKYPE
technical support number, SKYPE support phone number, SKYPE technical support,
SKYPE Customer Service Phone Number, SKYPE Customer Service Number, SKYPE
Customer Support Phone Number, SKYPE Customer Support Number, SKYPE Customer
Service Helpline Number, SKYPE Customer Care Number, SKYPE support team phone
number, #SKYPE Tech Support Phone +1-888-649-8638 Number SKYPE customer support
number
SKYPE 1-888-649-8638 technical support
SKYPE support phone number
SKYPE tech support toll free number in usa
SKYPE tech support phone number
SKYPE tech support phone number free
SKYPE technical support phone number
SKYPE technologies phone number
SKYPE telephone support number
SKYPE support contact number
SKYPE 1-888-649-8638 customer support phone number
SKYPE 1-888-649-8638 problems
SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 technical support
 SKYPE 1-888-649-8638 toll free number
 SKYPE com customer service phone number
SKYPE contact phone number
SKYPE contact telephone number
SKYPE customer service contact number
SKYPE customer service email
SKYPE customer service phone number
SKYPE customer service telephone number
SKYPE customer services email
SKYPE customer support email address
SKYPE customer support number
SKYPE customer support phone number
SKYPE 1-888-649-8638 tech support assistant
SKYPE support assistant
SKYPE tech support
+SKYPE 1-888-649-8638 +online +support
+SBCGLOBAL+support+number
+SBCGLOBAL+online+support
SKYPE 1-888-649-8638 number technical support
SKYPE 1-888-649-8638 service number
SKYPE 1-888-649-8638 support contact phone number
SKYPE 1-888-649-8638 telephone support number
telephone number SKYPE 1-888-649-8638
customer service number SKYPE 1-888-649-8638
compaq SKYPE 1-888-649-8638 support
SKYPE 1-888-649-8638 compaq support
SKYPE 1-888-649-8638 customer service
SKYPE 1-888-649-8638 contact phone number
SKYPE 1-888-649-8638 customer phone number
SKYPE 1-888-649-8638 customer services number
SKYPE 1-888-649-8638 customer support telephone number
SKYPE 1-888-649-8638 support online
SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 service phone number
SKYPE 1-888-649-8638 support customer service number
SKYPE 1-888-649-8638 tech support phone numbers
SKYPE 1-888-649-8638 technical support contact number
SKYPE 1-888-649-8638 telephone number customer service
number SKYPE 1-888-649-8638 tech support
online SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 customer support
SKYPE 1-888-649-8638 customer service
SKYPE 1-888-649-8638 online support
SKYPE 1-888-649-8638 phone number customer support
SKYPE 1-888-649-8638 support telephone numbers
SKYPE 1-888-649-8638 technical support numbers
SKYPE 1-888-649-8638 usa support
telephone number SKYPE 1-888-649-8638 support
SKYPE 1-888-649-8638 support
SKYPE support
SKYPE 1-888-649-8638 tech support
>From gcc-bugs-return-534161-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 13:29:18 2016
Return-Path: <gcc-bugs-return-534161-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 70443 invoked by alias); 11 Aug 2016 13:29:18 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 69864 invoked by uid 48); 11 Aug 2016 13:29:05 -0000
From: "Forneonand33 at armyspy dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug debug/73755] New: TALKi$$USA-$$$$$$$ 1-8;8;8;-527-3401 AVG TECH SUPPORT PHONE NUMBER USA, ANTIVIRUS TECH SUPPORT PHONE NUMBER @@@@@ AVG
Date: Thu, 11 Aug 2016 13:29:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: debug
X-Bugzilla-Version: 5.3.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: Forneonand33 at armyspy dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73755-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01497.txt.bz2
Content-length: 12654

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73755

            Bug ID: 73755
           Summary: TALKi$$USA-$$$$$$$ 1-8;8;8;-527-3401 AVG TECH SUPPORT
                    PHONE NUMBER USA, ANTIVIRUS TECH SUPPORT PHONE NUMBER
                    @@@@@ AVG
           Product: gcc
           Version: 5.3.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: debug
          Assignee: unassigned at gcc dot gnu.org
          Reporter: Forneonand33 at armyspy dot com
  Target Milestone: ---

AVG helpline phone number@~1-888-527-3401 AVG tech Support Number AVG antivirus
customer service phone number

AVG helpline phone number@~1-888-527-3401 AVG tech Support Number AVG antivirus
customer service phone number
AVG HelpLiNe @+1-888-527-3401 AVG support phone number

AVG helpline phone number@~1-888-527-3401 AVG tech Support Number AVG antivirus
customer service phone number

+1-888-527-3401) Technical support number
+1-888-527-3401 AVG Antivirus Technical Support
+1-888-527-3401 contact AVG antivirus customer service phone number
+1-888-527-3401 phone number for AVG customer service
+1-888-527-3401 phone number for AVG antivirus technical support
+1-888-527-3401 phone number for AVG antivirus customer service
phone number for AVG antivirus technical support
phone number for AVG security
AVG antivirus customer care phone number
AVG antivirus customer service billing
AVG antivirus customer service email address
AVG antivirus customer service live chat
AVG antivirus customer service telephone number
AVG antivirus customer support usa phone number
AVG antivirus help desk support phone number free in usa
AVG antivirus phone number customer service us
AVG antivirus phone number support
AVG antivirus support phone number
AVG antivirus tech support phone number free in usa
AVG antivirus tech support phone number
AVG antivirus technical support customer service
AVG antivirus technical support number
AVG antivirus telephone number
AVG antivirus toll free customer care number
AVG antivirus toll free number in usa
AVG antivirus contact phone number in usa
AVG antivirus customer service number
AVG antivirus customer service phone number
AVG antivirus customer service telephone number
AVG antivirus customer support number
AVG antivirus customer support phone number
AVG antivirus customer support phone number
AVG antivirus help desk phone number in usa
AVG antivirus phone number
AVG antivirus phone number support for technical issue in usa
AVG antivirus support phone number
AVG antivirus technical support help desk phone number
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG customer service number
AVG customer service telephone number
AVG customer services email
AVG customer support email address
AVG customer support number
AVG customer support phone number
AVG customer service phone number
AVG internet security contact phone number
AVG internet security customer service phone number
AVG internet security phone number
AVG internet security help phone number
AVG internet security phone number in usa
AVG internet security support phone number
AVG internet security technical support
AVG phone number customer service
AVG phone numbers customer support
AVG phone support number
AVG security contact phone number
AVG security phone number customer service
AVG security support phone number
AVG support contact number
AVG support email address
AVG support phone number
AVG support telephone number
AVG support telephone number usa
AVG support telephone number
AVG tech support number
AVG tech support phone number
AVG tech support phone number free
AVG technical support phone number
AVG technical support cutomer phone number
AVG technical support phone number
AVG technical support number free in usa
AVG technical support number toll free number
AVG technical support phone number
AVG technologies phone number
AVG telephone support number
AVG antivirus customer support phone number
AVG antivirus customer service phone number
AVG customer support phone number
AVG phone number customer service
AVG technical support telephone number
contact AVG antivirus customer service phone number
customer service number for AVG antivirus
phone number for AVG antivirus
phone number for AVG antivirus customer service
phone number for AVG antivirus support
phone number for AVG customer service
phone number for AVG customer service
phone number for AVG customer support
phone number for AVG tech support
phone number AVG antivirus customer service
AVG antivirus customer service number
AVG antivirus customer service phone
AVG antivirus customer service phone number
AVG antivirus customer service phone number us
AVG antivirus customer service telephone number
AVG antivirus customer support
AVG antivirus customer support number
AVG antivirus phone number customer service us
AVG antivirus phone number support
AVG antivirus phone support
AVG antivirus phone support number
AVG antivirus support phone number
AVG antivirus tech support phone number
AVG antivirus technical support
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG customer service phone number
AVG customer support phone number
AVG helpline phone number
AVG internet security customer service
AVG internet security customer service phone number
AVG internet security help phone number
AVG internet security phone number customer service
AVG phone number customer service
AVG phone number customer support
AVG security customer service phone number
AVG security phone number customer service
AVG support phone number
AVG support telephone number
AVG tech support number
AVG tech support phone number
AVG technical support
AVG technical support number
AVG technical support phone number
AVG antivirus customer support phone number
AVG antivirus phone number customer service
AVG antivirus tech support number
AVG customer service phone number
AVG customer service phone numbers
AVG internet security technical support
AVG tech support phone number us
AVG technical support telephone number
contact AVG antivirus
contact AVG by phone
contact AVG customer service
contact AVG antivirus customer service phone number
contactAVG antivirus tech support usa
customer service AVG phone number
download AVG titanium
dri AVG customer service number
dri AVG customer service phone number
dri AVG phone number
how to contact AVG by email
how to delete AVG from mac
micro trend customer service
norton antivirus customer service number
phone number for AVG customer service
phone number forAVG customer service
phone number forAVG customer support
phone number forAVG tech support
phone number forAVG technical support
phone number for AVG antivirus technical support
phone number for AVG security
phone number for AVG support
phone number for AVG technical support
phone number for AVG antivirus customer service
phone number for AVG customer service
remove AVG from mac
technical support for antivirus AVG
telephone number forAVG technical support
telephone AVG antivirus
AVG antivirus contact number
AVG antivirus customer care
AVG antivirus customer care number
AVG antivirus customer care number usa
AVG antivirus customer service
AVG antivirus customer service number :idea: :evil: :D :) :lol: :( :o :shock:
AVG antivirus customer service phone number
AVG antivirus customer service phone number usa
AVG antivirus customer service telephone number
AVG antivirus customer support
AVG antivirus customer support in usa
AVG antivirus customer support number
AVG antivirus customer support phone number
AVG antivirus for phone
AVG antivirus free antivirus support
AVG antivirus help phone number
AVG antivirus helpline number
AVG antivirus online support
AVG antivirus phone
AVG antivirus phone number
AVG antivirus phone number in usa
AVG antivirus phone number usa
AVG antivirus phone support
AVG antivirus plus tech support
AVG antivirus protection
AVG antivirus support
AVG antivirus support number
AVG antivirus support phone number
AVG antivirus support services
AVG antivirus support telephone number
AVG antivirus tech support
AVG antivirus tech support phone number free in usa
AVG antivirus tech support number
AVG antivirus tech support phone number
AVG antivirus technical support
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG antivirus toll free customer care number
AVG antivirus toll free number
AVG antivirus contact phone number in usa
AVG antivirus help desk phone number in usa
AVG antivirus phone number support for technical issue in usa
AVG antivirus support phone number
AVG antivirus technical support help desk phone number
AVG antivirus technical support phone number
AVG contact number
AVG contact number usa
AVG contact phone number
AVG contact support
AVG contact number usa
AVG contact phone number
AVG contact phone number usa
AVG customer & technical support
AVG customer care
AVG customer care center
AVG customer care email
AVG customer care number
AVG customer care number
AVG customer care number usa
AVG customer care number usa toll free
AVG customer care phone number usa
AVG customer care tchnical support
AVG customer care toll free
AVG customer care toll free number
AVG customer care usa
AVG customer help
AVG customer number
AVG customer portal*********
AVG customer service
AVG customer service billing
AVG customer service email address
AVG customer service number
AVG customer service phone
AVG customer service phone number
AVG customer service phone number us
AVG customer service phone number usa
AVG customer service reviews
AVG customer service telephone number
AVG customer service usa
AVG customer support
AVG customer support number
AVG customer support phone
AVG customer support phone number
AVG customer service number
AVG customer service number usa
AVG customer service phone number
AVG customer support number
AVG customer support phone number
AVG free phone support
AVG gold support phone number
AVG help desk phone number
AVG help phone number
AVG helpline
AVG helpline phone number
AVG hotline customer service phone number
AVG internet security customer service
AVG internet security phone number
AVG internet security phone number in usa
AVG lab usa customer service
AVG labs usa customer serviceAVG
AVG phone number
AVG phone number customer service
AVG phone number support
AVG phone number tech support
AVG phone number technical support
AVG phone numbers customer support
AVG phone support
AVG phone support number
AVG phone number customer service
AVG phone number support
AVG phone number tech support
AVG phone number usa
AVG security contact phone number
AVG security phone number
AVG security support phone number
AVG software customer service
AVG software customer service number
AVG support center###########
AVG support contact number
AVG support email address
AVG support phone number
AVG support telephone number
AVG support number usa
AVG support phone number
AVG support phone number usa
AVG tech support
AVG tech support center
AVG tech support contact
AVG tech support number
AVG tech support number usa
AVG tech support phone
AVG tech support phone number
AVG tech support phone number free
AVG tech support number
AVG tech support number usa
AVG tech support phone number
AVG technical support
AVG technical support number
AVG technical support phone number
AVG technical support phone number usa
AVG technical support reviews
AVG technical support usa
AVG technical support phone number
AVG technical support number
AVG technical support number toll free number
AVG technical support number usa
AVG technical support phone number
AVG technical support phone number usa
AVG technologies phone number
AVG telephone number
AVG telephone support number
AVG toll free number
AVG toll free number usa
AVG usa customer care for tech support
AVG usa customer service
AVG usa phone number/////////////
AVG antivirus customer service phone number
AVG antivirus customer service phone number
AVG antivirus customer support phone number
AVG antivirus customer support phone number
AVG antivirus technical support number
AVG customer service phone number usa
AVG internet security support phone number
AVG.com customer service
AVG antivirus antispyware 2011
AVG antivirus customer support
AVG antivirus serial key
AVG antivirus serial number
AVG antivirus support
AVG antivirus technical support
AVG business support*************
AVG contact support
AVG customer care number
AVG customer service 844
AVG customer service number
AVG customer service phone number
AVG customer service telephone number
AVG customer support
>From gcc-bugs-return-534160-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 13:29:04 2016
Return-Path: <gcc-bugs-return-534160-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 69692 invoked by alias); 11 Aug 2016 13:29:04 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 69591 invoked by uid 48); 11 Aug 2016 13:28:56 -0000
From: "zeccav at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/61907] load of invalid value for 'bool' in trans-array.c trans_array_constructor
Date: Thu, 11 Aug 2016 13:29:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: minor
X-Bugzilla-Who: zeccav at gmail dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: version
Message-ID: <bug-61907-4-lKUILgAHmg@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-61907-4@http.gcc.gnu.org/bugzilla/>
References: <bug-61907-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01496.txt.bz2
Content-length: 392

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61907

Vittorio Zecca <zeccav at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Version|4.9.1                       |7.0

--- Comment #6 from Vittorio Zecca <zeccav at gmail dot com> ---
Still there in gcc 7.0 trunk 239276
>From gcc-bugs-return-534162-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 13:30:37 2016
Return-Path: <gcc-bugs-return-534162-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 72245 invoked by alias); 11 Aug 2016 13:30:37 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 72030 invoked by uid 89); 11 Aug 2016 13:30:22 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 13:30:22 +0000
From: "zeccav at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/61908] load of invalid value for 'expr_t' in interface.c compare_actual_formal
Date: Thu, 11 Aug 2016 13:30:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: minor
X-Bugzilla-Who: zeccav at gmail dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: version
Message-ID: <bug-61908-4-m9qdTLWIl9@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-61908-4@http.gcc.gnu.org/bugzilla/>
References: <bug-61908-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01498.txt.bz2
Content-length: 392

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61908

Vittorio Zecca <zeccav at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Version|4.9.1                       |7.0

--- Comment #6 from Vittorio Zecca <zeccav at gmail dot com> ---
Still there in gcc 7.0 trunk 239276
>From gcc-bugs-return-534163-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 13:32:38 2016
Return-Path: <gcc-bugs-return-534163-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 76071 invoked by alias); 11 Aug 2016 13:32:37 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 76001 invoked by uid 89); 11 Aug 2016 13:32:32 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 13:32:32 +0000
From: "zeccav at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/50410] [5/6/7 Regression] ICE in record_reference
Date: Thu, 11 Aug 2016 13:32:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: zeccav at gmail dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: jvdelisle at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: version
Message-ID: <bug-50410-4-S3qJgpOsNd@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-50410-4@http.gcc.gnu.org/bugzilla/>
References: <bug-50410-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01499.txt.bz2
Content-length: 393

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=50410

Vittorio Zecca <zeccav at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Version|4.8.0                       |7.0

--- Comment #26 from Vittorio Zecca <zeccav at gmail dot com> ---
Still there in gcc 7.0 trunk 239276
>From gcc-bugs-return-534164-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 13:33:41 2016
Return-Path: <gcc-bugs-return-534164-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 77692 invoked by alias); 11 Aug 2016 13:33:41 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 77315 invoked by uid 89); 11 Aug 2016 13:33:28 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 13:33:28 +0000
From: "ted001mosby at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: =?UTF-8?B?W0J1ZyBwbHVnaW5zLzczNzY0XSBOZXc6IFNreXBlIDEtODg4LTY0OS04NjM4?= =?UTF-8?B?U3VwcG9ydCBDYWxsQEAgVVPCoFRvbGzCoEZyZWXCoCAxLTg4OC02NDktODYz?= =?UTF-8?B?OCBTS1lQRcKgVGVjaG5pY2FsIFN1cHBvcnQgTnVtYmVy?Date: Thu, 11 Aug 2016 13:33:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: plugins
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ted001mosby at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-73764-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01500.txt.bz2
Content-length: 5190

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73764

            Bug ID: 73764
           Summary: Skype 1-888-649-8638Support Call@@ US Toll Free
                    1-888-649-8638 SKYPE Technical Support Number
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: plugins
          Assignee: unassigned at gcc dot gnu.org
          Reporter: ted001mosby at gmail dot com
  Target Milestone: ---

Created attachment 39188
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39188&action=edit
Skype help 1.888.649.8638 tech support number

@@Call, +1-888-649-8638 for all type help by SKYPE tech support phone number,
Intuit SKYPE Tech Support Phone Number, SKYPE Help Desk Phone Number, SKYPE
tech support number, SKYPE technical support phone number, @@@ SKYPE phone
number, SKYPE technical support number, SKYPE support phone number, SKYPE
technical support, SKYPE Customer Service Phone Number, SKYPE Customer Service
Number, SKYPE Customer Support Phone Number, SKYPE Customer Support Number,
@@1-888-649-8638@@ SKYPE Customer Service Helpline Number, SKYPE Customer Care
Number, SKYPE support team phone number, @@1-888-649-8638@@SKYPE help
number-SKYPE Helpline Number; SKYPE help phone number-SKYPE Helpline Number,
SKYPE Tech Support Toll free Number, SKYPE Support Telephone Number, SKYPE Tech
Support Telephone number, SKYPE Tech Support contact number, SKYPE support
contact number, SKYPE technical support contact number. Call, +1-888-649-8638
SKYPE tech support phone number, Intuit SKYPE Tech Support Phone Number, SKYPE
Help Desk Phone Number, SKYPE tech support number, SKYPE technical support
phone number, SKYPE phone number, SKYPE technical support number, SKYPE support
phone number. It is very popular toll free number which provide by SKYPE
technical support, SKYPE Customer Service Phone Number, SKYPE Customer Service
Number, SKYPE Customer Support Phone Number, SKYPE Customer Support Number,
SKYPE Customer Service Helpline Number, SKYPE Customer Care Number, SKYPE
support team phone number. Call, SKYPE tech support phone number, Intuit SKYPE
Tech Support Phone Number, SKYPE Help Desk Phone Number, SKYPE tech support
number, SKYPE technical support phone number, SKYPE phone number, SKYPE
technical support number, SKYPE support phone number, SKYPE technical support,
SKYPE Customer Service Phone Number, SKYPE Customer Service Number, SKYPE
Customer Support Phone Number, SKYPE Customer Support Number, SKYPE Customer
Service Helpline Number, SKYPE Customer Care Number, SKYPE support team phone
number, #SKYPE Tech Support Phone +1-888-649-8638 Number SKYPE customer support
number
SKYPE 1-888-649-8638 technical support
SKYPE support phone number
SKYPE tech support toll free number in usa
SKYPE tech support phone number
SKYPE tech support phone number free
SKYPE technical support phone number
SKYPE technologies phone number
SKYPE telephone support number
SKYPE support contact number
SKYPE 1-888-649-8638 customer support phone number
SKYPE 1-888-649-8638 problems
SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 technical support
 SKYPE 1-888-649-8638 toll free number
 SKYPE com customer service phone number
SKYPE contact phone number
SKYPE contact telephone number
SKYPE customer service contact number
SKYPE customer service email
SKYPE customer service phone number
SKYPE customer service telephone number
SKYPE customer services email
SKYPE customer support email address
SKYPE customer support number
SKYPE customer support phone number
SKYPE 1-888-649-8638 tech support assistant
SKYPE support assistant
SKYPE tech support
+SKYPE 1-888-649-8638 +online +support
+SBCGLOBAL+support+number
+SBCGLOBAL+online+support
SKYPE 1-888-649-8638 number technical support
SKYPE 1-888-649-8638 service number
SKYPE 1-888-649-8638 support contact phone number
SKYPE 1-888-649-8638 telephone support number
telephone number SKYPE 1-888-649-8638
customer service number SKYPE 1-888-649-8638
compaq SKYPE 1-888-649-8638 support
SKYPE 1-888-649-8638 compaq support
SKYPE 1-888-649-8638 customer service
SKYPE 1-888-649-8638 contact phone number
SKYPE 1-888-649-8638 customer phone number
SKYPE 1-888-649-8638 customer services number
SKYPE 1-888-649-8638 customer support telephone number
SKYPE 1-888-649-8638 support online
SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 service phone number
SKYPE 1-888-649-8638 support customer service number
SKYPE 1-888-649-8638 tech support phone numbers
SKYPE 1-888-649-8638 technical support contact number
SKYPE 1-888-649-8638 telephone number customer service
number SKYPE 1-888-649-8638 tech support
online SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 customer support
SKYPE 1-888-649-8638 customer service
SKYPE 1-888-649-8638 online support
SKYPE 1-888-649-8638 phone number customer support
SKYPE 1-888-649-8638 support telephone numbers
SKYPE 1-888-649-8638 technical support numbers
SKYPE 1-888-649-8638 usa support
telephone number SKYPE 1-888-649-8638 support
SKYPE 1-888-649-8638 support
SKYPE support
SKYPE 1-888-649-8638 tech support
>From gcc-bugs-return-534165-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 13:37:20 2016
Return-Path: <gcc-bugs-return-534165-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 68320 invoked by alias); 11 Aug 2016 13:37:19 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 67964 invoked by uid 89); 11 Aug 2016 13:37:06 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 13:37:06 +0000
From: "sthalik at misaki dot pl" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/66488] segfault on sizeof(long) < sizeof(void*) and large GCC memory usage
Date: Thu, 11 Aug 2016 13:37:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 5.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: sthalik at misaki dot pl
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-66488-4-P9OA8PkRB9@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-66488-4@http.gcc.gnu.org/bugzilla/>
References: <bug-66488-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01501.txt.bz2
Content-length: 217

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66488

--- Comment #12 from Stanisław Halik <sthalik at misaki dot pl> ---
ktietz,

It's been sent as Message-ID: <5f43d7e4-b3c8-eb58-d39d-743a03d8ec3c@misaki.pl>
>From gcc-bugs-return-534166-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 13:38:32 2016
Return-Path: <gcc-bugs-return-534166-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 71318 invoked by alias); 11 Aug 2016 13:38:32 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 71204 invoked by uid 89); 11 Aug 2016 13:38:19 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 13:38:19 +0000
From: "hahaha at yopmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/73776] New: NORTON Support Phone Number!!1 800.445.2790 NORTON support phone number
Date: Thu, 11 Aug 2016 13:38:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: hahaha at yopmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73776-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01502.txt.bz2
Content-length: 14404

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73776

            Bug ID: 73776
           Summary: NORTON Support Phone Number!!1 800.445.2790 NORTON
                    support phone number
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: hahaha at yopmail dot com
  Target Milestone: ---

NORTON Support Phone Number!!1 800.445.2790 NORTON support phone number NORTON
Support Phone Number!!1 800.445.2790 NORTON support phone number
Norton helpline phone number@~1800-445-2790 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1800-4452790**Norton antivirus support phone
number
usa+1-800-445-2790) Technical support number
CANADA+1800-445-2790 Norton Antivirus Technical Support
USA-1800-445-1445contact Norton antivirus customer service phone number
AUS-1-800-445-2790 phone number for Norton customer service
UK-1800-445-2790 phone number for Norton antivirus technical support
1-800-445-2790 phone number for Norton antivirus customer service
phone number for Norton antivirus technical support
phone number for Norton security
Norton customer service telephone number
Norton customer support
Norton grentry non payment
Norton helpline support number
Norton internet security customer service
Norton internet security technical support
Norton oem customer service
Norton pc cillin technical support
Norton phone support
Norton removal tool download
Norton subscription renewal
Norton support contact
Norton support hotline
Norton support phone number
Norton tech support phone number
Norton technical support
Norton technical support chat
Norton technical support phone number
Norton technical support phone number usa
Norton telephone number
Norton titanium antivirus
Norton titanium internet security
Norton titanium maximum
Norton titanium maximum security
Norton titanium problems
Norton titanium removal tool
Norton titanium reviews
Norton titanium support
Norton virus removal service
uninstall Norton smart surfing for mac
usa customer care number for Norton antivirus
Norton antivirus phone number support for technical issue in usa
Norton antivirus support phone number
Norton antivirus technical support help desk phone number
Norton antivirus technical support number
Norton antivirus technical support phone number
Norton customer service number
Norton customer service telephone number
Norton customer services email
Norton customer support email address
Norton customer support number
Norton customer support phone number
Norton customer service phone number
Norton internet security contact phone number
Norton internet security customer service phone number
Norton internet security phone number
Norton internet security help phone number
Norton internet security phone number in usa
Norton internet security support phone number
Norton internet security technical support
Norton phone number customer service
Norton phone numbers customer support
Norton phone support number
Norton security contact phone number
Norton security phone number customer service
Norton security support phone number
Norton support contact number
Norton support email address
Norton support phone number
Norton support telephone number
Norton support telephone number usa
Norton support telephone number
Norton tech support number

Norton antivirus customer care phone number
Norton antivirus customer service billing
Norton antivirus customer service email address
Norton antivirus customer service live chat
Norton antivirus customer service telephone number
Norton antivirus customer support usa phone number
Norton antivirus help desk support phone number free in usa
Norton antivirus phone number customer service us
Norton antivirus phone number support
Norton antivirus support phone number
Norton antivirus tech support phone number free in usa
Norton antivirus tech support phone number
Norton antivirus technical support customer service
Norton antivirus technical support number
Norton antivirus telephone number
Norton antivirus toll free customer care number
Norton antivirus toll free number in usa
Norton antivirus contact phone number in usa
Norton antivirus customer service number
Norton antivirus customer service phone number
Norton antivirus customer service telephone number
Norton antivirus customer support number
Norton antivirus customer support phone number
Norton antivirus customer support phone number
Norton antivirus help desk phone number in usa
Norton antivirus phone number
Norton tech support phone number
Norton tech support phone number free
Norton technical support phone number
Norton technical support cutomer phone number
Norton technical support phone number
Norton technical support number free in usa
Norton technical support number toll free number
Norton technical support phone number
Norton technologies phone number
Norton telephone support number
Norton antivirus customer support phone number
Norton antivirus customer service phone number
Norton customer support phone number
Norton phone number customer service
Norton technical support telephone number
contact Norton antivirus customer service phone number
customer service number for Norton antivirus
phone number for Norton antivirus
phone number for Norton antivirus customer service
phone number for Norton antivirus support
phone number for Norton customer service
phone number for Norton customer service
phone number for Norton customer support
phone number for Norton tech support
phone number Norton antivirus customer service
Norton antivirus customer service number
Norton antivirus customer service phone
Norton antivirus customer service phone number
Norton antivirus customer service phone number us
Norton antivirus customer service telephone number
Norton antivirus customer support
Norton antivirus customer support number
Norton antivirus phone number customer service us
Norton antivirus phone number support
Norton antivirus phone support
Norton antivirus phone support number
Norton antivirus support phone number
Norton antivirus tech support phone number
Norton antivirus technical support
Norton antivirus technical support number
Norton antivirus technical support phone number
Norton customer service phone number
Norton customer support phone number
Norton helpline phone number
Norton internet security customer service
Norton internet security customer service phone number
Norton internet security help phone number
Norton internet security phone number customer service
Norton phone number customer service
Norton phone number customer support
Norton security customer service phone number

Norton internet security phone number
Norton internet security phone number in usa
Norton lab usa customer service
Norton labs usa customer serviceNorton
Norton phone number
Norton phone number customer service
Norton phone number support
Norton phone number tech support
Norton phone number technical support
Norton phone numbers customer support
Norton phone support
Norton phone support number
Norton phone number customer service
Norton phone number support
Norton phone number tech support
Norton phone number usa
Norton security contact phone number
Norton security phone number
Norton security support phone number
Norton software customer service
Norton software customer service number
Norton support center
Norton support contact number
Norton support email address
Norton support phone number
Norton support telephone number
Norton support number usa
Norton support phone number
Norton support phone number usa
Norton tech support
Norton tech support center
Norton tech support contact
Norton tech support number
Norton tech support number usa
Norton tech support phone
Norton tech support phone number
Norton tech support phone number free
Norton tech support number
Norton tech support number usa
Norton tech support phone number
Norton technical support
Norton technical support number
Norton technical support phone number
Norton technical support phone number usa
Norton technical support reviews
Norton technical support usa
Norton technical support phone number
Norton technical support number
Norton technical support number toll free number
Norton technical support number usa
Norton technical support phone number
Norton technical support phone number usa
Norton technologies phone number
Norton telephone number
Norton telephone support number
Norton toll free number
Norton toll free number usa
Norton usa customer care for tech support
Norton usa customer service
Norton usa phone number

Norton security phone number customer service
Norton support phone number
Norton support telephone number
Norton tech support number
Norton tech support phone number
Norton technical support
Norton technical support number
Norton technical support phone number
Norton antivirus customer support phone number
Norton antivirus phone number customer service
Norton antivirus tech support number
Norton customer service phone number
Norton customer service phone numbers
Norton internet security technical support
Norton tech support phone number us
Norton technical support telephone number
contact Norton antivirus
contact Norton by phone
contact Norton customer service
contact Norton antivirus customer service phone number
contactNorton antivirus tech support usa
customer service Norton phone number
download Norton titanium
dri Norton customer service number
dri Norton customer service phone number
dri Norton phone number
how to contact Norton by email
how to delete Norton from mac
micro trend customer service
norton antivirus customer service number
phone number for Norton customer service
phone number forNorton customer service
phone number forNorton customer support
phone number forNorton tech support
phone number forNorton technical support
phone number for Norton antivirus technical support
phone number for Norton security
phone number for Norton support
phone number for Norton technical support
phone number for Norton antivirus customer service
phone number for Norton customer service
remove Norton from mac
technical support for antivirus Norton
telephone number forNorton technical support
telephone Norton antivirus
Norton antivirus contact number
Norton antivirus customer care
Norton antivirus customer care number
Norton antivirus customer care number usa
Norton antivirus customer service
Norton antivirus customer service number :idea: :evil: :D :) :lol: :( :o
:shock:
Norton antivirus customer service phone number
Norton antivirus customer service phone number usa
Norton antivirus customer service telephone number
Norton antivirus customer support
Norton antivirus customer support in usa
Norton antivirus customer support number
Norton antivirus customer support phone number
Norton antivirus for phone
Norton antivirus free antivirus support
Norton antivirus help phone number
Norton antivirus helpline number
Norton antivirus online support
Norton antivirus phone
Norton antivirus phone number
Norton antivirus phone number in usa
Norton antivirus phone number usa
Norton antivirus phone support
Norton antivirus plus tech support
Norton antivirus protection
Norton antivirus support
Norton antivirus support number
Norton antivirus support phone number
Norton antivirus support services
Norton antivirus support telephone number
Norton antivirus tech support
Norton antivirus tech support phone number free in usa
Norton antivirus tech support number
Norton antivirus tech support phone number
Norton antivirus technical support
Norton antivirus technical support number
Norton antivirus technical support phone number
Norton antivirus toll free customer care number
Norton antivirus toll free number
Norton antivirus contact phone number in usa
Norton antivirus help desk phone number in usa
Norton antivirus phone number support for technical issue in usa
Norton antivirus support phone number
Norton antivirus technical support help desk phone number
Norton antivirus technical support phone number
Norton contact number
Norton contact number usa
Norton contact phone number
Norton contact support
Norton contact number usa
Norton contact phone number
Norton contact phone number usa
Norton customer & technical support
Norton customer care
Norton customer care center
Norton customer care email
Norton customer care number
Norton customer care number
Norton customer care number usa
Norton customer care number usa toll free
Norton customer care phone number usa
Norton customer care tchnical support
Norton customer care toll free
Norton customer care toll free number
Norton customer care usa
Norton customer help
Norton customer number
Norton customer portal
Norton customer service
Norton customer service billing
Norton customer service email address
Norton customer service number
Norton customer service phone
Norton customer service phone number
Norton customer service phone number us
Norton customer service phone number usa
Norton customer service reviews
Norton customer service telephone number
Norton customer service usa
Norton customer support
Norton customer support number
Norton customer support phone
Norton customer support phone number
Norton customer service number
Norton customer service number usa
Norton customer service phone number
Norton customer support number
Norton customer support phone number
Norton free phone support
Norton gold support phone number
Norton help desk phone number
Norton help phone number
Norton helpline
Norton helpline phone number
Norton hotline customer service phone number
Norton internet security customer service
Norton antivirus customer service phone number
Norton antivirus customer service phone number
Norton antivirus customer support phone number
Norton antivirus customer support phone number
Norton antivirus technical support number
Norton customer service phone number usa
Norton internet security support phone number
Norton.com customer service
Norton antivirus antispyware 2011
Norton antivirus customer support
Norton antivirus serial key
Norton antivirus serial number
Norton antivirus support
Norton antivirus technical support
Norton business support
Norton contact support
Norton customer care number
Norton customer service 800
Norton customer service number
Norton customer service phone number
>From gcc-bugs-return-534167-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 13:39:10 2016
Return-Path: <gcc-bugs-return-534167-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 84239 invoked by alias); 11 Aug 2016 13:39:09 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 75242 invoked by uid 89); 11 Aug 2016 13:38:56 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 13:38:56 +0000
From: "Anyted1985 at einrot dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug boehm-gc/73777] New: :WebrooT.Helpline 1800.445.2790 WEBROOT Technical phone number
Date: Thu, 11 Aug 2016 13:39:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: boehm-gc
X-Bugzilla-Version: lno
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: Anyted1985 at einrot dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73777-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01503.txt.bz2
Content-length: 14545

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73777

            Bug ID: 73777
           Summary: :WebrooT.Helpline 1800.445.2790 WEBROOT Technical
                    phone number
           Product: gcc
           Version: lno
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: boehm-gc
          Assignee: unassigned at gcc dot gnu.org
          Reporter: Anyted1985 at einrot dot com
  Target Milestone: ---

Help$$$$$$$$ Desk Wifi Webroot Antivirus Tech Support Number
$$$1-800-445-2790$$(KENTUCKY)$$ Webroot Antivirus Customer Service Number USA

usa+1-800-445-2790) Technical support number
CANADA+1800-445-2790 Webroot Antivirus Technical Support
USA-1800-445-2790contact Webroot antivirus customer service phone number
AUS-1-800-445-2790 phone number for Webroot customer service
UK-1800-445-2790 phone number for Webroot antivirus technical support
1-800-445-2790 phone number for Webroot antivirus customer service
phone number for Webroot antivirus technical support
phone number for Webroot security
Webroot antivirus customer care phone number
Webroot antivirus customer service billing
Webroot antivirus customer service email address
Webroot antivirus customer service live chat
Webroot antivirus customer service telephone number
Webroot antivirus customer support usa phone number
Webroot antivirus help desk support phone number free in usa
Webroot antivirus phone number customer service us
Webroot antivirus phone number support
Webroot antivirus support phone number
Webroot antivirus tech support phone number free in usa
Webroot antivirus tech support phone number
Webroot antivirus technical support customer service
Webroot antivirus technical support number
Webroot antivirus telephone number
Webroot antivirus toll free customer care number
Webroot antivirus toll free number in usa
Webroot antivirus contact phone number in usa
Webroot antivirus customer service number
Webroot antivirus customer service phone number
Webroot antivirus customer service telephone number
Webroot antivirus customer support number
Webroot antivirus customer support phone number
Webroot antivirus customer support phone number
Webroot antivirus help desk phone number in usa
Webroot antivirus phone number
Webroot antivirus phone number support for technical issue in usa
Webroot antivirus support phone number
Webroot antivirus technical support help desk phone number
Webroot antivirus technical support number
Webroot antivirus technical support phone number
Webroot customer service number
Webroot customer service telephone number
Webroot customer services email
Webroot customer support email address
Webroot customer support number
Webroot customer support phone number
Webroot customer service phone number
Webroot internet security contact phone number
Webroot internet security customer service phone number
Webroot internet security phone number
Webroot internet security help phone number
Webroot internet security phone number in usa
Webroot internet security support phone number
Webroot internet security technical support
Webroot phone number customer service
Webroot phone numbers customer support
Webroot phone support number
Webroot security contact phone number
Webroot security phone number customer service
Webroot security support phone number
Webroot support contact number
Webroot support email address
Webroot support phone number
Webroot support telephone number
Webroot support telephone number usa
Webroot support telephone number
Webroot tech support number
Webroot tech support phone number
Webroot tech support phone number free
Webroot technical support phone number
Webroot technical support cutomer phone number
Webroot technical support phone number
Webroot technical support number free in usa
Webroot technical support number toll free number
Webroot technical support phone number
Webroot technologies phone number
Webroot telephone support number
Webroot antivirus customer support phone number
Webroot antivirus customer service phone number
Webroot customer support phone number
Webroot phone number customer service
Webroot technical support telephone number
contact Webroot antivirus customer service phone number
customer service number for Webroot antivirus
phone number for Webroot antivirus
phone number for Webroot antivirus customer service
phone number for Webroot antivirus support
phone number for Webroot customer service
phone number for Webroot customer service
phone number for Webroot customer support
phone number for Webroot tech support
phone number Webroot antivirus customer service
Webroot antivirus customer service number
Webroot antivirus customer service phone
Webroot antivirus customer service phone number
Webroot antivirus customer service phone number us
Webroot antivirus customer service telephone number
Webroot antivirus customer support
Webroot antivirus customer support number
Webroot antivirus phone number customer service us
Webroot antivirus phone number support
Webroot antivirus phone support
Webroot antivirus phone support number
Webroot antivirus support phone number
Webroot antivirus tech support phone number
Webroot antivirus technical support
Webroot antivirus technical support number
Webroot antivirus technical support phone number
Webroot customer service phone number
Webroot customer support phone number
Webroot helpline phone number
Webroot internet security customer service
Webroot internet security customer service phone number
Webroot internet security help phone number
Webroot internet security phone number customer service
Webroot phone number customer service
Webroot phone number customer support
Webroot security customer service phone number
Webroot security phone number customer service
Webroot support phone number
Webroot support telephone number
Webroot tech support number
Webroot tech support phone number
Webroot technical support
Webroot technical support number
Webroot technical support phone number
Webroot antivirus customer support phone number
Webroot antivirus phone number customer service
Webroot antivirus tech support number
Webroot customer service phone number
Webroot customer service phone numbers
Webroot internet security technical support
Webroot tech support phone number us
Webroot technical support telephone number
contact Webroot antivirus
contact Webroot by phone
contact Webroot customer service
contact Webroot antivirus customer service phone number
contactWebroot antivirus tech support usa
customer service Webroot phone number
download Webroot titanium
dri Webroot customer service number
dri Webroot customer service phone number
dri Webroot phone number
how to contact Webroot by email
how to delete Webroot from mac
micro trend customer service
Webroot antivirus customer service number
phone number for Webroot customer service
phone number forWebroot customer service
phone number forWebroot customer support
phone number forWebroot tech support
phone number forWebroot technical support
phone number for Webroot antivirus technical support
phone number for Webroot security
phone number for Webroot support
phone number for Webroot technical support
phone number for Webroot antivirus customer service
phone number for Webroot customer service
remove Webroot from mac
technical support for antivirus Webroot
telephone number forWebroot technical support
telephone Webroot antivirus
Webroot antivirus contact number
Webroot antivirus customer care
Webroot antivirus customer care number
Webroot antivirus customer care number usa
Webroot antivirus customer service
Webroot antivirus customer service number :idea: :evil: :D :) :lol: :( :o
:shock:
Webroot antivirus customer service phone number
Webroot antivirus customer service phone number usa
Webroot antivirus customer service telephone number
Webroot antivirus customer support
Webroot antivirus customer support in usa
Webroot antivirus customer support number
Webroot antivirus customer support phone number
Webroot antivirus for phone
Webroot antivirus free antivirus support
Webroot antivirus help phone number
Webroot antivirus helpline number
Webroot antivirus online support
Webroot antivirus phone
Webroot antivirus phone number
Webroot antivirus phone number in usa
Webroot antivirus phone number usa
Webroot antivirus phone support
Webroot antivirus plus tech support
Webroot antivirus protection
Webroot antivirus support
Webroot antivirus support number
Webroot antivirus support phone number
Webroot antivirus support services
Webroot antivirus support telephone number
Webroot antivirus tech support
Webroot antivirus tech support phone number free in usa
Webroot antivirus tech support number
Webroot antivirus tech support phone number
Webroot antivirus technical support
Webroot antivirus technical support number
Webroot antivirus technical support phone number
Webroot antivirus toll free customer care number
Webroot antivirus toll free number
Webroot antivirus contact phone number in usa
Webroot antivirus help desk phone number in usa
Webroot antivirus phone number support for technical issue in usa
Webroot antivirus support phone number
Webroot antivirus technical support help desk phone number
Webroot antivirus technical support phone number
Webroot contact number
Webroot contact number usa
Webroot contact phone number
Webroot contact support
Webroot contact number usa
Webroot contact phone number
Webroot contact phone number usa
Webroot customer & technical support
Webroot customer care
Webroot customer care center
Webroot customer care email
Webroot customer care number
Webroot customer care number
Webroot customer care number usa
Webroot customer care number usa toll free
Webroot customer care phone number usa
Webroot customer care tchnical support
Webroot customer care toll free
Webroot customer care toll free number
Webroot customer care usa
Webroot customer help
Webroot customer number
Webroot customer portal
Webroot customer service
Webroot customer service billing
Webroot customer service email address
Webroot customer service number
Webroot customer service phone
Webroot customer service phone number
Webroot customer service phone number us
Webroot customer service phone number usa
Webroot customer service reviews
Webroot customer service telephone number
Webroot customer service usa
Webroot customer support
Webroot customer support number
Webroot customer support phone
Webroot customer support phone number
Webroot customer service number
Webroot customer service number usa
Webroot customer service phone number
Webroot customer support number
Webroot customer support phone number
Webroot free phone support
Webroot gold support phone number
Webroot help desk phone number
Webroot help phone number
Webroot helpline
Webroot helpline phone number
Webroot hotline customer service phone number
Webroot internet security customer service
Webroot internet security phone number
Webroot internet security phone number in usa
Webroot lab usa customer service
Webroot labs usa customer serviceWebroot
Webroot phone number
Webroot phone number customer service
Webroot phone number support
Webroot phone number tech support
Webroot phone number technical support
Webroot phone numbers customer support
Webroot phone support
Webroot phone support number
Webroot phone number customer service
Webroot phone number support
Webroot phone number tech support
Webroot phone number usa
Webroot security contact phone number
Webroot security phone number
Webroot security support phone number
Webroot software customer service
Webroot software customer service number
Webroot support center
Webroot support contact number
Webroot support email address
Webroot support phone number
Webroot support telephone number
Webroot support number usa
Webroot support phone number
Webroot support phone number usa
Webroot tech support
Webroot tech support center
Webroot tech support contact
Webroot tech support number
Webroot tech support number usa
Webroot tech support phone
Webroot tech support phone number
Webroot tech support phone number free
Webroot tech support number
Webroot tech support number usa
Webroot tech support phone number
Webroot technical support
Webroot technical support number
Webroot technical support phone number
Webroot technical support phone number usa
Webroot technical support reviews
Webroot technical support usa
Webroot technical support phone number
Webroot technical support number
Webroot technical support number toll free number
Webroot technical support number usa
Webroot technical support phone number
Webroot technical support phone number usa
Webroot technologies phone number
Webroot telephone number
Webroot telephone support number
Webroot toll free number
Webroot toll free number usa
Webroot usa customer care for tech support
Webroot usa customer service
Webroot usa phone number
Webroot antivirus customer service phone number
Webroot antivirus customer service phone number
Webroot antivirus customer support phone number
Webroot antivirus customer support phone number
Webroot antivirus technical support number
Webroot customer service phone number usa
Webroot internet security support phone number
Webroot.com customer service
Webroot antivirus antispyware 2011
Webroot antivirus customer support
Webroot antivirus serial key
Webroot antivirus serial number
Webroot antivirus support
Webroot antivirus technical support
Webroot business support
Webroot contact support
Webroot customer care number
Webroot customer service 800
Webroot customer service number
Webroot customer service phone number
Webroot customer service telephone number 18004452790
Webroot customer support
Webroot grentry non payment
Webroot helpline support number
Webroot internet security customer service
Webroot internet security technical support
Webroot oem customer service
Webroot pc cillin technical support
Webroot phone support
Webroot removal tool download
Webroot subscription renewal
Webroot support contact
Webroot support hotline
Webroot support phone number
Webroot tech support phone number18004452790
Webroot technical support
Webroot technical support chat
Webroot technical support phone number
Webroot technical support phone number usa  1800-445-2790
Webroot telephone number
Webroot titanium antivirus
Webroot titanium internet security
Webroot titanium maximum
Webroot titanium maximum security
Webroot titanium problems
Webroot titanium removal tool
Webroot titanium reviews
Webroot titanium support
Webroot virus removal service
uninstall Webroot smart surfing for mac
>From gcc-bugs-return-534169-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 13:41:39 2016
Return-Path: <gcc-bugs-return-534169-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 116088 invoked by alias); 11 Aug 2016 13:41:39 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 112692 invoked by uid 89); 11 Aug 2016 13:41:26 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 13:41:26 +0000
From: "roy666bhavna at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: =?UTF-8?B?W0J1ZyBwbHVnaW5zLzczNzgxXSBOZXc6IFNreXBlIDEtODg4LTY0OS04NjM4?= =?UTF-8?B?U3VwcG9ydCBDYWxsQEAgVVPCoFRvbGzCoEZyZWXCoCAxLTg4OC02NDktODYz?= =?UTF-8?B?OCBTS1lQRcKgwqBzdXBwb3J0IG51bWJlcg==?Date: Thu, 11 Aug 2016 13:41:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: plugins
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: roy666bhavna at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-73781-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01505.txt.bz2
Content-length: 5187

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73781

            Bug ID: 73781
           Summary: Skype 1-888-649-8638Support Call@@ US Toll Free
                    1-888-649-8638 SKYPE  support number
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: plugins
          Assignee: unassigned at gcc dot gnu.org
          Reporter: roy666bhavna at gmail dot com
  Target Milestone: ---

Created attachment 39191
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39191&action=edit
Skype help 1.888.649.8638 tech support number

@@Call, +1-888-649-8638 for all type help by SKYPE tech support phone number,
Intuit SKYPE Tech Support Phone Number, SKYPE Help Desk Phone Number, SKYPE
tech support number, SKYPE technical support phone number, @@@ SKYPE phone
number, SKYPE technical support number, SKYPE support phone number, SKYPE
technical support, SKYPE Customer Service Phone Number, SKYPE Customer Service
Number, SKYPE Customer Support Phone Number, SKYPE Customer Support Number,
@@1-888-649-8638@@ SKYPE Customer Service Helpline Number, SKYPE Customer Care
Number, SKYPE support team phone number, @@1-888-649-8638@@SKYPE help
number-SKYPE Helpline Number; SKYPE help phone number-SKYPE Helpline Number,
SKYPE Tech Support Toll free Number, SKYPE Support Telephone Number, SKYPE Tech
Support Telephone number, SKYPE Tech Support contact number, SKYPE support
contact number, SKYPE technical support contact number. Call, +1-888-649-8638
SKYPE tech support phone number, Intuit SKYPE Tech Support Phone Number, SKYPE
Help Desk Phone Number, SKYPE tech support number, SKYPE technical support
phone number, SKYPE phone number, SKYPE technical support number, SKYPE support
phone number. It is very popular toll free number which provide by SKYPE
technical support, SKYPE Customer Service Phone Number, SKYPE Customer Service
Number, SKYPE Customer Support Phone Number, SKYPE Customer Support Number,
SKYPE Customer Service Helpline Number, SKYPE Customer Care Number, SKYPE
support team phone number. Call, SKYPE tech support phone number, Intuit SKYPE
Tech Support Phone Number, SKYPE Help Desk Phone Number, SKYPE tech support
number, SKYPE technical support phone number, SKYPE phone number, SKYPE
technical support number, SKYPE support phone number, SKYPE technical support,
SKYPE Customer Service Phone Number, SKYPE Customer Service Number, SKYPE
Customer Support Phone Number, SKYPE Customer Support Number, SKYPE Customer
Service Helpline Number, SKYPE Customer Care Number, SKYPE support team phone
number, #SKYPE Tech Support Phone +1-888-649-8638 Number SKYPE customer support
number
SKYPE 1-888-649-8638 technical support
SKYPE support phone number
SKYPE tech support toll free number in usa
SKYPE tech support phone number
SKYPE tech support phone number free
SKYPE technical support phone number
SKYPE technologies phone number
SKYPE telephone support number
SKYPE support contact number
SKYPE 1-888-649-8638 customer support phone number
SKYPE 1-888-649-8638 problems
SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 technical support
 SKYPE 1-888-649-8638 toll free number
 SKYPE com customer service phone number
SKYPE contact phone number
SKYPE contact telephone number
SKYPE customer service contact number
SKYPE customer service email
SKYPE customer service phone number
SKYPE customer service telephone number
SKYPE customer services email
SKYPE customer support email address
SKYPE customer support number
SKYPE customer support phone number
SKYPE 1-888-649-8638 tech support assistant
SKYPE support assistant
SKYPE tech support
+SKYPE 1-888-649-8638 +online +support
+SBCGLOBAL+support+number
+SBCGLOBAL+online+support
SKYPE 1-888-649-8638 number technical support
SKYPE 1-888-649-8638 service number
SKYPE 1-888-649-8638 support contact phone number
SKYPE 1-888-649-8638 telephone support number
telephone number SKYPE 1-888-649-8638
customer service number SKYPE 1-888-649-8638
compaq SKYPE 1-888-649-8638 support
SKYPE 1-888-649-8638 compaq support
SKYPE 1-888-649-8638 customer service
SKYPE 1-888-649-8638 contact phone number
SKYPE 1-888-649-8638 customer phone number
SKYPE 1-888-649-8638 customer services number
SKYPE 1-888-649-8638 customer support telephone number
SKYPE 1-888-649-8638 support online
SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 service phone number
SKYPE 1-888-649-8638 support customer service number
SKYPE 1-888-649-8638 tech support phone numbers
SKYPE 1-888-649-8638 technical support contact number
SKYPE 1-888-649-8638 telephone number customer service
number SKYPE 1-888-649-8638 tech support
online SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 customer support
SKYPE 1-888-649-8638 customer service
SKYPE 1-888-649-8638 online support
SKYPE 1-888-649-8638 phone number customer support
SKYPE 1-888-649-8638 support telephone numbers
SKYPE 1-888-649-8638 technical support numbers
SKYPE 1-888-649-8638 usa support
telephone number SKYPE 1-888-649-8638 support
SKYPE 1-888-649-8638 support
SKYPE support
SKYPE 1-888-649-8638 tech support
>From gcc-bugs-return-534168-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 13:41:00 2016
Return-Path: <gcc-bugs-return-534168-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 111500 invoked by alias); 11 Aug 2016 13:41:00 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 110004 invoked by uid 89); 11 Aug 2016 13:40:47 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 13:40:47 +0000
From: "Forneonand33 at armyspy dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73779] New: File:++HElpLiNe Usa CAnaDAa++1.888.52.73401Avg Antivirus Technical Support phone Number
Date: Thu, 11 Aug 2016 13:41:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 4.8.5
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: Forneonand33 at armyspy dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73779-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01504.txt.bz2
Content-length: 12602

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73779

            Bug ID: 73779
           Summary: File:++HElpLiNe Usa CAnaDAa++1.888.52.73401Avg
                    Antivirus Technical Support phone Number
           Product: gcc
           Version: 4.8.5
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: Forneonand33 at armyspy dot com
  Target Milestone: ---

AVG helpline phone number@~1-888-527-3401 AVG tech Support Number AVG antivirus
customer service phone number

AVG helpline phone number@~1-888-527-3401 AVG tech Support Number AVG antivirus
customer service phone number
AVG HelpLiNe @+1-888-527-3401 AVG support phone number

AVG helpline phone number@~1-888-527-3401 AVG tech Support Number AVG antivirus
customer service phone number

+1-888-527-3401) Technical support number
+1-888-527-3401 AVG Antivirus Technical Support
+1-888-527-3401 contact AVG antivirus customer service phone number
+1-888-527-3401 phone number for AVG customer service
+1-888-527-3401 phone number for AVG antivirus technical support
+1-888-527-3401 phone number for AVG antivirus customer service
phone number for AVG antivirus technical support
phone number for AVG security
AVG antivirus customer care phone number
AVG antivirus customer service billing
AVG antivirus customer service email address
AVG antivirus customer service live chat
AVG antivirus customer service telephone number
AVG antivirus customer support usa phone number
AVG antivirus help desk support phone number free in usa
AVG antivirus phone number customer service us
AVG antivirus phone number support
AVG antivirus support phone number
AVG antivirus tech support phone number free in usa
AVG antivirus tech support phone number
AVG antivirus technical support customer service
AVG antivirus technical support number
AVG antivirus telephone number
AVG antivirus toll free customer care number
AVG antivirus toll free number in usa
AVG antivirus contact phone number in usa
AVG antivirus customer service number
AVG antivirus customer service phone number
AVG antivirus customer service telephone number
AVG antivirus customer support number
AVG antivirus customer support phone number
AVG antivirus customer support phone number
AVG antivirus help desk phone number in usa
AVG antivirus phone number
AVG antivirus phone number support for technical issue in usa
AVG antivirus support phone number
AVG antivirus technical support help desk phone number
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG customer service number
AVG customer service telephone number
AVG customer services email
AVG customer support email address
AVG customer support number
AVG customer support phone number
AVG customer service phone number
AVG internet security contact phone number
AVG internet security customer service phone number
AVG internet security phone number
AVG internet security help phone number
AVG internet security phone number in usa
AVG internet security support phone number
AVG internet security technical support
AVG phone number customer service
AVG phone numbers customer support
AVG phone support number
AVG security contact phone number
AVG security phone number customer service
AVG security support phone number
AVG support contact number
AVG support email address
AVG support phone number
AVG support telephone number
AVG support telephone number usa
AVG support telephone number
AVG tech support number
AVG tech support phone number
AVG tech support phone number free
AVG technical support phone number
AVG technical support cutomer phone number
AVG technical support phone number
AVG technical support number free in usa
AVG technical support number toll free number
AVG technical support phone number
AVG technologies phone number
AVG telephone support number
AVG antivirus customer support phone number
AVG antivirus customer service phone number
AVG customer support phone number
AVG phone number customer service
AVG technical support telephone number
contact AVG antivirus customer service phone number
customer service number for AVG antivirus
phone number for AVG antivirus
phone number for AVG antivirus customer service
phone number for AVG antivirus support
phone number for AVG customer service
phone number for AVG customer service
phone number for AVG customer support
phone number for AVG tech support
phone number AVG antivirus customer service
AVG antivirus customer service number
AVG antivirus customer service phone
AVG antivirus customer service phone number
AVG antivirus customer service phone number us
AVG antivirus customer service telephone number
AVG antivirus customer support
AVG antivirus customer support number
AVG antivirus phone number customer service us
AVG antivirus phone number support
AVG antivirus phone support
AVG antivirus phone support number
AVG antivirus support phone number
AVG antivirus tech support phone number
AVG antivirus technical support
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG customer service phone number
AVG customer support phone number
AVG helpline phone number
AVG internet security customer service
AVG internet security customer service phone number
AVG internet security help phone number
AVG internet security phone number customer service
AVG phone number customer service
AVG phone number customer support
AVG security customer service phone number
AVG security phone number customer service
AVG support phone number
AVG support telephone number
AVG tech support number
AVG tech support phone number
AVG technical support
AVG technical support number
AVG technical support phone number
AVG antivirus customer support phone number
AVG antivirus phone number customer service
AVG antivirus tech support number
AVG customer service phone number
AVG customer service phone numbers
AVG internet security technical support
AVG tech support phone number us
AVG technical support telephone number
contact AVG antivirus
contact AVG by phone
contact AVG customer service
contact AVG antivirus customer service phone number
contactAVG antivirus tech support usa
customer service AVG phone number
download AVG titanium
dri AVG customer service number
dri AVG customer service phone number
dri AVG phone number
how to contact AVG by email
how to delete AVG from mac
micro trend customer service
norton antivirus customer service number
phone number for AVG customer service
phone number forAVG customer service
phone number forAVG customer support
phone number forAVG tech support
phone number forAVG technical support
phone number for AVG antivirus technical support
phone number for AVG security
phone number for AVG support
phone number for AVG technical support
phone number for AVG antivirus customer service
phone number for AVG customer service
remove AVG from mac
technical support for antivirus AVG
telephone number forAVG technical support
telephone AVG antivirus
AVG antivirus contact number
AVG antivirus customer care
AVG antivirus customer care number
AVG antivirus customer care number usa
AVG antivirus customer service
AVG antivirus customer service number :idea: :evil: :D :) :lol: :( :o :shock:
AVG antivirus customer service phone number
AVG antivirus customer service phone number usa
AVG antivirus customer service telephone number
AVG antivirus customer support
AVG antivirus customer support in usa
AVG antivirus customer support number
AVG antivirus customer support phone number
AVG antivirus for phone
AVG antivirus free antivirus support
AVG antivirus help phone number
AVG antivirus helpline number
AVG antivirus online support
AVG antivirus phone
AVG antivirus phone number
AVG antivirus phone number in usa
AVG antivirus phone number usa
AVG antivirus phone support
AVG antivirus plus tech support
AVG antivirus protection
AVG antivirus support
AVG antivirus support number
AVG antivirus support phone number
AVG antivirus support services
AVG antivirus support telephone number
AVG antivirus tech support
AVG antivirus tech support phone number free in usa
AVG antivirus tech support number
AVG antivirus tech support phone number
AVG antivirus technical support
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG antivirus toll free customer care number
AVG antivirus toll free number
AVG antivirus contact phone number in usa
AVG antivirus help desk phone number in usa
AVG antivirus phone number support for technical issue in usa
AVG antivirus support phone number
AVG antivirus technical support help desk phone number
AVG antivirus technical support phone number
AVG contact number
AVG contact number usa
AVG contact phone number
AVG contact support
AVG contact number usa
AVG contact phone number
AVG contact phone number usa
AVG customer & technical support
AVG customer care
AVG customer care center
AVG customer care email
AVG customer care number
AVG customer care number
AVG customer care number usa
AVG customer care number usa toll free
AVG customer care phone number usa
AVG customer care tchnical support
AVG customer care toll free
AVG customer care toll free number
AVG customer care usa
AVG customer help
AVG customer number
AVG customer portal*********
AVG customer service
AVG customer service billing
AVG customer service email address
AVG customer service number
AVG customer service phone
AVG customer service phone number
AVG customer service phone number us
AVG customer service phone number usa
AVG customer service reviews
AVG customer service telephone number
AVG customer service usa
AVG customer support
AVG customer support number
AVG customer support phone
AVG customer support phone number
AVG customer service number
AVG customer service number usa
AVG customer service phone number
AVG customer support number
AVG customer support phone number
AVG free phone support
AVG gold support phone number
AVG help desk phone number
AVG help phone number
AVG helpline
AVG helpline phone number
AVG hotline customer service phone number
AVG internet security customer service
AVG internet security phone number
AVG internet security phone number in usa
AVG lab usa customer service
AVG labs usa customer serviceAVG
AVG phone number
AVG phone number customer service
AVG phone number support
AVG phone number tech support
AVG phone number technical support
AVG phone numbers customer support
AVG phone support
AVG phone support number
AVG phone number customer service
AVG phone number support
AVG phone number tech support
AVG phone number usa
AVG security contact phone number
AVG security phone number
AVG security support phone number
AVG software customer service
AVG software customer service number
AVG support center###########
AVG support contact number
AVG support email address
AVG support phone number
AVG support telephone number
AVG support number usa
AVG support phone number
AVG support phone number usa
AVG tech support
AVG tech support center
AVG tech support contact
AVG tech support number
AVG tech support number usa
AVG tech support phone
AVG tech support phone number
AVG tech support phone number free
AVG tech support number
AVG tech support number usa
AVG tech support phone number
AVG technical support
AVG technical support number
AVG technical support phone number
AVG technical support phone number usa
AVG technical support reviews
AVG technical support usa
AVG technical support phone number
AVG technical support number
AVG technical support number toll free number
AVG technical support number usa
AVG technical support phone number
AVG technical support phone number usa
AVG technologies phone number
AVG telephone number
AVG telephone support number
AVG toll free number
AVG toll free number usa
AVG usa customer care for tech support
AVG usa customer service
AVG usa phone number/////////////
AVG antivirus customer service phone number
AVG antivirus customer service phone number
AVG antivirus customer support phone number
AVG antivirus customer support phone number
AVG antivirus technical support number
AVG customer service phone number usa
AVG internet security support phone number
AVG.com customer service
AVG antivirus antispyware 2011
AVG antivirus customer support
AVG antivirus serial key
AVG antivirus serial number
AVG antivirus support
AVG antivirus technical support
AVG business support*************
AVG contact support
AVG customer care number
AVG customer service 844
AVG customer service number
AVG customer service phone number
AVG customer service telephone number
AVG customer support
>From gcc-bugs-return-534170-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 13:43:25 2016
Return-Path: <gcc-bugs-return-534170-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 10911 invoked by alias); 11 Aug 2016 13:43:25 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 126326 invoked by uid 89); 11 Aug 2016 13:43:14 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 13:43:14 +0000
From: "arre1963 at cuvox dot de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73787] New: +++++>>><<<>1-800-790-9186 CANON PRINTER TECH SUPPORT PHONE NUMBER,CANON PRINTER HELPLINE NUMBER USA...FLORIDA
Date: Thu, 11 Aug 2016 13:43:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: arre1963 at cuvox dot de
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73787-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01506.txt.bz2
Content-length: 45032

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73787

            Bug ID: 73787
           Summary: +++++>>><<<>1-800-790-9186 CANON PRINTER TECH SUPPORT
                    PHONE NUMBER,CANON PRINTER HELPLINE NUMBER
                    USA...FLORIDA
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: arre1963 at cuvox dot de
  Target Milestone: ---

++@@@*1800 790 9186 hewlett packard printer customer support phone number ,
hewlett packard printer support phone number uSA/CANADA
@@@*1800 790 9186 hewlett packard printer customer support phone number ,
hewlett packard printer support phone number
@@@1800 790 9186 hewlett packard printer customer support phone number ,
hewlett packard printer support phone number @@@1800 790 9186 hewlett packard
printer customer support phone number , hewlett packard printer support phone
number
1-800-790-9186, CANON help line phone number 1-800-790-9186, CANON help number
1-800-790-9186, CANON printer help desk, CANON technical help, help with CANON
printer, CANON printer help online, CANON help phone number 1-800-790-9186,
CANON printer help desk, CANON printer number 1-800-790-9186 for help, CANON
online help… CANON Drivers (22) CANON printer drivers, CANON support drivers,
CANON drivers for printer, CANON printer drivers, CANON support and drivers,
CANON drivers and support, drivers CANON printer, CANON drivers printer, CANON
inkjet printer driver, CANON wireless printer driver, printer CANON driver,
CANON printer drivers support, CANON photocopier drivers, CANON driver support,
CANON printer driver support, CANON support & driver, CANON drivers support,
CANON printer support drivers, www CANON com support drivers, CANON drivers
USA… Printer Customer (25) CANON printer customer service, CANON printer
customer service, CANON printer customer service number 1-800-790-9186, CANON
printer customer support, CANON printer customer service phone number
1-800-790-9186, CANON printer customer service phone number 1-800-790-9186,
CANON printer customer service phone, CANON printer customer support, phone
number 1-800-790-9186 for CANON printer customer service, CANON printer
customer support phone number 1-800-790-9186, customer service CANON printer,
brother printer customer support, brother printer customer service phone number
1-800-790-9186, brother printer customer service number 1-800-790-9186, kodak
printer customer service number 1-800-790-9186, brother printer customer
support phone number 1-800-790-9186, brother printer customer support number
1-800-790-9186, brother printer customer service support, brother printer
customer service number 1-800-790-9186, brother printer customer support number
1-800-790-9186… CANON Technical (22) CANON technical support, CANON printer
technical support, CANON technical support phone number 1-800-790-9186, CANON
technical support number 1-800-790-9186, CANON printer technical support, CANON
technical support phone, CANON printer technical support phone number
1-800-790-9186, CANON printer technical support number 1-800-790-9186, CANON
technical support hours, technical support for CANON printer, CANON printer
technical support phone number 1-800-790-9186, contact CANON technical support,
CANON cameras technical support, CANON technical support phone number
1-800-790-9186 USA, CANON technical support canada, CANON camera technical
support, CANON technical support USAtralia, CANON USA technical support, CANON
USA technical support phone number 1-800-790-9186, CANON USAtralia technical
support… Support number 1-800-790-9186 (17) CANON support number
1-800-790-9186, CANON printer support number 1-800-790-9186, CANON support
phone number 1-800-790-9186, CANON printer support number 1-800-790-9186, CANON
phone support number 1-800-790-9186, CANON cameras support phone number
1-800-790-9186, CANON imagerunner support phone number 1-800-790-9186, printer
support number 1-800-790-9186, brother printer support number 1-800-790-9186,
CANON camera support number 1-800-790-9186, brother printer tech support number
1-800-790-9186, brother printer technical support number 1-800-790-9186,
brother printer support telephone number 1-800-790-9186, brother printer
technical support telephone number 1-800-790-9186, brother printer support
number 1-800-790-9186 us, CANON camera support phone number 1-800-790-9186,
CANON USA support number 1-800-790-9186 Install CANON (36) install CANON
printer, CANON printer installation, CANON printer installer, CANON printer
install, installing CANON printer, install printer CANON, instal CANON printer,
CANON printer install, CANON printer installation, installing a CANON printer,
CANON install printer, installer CANON printer, install driver for CANON
printer, CANON printer driver install, CANON printer installation without cd,
CANON driver install, installer printer CANON, instal printer CANON, install
CANON scanner, CANON install driver… Customer Service (12) CANON customer
service, CANON customer service phone, customer service CANON, CANON customer
services, CANON customer service hours, CANON USA customer service, CANON
customer service USA, CANON customer service canada, CANON customer service
USAtralia, CANON USA customer service, CANON canada customer service, CANON
singapore customer service Troubleshooting CANON (16) CANON printer
troubleshooting, CANON printer troubleshooting, CANON troubleshooting printer,
troubleshoot CANON printer, troubleshooting CANON printer, CANON printer
troubleshoot, CANON troubleshooting phone number 1-800-790-9186, troubleshoot
CANON printer problems, CANON printer troubleshooting pixma, troubleshooting
CANON printer, CANON mp830 troubleshooting, CANON mp620 troubleshooting,
troubleshooting for CANON printer, CANON printer troubleshooter,
troubleshooting printer CANON, how to troubleshoot CANON printer Center CANON
(38) CANON service center, CANON service centers, CANON support center, CANON
service center phone number 1-800-790-9186, CANON pixma service center, CANON
customer support center, CANON service center number 1-800-790-9186, CANON
repair center, CANON call center number 1-800-790-9186, CANON customer service
center, CANON call center, CANON camera service center, CANON service center
contact number 1-800-790-9186, CANON print center, CANON center, CANON camera
repair center, CANON service center locations, call center CANON, CANON contact
service center, CANON servicing center… CANON Helpline (23) CANON printer
helpline, CANON helpline, CANON helpline number 1-800-790-9186, CANON printer
helpline number 1-800-790-9186, CANON printer helpline phone number
1-800-790-9186, CANON printer helpline number 1-800-790-9186, CANON printer
helpline, CANON pixma helpline, CANON helpline no, CANON printer helpline no,
CANON camera helpline, CANON printer helpline USA, CANON helpline USA, CANON
helpline USAtralia, CANON camera helpline number 1-800-790-9186, CANON helpline
number 1-800-790-9186 delhi, CANON helpline number 1-800-790-9186 india, CANON
printer helpline number 1-800-790-9186 india, CANON printer helpline number
1-800-790-9186 india, CANON USA helpline… number 1-800-790-9186 Customer (7)
CANON customer service number 1-800-790-9186, CANON customer service phone
number 1-800-790-9186, CANON customer support number 1-800-790-9186, CANON
pixma customer service phone number 1-800-790-9186, CANON customer support
phone number 1-800-790-9186, phone number 1-800-790-9186 CANON customer
service, CANON fax machine customer support number 1-800-790-9186 Printer Phone
(15) CANON printer support phone number 1-800-790-9186, CANON printer support
phone, CANON printer tech support phone number 1-800-790-9186, CANON printer
phone support, CANON printer phone number 1-800-790-9186, CANON printer tech
support phone number 1-800-790-9186, CANON printer phone number 1-800-790-9186,
CANON printer support phone number 1-800-790-9186, phone number 1-800-790-9186
for CANON printer support, phone number 1-800-790-9186 for CANON printer,
brother printer support phone number 1-800-790-9186, brother printer tech
support phone number 1-800-790-9186, brother printer technical support phone
number 1-800-790-9186, brother printer tech support phone, brother printer
phone support number 1-800-790-9186 Center Printer (19) CANON printer service
center, CANON printer service center, CANON printer service center phone number
1-800-790-9186, CANON printer service center number 1-800-790-9186, CANON
printer service center number 1-800-790-9186, CANON printer repair center,
CANON printer service centers, service center printer CANON, service center for
CANON printer, CANON printer repair center, service center CANON printer, CANON
printer call center number 1-800-790-9186, CANON printer service center
locations, CANON printer service center mumbai, authorized CANON printer repair
centers, CANON printer repair center locations, CANON printer repair centers,
CANON printer service center singapore, CANON printer call center number
1-800-790-9186 india CANON Care (38) CANON customer care number 1-800-790-9186,
CANON customer care, CANON printer customer care, CANON printer customer care
number 1-800-790-9186, CANON printer customer care number 1-800-790-9186, CANON
customer care no, CANON printer customer care, CANON customer care center,
CANON printer customer care no, CANON customer care center contact number
1-800-790-9186, CANON printer customer care no, CANON care center, customer
care number 1-800-790-9186 of CANON printer, CANON customer care phone number
1-800-790-9186, CANON care, CANON customer care delhi, CANON india customer
care, CANON customer care number 1-800-790-9186 india, CANON printer india
customer care, CANON printer customer care delhi… Contact CANON (25) CANON
contact number 1-800-790-9186, CANON contact, contact CANON, contact CANON
customer support, CANON support contact, contact CANON support, contact CANON
support phone number 1-800-790-9186, CANON contact support, CANON support
contact number 1-800-790-9186, contact CANON customer service, CANON contact
phone number 1-800-790-9186, contact CANON by phone, CANON contacts, CANON
contact details, CANON USA contact number 1-800-790-9186, CANON camera contact
number 1-800-790-9186, CANON contact info, how to contact CANON customer
service, CANON contact number 1-800-790-9186 USA, CANON camera contact… CANON
Toll (21) CANON toll free number 1-800-790-9186, CANON toll free no, CANON toll
free, CANON toll free tech support, CANON customer care number 1-800-790-9186
toll free, CANON service toll free number 1-800-790-9186, CANON toll free
number 1-800-790-9186 india, CANON customer care toll free number
1-800-790-9186, CANON toll free number 1-800-790-9186 in delhi, CANON india
toll free, CANON toll free number 1-800-790-9186 in india, CANON service center
toll free number 1-800-790-9186, CANON scanner toll free number 1-800-790-9186,
CANON india toll free number 1-800-790-9186, CANON india toll free no, CANON
camera toll free number 1-800-790-9186, CANON toll free number 1-800-790-9186
chennai, CANON customer care toll free number 1-800-790-9186 india, CANON toll
free india, CANON toll free no USA…
CANON@@ 1..800.790.906.7++++CANON Printer Support Phone Number @@@@@ 1-800 790
9186#CANON Printer Support Phone Number
Call Turant¸¸V :CANON Printer:::::::::::::1 800 790 9186 CANON Printer tech
support customer care phone number !TALK @@@@@@@ 1 800 790 9186(USA), CANON
Printer Support Phone Number Canada CANON Printer customer care phone number
Call @@@@@@@@@@@@@@@ 1-800 790 9186 CANON Printer Support Phone Number Canada
CANON Printer customer care phone number Call @@@@@ ((((((((((CANON Printer 1
800 790 9186 CANON Printer Tech Support Phone Number Canada CANON Printer
customer service number $$$@@@@@@CANON Printer 1 800 790 9186 CANON Printer
Tech Support Phone Number Canada CANON Printer customer service number $CANON
Printer 1 800 790 9186 CANON Printer Tech Support Phone Number Canada CANON
Printer customer service number CANON Printer SUPPORT USA(((1 800 790
9186(USA), 1800-790-9186(UK) 1800-790-9186(AUS)!!!!!!FREE CANON Printer support
phone number,CANON Printer customer service number @SUPPORT
Canada!!!!!!!!!((1800-790-9186))!!!!!!FREE CANON Printer support phone
number,CANON Printer customer service number** !Help CANON Printer Tech Support
Number!!1 800 790 9186(USA) CANON Printer Customer Service CANON Printer
Customer support number USA 1 800 790 9186(USA), CANON Printer tech support
phone number , CANON Printer customer Support number !!!!!!!CANON Printer tech
Support Number @1 800 790 9186@ CANON Printer Tech Support Phone Number Call
wireless CANON Printer Tech Support Phone Number Canada CANON Printer customer
service number1 800 790 9186 CANON Printer support number, CANON Printer
support, CANON Printer support, CANON Printer tech support, CANON Printer
technical support, CANON Printer customer service number, CANON Printer
customer service, CANON Printer tech support number, ##CANON Printer support
center##, CANON Printer support number, hewlett packard support, CANON Printer
contact number, CANON Printer phone number, CANON Printer help and support,
CANON Printer customer support, CANON Printer help, CANON Printer technical
support number, CANON Printer support phone number, hewlett packard customer
service, CANON printer support, CANON Printer customer service phone number,
CANON Printer number, CANON Printer customer care, CANON Printer contact, CANON
Printer tech support phone number, CANON Printer support chat, CANON Printer
customer support number, CANON Printer customer care number, contact CANON
Printer support, CANON Printer help, CANON Printer phone, CANON Printer support
phone number, CANON Printer customer support phone number, CANON Printer tech
support, CANON Printer phone support, CANON Printer technical support phone
number, CANON Printer laptop support number, hewlett packard printer support,
CANON Printer helpline, CANON Printer telephone support, CANON Printer online
support, CANON Printer support contact, CANON Printer chat support, hewlett
packard phone number, CANON Printer customer service, CANON Printer tech
support number, CANON Printer product support, hewlett packard customer service
phone number, CANON Printer computer support number, CANON Printer support
contact number, CANON Printer support printer, CANON Printer computer support,
CANON Printer tech support chat, CANON Printer helpline number, CANON Printer
laptop support, hewlett packard tech support, CANON Printer online chat,
hewlett packard technical support, CANON Printer help line, phone number for
CANON Printer support, hewlett packard support phone number, CANON Printer
technical support, hewlett packard customer service number, CANON Printer
service number, hewlett packard helpline, CANON Printer customer care no, CANON
Printer customer service number, CANON Printer help number, CANON Printer
customer service phone number, CANON Printer 1800 number, CANON Printer support
phone, CANON Printer support line, hewlett packard contact number, CANON
Printer tech support phone number, CANON Printer customer support phone number,
CANON printer help, call CANON Printer support, ##CANON Printer support## chat,
hewlett packard support number, hewlett packard tech support number, CANON
Printer support telephone number, hewlett packard tech support phone number,
call CANON Printer, CANON Printer contact support, hewlett packard technical
support phone number, CANON Printer support centre, hewlett packard customer
support, CANON Printer desktop support, CANON Printer laptop customer service,
contact CANON Printer support, CANON Printer pc support, CANON Printer laptop
customer care number, CANON Printer support for printer, CANON Printer customer
care, CANON Printer customer care phone number, hewlett packard help, phone
number for CANON Printer, CANON Printer online help, CANON Printer laptop
customer care, CANON Printer helpline phone number, CANON Printer customer
support, CANON Printer technical support chat, CANON Printer computer help,
CANON Printer support numbers, CANON Printer technical support contact number,
CANON Printer telephone number, CANON Printer technical support phone number,
CANON Printer helpline, CANON Printer support printer, CANON Printer support
online, CANON Printer contact number, CANON Printer help phone number, CANON
Printer customer care number, contact hewlett packard by phone, CANON Printer
phone support, hewlett packard printer support, CANON Printer tech support
phone, CANON Printer technical help, CANON Printer laptop tech support number,
contact CANON Printer by phone, CANON Printer support call, CANON Printer
computers support, hewlett packard customer service telephone number, phone
number for hewlett packard, CANON Printer online support chat, CANON Printer
laptop customer service number, CANON Printer online chat support, CANON
printer customer service, hewlett packard customer service phone, CANON Printer
laptop tech support, CANON Printer service phone number, hewlett packard
printer help, phone number for CANON printer, CANON Printer troubleshooting
phone number, CANON Printer 800 number, hewlett packard technical support
number, contact CANON Printer support phone, phone number for CANON Printer
support, CANON Printer customer support chat, CANON Printer help and support
number, contact hewlett packard, CANON Printer laptop support phone number,
CANON printer customer service phone number, CANON Printer laptop customer
service phone number, CANON Printer computer support phone number, CANON
Printer pavilion support, CANON Printer computer customer service, CANON
Printer customer services, hewlett packard telephone number, CANON Printer
helpline no, CANON Printer help desk number, contact CANON Printer support
phone number, hewlett packard contact, CANON Printer phone numbers, CANON
printer customer care number, CANON Printer help and support, contact CANON
Printer technical support, CANON Printer contact numbers, contact CANON Printer
support chat, call CANON Printer tech support, CANON Printer customer service
phone, CANON Printer help support, CANON Printer computer tech support, CANON
Printer assistance phone number, CANON Printer customer service telephone
number, hewlett packard printer support phone number, CANON Printer contact
support number, CANON Printer support center phone number, CANON Printer
support phone numbers, tech support for CANON Printer, CANON Printer it
support, CANON Printer laptop helpline, CANON Printer technical, CANON Printer
laptop technical support number, CANON printer tech support phone number, CANON
printer support phone number, hewlett packard help desk phone number, CANON
Printer computer tech support phone number, CANON Printer customer service
number for laptop, CANON Printer helpline number, contact CANON Printer support
by phone, hewlett packard support center, CANON Printer laptop customer care
no, CANON Printer support telephone number, CANON Printer support services,
CANON Printer customer service number for printer, CANON Printer product
support number, CANON Printer laptop tech support phone number, CANON Printer
helpline phone number, contact CANON Printer customer support, hewlett packard
customer support phone number, CANON printer technical support, CANON Printer
customer care center, support for CANON printer, CANON Printer support center,
phone number for CANON Printer tech support, CANON Printer desktop customer
care number, CANON Printer laptops support, CANON Printer online support, CANON
Printer phone number, hewlett packard printer support phone number, technical
support for CANON printer phone number, CANON Printer help center phone number,
contact CANON Printer tech support, call CANON Printer support, CANON printer
customer support, CANON Printer computer customer service number, CANON printer
helpline, CANON Printer customer care contact number, CANON Printer laptop
help, CANON Printer computer customer service phone number, phone number for
hewlett packard customer service, hewlett packard 800 number, CANON Printer
help phone number, CANON printer help phone number, CANON Printer phone number
for customer service, CANON Printer computer technical support phone number,
customer service CANON Printer, CANON Printer support technical support number,
contact number for CANON Printer, CANON Printer computers support phone number,
CANON printer support number, CANON Printer technical support number, contact
CANON Printer tech support by phone, CANON Printer computer customer care
number, CANON Printer 800 number, call CANON Printer customer service, CANON
Printer help center, CANON Printer computers customer service, CANON Printer
help desk, hewlett packard computer support, CANON printer technical support
number, CANON Printer help desk phone number, CANON Printer support phone,
CANON Printer contact help, contact CANON Printer laptop support, CANON Printer
customer service contact number, support for CANON Printer, CANON Printer
customer care no, CANON Printer computer phone number, CANON Printer tech help,
CANON Printer pc support number, CANON Printer laptop customer support, CANON
Printer desktop support number, support CANON Printer, CANON Printer support
hours, number for CANON Printer support, CANON Printer support customer service
number, CANON Printer contact phone number, customer service number for CANON
printer, CANON Printer computers help, CANON Printer tech support contact
number, CANON Printer phone support number.... CANON Printer support number
CANON Printer customer service number CANON Printer customer support number
CANON Printer customer care number CANON Printer help number CANON Printer
helpline number CANON Printer contact number CANON Printer toll free number
CANON Printer troubleshooting phone number CANON Printer support canada CANON
Printer customer service canada CANON Printer help canada CANON Printer phone
number canda CANON Printer phone Support canda CANON Printer not printing CANON
Printer not respoding CANON Printer problems with windows 7-8-10 CANON Printer
problems with mac CANON Printer deskjet printer support number CANON Printer
deskjet printer help number CANON Printer laserjet printer support number CANON
Printer laserjet printer help number CANON Printer wireless setup number CANON
Printer wireless setup number CANON Printer wifi problem CANON Printer wifi not
working
CANON Tech (29) CANON printer help, CANON help line, CANON tech support help
desk, CANON printer help, CANON help desk, CANON help, CANON printer help phone
number 18~88790+9186, CANON help desk phone number 18~88790+9186, CANON printer
help line, CANON printer help number 18~88790+9186, CANON help line phone
number 18~88790+9186, CANON help number 18~88790+9186, CANON printer help desk,
CANON tech help, help with CANON printer, CANON printer help online, CANON help
phone number 18~88790+9186, CANON printer help desk, CANON printer number
18~88790+9186 for help, CANON online help… CANON Drivers (22) CANON printer
drivers, CANON support drivers, CANON drivers for printer, CANON printer
drivers, CANON support and drivers, CANON drivers and support, drivers CANON
printer, CANON drivers printer, CANON inkjet printer driver, CANON wireless
printer driver, printer CANON driver, CANON printer drivers support, CANON
photocopier drivers, CANON driver support, CANON printer driver support, CANON
support & driver, CANON drivers support, CANON printer support drivers, www
CANON com support drivers, CANON drivers Uk… Printer tech (25) CANON printer
tech service, CANON printer tech service, CANON printer tech service number
18~88790+9186, CANON printer tech support, CANON printer tech service phone
number 18~88790+9186, CANON printer tech service phone number 18~88790+9186,
CANON printer tech service phone, CANON printer tech support, phone number
18~88790+9186 for CANON printer tech service, CANON printer tech support phone
number 18~88790+9186, tech service CANON printer, brother printer tech support,
brother printer tech service phone number 18~88790+9186, brother printer tech
service number 18~88790+9186, kodak printer tech service number 18~88790+9186,
brother printer tech support phone number 18~88790+9186, brother printer tech
support number 18~88790+9186, brother printer tech service support, brother
printer tech service number 18~88790+9186, brother printer tech support number
18~88790+9186… CANON tech (22) CANON tech support, CANON printer tech support,
CANON tech support phone number 18~88790+9186, CANON tech support number
18~88790+9186, CANON printer tech support, CANON tech support phone, CANON
printer tech support phone number 18~88790+9186, CANON printer tech support
number 18~88790+9186, CANON tech support hours, tech support for CANON printer,
CANON printer tech support phone number 18~88790+9186, contact CANON tech
support, CANON cameras tech support, CANON tech support phone number
18~88790+9186 Uk, CANON tech support canada, CANON camera tech support, CANON
tech support Uktralia, CANON Uk tech support, CANON Uk tech support phone
number 18~88790+9186, CANON Uktralia tech support… Support number 18~88790+9186
(17) CANON support number 18~88790+9186, CANON printer support number
18~88790+9186, CANON support phone number 18~88790+9186, CANON printer support
number 18~88790+9186, CANON phone support number 18~88790+9186, CANON cameras
support phone number 18~88790+9186, CANON imagerunner support phone number
18~88790+9186, printer support number 18~88790+9186, brother printer support
number 18~88790+9186, CANON camera support number 18~88790+9186, brother
printer tech support number 18~88790+9186, brother printer tech support number
18~88790+9186, brother printer support telephone number 18~88790+9186, brother
printer tech support telephone number 18~88790+9186, brother printer support
number 18~88790+9186 us, CANON camera support phone number 18~88790+9186, CANON
uk support number 18~88790+9186 Install CANON (36) install CANON printer, CANON
printer installation, CANON printer installer, CANON printer install,
installing CANON printer, install printer CANON, instal CANON printer, CANON
printer install, CANON printer installation, installing a CANON printer, CANON
install printer, installer CANON printer, install driver for CANON printer,
CANON printer driver install, CANON printer installation without cd, CANON
driver install, installer printer CANON, instal printer CANON, install CANON
scanner, CANON install driver… tech Service (12) CANON tech service, CANON tech
service phone, tech service CANON, CANON tech services, CANON tech service
hours, CANON Uk tech service, CANON tech service Uk, CANON tech service canada,
CANON tech service Uktralia, CANON uk tech service, CANON canada tech service,
CANON singapore tech service Troubleshooting CANON (16) CANON printer
troubleshooting, CANON printer troubleshooting, CANON troubleshooting printer,
troubleshoot CANON printer, troubleshooting CANON printer, CANON printer
troubleshoot, CANON troubleshooting phone number 18~88790+9186, troubleshoot
CANON printer problems, CANON printer troubleshooting pixma, troubleshooting
CANON printer, CANON mp830 troubleshooting, CANON mp620 troubleshooting,
troubleshooting for CANON printer, CANON printer troubleshooter,
troubleshooting printer CANON, how to troubleshoot CANON printer Center CANON
(38) CANON service center, CANON service centers, CANON support center, CANON
service center phone number 18~88790+9186, CANON pixma service center, CANON
tech support center, CANON service center number 18~88790+9186, CANON repair
center, CANON call center number 18~88790+9186, CANON tech service center,
CANON call center, CANON camera service center, CANON service center contact
number 18~88790+9186, CANON print center, CANON center, CANON camera repair
center, CANON service center locations, call center CANON, CANON contact
service center, CANON servicing center… CANON Helpline (23) CANON printer
helpline, CANON helpline, CANON helpline number 18~88790+9186, CANON printer
helpline number 18~88790+9186, CANON printer helpline phone number
18~88790+9186, CANON printer helpline number 18~88790+9186, CANON printer
helpline, CANON pixma helpline, CANON helpline no, CANON printer helpline no,
CANON camera helpline, CANON printer helpline uk, CANON helpline uk, CANON
helpline Uktralia, CANON camera helpline number 18~88790+9186, CANON helpline
number 18~88790+9186 CANADA, CANON helpline number 18~88790+9186 USA, CANON
printer helpline number 18~88790+9186 USA, CANON printer helpline number
18~88790+9186 USA, CANON uk helpline… number 18~88790+9186 tech (7) CANON tech
service number 18~88790+9186, CANON tech service phone number 18~88790+9186,
CANON tech support number 18~88790+9186, CANON pixma tech service phone number
18~88790+9186, CANON tech support phone number 18~88790+9186, phone number
18~88790+9186 CANON tech service, CANON fax machine tech support number
18~88790+9186 Printer Phone (15) CANON printer support phone number
18~88790+9186, CANON printer support phone, CANON printer tech support phone
number 18~88790+9186, CANON printer phone support, CANON printer phone number
18~88790+9186, CANON printer tech support phone number 18~88790+9186, CANON
printer phone number 18~88790+9186, CANON printer support phone number
18~88790+9186, phone number 18~88790+9186 for CANON printer support, phone
number 18~88790+9186 for CANON printer, brother printer support phone number
18~88790+9186, brother printer tech support phone number 18~88790+9186, brother
printer tech support phone number 18~88790+9186, brother printer tech support
phone, brother printer phone support number 18~88790+9186 Center Printer (19)
CANON printer service center, CANON printer service center, CANON printer
service center phone number 18~88790+9186, CANON printer service center number
18~88790+9186, CANON printer service center number 18~88790+9186, CANON printer
repair center, CANON printer service centers, service center printer CANON,
service center for CANON printer, CANON printer repair center, service center
CANON printer, CANON printer call center number 18~88790+9186, CANON printer
service center locations, CANON printer service center mumbai, authorized CANON
printer repair centers, CANON printer repair center locations, CANON printer
repair centers, CANON printer service center singapore, CANON printer call
center number 18~88790+9186 USA CANON Care (38) CANON tech care number
18~88790+9186, CANON tech care, CANON printer tech care, CANON printer tech
care number 18~88790+9186, CANON printer tech care number 18~88790+9186, CANON
tech care no, CANON printer tech care, CANON tech care center, CANON printer
tech care no, CANON tech care center contact number 18~88790+9186, CANON
printer tech care no, CANON care center, tech care number 18~88790+9186 of
CANON printer, CANON tech care phone number 18~88790+9186, CANON care, CANON
tech care CANADA, CANON USA tech care, CANON tech care number 18~88790+9186
USA, CANON printer USA tech care, CANON printer tech care CANADA… Contact CANON
(25) CANON contact number 18~88790+9186, CANON contact, contact CANON, contact
CANON tech support, CANON support contact, contact CANON support, contact CANON
support phone number 18~88790+9186, CANON contact support, CANON support
contact number 18~88790+9186, contact CANON tech service, CANON contact phone
number 18~88790+9186, contact CANON by phone, CANON contacts, CANON contact
details, CANON Uk contact number 18~88790+9186, CANON camera contact number
18~88790+9186, CANON contact info, how to contact CANON tech service, CANON
contact number 18~88790+9186 Uk, CANON camera contact… CANON Toll (21) CANON
toll free number 18~88790+9186, CANON toll free no, CANON toll free, CANON toll
free tech support, CANON tech care number 18~88790+9186 toll free, CANON
service toll free number 18~88790+9186, CANON toll free number 18~88790+9186
USA, CANON tech care toll free number 18~88790+9186, CANON toll free number
18~88790+9186 in CANADA, CANON USA toll free, CANON toll free number
18~88790+9186 in USA, CANON service center toll free number 18~88790+9186,
CANON scanner toll free number 18~88790+9186, CANON USA toll free number
18~88790+9186, CANON USA toll free no, CANON camera toll free number
18~88790+9186, CANON toll free number 18~88790+9186 CANADA, CANON tech care
toll free number 18~88790+9186 USA, CANON toll free USA, CANON toll free no
USA..... USA(((1 800 790 906.7(USA), 1800-790-906.7(US)
1800-790-906.7(US)!!!!!!FREE CANON Printer technical Support phone number,CANON
Printer customer service number @SUPPORT
Canada!!!!!!!!!((1800-790-906.7))!!!!!!FREE CANON Printer technical Support
phone number,CANON Printer customer service number** !Help CANON Printer Tech
Support Number!!1 800 790 906.7(USA) CANON Printer Customer Service CANON
Printer Customer support number USA 1 800 790 906.7(USA), CANON Printer tech
support phone number , CANON Printer customer Support number !!!!!!!CANON
Printer tech Support Number @1 800 790 906.7@ CANON Printer Tech Support Phone
Number Call wireless CANON Printer Tech Support Phone Number Canada CANON
Printer customer service number1 800 790 906.7 CANON Printer technical Support
number, CANON Printer technical Support, CANON Printer technical Support, CANON
Printer tech support, CANON Printer technical support, CANON Printer customer
service number, CANON Printer customer service, CANON Printer tech support
number, ##CANON Printer technical Support center##, CANON Printer technical
Support number, hewlett packard support, CANON Printer contact number, CANON
Printer phone number, CANON Printer help and support, CANON Printer customer
support, CANON Printer help, CANON Printer technical support number, CANON
Printer technical Support phone number, hewlett packard customer service, CANON
printer support, CANON Printer customer service phone number, CANON Printer
number, CANON Printer customer care, CANON Printer contact, CANON Printer tech
support phone number, CANON Printer technical Support chat, CANON Printer
customer support number, CANON Printer customer care number, contact CANON
Printer technical Support, CANON Printer help, CANON Printer phone, CANON
Printer technical Support phone number, CANON Printer customer support phone
number, CANON Printer tech support, CANON Printer phone support, CANON Printer
technical support phone number, CANON Printer laptop support number, hewlett
packard Printer technical Support, CANON Printer helpline, CANON Printer
telephone support, CANON Printer online support, CANON Printer technical
Support contact, CANON Printer chat support, hewlett packard phone number,
CANON Printer customer service, CANON Printer tech support number, CANON
Printer product support, hewlett packard customer service phone number, CANON
Printer computer support number, CANON Printer technical Support contact
number, CANON Printer technical Support printer, CANON Printer computer
support, CANON Printer tech support chat, CANON Printer helpline number, CANON
Printer laptop support, hewlett packard tech support, CANON Printer online
chat, hewlett packard technical support, CANON Printer help line, phone number
for CANON Printer technical Support, hewlett packard support phone number,
CANON Printer technical support, hewlett packard customer service number, CANON
Printer service number, hewlett packard helpline, CANON Printer customer care
no, CANON Printer customer service number, CANON Printer help number, CANON
Printer customer service phone number, CANON Printer 1800 number, CANON Printer
technical Support phone, CANON Printer technical Support line, hewlett packard
contact number, CANON Printer tech support phone number, CANON Printer customer
support phone number, CANON printer help, call CANON Printer technical Support,
##CANON Printer technical Support## chat, hewlett packard support number,
hewlett packard tech support number, CANON Printer technical Support telephone
number, hewlett packard tech support phone number, call CANON Printer, CANON
Printer contact support, hewlett packard technical support phone number, CANON
Printer technical Support centre, hewlett packard customer support, CANON
Printer desktop support, CANON Printer laptop customer service, contact CANON
Printer technical Support, CANON Printer pc support, CANON Printer laptop
customer care number, CANON Printer technical Support for printer, CANON
Printer customer care, CANON Printer customer care phone number, hewlett
packard help, phone number for CANON Printer, CANON Printer online help, CANON
Printer laptop customer care, CANON Printer helpline phone number, CANON
Printer customer support, CANON Printer technical support chat, CANON Printer
computer help, CANON Printer technical Support numbers, CANON Printer technical
support contact number, CANON Printer telephone number, CANON Printer technical
support phone number, CANON Printer helpline, CANON Printer technical Support
printer, CANON Printer technical Support online, CANON Printer contact number,
CANON Printer help phone number, CANON Printer customer care number, contact
hewlett packard by phone, CANON Printer phone support, hewlett packard printer
support, CANON Printer tech support phone, CANON Printer technical help, CANON
Printer laptop tech support number, contact CANON Printer by phone, CANON
Printer technical Support call, CANON Printer computers support, hewlett
packard customer service telephone number, phone number for hewlett packard,
CANON Printer online support chat, CANON Printer laptop customer service
number, CANON Printer online chat support, CANON printer customer service,
hewlett packard customer service phone, CANON Printer laptop tech support,
CANON Printer service phone number, hewlett packard printer help, phone number
for CANON printer, CANON Printer troubleshooting phone number, CANON Printer
800 number, hewlett packard technical support number, contact CANON Printer
technical Support phone, phone number for CANON Printer technical Support,
CANON Printer customer support chat, CANON Printer help and support number,
contact hewlett packard, CANON Printer laptop support phone number, CANON
printer customer service phone number, CANON Printer laptop customer service
phone number, CANON Printer computer support phone number, CANON Printer
pavilion support, CANON Printer computer customer service, CANON Printer
customer services, hewlett packard telephone number, CANON Printer helpline no,
CANON Printer help desk number, contact CANON Printer technical Support phone
number, hewlett packard contact, CANON Printer phone numbers, CANON printer
customer care number, CANON Printer help and support, contact CANON Printer
technical support, CANON Printer contact numbers, contact CANON Printer
technical Support chat, call CANON Printer tech support, CANON Printer customer
service phone, CANON Printer help support, CANON Printer computer tech support,
CANON Printer assistance phone number, CANON Printer customer service telephone
number, hewlett packard Printer technical Support phone number, CANON Printer
contact support number, CANON Printer technical Support center phone number,
CANON Printer technical Support phone numbers, tech support for CANON Printer,
CANON Printer it support, CANON Printer laptop helpline, CANON Printer
technical, CANON Printer laptop technical support number, CANON printer tech
support phone number, CANON printer support phone number, hewlett packard help
desk phone number, CANON Printer computer tech support phone number, CANON
Printer customer service number for laptop, CANON Printer helpline number,
contact CANON Printer technical Support by phone, hewlett packard support
center, CANON Printer laptop customer care no, CANON Printer technical Support
telephone number, CANON Printer technical Support services, CANON Printer
customer service number for printer, CANON Printer product support number,
CANON Printer laptop tech support phone number, CANON Printer helpline phone
number, contact CANON Printer customer support, hewlett packard customer
support phone number, CANON printer technical support, CANON Printer customer
care center, support for CANON printer, CANON Printer technical Support center,
phone number for CANON Printer tech support, CANON Printer desktop customer
care number, CANON Printer laptops support, CANON Printer online support, CANON
Printer phone number, hewlett packard printer support phone number, technical
support for CANON printer phone number, CANON Printer help center phone number,
contact CANON Printer tech support, call CANON Printer technical Support, CANON
printer customer support, CANON Printer computer customer service number, CANON
printer helpline, CANON Printer customer care contact number, CANON Printer
laptop help, CANON Printer computer customer service phone number, phone number
for hewlett packard customer service, hewlett packard 800 number, CANON Printer
help phone number, CANON printer help phone number, CANON Printer phone number
for customer service, CANON Printer computer technical support phone number,
customer service CANON Printer, CANON Printer technical Support technical
support number, contact number for CANON Printer, CANON Printer computers
support phone number, CANON printer support number, CANON Printer technical
support number, contact CANON Printer tech support by phone, CANON Printer
computer customer care number, CANON Printer 800 number, call CANON Printer
customer service, CANON Printer help center, CANON Printer computers customer
service, CANON Printer help desk, hewlett packard computer support, CANON
printer technical support number, CANON Printer help desk phone number, CANON
Printer technical Support phone, CANON Printer contact help, contact CANON
Printer laptop support, CANON Printer customer service contact number, support
for CANON Printer, CANON Printer customer care no, CANON Printer computer phone
number, CANON Printer tech help, CANON Printer pc support number, CANON Printer
laptop customer support, CANON Printer desktop support number, support CANON
Printer, CANON Printer technical Support hours, number for CANON Printer
technical Support, CANON Printer technical Support customer service number,
CANON Printer contact phone number, customer service number for CANON printer,
CANON Printer computers help, CANON Printer tech support contact number, CANON
Printer phone support number.... CANON Printer technical Support number CANON
Printer customer service number CANON Printer customer support number CANON
Printer customer care number CANON Printer help number CANON Printer helpline
number CANON Printer contact number CANON Printer toll free number CANON
Printer troubleshooting phone number CANON Printer technical Support canada
CANON Printer customer service canada CANON Printer help canada CANON Printer
phone number canda CANON Printer phone Support canda CANON Printer not printing
CANON Printer not respoding CANON Printer problems with windows 7-8-10 CANON
Printer problems with mac CANON Printer deskjet Printer technical Support
number CANON Printer deskjet printer help number CANON Printer laserjet Printer
technical Support number CANON Printer laserjet printer help number CANON
Printer wireless setup number CANON Printer wireless setup number CANON Printer
wifi problem CANON Printer wifi not working
SHARE “+++>>>1-800-790-9186 CANON PRINTER TECH SUPPORT PHONE NUMBER,CANON
PRINTER HELPLINE NUMBER USA...FLORIDA” ON FACEBOOK
SHARE “+++>>>1-800-790-9186 CANON PRINTER TECH SUPPORT PHONE NUMBER,CANON
PRINTER HELPLINE NUMBER USA...FLORIDA” ON TWITTER
SHARE “+++>>>1-800-790-9186 CANON PRINTER TECH SUPPORT PHONE NUMBER,CANON
PRINTER HELPLINE NUMBER USA...FLORIDA” ON PINTEREST
SHARE “+++>>>1-800-790-9186 CANON PRINTER TECH SUPPORT PHONE NUMBER,CANON
PRINTER HELPLINE NUMBER USA...FLORIDA” ON GOOGLE+
EMAIL “+++>>>1-800-790-9186 CANON PRINTER TECH SUPPORT PHONE NUMBER,CANON
PRINTER HELPLINE NUMBER USA...FLORIDA”
>From gcc-bugs-return-534171-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 13:44:02 2016
Return-Path: <gcc-bugs-return-534171-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 28121 invoked by alias); 11 Aug 2016 13:44:01 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 24562 invoked by uid 89); 11 Aug 2016 13:43:52 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 13:43:52 +0000
From: "Forneonand33 at armyspy dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug debug/73789] New: ``ANTIVIRUSSUPPORTCALL@@1.888.52.73401 !!NORTON 360 ANTIVIRUS SUPPORT PHONE NUMBER.USA.CANADA
Date: Thu, 11 Aug 2016 13:44:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: debug
X-Bugzilla-Version: 4.8.3
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: Forneonand33 at armyspy dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73789-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01507.txt.bz2
Content-length: 12610

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73789

            Bug ID: 73789
           Summary: ``ANTIVIRUSSUPPORTCALL@@1.888.52.73401 !!NORTON 360
                    ANTIVIRUS SUPPORT PHONE NUMBER.USA.CANADA
           Product: gcc
           Version: 4.8.3
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: debug
          Assignee: unassigned at gcc dot gnu.org
          Reporter: Forneonand33 at armyspy dot com
  Target Milestone: ---

AVG helpline phone number@~1-888-527-3401 AVG tech Support Number AVG antivirus
customer service phone number

AVG helpline phone number@~1-888-527-3401 AVG tech Support Number AVG antivirus
customer service phone number
AVG HelpLiNe @+1-888-527-3401 AVG support phone number

AVG helpline phone number@~1-888-527-3401 AVG tech Support Number AVG antivirus
customer service phone number

+1-888-527-3401) Technical support number
+1-888-527-3401 AVG Antivirus Technical Support
+1-888-527-3401 contact AVG antivirus customer service phone number
+1-888-527-3401 phone number for AVG customer service
+1-888-527-3401 phone number for AVG antivirus technical support
+1-888-527-3401 phone number for AVG antivirus customer service
phone number for AVG antivirus technical support
phone number for AVG security
AVG antivirus customer care phone number
AVG antivirus customer service billing
AVG antivirus customer service email address
AVG antivirus customer service live chat
AVG antivirus customer service telephone number
AVG antivirus customer support usa phone number
AVG antivirus help desk support phone number free in usa
AVG antivirus phone number customer service us
AVG antivirus phone number support
AVG antivirus support phone number
AVG antivirus tech support phone number free in usa
AVG antivirus tech support phone number
AVG antivirus technical support customer service
AVG antivirus technical support number
AVG antivirus telephone number
AVG antivirus toll free customer care number
AVG antivirus toll free number in usa
AVG antivirus contact phone number in usa
AVG antivirus customer service number
AVG antivirus customer service phone number
AVG antivirus customer service telephone number
AVG antivirus customer support number
AVG antivirus customer support phone number
AVG antivirus customer support phone number
AVG antivirus help desk phone number in usa
AVG antivirus phone number
AVG antivirus phone number support for technical issue in usa
AVG antivirus support phone number
AVG antivirus technical support help desk phone number
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG customer service number
AVG customer service telephone number
AVG customer services email
AVG customer support email address
AVG customer support number
AVG customer support phone number
AVG customer service phone number
AVG internet security contact phone number
AVG internet security customer service phone number
AVG internet security phone number
AVG internet security help phone number
AVG internet security phone number in usa
AVG internet security support phone number
AVG internet security technical support
AVG phone number customer service
AVG phone numbers customer support
AVG phone support number
AVG security contact phone number
AVG security phone number customer service
AVG security support phone number
AVG support contact number
AVG support email address
AVG support phone number
AVG support telephone number
AVG support telephone number usa
AVG support telephone number
AVG tech support number
AVG tech support phone number
AVG tech support phone number free
AVG technical support phone number
AVG technical support cutomer phone number
AVG technical support phone number
AVG technical support number free in usa
AVG technical support number toll free number
AVG technical support phone number
AVG technologies phone number
AVG telephone support number
AVG antivirus customer support phone number
AVG antivirus customer service phone number
AVG customer support phone number
AVG phone number customer service
AVG technical support telephone number
contact AVG antivirus customer service phone number
customer service number for AVG antivirus
phone number for AVG antivirus
phone number for AVG antivirus customer service
phone number for AVG antivirus support
phone number for AVG customer service
phone number for AVG customer service
phone number for AVG customer support
phone number for AVG tech support
phone number AVG antivirus customer service
AVG antivirus customer service number
AVG antivirus customer service phone
AVG antivirus customer service phone number
AVG antivirus customer service phone number us
AVG antivirus customer service telephone number
AVG antivirus customer support
AVG antivirus customer support number
AVG antivirus phone number customer service us
AVG antivirus phone number support
AVG antivirus phone support
AVG antivirus phone support number
AVG antivirus support phone number
AVG antivirus tech support phone number
AVG antivirus technical support
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG customer service phone number
AVG customer support phone number
AVG helpline phone number
AVG internet security customer service
AVG internet security customer service phone number
AVG internet security help phone number
AVG internet security phone number customer service
AVG phone number customer service
AVG phone number customer support
AVG security customer service phone number
AVG security phone number customer service
AVG support phone number
AVG support telephone number
AVG tech support number
AVG tech support phone number
AVG technical support
AVG technical support number
AVG technical support phone number
AVG antivirus customer support phone number
AVG antivirus phone number customer service
AVG antivirus tech support number
AVG customer service phone number
AVG customer service phone numbers
AVG internet security technical support
AVG tech support phone number us
AVG technical support telephone number
contact AVG antivirus
contact AVG by phone
contact AVG customer service
contact AVG antivirus customer service phone number
contactAVG antivirus tech support usa
customer service AVG phone number
download AVG titanium
dri AVG customer service number
dri AVG customer service phone number
dri AVG phone number
how to contact AVG by email
how to delete AVG from mac
micro trend customer service
norton antivirus customer service number
phone number for AVG customer service
phone number forAVG customer service
phone number forAVG customer support
phone number forAVG tech support
phone number forAVG technical support
phone number for AVG antivirus technical support
phone number for AVG security
phone number for AVG support
phone number for AVG technical support
phone number for AVG antivirus customer service
phone number for AVG customer service
remove AVG from mac
technical support for antivirus AVG
telephone number forAVG technical support
telephone AVG antivirus
AVG antivirus contact number
AVG antivirus customer care
AVG antivirus customer care number
AVG antivirus customer care number usa
AVG antivirus customer service
AVG antivirus customer service number :idea: :evil: :D :) :lol: :( :o :shock:
AVG antivirus customer service phone number
AVG antivirus customer service phone number usa
AVG antivirus customer service telephone number
AVG antivirus customer support
AVG antivirus customer support in usa
AVG antivirus customer support number
AVG antivirus customer support phone number
AVG antivirus for phone
AVG antivirus free antivirus support
AVG antivirus help phone number
AVG antivirus helpline number
AVG antivirus online support
AVG antivirus phone
AVG antivirus phone number
AVG antivirus phone number in usa
AVG antivirus phone number usa
AVG antivirus phone support
AVG antivirus plus tech support
AVG antivirus protection
AVG antivirus support
AVG antivirus support number
AVG antivirus support phone number
AVG antivirus support services
AVG antivirus support telephone number
AVG antivirus tech support
AVG antivirus tech support phone number free in usa
AVG antivirus tech support number
AVG antivirus tech support phone number
AVG antivirus technical support
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG antivirus toll free customer care number
AVG antivirus toll free number
AVG antivirus contact phone number in usa
AVG antivirus help desk phone number in usa
AVG antivirus phone number support for technical issue in usa
AVG antivirus support phone number
AVG antivirus technical support help desk phone number
AVG antivirus technical support phone number
AVG contact number
AVG contact number usa
AVG contact phone number
AVG contact support
AVG contact number usa
AVG contact phone number
AVG contact phone number usa
AVG customer & technical support
AVG customer care
AVG customer care center
AVG customer care email
AVG customer care number
AVG customer care number
AVG customer care number usa
AVG customer care number usa toll free
AVG customer care phone number usa
AVG customer care tchnical support
AVG customer care toll free
AVG customer care toll free number
AVG customer care usa
AVG customer help
AVG customer number
AVG customer portal*********
AVG customer service
AVG customer service billing
AVG customer service email address
AVG customer service number
AVG customer service phone
AVG customer service phone number
AVG customer service phone number us
AVG customer service phone number usa
AVG customer service reviews
AVG customer service telephone number
AVG customer service usa
AVG customer support
AVG customer support number
AVG customer support phone
AVG customer support phone number
AVG customer service number
AVG customer service number usa
AVG customer service phone number
AVG customer support number
AVG customer support phone number
AVG free phone support
AVG gold support phone number
AVG help desk phone number
AVG help phone number
AVG helpline
AVG helpline phone number
AVG hotline customer service phone number
AVG internet security customer service
AVG internet security phone number
AVG internet security phone number in usa
AVG lab usa customer service
AVG labs usa customer serviceAVG
AVG phone number
AVG phone number customer service
AVG phone number support
AVG phone number tech support
AVG phone number technical support
AVG phone numbers customer support
AVG phone support
AVG phone support number
AVG phone number customer service
AVG phone number support
AVG phone number tech support
AVG phone number usa
AVG security contact phone number
AVG security phone number
AVG security support phone number
AVG software customer service
AVG software customer service number
AVG support center###########
AVG support contact number
AVG support email address
AVG support phone number
AVG support telephone number
AVG support number usa
AVG support phone number
AVG support phone number usa
AVG tech support
AVG tech support center
AVG tech support contact
AVG tech support number
AVG tech support number usa
AVG tech support phone
AVG tech support phone number
AVG tech support phone number free
AVG tech support number
AVG tech support number usa
AVG tech support phone number
AVG technical support
AVG technical support number
AVG technical support phone number
AVG technical support phone number usa
AVG technical support reviews
AVG technical support usa
AVG technical support phone number
AVG technical support number
AVG technical support number toll free number
AVG technical support number usa
AVG technical support phone number
AVG technical support phone number usa
AVG technologies phone number
AVG telephone number
AVG telephone support number
AVG toll free number
AVG toll free number usa
AVG usa customer care for tech support
AVG usa customer service
AVG usa phone number/////////////
AVG antivirus customer service phone number
AVG antivirus customer service phone number
AVG antivirus customer support phone number
AVG antivirus customer support phone number
AVG antivirus technical support number
AVG customer service phone number usa
AVG internet security support phone number
AVG.com customer service
AVG antivirus antispyware 2011
AVG antivirus customer support
AVG antivirus serial key
AVG antivirus serial number
AVG antivirus support
AVG antivirus technical support
AVG business support*************
AVG contact support
AVG customer care number
AVG customer service 844
AVG customer service number
AVG customer service phone number
AVG customer service telephone number
AVG customer support
>From gcc-bugs-return-534172-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 13:45:46 2016
Return-Path: <gcc-bugs-return-534172-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 44536 invoked by alias); 11 Aug 2016 13:45:45 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 44392 invoked by uid 48); 11 Aug 2016 13:45:33 -0000
From: "Anyted1985 at einrot dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug boehm-gc/73792] New: Call Helpline 1 800 445 2790 WEBROOT tech support phone number ...
Date: Thu, 11 Aug 2016 13:45:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: boehm-gc
X-Bugzilla-Version: c++-concepts
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: Anyted1985 at einrot dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73792-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01508.txt.bz2
Content-length: 14558

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73792

            Bug ID: 73792
           Summary: Call Helpline 1 800 445 2790 WEBROOT tech support
                    phone number ...
           Product: gcc
           Version: c++-concepts
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: boehm-gc
          Assignee: unassigned at gcc dot gnu.org
          Reporter: Anyted1985 at einrot dot com
  Target Milestone: ---

Help$$$$$$$$ Desk Wifi Webroot Antivirus Tech Support Number
$$$1-800-445-2790$$(KENTUCKY)$$ Webroot Antivirus Customer Service Number USA

usa+1-800-445-2790) Technical support number
CANADA+1800-445-2790 Webroot Antivirus Technical Support
USA-1800-445-2790contact Webroot antivirus customer service phone number
AUS-1-800-445-2790 phone number for Webroot customer service
UK-1800-445-2790 phone number for Webroot antivirus technical support
1-800-445-2790 phone number for Webroot antivirus customer service
phone number for Webroot antivirus technical support
phone number for Webroot security
Webroot antivirus customer care phone number
Webroot antivirus customer service billing
Webroot antivirus customer service email address
Webroot antivirus customer service live chat
Webroot antivirus customer service telephone number
Webroot antivirus customer support usa phone number
Webroot antivirus help desk support phone number free in usa
Webroot antivirus phone number customer service us
Webroot antivirus phone number support
Webroot antivirus support phone number
Webroot antivirus tech support phone number free in usa
Webroot antivirus tech support phone number
Webroot antivirus technical support customer service
Webroot antivirus technical support number
Webroot antivirus telephone number
Webroot antivirus toll free customer care number
Webroot antivirus toll free number in usa
Webroot antivirus contact phone number in usa
Webroot antivirus customer service number
Webroot antivirus customer service phone number
Webroot antivirus customer service telephone number
Webroot antivirus customer support number
Webroot antivirus customer support phone number
Webroot antivirus customer support phone number
Webroot antivirus help desk phone number in usa
Webroot antivirus phone number
Webroot antivirus phone number support for technical issue in usa
Webroot antivirus support phone number
Webroot antivirus technical support help desk phone number
Webroot antivirus technical support number
Webroot antivirus technical support phone number
Webroot customer service number
Webroot customer service telephone number
Webroot customer services email
Webroot customer support email address
Webroot customer support number
Webroot customer support phone number
Webroot customer service phone number
Webroot internet security contact phone number
Webroot internet security customer service phone number
Webroot internet security phone number
Webroot internet security help phone number
Webroot internet security phone number in usa
Webroot internet security support phone number
Webroot internet security technical support
Webroot phone number customer service
Webroot phone numbers customer support
Webroot phone support number
Webroot security contact phone number
Webroot security phone number customer service
Webroot security support phone number
Webroot support contact number
Webroot support email address
Webroot support phone number
Webroot support telephone number
Webroot support telephone number usa
Webroot support telephone number
Webroot tech support number
Webroot tech support phone number
Webroot tech support phone number free
Webroot technical support phone number
Webroot technical support cutomer phone number
Webroot technical support phone number
Webroot technical support number free in usa
Webroot technical support number toll free number
Webroot technical support phone number
Webroot technologies phone number
Webroot telephone support number
Webroot antivirus customer support phone number
Webroot antivirus customer service phone number
Webroot customer support phone number
Webroot phone number customer service
Webroot technical support telephone number
contact Webroot antivirus customer service phone number
customer service number for Webroot antivirus
phone number for Webroot antivirus
phone number for Webroot antivirus customer service
phone number for Webroot antivirus support
phone number for Webroot customer service
phone number for Webroot customer service
phone number for Webroot customer support
phone number for Webroot tech support
phone number Webroot antivirus customer service
Webroot antivirus customer service number
Webroot antivirus customer service phone
Webroot antivirus customer service phone number
Webroot antivirus customer service phone number us
Webroot antivirus customer service telephone number
Webroot antivirus customer support
Webroot antivirus customer support number
Webroot antivirus phone number customer service us
Webroot antivirus phone number support
Webroot antivirus phone support
Webroot antivirus phone support number
Webroot antivirus support phone number
Webroot antivirus tech support phone number
Webroot antivirus technical support
Webroot antivirus technical support number
Webroot antivirus technical support phone number
Webroot customer service phone number
Webroot customer support phone number
Webroot helpline phone number
Webroot internet security customer service
Webroot internet security customer service phone number
Webroot internet security help phone number
Webroot internet security phone number customer service
Webroot phone number customer service
Webroot phone number customer support
Webroot security customer service phone number
Webroot security phone number customer service
Webroot support phone number
Webroot support telephone number
Webroot tech support number
Webroot tech support phone number
Webroot technical support
Webroot technical support number
Webroot technical support phone number
Webroot antivirus customer support phone number
Webroot antivirus phone number customer service
Webroot antivirus tech support number
Webroot customer service phone number
Webroot customer service phone numbers
Webroot internet security technical support
Webroot tech support phone number us
Webroot technical support telephone number
contact Webroot antivirus
contact Webroot by phone
contact Webroot customer service
contact Webroot antivirus customer service phone number
contactWebroot antivirus tech support usa
customer service Webroot phone number
download Webroot titanium
dri Webroot customer service number
dri Webroot customer service phone number
dri Webroot phone number
how to contact Webroot by email
how to delete Webroot from mac
micro trend customer service
Webroot antivirus customer service number
phone number for Webroot customer service
phone number forWebroot customer service
phone number forWebroot customer support
phone number forWebroot tech support
phone number forWebroot technical support
phone number for Webroot antivirus technical support
phone number for Webroot security
phone number for Webroot support
phone number for Webroot technical support
phone number for Webroot antivirus customer service
phone number for Webroot customer service
remove Webroot from mac
technical support for antivirus Webroot
telephone number forWebroot technical support
telephone Webroot antivirus
Webroot antivirus contact number
Webroot antivirus customer care
Webroot antivirus customer care number
Webroot antivirus customer care number usa
Webroot antivirus customer service
Webroot antivirus customer service number :idea: :evil: :D :) :lol: :( :o
:shock:
Webroot antivirus customer service phone number
Webroot antivirus customer service phone number usa
Webroot antivirus customer service telephone number
Webroot antivirus customer support
Webroot antivirus customer support in usa
Webroot antivirus customer support number
Webroot antivirus customer support phone number
Webroot antivirus for phone
Webroot antivirus free antivirus support
Webroot antivirus help phone number
Webroot antivirus helpline number
Webroot antivirus online support
Webroot antivirus phone
Webroot antivirus phone number
Webroot antivirus phone number in usa
Webroot antivirus phone number usa
Webroot antivirus phone support
Webroot antivirus plus tech support
Webroot antivirus protection
Webroot antivirus support
Webroot antivirus support number
Webroot antivirus support phone number
Webroot antivirus support services
Webroot antivirus support telephone number
Webroot antivirus tech support
Webroot antivirus tech support phone number free in usa
Webroot antivirus tech support number
Webroot antivirus tech support phone number
Webroot antivirus technical support
Webroot antivirus technical support number
Webroot antivirus technical support phone number
Webroot antivirus toll free customer care number
Webroot antivirus toll free number
Webroot antivirus contact phone number in usa
Webroot antivirus help desk phone number in usa
Webroot antivirus phone number support for technical issue in usa
Webroot antivirus support phone number
Webroot antivirus technical support help desk phone number
Webroot antivirus technical support phone number
Webroot contact number
Webroot contact number usa
Webroot contact phone number
Webroot contact support
Webroot contact number usa
Webroot contact phone number
Webroot contact phone number usa
Webroot customer & technical support
Webroot customer care
Webroot customer care center
Webroot customer care email
Webroot customer care number
Webroot customer care number
Webroot customer care number usa
Webroot customer care number usa toll free
Webroot customer care phone number usa
Webroot customer care tchnical support
Webroot customer care toll free
Webroot customer care toll free number
Webroot customer care usa
Webroot customer help
Webroot customer number
Webroot customer portal
Webroot customer service
Webroot customer service billing
Webroot customer service email address
Webroot customer service number
Webroot customer service phone
Webroot customer service phone number
Webroot customer service phone number us
Webroot customer service phone number usa
Webroot customer service reviews
Webroot customer service telephone number
Webroot customer service usa
Webroot customer support
Webroot customer support number
Webroot customer support phone
Webroot customer support phone number
Webroot customer service number
Webroot customer service number usa
Webroot customer service phone number
Webroot customer support number
Webroot customer support phone number
Webroot free phone support
Webroot gold support phone number
Webroot help desk phone number
Webroot help phone number
Webroot helpline
Webroot helpline phone number
Webroot hotline customer service phone number
Webroot internet security customer service
Webroot internet security phone number
Webroot internet security phone number in usa
Webroot lab usa customer service
Webroot labs usa customer serviceWebroot
Webroot phone number
Webroot phone number customer service
Webroot phone number support
Webroot phone number tech support
Webroot phone number technical support
Webroot phone numbers customer support
Webroot phone support
Webroot phone support number
Webroot phone number customer service
Webroot phone number support
Webroot phone number tech support
Webroot phone number usa
Webroot security contact phone number
Webroot security phone number
Webroot security support phone number
Webroot software customer service
Webroot software customer service number
Webroot support center
Webroot support contact number
Webroot support email address
Webroot support phone number
Webroot support telephone number
Webroot support number usa
Webroot support phone number
Webroot support phone number usa
Webroot tech support
Webroot tech support center
Webroot tech support contact
Webroot tech support number
Webroot tech support number usa
Webroot tech support phone
Webroot tech support phone number
Webroot tech support phone number free
Webroot tech support number
Webroot tech support number usa
Webroot tech support phone number
Webroot technical support
Webroot technical support number
Webroot technical support phone number
Webroot technical support phone number usa
Webroot technical support reviews
Webroot technical support usa
Webroot technical support phone number
Webroot technical support number
Webroot technical support number toll free number
Webroot technical support number usa
Webroot technical support phone number
Webroot technical support phone number usa
Webroot technologies phone number
Webroot telephone number
Webroot telephone support number
Webroot toll free number
Webroot toll free number usa
Webroot usa customer care for tech support
Webroot usa customer service
Webroot usa phone number
Webroot antivirus customer service phone number
Webroot antivirus customer service phone number
Webroot antivirus customer support phone number
Webroot antivirus customer support phone number
Webroot antivirus technical support number
Webroot customer service phone number usa
Webroot internet security support phone number
Webroot.com customer service
Webroot antivirus antispyware 2011
Webroot antivirus customer support
Webroot antivirus serial key
Webroot antivirus serial number
Webroot antivirus support
Webroot antivirus technical support
Webroot business support
Webroot contact support
Webroot customer care number
Webroot customer service 800
Webroot customer service number
Webroot customer service phone number
Webroot customer service telephone number 18004452790
Webroot customer support
Webroot grentry non payment
Webroot helpline support number
Webroot internet security customer service
Webroot internet security technical support
Webroot oem customer service
Webroot pc cillin technical support
Webroot phone support
Webroot removal tool download
Webroot subscription renewal
Webroot support contact
Webroot support hotline
Webroot support phone number
Webroot tech support phone number18004452790
Webroot technical support
Webroot technical support chat
Webroot technical support phone number
Webroot technical support phone number usa  1800-445-2790
Webroot telephone number
Webroot titanium antivirus
Webroot titanium internet security
Webroot titanium maximum
Webroot titanium maximum security
Webroot titanium problems
Webroot titanium removal tool
Webroot titanium reviews
Webroot titanium support
Webroot virus removal service
uninstall Webroot smart surfing for mac
>From gcc-bugs-return-534173-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 13:53:00 2016
Return-Path: <gcc-bugs-return-534173-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 90453 invoked by alias); 11 Aug 2016 13:52:59 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 89228 invoked by uid 89); 11 Aug 2016 13:52:47 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 13:52:47 +0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/48361] gcov freezes when using --all-blocks (-a) flag.
Date: Thu, 11 Aug 2016 13:52:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 4.3.3
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cc
Message-ID: <bug-48361-4-g5OX9iWFT2@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-48361-4@http.gcc.gnu.org/bugzilla/>
References: <bug-48361-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01509.txt.bz2
Content-length: 1153

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=48361

Martin Liška <marxin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |WAITING
                 CC|                            |marxin at gcc dot gnu.org

--- Comment #6 from Martin Liška <marxin at gcc dot gnu.org> ---
I've just tried to reproduce it with current trunk, but I see an invalid read:

==12454== Invalid read of size 1
==12454==    at 0x4C304F2: strlen (in
/usr/lib64/valgrind/vgpreload_memcheck-amd64-linux.so)
==12454==    by 0x45833D: xstrdup (xstrdup.c:33)
==12454==    by 0x403072: read_graph_file (gcov.c:1383)
==12454==    by 0x403072: process_file (gcov.c:894)
==12454==    by 0x403072: main (gcov.c:631)
==12454==  Address 0x0 is not stack'd, malloc'd or (recently) free'd

I guess it's somehow connected to fact the x.gcna and x.gcda files have a
different layout. Can you please provide a source file which can be used to
reproduce the problem?
>From gcc-bugs-return-534174-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 13:55:10 2016
Return-Path: <gcc-bugs-return-534174-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 123455 invoked by alias); 11 Aug 2016 13:55:10 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 122886 invoked by uid 89); 11 Aug 2016 13:54:58 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 13:54:58 +0000
From: "roy666bhavna at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: =?UTF-8?B?W0J1ZyBwbHVnaW5zLzczODE4XSBOZXc6IFNreXBlIDEtODg4LTY0OS04NjM4?= =?UTF-8?B?U3VwcG9ydCBDYWxsQEAgVVPCoFRvbGzCoEZyZWXCoCAxLTg4OC02NDktODYz?= =?UTF-8?B?OCBTS1lQRcKgVGVjaG5pY2FsIFN1cHBvcnQgTnVtYmVy?Date: Thu, 11 Aug 2016 13:55:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: plugins
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: roy666bhavna at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-73818-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01510.txt.bz2
Content-length: 5191

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73818

            Bug ID: 73818
           Summary: Skype 1-888-649-8638Support Call@@ US Toll Free
                    1-888-649-8638 SKYPE Technical Support Number
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: plugins
          Assignee: unassigned at gcc dot gnu.org
          Reporter: roy666bhavna at gmail dot com
  Target Milestone: ---

Created attachment 39199
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39199&action=edit
Skype help 1.888.649.8638 tech support number

@@Call, +1-888-649-8638 for all type help by SKYPE tech support phone number,
Intuit SKYPE Tech Support Phone Number, SKYPE Help Desk Phone Number, SKYPE
tech support number, SKYPE technical support phone number, @@@ SKYPE phone
number, SKYPE technical support number, SKYPE support phone number, SKYPE
technical support, SKYPE Customer Service Phone Number, SKYPE Customer Service
Number, SKYPE Customer Support Phone Number, SKYPE Customer Support Number,
@@1-888-649-8638@@ SKYPE Customer Service Helpline Number, SKYPE Customer Care
Number, SKYPE support team phone number, @@1-888-649-8638@@SKYPE help
number-SKYPE Helpline Number; SKYPE help phone number-SKYPE Helpline Number,
SKYPE Tech Support Toll free Number, SKYPE Support Telephone Number, SKYPE Tech
Support Telephone number, SKYPE Tech Support contact number, SKYPE support
contact number, SKYPE technical support contact number. Call, +1-888-649-8638
SKYPE tech support phone number, Intuit SKYPE Tech Support Phone Number, SKYPE
Help Desk Phone Number, SKYPE tech support number, SKYPE technical support
phone number, SKYPE phone number, SKYPE technical support number, SKYPE support
phone number. It is very popular toll free number which provide by SKYPE
technical support, SKYPE Customer Service Phone Number, SKYPE Customer Service
Number, SKYPE Customer Support Phone Number, SKYPE Customer Support Number,
SKYPE Customer Service Helpline Number, SKYPE Customer Care Number, SKYPE
support team phone number. Call, SKYPE tech support phone number, Intuit SKYPE
Tech Support Phone Number, SKYPE Help Desk Phone Number, SKYPE tech support
number, SKYPE technical support phone number, SKYPE phone number, SKYPE
technical support number, SKYPE support phone number, SKYPE technical support,
SKYPE Customer Service Phone Number, SKYPE Customer Service Number, SKYPE
Customer Support Phone Number, SKYPE Customer Support Number, SKYPE Customer
Service Helpline Number, SKYPE Customer Care Number, SKYPE support team phone
number, #SKYPE Tech Support Phone +1-888-649-8638 Number SKYPE customer support
number
SKYPE 1-888-649-8638 technical support
SKYPE support phone number
SKYPE tech support toll free number in usa
SKYPE tech support phone number
SKYPE tech support phone number free
SKYPE technical support phone number
SKYPE technologies phone number
SKYPE telephone support number
SKYPE support contact number
SKYPE 1-888-649-8638 customer support phone number
SKYPE 1-888-649-8638 problems
SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 technical support
 SKYPE 1-888-649-8638 toll free number
 SKYPE com customer service phone number
SKYPE contact phone number
SKYPE contact telephone number
SKYPE customer service contact number
SKYPE customer service email
SKYPE customer service phone number
SKYPE customer service telephone number
SKYPE customer services email
SKYPE customer support email address
SKYPE customer support number
SKYPE customer support phone number
SKYPE 1-888-649-8638 tech support assistant
SKYPE support assistant
SKYPE tech support
+SKYPE 1-888-649-8638 +online +support
+SBCGLOBAL+support+number
+SBCGLOBAL+online+support
SKYPE 1-888-649-8638 number technical support
SKYPE 1-888-649-8638 service number
SKYPE 1-888-649-8638 support contact phone number
SKYPE 1-888-649-8638 telephone support number
telephone number SKYPE 1-888-649-8638
customer service number SKYPE 1-888-649-8638
compaq SKYPE 1-888-649-8638 support
SKYPE 1-888-649-8638 compaq support
SKYPE 1-888-649-8638 customer service
SKYPE 1-888-649-8638 contact phone number
SKYPE 1-888-649-8638 customer phone number
SKYPE 1-888-649-8638 customer services number
SKYPE 1-888-649-8638 customer support telephone number
SKYPE 1-888-649-8638 support online
SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 service phone number
SKYPE 1-888-649-8638 support customer service number
SKYPE 1-888-649-8638 tech support phone numbers
SKYPE 1-888-649-8638 technical support contact number
SKYPE 1-888-649-8638 telephone number customer service
number SKYPE 1-888-649-8638 tech support
online SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 customer support
SKYPE 1-888-649-8638 customer service
SKYPE 1-888-649-8638 online support
SKYPE 1-888-649-8638 phone number customer support
SKYPE 1-888-649-8638 support telephone numbers
SKYPE 1-888-649-8638 technical support numbers
SKYPE 1-888-649-8638 usa support
telephone number SKYPE 1-888-649-8638 support
SKYPE 1-888-649-8638 support
SKYPE support
SKYPE 1-888-649-8638 tech support
>From gcc-bugs-return-534176-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 13:56:54 2016
Return-Path: <gcc-bugs-return-534176-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 1961 invoked by alias); 11 Aug 2016 13:56:54 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 126875 invoked by uid 89); 11 Aug 2016 13:56:41 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 13:56:41 +0000
From: "roy666bhavna at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: =?UTF-8?B?W0J1ZyBwbHVnaW5zLzczODIzXSBOZXc6IFNreXBlIDEtODg4LTY0OS04NjM4?= =?UTF-8?B?U3VwcG9ydCBDYWxsQEAgVVPCoFRvbGzCoEZyZWXCoCAxLTg4OC02NDktODYz?= =?UTF-8?B?OCBTS1lQRcKgwqBzdXBwb3J0IG51bWJlcg==?Date: Thu, 11 Aug 2016 13:56:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: plugins
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: roy666bhavna at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-73823-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01512.txt.bz2
Content-length: 5187

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73823

            Bug ID: 73823
           Summary: Skype 1-888-649-8638Support Call@@ US Toll Free
                    1-888-649-8638 SKYPE  support number
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: plugins
          Assignee: unassigned at gcc dot gnu.org
          Reporter: roy666bhavna at gmail dot com
  Target Milestone: ---

Created attachment 39201
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39201&action=edit
Skype help 1.888.649.8638 tech support number

@@Call, +1-888-649-8638 for all type help by SKYPE tech support phone number,
Intuit SKYPE Tech Support Phone Number, SKYPE Help Desk Phone Number, SKYPE
tech support number, SKYPE technical support phone number, @@@ SKYPE phone
number, SKYPE technical support number, SKYPE support phone number, SKYPE
technical support, SKYPE Customer Service Phone Number, SKYPE Customer Service
Number, SKYPE Customer Support Phone Number, SKYPE Customer Support Number,
@@1-888-649-8638@@ SKYPE Customer Service Helpline Number, SKYPE Customer Care
Number, SKYPE support team phone number, @@1-888-649-8638@@SKYPE help
number-SKYPE Helpline Number; SKYPE help phone number-SKYPE Helpline Number,
SKYPE Tech Support Toll free Number, SKYPE Support Telephone Number, SKYPE Tech
Support Telephone number, SKYPE Tech Support contact number, SKYPE support
contact number, SKYPE technical support contact number. Call, +1-888-649-8638
SKYPE tech support phone number, Intuit SKYPE Tech Support Phone Number, SKYPE
Help Desk Phone Number, SKYPE tech support number, SKYPE technical support
phone number, SKYPE phone number, SKYPE technical support number, SKYPE support
phone number. It is very popular toll free number which provide by SKYPE
technical support, SKYPE Customer Service Phone Number, SKYPE Customer Service
Number, SKYPE Customer Support Phone Number, SKYPE Customer Support Number,
SKYPE Customer Service Helpline Number, SKYPE Customer Care Number, SKYPE
support team phone number. Call, SKYPE tech support phone number, Intuit SKYPE
Tech Support Phone Number, SKYPE Help Desk Phone Number, SKYPE tech support
number, SKYPE technical support phone number, SKYPE phone number, SKYPE
technical support number, SKYPE support phone number, SKYPE technical support,
SKYPE Customer Service Phone Number, SKYPE Customer Service Number, SKYPE
Customer Support Phone Number, SKYPE Customer Support Number, SKYPE Customer
Service Helpline Number, SKYPE Customer Care Number, SKYPE support team phone
number, #SKYPE Tech Support Phone +1-888-649-8638 Number SKYPE customer support
number
SKYPE 1-888-649-8638 technical support
SKYPE support phone number
SKYPE tech support toll free number in usa
SKYPE tech support phone number
SKYPE tech support phone number free
SKYPE technical support phone number
SKYPE technologies phone number
SKYPE telephone support number
SKYPE support contact number
SKYPE 1-888-649-8638 customer support phone number
SKYPE 1-888-649-8638 problems
SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 technical support
 SKYPE 1-888-649-8638 toll free number
 SKYPE com customer service phone number
SKYPE contact phone number
SKYPE contact telephone number
SKYPE customer service contact number
SKYPE customer service email
SKYPE customer service phone number
SKYPE customer service telephone number
SKYPE customer services email
SKYPE customer support email address
SKYPE customer support number
SKYPE customer support phone number
SKYPE 1-888-649-8638 tech support assistant
SKYPE support assistant
SKYPE tech support
+SKYPE 1-888-649-8638 +online +support
+SBCGLOBAL+support+number
+SBCGLOBAL+online+support
SKYPE 1-888-649-8638 number technical support
SKYPE 1-888-649-8638 service number
SKYPE 1-888-649-8638 support contact phone number
SKYPE 1-888-649-8638 telephone support number
telephone number SKYPE 1-888-649-8638
customer service number SKYPE 1-888-649-8638
compaq SKYPE 1-888-649-8638 support
SKYPE 1-888-649-8638 compaq support
SKYPE 1-888-649-8638 customer service
SKYPE 1-888-649-8638 contact phone number
SKYPE 1-888-649-8638 customer phone number
SKYPE 1-888-649-8638 customer services number
SKYPE 1-888-649-8638 customer support telephone number
SKYPE 1-888-649-8638 support online
SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 service phone number
SKYPE 1-888-649-8638 support customer service number
SKYPE 1-888-649-8638 tech support phone numbers
SKYPE 1-888-649-8638 technical support contact number
SKYPE 1-888-649-8638 telephone number customer service
number SKYPE 1-888-649-8638 tech support
online SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 customer support
SKYPE 1-888-649-8638 customer service
SKYPE 1-888-649-8638 online support
SKYPE 1-888-649-8638 phone number customer support
SKYPE 1-888-649-8638 support telephone numbers
SKYPE 1-888-649-8638 technical support numbers
SKYPE 1-888-649-8638 usa support
telephone number SKYPE 1-888-649-8638 support
SKYPE 1-888-649-8638 support
SKYPE support
SKYPE 1-888-649-8638 tech support
>From gcc-bugs-return-534175-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 13:56:40 2016
Return-Path: <gcc-bugs-return-534175-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 126273 invoked by alias); 11 Aug 2016 13:56:40 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 125121 invoked by uid 89); 11 Aug 2016 13:56:27 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 13:56:27 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/72772] Missed SCEV after pass reordering@236440
Date: Thu, 11 Aug 2016 13:56:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-72772-4-Gg7janbHyk@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72772-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72772-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01511.txt.bz2
Content-length: 430

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72772

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #13 from Richard Biener <rguenth at gcc dot gnu.org> ---
Fixed.
>From gcc-bugs-return-534178-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 13:57:52 2016
Return-Path: <gcc-bugs-return-534178-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 36994 invoked by alias); 11 Aug 2016 13:57:51 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 36827 invoked by uid 89); 11 Aug 2016 13:57:42 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 13:57:42 +0000
From: "roy666bhavna at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: =?UTF-8?B?W0J1ZyBwbHVnaW5zLzczODI1XSBOZXc6IFNreXBlIDEtODg4LTY0OS04NjM4?= =?UTF-8?B?U3VwcG9ydCBDYWxsQEAgVVPCoFRvbGzCoEZyZWXCoCAxLTg4OC02NDktODYz?= =?UTF-8?B?OCBTS1lQRcKgdGVjaMKgc3VwcG9ydCBudW1iZXI=?Date: Thu, 11 Aug 2016 13:57:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: plugins
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: roy666bhavna at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-73825-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01514.txt.bz2
Content-length: 5191

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73825

            Bug ID: 73825
           Summary: Skype 1-888-649-8638Support Call@@ US Toll Free
                    1-888-649-8638 SKYPE tech support number
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: plugins
          Assignee: unassigned at gcc dot gnu.org
          Reporter: roy666bhavna at gmail dot com
  Target Milestone: ---

Created attachment 39202
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39202&action=edit
Skype help 1.888.649.8638 tech support number

@@Call, +1-888-649-8638 for all type help by SKYPE tech support phone number,
Intuit SKYPE Tech Support Phone Number, SKYPE Help Desk Phone Number, SKYPE
tech support number, SKYPE technical support phone number, @@@ SKYPE phone
number, SKYPE technical support number, SKYPE support phone number, SKYPE
technical support, SKYPE Customer Service Phone Number, SKYPE Customer Service
Number, SKYPE Customer Support Phone Number, SKYPE Customer Support Number,
@@1-888-649-8638@@ SKYPE Customer Service Helpline Number, SKYPE Customer Care
Number, SKYPE support team phone number, @@1-888-649-8638@@SKYPE help
number-SKYPE Helpline Number; SKYPE help phone number-SKYPE Helpline Number,
SKYPE Tech Support Toll free Number, SKYPE Support Telephone Number, SKYPE Tech
Support Telephone number, SKYPE Tech Support contact number, SKYPE support
contact number, SKYPE technical support contact number. Call, +1-888-649-8638
SKYPE tech support phone number, Intuit SKYPE Tech Support Phone Number, SKYPE
Help Desk Phone Number, SKYPE tech support number, SKYPE technical support
phone number, SKYPE phone number, SKYPE technical support number, SKYPE support
phone number. It is very popular toll free number which provide by SKYPE
technical support, SKYPE Customer Service Phone Number, SKYPE Customer Service
Number, SKYPE Customer Support Phone Number, SKYPE Customer Support Number,
SKYPE Customer Service Helpline Number, SKYPE Customer Care Number, SKYPE
support team phone number. Call, SKYPE tech support phone number, Intuit SKYPE
Tech Support Phone Number, SKYPE Help Desk Phone Number, SKYPE tech support
number, SKYPE technical support phone number, SKYPE phone number, SKYPE
technical support number, SKYPE support phone number, SKYPE technical support,
SKYPE Customer Service Phone Number, SKYPE Customer Service Number, SKYPE
Customer Support Phone Number, SKYPE Customer Support Number, SKYPE Customer
Service Helpline Number, SKYPE Customer Care Number, SKYPE support team phone
number, #SKYPE Tech Support Phone +1-888-649-8638 Number SKYPE customer support
number
SKYPE 1-888-649-8638 technical support
SKYPE support phone number
SKYPE tech support toll free number in usa
SKYPE tech support phone number
SKYPE tech support phone number free
SKYPE technical support phone number
SKYPE technologies phone number
SKYPE telephone support number
SKYPE support contact number
SKYPE 1-888-649-8638 customer support phone number
SKYPE 1-888-649-8638 problems
SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 technical support
 SKYPE 1-888-649-8638 toll free number
 SKYPE com customer service phone number
SKYPE contact phone number
SKYPE contact telephone number
SKYPE customer service contact number
SKYPE customer service email
SKYPE customer service phone number
SKYPE customer service telephone number
SKYPE customer services email
SKYPE customer support email address
SKYPE customer support number
SKYPE customer support phone number
SKYPE 1-888-649-8638 tech support assistant
SKYPE support assistant
SKYPE tech support
+SKYPE 1-888-649-8638 +online +support
+SBCGLOBAL+support+number
+SBCGLOBAL+online+support
SKYPE 1-888-649-8638 number technical support
SKYPE 1-888-649-8638 service number
SKYPE 1-888-649-8638 support contact phone number
SKYPE 1-888-649-8638 telephone support number
telephone number SKYPE 1-888-649-8638
customer service number SKYPE 1-888-649-8638
compaq SKYPE 1-888-649-8638 support
SKYPE 1-888-649-8638 compaq support
SKYPE 1-888-649-8638 customer service
SKYPE 1-888-649-8638 contact phone number
SKYPE 1-888-649-8638 customer phone number
SKYPE 1-888-649-8638 customer services number
SKYPE 1-888-649-8638 customer support telephone number
SKYPE 1-888-649-8638 support online
SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 service phone number
SKYPE 1-888-649-8638 support customer service number
SKYPE 1-888-649-8638 tech support phone numbers
SKYPE 1-888-649-8638 technical support contact number
SKYPE 1-888-649-8638 telephone number customer service
number SKYPE 1-888-649-8638 tech support
online SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 customer support
SKYPE 1-888-649-8638 customer service
SKYPE 1-888-649-8638 online support
SKYPE 1-888-649-8638 phone number customer support
SKYPE 1-888-649-8638 support telephone numbers
SKYPE 1-888-649-8638 technical support numbers
SKYPE 1-888-649-8638 usa support
telephone number SKYPE 1-888-649-8638 support
SKYPE 1-888-649-8638 support
SKYPE support
SKYPE 1-888-649-8638 tech support
>From gcc-bugs-return-534177-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 13:57:32 2016
Return-Path: <gcc-bugs-return-534177-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 36073 invoked by alias); 11 Aug 2016 13:57:32 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 30133 invoked by uid 89); 11 Aug 2016 13:57:19 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 13:57:19 +0000
From: "Forneonand33 at armyspy dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug driver/73824] New: USA-A>V>G T.E.C.H N.U..M.B.E.R+1-888-527-3401 @@@ Avg A.n.t.i.v.i.r.u.s t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a.
Date: Thu, 11 Aug 2016 13:57:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: driver
X-Bugzilla-Version: 4.7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: Forneonand33 at armyspy dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73824-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01513.txt.bz2
Content-length: 12660

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73824

            Bug ID: 73824
           Summary: USA-A>V>G T.E.C.H N.U..M.B.E.R+1-888-527-3401 @@@ Avg
                    A.n.t.i.v.i.r.u.s t.e.c.h s.u.p.p.o.r.t p.h.o.n.e
                    n.u.m.b.e.r u.s.a.
           Product: gcc
           Version: 4.7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: driver
          Assignee: unassigned at gcc dot gnu.org
          Reporter: Forneonand33 at armyspy dot com
  Target Milestone: ---

AVG helpline phone number@~1-888-527-3401 AVG tech Support Number AVG antivirus
customer service phone number

AVG helpline phone number@~1-888-527-3401 AVG tech Support Number AVG antivirus
customer service phone number
AVG HelpLiNe @+1-888-527-3401 AVG support phone number

AVG helpline phone number@~1-888-527-3401 AVG tech Support Number AVG antivirus
customer service phone number

+1-888-527-3401) Technical support number
+1-888-527-3401 AVG Antivirus Technical Support
+1-888-527-3401 contact AVG antivirus customer service phone number
+1-888-527-3401 phone number for AVG customer service
+1-888-527-3401 phone number for AVG antivirus technical support
+1-888-527-3401 phone number for AVG antivirus customer service
phone number for AVG antivirus technical support
phone number for AVG security
AVG antivirus customer care phone number
AVG antivirus customer service billing
AVG antivirus customer service email address
AVG antivirus customer service live chat
AVG antivirus customer service telephone number
AVG antivirus customer support usa phone number
AVG antivirus help desk support phone number free in usa
AVG antivirus phone number customer service us
AVG antivirus phone number support
AVG antivirus support phone number
AVG antivirus tech support phone number free in usa
AVG antivirus tech support phone number
AVG antivirus technical support customer service
AVG antivirus technical support number
AVG antivirus telephone number
AVG antivirus toll free customer care number
AVG antivirus toll free number in usa
AVG antivirus contact phone number in usa
AVG antivirus customer service number
AVG antivirus customer service phone number
AVG antivirus customer service telephone number
AVG antivirus customer support number
AVG antivirus customer support phone number
AVG antivirus customer support phone number
AVG antivirus help desk phone number in usa
AVG antivirus phone number
AVG antivirus phone number support for technical issue in usa
AVG antivirus support phone number
AVG antivirus technical support help desk phone number
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG customer service number
AVG customer service telephone number
AVG customer services email
AVG customer support email address
AVG customer support number
AVG customer support phone number
AVG customer service phone number
AVG internet security contact phone number
AVG internet security customer service phone number
AVG internet security phone number
AVG internet security help phone number
AVG internet security phone number in usa
AVG internet security support phone number
AVG internet security technical support
AVG phone number customer service
AVG phone numbers customer support
AVG phone support number
AVG security contact phone number
AVG security phone number customer service
AVG security support phone number
AVG support contact number
AVG support email address
AVG support phone number
AVG support telephone number
AVG support telephone number usa
AVG support telephone number
AVG tech support number
AVG tech support phone number
AVG tech support phone number free
AVG technical support phone number
AVG technical support cutomer phone number
AVG technical support phone number
AVG technical support number free in usa
AVG technical support number toll free number
AVG technical support phone number
AVG technologies phone number
AVG telephone support number
AVG antivirus customer support phone number
AVG antivirus customer service phone number
AVG customer support phone number
AVG phone number customer service
AVG technical support telephone number
contact AVG antivirus customer service phone number
customer service number for AVG antivirus
phone number for AVG antivirus
phone number for AVG antivirus customer service
phone number for AVG antivirus support
phone number for AVG customer service
phone number for AVG customer service
phone number for AVG customer support
phone number for AVG tech support
phone number AVG antivirus customer service
AVG antivirus customer service number
AVG antivirus customer service phone
AVG antivirus customer service phone number
AVG antivirus customer service phone number us
AVG antivirus customer service telephone number
AVG antivirus customer support
AVG antivirus customer support number
AVG antivirus phone number customer service us
AVG antivirus phone number support
AVG antivirus phone support
AVG antivirus phone support number
AVG antivirus support phone number
AVG antivirus tech support phone number
AVG antivirus technical support
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG customer service phone number
AVG customer support phone number
AVG helpline phone number
AVG internet security customer service
AVG internet security customer service phone number
AVG internet security help phone number
AVG internet security phone number customer service
AVG phone number customer service
AVG phone number customer support
AVG security customer service phone number
AVG security phone number customer service
AVG support phone number
AVG support telephone number
AVG tech support number
AVG tech support phone number
AVG technical support
AVG technical support number
AVG technical support phone number
AVG antivirus customer support phone number
AVG antivirus phone number customer service
AVG antivirus tech support number
AVG customer service phone number
AVG customer service phone numbers
AVG internet security technical support
AVG tech support phone number us
AVG technical support telephone number
contact AVG antivirus
contact AVG by phone
contact AVG customer service
contact AVG antivirus customer service phone number
contactAVG antivirus tech support usa
customer service AVG phone number
download AVG titanium
dri AVG customer service number
dri AVG customer service phone number
dri AVG phone number
how to contact AVG by email
how to delete AVG from mac
micro trend customer service
norton antivirus customer service number
phone number for AVG customer service
phone number forAVG customer service
phone number forAVG customer support
phone number forAVG tech support
phone number forAVG technical support
phone number for AVG antivirus technical support
phone number for AVG security
phone number for AVG support
phone number for AVG technical support
phone number for AVG antivirus customer service
phone number for AVG customer service
remove AVG from mac
technical support for antivirus AVG
telephone number forAVG technical support
telephone AVG antivirus
AVG antivirus contact number
AVG antivirus customer care
AVG antivirus customer care number
AVG antivirus customer care number usa
AVG antivirus customer service
AVG antivirus customer service number :idea: :evil: :D :) :lol: :( :o :shock:
AVG antivirus customer service phone number
AVG antivirus customer service phone number usa
AVG antivirus customer service telephone number
AVG antivirus customer support
AVG antivirus customer support in usa
AVG antivirus customer support number
AVG antivirus customer support phone number
AVG antivirus for phone
AVG antivirus free antivirus support
AVG antivirus help phone number
AVG antivirus helpline number
AVG antivirus online support
AVG antivirus phone
AVG antivirus phone number
AVG antivirus phone number in usa
AVG antivirus phone number usa
AVG antivirus phone support
AVG antivirus plus tech support
AVG antivirus protection
AVG antivirus support
AVG antivirus support number
AVG antivirus support phone number
AVG antivirus support services
AVG antivirus support telephone number
AVG antivirus tech support
AVG antivirus tech support phone number free in usa
AVG antivirus tech support number
AVG antivirus tech support phone number
AVG antivirus technical support
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG antivirus toll free customer care number
AVG antivirus toll free number
AVG antivirus contact phone number in usa
AVG antivirus help desk phone number in usa
AVG antivirus phone number support for technical issue in usa
AVG antivirus support phone number
AVG antivirus technical support help desk phone number
AVG antivirus technical support phone number
AVG contact number
AVG contact number usa
AVG contact phone number
AVG contact support
AVG contact number usa
AVG contact phone number
AVG contact phone number usa
AVG customer & technical support
AVG customer care
AVG customer care center
AVG customer care email
AVG customer care number
AVG customer care number
AVG customer care number usa
AVG customer care number usa toll free
AVG customer care phone number usa
AVG customer care tchnical support
AVG customer care toll free
AVG customer care toll free number
AVG customer care usa
AVG customer help
AVG customer number
AVG customer portal*********
AVG customer service
AVG customer service billing
AVG customer service email address
AVG customer service number
AVG customer service phone
AVG customer service phone number
AVG customer service phone number us
AVG customer service phone number usa
AVG customer service reviews
AVG customer service telephone number
AVG customer service usa
AVG customer support
AVG customer support number
AVG customer support phone
AVG customer support phone number
AVG customer service number
AVG customer service number usa
AVG customer service phone number
AVG customer support number
AVG customer support phone number
AVG free phone support
AVG gold support phone number
AVG help desk phone number
AVG help phone number
AVG helpline
AVG helpline phone number
AVG hotline customer service phone number
AVG internet security customer service
AVG internet security phone number
AVG internet security phone number in usa
AVG lab usa customer service
AVG labs usa customer serviceAVG
AVG phone number
AVG phone number customer service
AVG phone number support
AVG phone number tech support
AVG phone number technical support
AVG phone numbers customer support
AVG phone support
AVG phone support number
AVG phone number customer service
AVG phone number support
AVG phone number tech support
AVG phone number usa
AVG security contact phone number
AVG security phone number
AVG security support phone number
AVG software customer service
AVG software customer service number
AVG support center###########
AVG support contact number
AVG support email address
AVG support phone number
AVG support telephone number
AVG support number usa
AVG support phone number
AVG support phone number usa
AVG tech support
AVG tech support center
AVG tech support contact
AVG tech support number
AVG tech support number usa
AVG tech support phone
AVG tech support phone number
AVG tech support phone number free
AVG tech support number
AVG tech support number usa
AVG tech support phone number
AVG technical support
AVG technical support number
AVG technical support phone number
AVG technical support phone number usa
AVG technical support reviews
AVG technical support usa
AVG technical support phone number
AVG technical support number
AVG technical support number toll free number
AVG technical support number usa
AVG technical support phone number
AVG technical support phone number usa
AVG technologies phone number
AVG telephone number
AVG telephone support number
AVG toll free number
AVG toll free number usa
AVG usa customer care for tech support
AVG usa customer service
AVG usa phone number/////////////
AVG antivirus customer service phone number
AVG antivirus customer service phone number
AVG antivirus customer support phone number
AVG antivirus customer support phone number
AVG antivirus technical support number
AVG customer service phone number usa
AVG internet security support phone number
AVG.com customer service
AVG antivirus antispyware 2011
AVG antivirus customer support
AVG antivirus serial key
AVG antivirus serial number
AVG antivirus support
AVG antivirus technical support
AVG business support*************
AVG contact support
AVG customer care number
AVG customer service 844
AVG customer service number
AVG customer service phone number
AVG customer service telephone number
AVG customer support
>From gcc-bugs-return-534179-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 13:59:47 2016
Return-Path: <gcc-bugs-return-534179-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 41261 invoked by alias); 11 Aug 2016 13:59:47 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 41158 invoked by uid 89); 11 Aug 2016 13:59:37 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 13:59:37 +0000
From: "roy666bhavna at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: =?UTF-8?B?W0J1ZyBwbHVnaW5zLzczODI3XSBOZXc6IFNreXBlIDEtODg4LTY0OS04NjM4?= =?UTF-8?B?U3VwcG9ydCBDYWxsQEAgVVPCoFRvbGzCoEZyZWXCoCAxLTg4OC02NDktODYz?= =?UTF-8?B?OCBTS1lQRcKgVGVjaG5pY2FsIFN1cHBvcnQgTnVtYmVy?Date: Thu, 11 Aug 2016 13:59:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: plugins
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: roy666bhavna at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-73827-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01515.txt.bz2
Content-length: 5191

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73827

            Bug ID: 73827
           Summary: Skype 1-888-649-8638Support Call@@ US Toll Free
                    1-888-649-8638 SKYPE Technical Support Number
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: plugins
          Assignee: unassigned at gcc dot gnu.org
          Reporter: roy666bhavna at gmail dot com
  Target Milestone: ---

Created attachment 39204
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39204&action=edit
Skype help 1.888.649.8638 tech support number

@@Call, +1-888-649-8638 for all type help by SKYPE tech support phone number,
Intuit SKYPE Tech Support Phone Number, SKYPE Help Desk Phone Number, SKYPE
tech support number, SKYPE technical support phone number, @@@ SKYPE phone
number, SKYPE technical support number, SKYPE support phone number, SKYPE
technical support, SKYPE Customer Service Phone Number, SKYPE Customer Service
Number, SKYPE Customer Support Phone Number, SKYPE Customer Support Number,
@@1-888-649-8638@@ SKYPE Customer Service Helpline Number, SKYPE Customer Care
Number, SKYPE support team phone number, @@1-888-649-8638@@SKYPE help
number-SKYPE Helpline Number; SKYPE help phone number-SKYPE Helpline Number,
SKYPE Tech Support Toll free Number, SKYPE Support Telephone Number, SKYPE Tech
Support Telephone number, SKYPE Tech Support contact number, SKYPE support
contact number, SKYPE technical support contact number. Call, +1-888-649-8638
SKYPE tech support phone number, Intuit SKYPE Tech Support Phone Number, SKYPE
Help Desk Phone Number, SKYPE tech support number, SKYPE technical support
phone number, SKYPE phone number, SKYPE technical support number, SKYPE support
phone number. It is very popular toll free number which provide by SKYPE
technical support, SKYPE Customer Service Phone Number, SKYPE Customer Service
Number, SKYPE Customer Support Phone Number, SKYPE Customer Support Number,
SKYPE Customer Service Helpline Number, SKYPE Customer Care Number, SKYPE
support team phone number. Call, SKYPE tech support phone number, Intuit SKYPE
Tech Support Phone Number, SKYPE Help Desk Phone Number, SKYPE tech support
number, SKYPE technical support phone number, SKYPE phone number, SKYPE
technical support number, SKYPE support phone number, SKYPE technical support,
SKYPE Customer Service Phone Number, SKYPE Customer Service Number, SKYPE
Customer Support Phone Number, SKYPE Customer Support Number, SKYPE Customer
Service Helpline Number, SKYPE Customer Care Number, SKYPE support team phone
number, #SKYPE Tech Support Phone +1-888-649-8638 Number SKYPE customer support
number
SKYPE 1-888-649-8638 technical support
SKYPE support phone number
SKYPE tech support toll free number in usa
SKYPE tech support phone number
SKYPE tech support phone number free
SKYPE technical support phone number
SKYPE technologies phone number
SKYPE telephone support number
SKYPE support contact number
SKYPE 1-888-649-8638 customer support phone number
SKYPE 1-888-649-8638 problems
SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 technical support
 SKYPE 1-888-649-8638 toll free number
 SKYPE com customer service phone number
SKYPE contact phone number
SKYPE contact telephone number
SKYPE customer service contact number
SKYPE customer service email
SKYPE customer service phone number
SKYPE customer service telephone number
SKYPE customer services email
SKYPE customer support email address
SKYPE customer support number
SKYPE customer support phone number
SKYPE 1-888-649-8638 tech support assistant
SKYPE support assistant
SKYPE tech support
+SKYPE 1-888-649-8638 +online +support
+SBCGLOBAL+support+number
+SBCGLOBAL+online+support
SKYPE 1-888-649-8638 number technical support
SKYPE 1-888-649-8638 service number
SKYPE 1-888-649-8638 support contact phone number
SKYPE 1-888-649-8638 telephone support number
telephone number SKYPE 1-888-649-8638
customer service number SKYPE 1-888-649-8638
compaq SKYPE 1-888-649-8638 support
SKYPE 1-888-649-8638 compaq support
SKYPE 1-888-649-8638 customer service
SKYPE 1-888-649-8638 contact phone number
SKYPE 1-888-649-8638 customer phone number
SKYPE 1-888-649-8638 customer services number
SKYPE 1-888-649-8638 customer support telephone number
SKYPE 1-888-649-8638 support online
SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 service phone number
SKYPE 1-888-649-8638 support customer service number
SKYPE 1-888-649-8638 tech support phone numbers
SKYPE 1-888-649-8638 technical support contact number
SKYPE 1-888-649-8638 telephone number customer service
number SKYPE 1-888-649-8638 tech support
online SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 customer support
SKYPE 1-888-649-8638 customer service
SKYPE 1-888-649-8638 online support
SKYPE 1-888-649-8638 phone number customer support
SKYPE 1-888-649-8638 support telephone numbers
SKYPE 1-888-649-8638 technical support numbers
SKYPE 1-888-649-8638 usa support
telephone number SKYPE 1-888-649-8638 support
SKYPE 1-888-649-8638 support
SKYPE support
SKYPE 1-888-649-8638 tech support
>From gcc-bugs-return-534180-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 14:04:35 2016
Return-Path: <gcc-bugs-return-534180-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 17659 invoked by alias); 11 Aug 2016 14:04:35 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 17577 invoked by uid 89); 11 Aug 2016 14:04:31 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 14:04:31 +0000
From: "wschmidt at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/72855] Long compile time due to integrity checking during dataflow analysis per loop
Date: Thu, 11 Aug 2016 14:04:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 5.4.1
X-Bugzilla-Keywords: compile-time-hog
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wschmidt at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72855-4-n0Xj2dvjfx@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72855-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72855-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01516.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72855

--- Comment #12 from Bill Schmidt <wschmidt at gcc dot gnu.org> ---
Last night before I ran out of time, I built a debug compiler on gcc-6-branch,
and flag_checking was always 0, and I didn't have the compile time issue.  So
it appears to be something that only occurs with a bootstrap compiler, which
isn't going to be very helpful for running this down. :/
>From gcc-bugs-return-534181-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 14:05:30 2016
Return-Path: <gcc-bugs-return-534181-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 31868 invoked by alias); 11 Aug 2016 14:05:30 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 24193 invoked by uid 89); 11 Aug 2016 14:05:19 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 14:05:19 +0000
From: "virat76kumble at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: =?UTF-8?B?W0J1ZyBwbHVnaW5zLzczODQxXSBOZXc6IFNreXBlIDEtODg4LTY0OS04NjM4?= =?UTF-8?B?U3VwcG9ydCBDYWxsQEAgVVPCoFRvbGzCoEZyZWXCoCAxLTg4OC02NDktODYz?= =?UTF-8?B?OCBTa3lwZSAxLTg4OC02NDktODYzOHRlY2huaWNhbMKgc3VwcG9ydMKgcGhv?= =?UTF-8?B?bmXCoG51bWJlcg==?Date: Thu, 11 Aug 2016 14:05:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: plugins
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: virat76kumble at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-73841-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01517.txt.bz2
Content-length: 5239

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73841

            Bug ID: 73841
           Summary: Skype 1-888-649-8638Support Call@@ US Toll Free
                    1-888-649-8638 Skype 1-888-649-8638technical support
                    phone number
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: plugins
          Assignee: unassigned at gcc dot gnu.org
          Reporter: virat76kumble at gmail dot com
  Target Milestone: ---

Created attachment 39208
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39208&action=edit
Skype help 1.888.649.8638 tech support number

@@Call, +1-888-649-8638 for all type help by SKYPE tech support phone number,
Intuit SKYPE Tech Support Phone Number, SKYPE Help Desk Phone Number, SKYPE
tech support number, SKYPE technical support phone number, @@@ SKYPE phone
number, SKYPE technical support number, SKYPE support phone number, SKYPE
technical support, SKYPE Customer Service Phone Number, SKYPE Customer Service
Number, SKYPE Customer Support Phone Number, SKYPE Customer Support Number,
@@1-888-649-8638@@ SKYPE Customer Service Helpline Number, SKYPE Customer Care
Number, SKYPE support team phone number, @@1-888-649-8638@@SKYPE help
number-SKYPE Helpline Number; SKYPE help phone number-SKYPE Helpline Number,
SKYPE Tech Support Toll free Number, SKYPE Support Telephone Number, SKYPE Tech
Support Telephone number, SKYPE Tech Support contact number, SKYPE support
contact number, SKYPE technical support contact number. Call, +1-888-649-8638
SKYPE tech support phone number, Intuit SKYPE Tech Support Phone Number, SKYPE
Help Desk Phone Number, SKYPE tech support number, SKYPE technical support
phone number, SKYPE phone number, SKYPE technical support number, SKYPE support
phone number. It is very popular toll free number which provide by SKYPE
technical support, SKYPE Customer Service Phone Number, SKYPE Customer Service
Number, SKYPE Customer Support Phone Number, SKYPE Customer Support Number,
SKYPE Customer Service Helpline Number, SKYPE Customer Care Number, SKYPE
support team phone number. Call, SKYPE tech support phone number, Intuit SKYPE
Tech Support Phone Number, SKYPE Help Desk Phone Number, SKYPE tech support
number, SKYPE technical support phone number, SKYPE phone number, SKYPE
technical support number, SKYPE support phone number, SKYPE technical support,
SKYPE Customer Service Phone Number, SKYPE Customer Service Number, SKYPE
Customer Support Phone Number, SKYPE Customer Support Number, SKYPE Customer
Service Helpline Number, SKYPE Customer Care Number, SKYPE support team phone
number, #SKYPE Tech Support Phone +1-888-649-8638 Number SKYPE customer support
number
SKYPE 1-888-649-8638 technical support
SKYPE support phone number
SKYPE tech support toll free number in usa
SKYPE tech support phone number
SKYPE tech support phone number free
SKYPE technical support phone number
SKYPE technologies phone number
SKYPE telephone support number
SKYPE support contact number
SKYPE 1-888-649-8638 customer support phone number
SKYPE 1-888-649-8638 problems
SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 technical support
 SKYPE 1-888-649-8638 toll free number
 SKYPE com customer service phone number
SKYPE contact phone number
SKYPE contact telephone number
SKYPE customer service contact number
SKYPE customer service email
SKYPE customer service phone number
SKYPE customer service telephone number
SKYPE customer services email
SKYPE customer support email address
SKYPE customer support number
SKYPE customer support phone number
SKYPE 1-888-649-8638 tech support assistant
SKYPE support assistant
SKYPE tech support
+SKYPE 1-888-649-8638 +online +support
+SBCGLOBAL+support+number
+SBCGLOBAL+online+support
SKYPE 1-888-649-8638 number technical support
SKYPE 1-888-649-8638 service number
SKYPE 1-888-649-8638 support contact phone number
SKYPE 1-888-649-8638 telephone support number
telephone number SKYPE 1-888-649-8638
customer service number SKYPE 1-888-649-8638
compaq SKYPE 1-888-649-8638 support
SKYPE 1-888-649-8638 compaq support
SKYPE 1-888-649-8638 customer service
SKYPE 1-888-649-8638 contact phone number
SKYPE 1-888-649-8638 customer phone number
SKYPE 1-888-649-8638 customer services number
SKYPE 1-888-649-8638 customer support telephone number
SKYPE 1-888-649-8638 support online
SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 service phone number
SKYPE 1-888-649-8638 support customer service number
SKYPE 1-888-649-8638 tech support phone numbers
SKYPE 1-888-649-8638 technical support contact number
SKYPE 1-888-649-8638 telephone number customer service
number SKYPE 1-888-649-8638 tech support
online SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 customer support
SKYPE 1-888-649-8638 customer service
SKYPE 1-888-649-8638 online support
SKYPE 1-888-649-8638 phone number customer support
SKYPE 1-888-649-8638 support telephone numbers
SKYPE 1-888-649-8638 technical support numbers
SKYPE 1-888-649-8638 usa support
telephone number SKYPE 1-888-649-8638 support
SKYPE 1-888-649-8638 support
SKYPE support
SKYPE 1-888-649-8638 tech support
>From gcc-bugs-return-534182-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 14:05:44 2016
Return-Path: <gcc-bugs-return-534182-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 32858 invoked by alias); 11 Aug 2016 14:05:44 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 32795 invoked by uid 89); 11 Aug 2016 14:05:39 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 14:05:39 +0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/69004] Building t-engine on ARM fails during -fprofile-use stage
Date: Thu, 11 Aug 2016 14:05:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 5.3.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-69004-4-I3KO3Jwxtk@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69004-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69004-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01518.txt.bz2
Content-length: 775

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69004

--- Comment #27 from Martin Liška <marxin at gcc dot gnu.org> ---
(In reply to PeteVine from comment #26)
> I've just tried your patch and it seems it has improved matters somewhat but
> now I'm getting this:
> 
> lj_gc.c
> ../src/luajit2/src/lj_gc.c: In function ‘lj_mem_realloc’:
> ../src/luajit2/src/lj_gc.c:803:5: error: corrupted value profile: ic profile
> counter (5689420 out of 5689366) inconsistent with basic-block count
> (5689366)
>    p = g->allocf(g->allocd, p, osz, nsz);
>    ~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Yeah, can you please try to run the engine in gdb and put break-points on
gcov_exit and lj_mem_realloc. I guess the later one is called after the former
one?
>From gcc-bugs-return-534184-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 14:06:41 2016
Return-Path: <gcc-bugs-return-534184-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 40916 invoked by alias); 11 Aug 2016 14:06:41 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 38900 invoked by uid 89); 11 Aug 2016 14:06:31 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 14:06:31 +0000
From: "shivam.gupta4896 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug boehm-gc/73845] New: call us @1844*443*4666 for better response icloude tech support phone number
Date: Thu, 11 Aug 2016 14:06:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: boehm-gc
X-Bugzilla-Version: new-ra
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: shivam.gupta4896 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73845-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01520.txt.bz2
Content-length: 7113

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73845

            Bug ID: 73845
           Summary: call us @1844*443*4666 for better response icloude
                    tech support phone number
           Product: gcc
           Version: new-ra
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: boehm-gc
          Assignee: unassigned at gcc dot gnu.org
          Reporter: shivam.gupta4896 at gmail dot com
  Target Milestone: ---

all***1844.443.4666***Apple icloud tech support phone number ,apple technical
support USA@@@@@@@ http  :// 
CALL : USA ((1844.443.4666))Apple icloud tech support phone number  ,Hp
technical support USA@@@@@@@
@USA....*@@*....cTALK((1844.443.4666))Apple icloud tech support phone number
,Hp technical support USA@@@@ @@@@@@@USA@@@@Apple icloud 1-844-443-4666 Support
Phone Number !CAll @@@@@@@ 1 844 443 4666 Apple icloud Support Phone Number
Canada Apple icloud customer care phone number Call @@@@@@@@@@@@@@@ 1 844 443
4666 Apple icloud Support Phone Number Canada Apple icloud customer care phone
number Call @@@@@$$$$$$$$((((((((((Apple icloud 1-844-443-4666 Hp Tech Support
Phone Number Canada Apple icloud customer service number $$$$$$$@@@@@@Apple
icloud 1-844-443-4666 Hp Tech Support Phone Number Canada Apple icloud customer
service number $Apple icloud 1-844-443-4666 Hp Tech Support Phone Number Canada
Apple icloud customer service number Apple icloud SUPPORT
USA(((1844-443-4666(USA), 1844-443-4666(UK) 1844-443-4666(AUS)!!!!!!FREE Apple
icloud support phone number,Hp customer service number @SUPPORT
Canada!!!!!!!!!((1844-443-4666))!!!!!!FREE Apple icloud support phone number
,Hp cusomer support, Hp technical support chat, Hp computer help, Hp support
numbers, Hp technical support contact number, Hp telephone number, Apple icloud
technical support phone number, Apple icloud helpline, Hp support printers, Hp
support online, Apple icloud contact number, Hp help phone number, Apple icloud
customer care number, contact hewlett packard by phone, Apple icloud phone
support, hewlett packard printers support, Hp tech support phone, Hp technical
help, Hp laptop tech support number, contact Hp by phone, Hp support call, Hp
computers support, hewlett packard customer service telephone number, phone
number for hewlett packard, Hp online support chat, Hp laptop customer service
number, Hp online chat support, Apple iclouds customer service, hewlett packard
customer service phone, Hp laptop tech support, Hp service phone number,
hewlett packard printer help, phone number for Apple iclouds, Hp
troubleshooting phone number, Hp 844 number, hewlett packard technical support
number, contact Hp support phone, phone number for Apple icloud support, Hp
customer support chat, Hp help and support number, contact hewlett packard, Hp
laptop support phone number, Apple iclouds customer service phone number, Hp
laptop customer service phone number, Hp computer support phone number, Hp
pavilion support, Hp computer customer service, Hp customer services, hewlett
packard telephone number, Hp helpline no, Hp help desk number, contact Hp
support phone number, hewlett packard contact, Hp phone numbers, Apple iclouds
customer care number, Apple icloud help and support, contact Hp technical
support, Hp contact numbers, contact Hp support chat, call Hp tech support, Hp
customer service phone, Hp help support, Hp computer tech support, Hp
assistance phone number, Hp customer service telephone number, hewlett packard
printer support phone number, Hp contact support number, Hp support center
phone number, Hp support phone numbers, tech support for Hp, Hp it support, Hp
laptop helpline, Hp technical, Hp laptop technical support number, Apple
iclouds tech support phone number, Apple iclouds support phone number, hewlett
packard help desk phone number, Hp computer tech support phone number, Hp
customer service number for laptop, Apple icloud helpline number, contact Hp
support by phone, hewlett packard support center, Hp laptop customer care no,
Apple icloud support telephone number, Hp support services, Hp customer service
number for printers, Hp product support number, Hp laptop tech support phone
number, Apple icloud helpline phone number, contact Hp customer support,
hewlett packard customer support phone number, Apple iclouds technical support,
Hp customer care center, support for Apple iclouds, Apple icloud support
center, phone number for Hp tech support, Hp desktop customer care number, Hp
laptops support, Apple icloud online support, Apple icloud phone number,
hewlett packard printers support phone number, technical support for Apple
iclouds phone number, Hp help center phone number, contact Hp tech support,
call Apple icloud support, Apple iclouds customer support, Hp computer customer
service number, Apple iclouds helpline, Hp customer care contact number, Hp
laptop help, Hp computer customer service phone number, phone number for
hewlett packard customer service, hewlett packard 844 number, Apple icloud help
phone number, Apple iclouds help phone number, Apple icloud phone number for
customer service, Hp computer technical support phone number, customer service
Hp, Hp support technical support number, contact number for Hp, Hp computers
support phone number, Apple iclouds support number, Apple icloud technical
support number, contact Hp tech support by phone, Hp computer customer care
number, Apple icloud 844 number, call Hp customer service, Apple icloud help
center, Hp computers customer service, Apple icloud help desk, hewlett packard
computer support, Apple iclouds technical support number, Hp help desk phone
number, Apple icloud support phone, Hp contact help, contact Hp laptop support,
Hp customer service contact number, support for Apple icloud, Apple icloud
customer care no, Hp computer phone number, Hp tech help, Hp pc support number,
Hp laptop customer support, Hp desktop support number, support Apple icloud, Hp
support hours, number for Hp support, Hp support customer service number, Hp
contact phone number, customer service number for Apple iclouds, Hp computers
help, Hp tech support contact number, Hp phone support number.... Apple icloud
support number Apple icloud customer service number Apple icloud customer
support number Apple icloud customer care number Apple icloud help number Apple
icloud helpline number Apple icloud contact number Apple icloud toll free
number Apple icloud troubleshooting phone number Apple icloud support canada
Apple icloud customer service canada Apple icloud help canada Apple icloud
phone number canda Apple icloud phone Support canda Apple icloud not printing
Apple icloud not respoding Apple icloud problems with windows 7-8-10 Apple
icloud problems with mac Hp deskjet printer support number Hp deskjet printer
help number Hp laserjet printer support number Hp laserjet printer help number
Apple icloud wireless setup number Apple icloud wireless setup number Apple
icloud wifi problem Apple icloud wifi not working
>From gcc-bugs-return-534183-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 14:06:26 2016
Return-Path: <gcc-bugs-return-534183-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 35402 invoked by alias); 11 Aug 2016 14:06:26 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 34335 invoked by uid 89); 11 Aug 2016 14:06:20 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 14:06:20 +0000
From: "virat76kumble at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: =?UTF-8?B?W0J1ZyBwbHVnaW5zLzczODQ0XSBOZXc6IFNreXBlIDEtODg4LTY0OS04NjM4?= =?UTF-8?B?U3VwcG9ydCBDYWxsQEAgVVPCoFRvbGzCoEZyZWXCoCAxLTg4OC02NDktODYz?= =?UTF-8?B?OCBTa3lwZSAxLTg4OC02NDktODYzOHN1cHBvcnTCoHBob25lwqBudW1iZXI=?Date: Thu, 11 Aug 2016 14:06:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: plugins
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: virat76kumble at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-73844-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01519.txt.bz2
Content-length: 5222

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73844

            Bug ID: 73844
           Summary: Skype 1-888-649-8638Support Call@@ US Toll Free
                    1-888-649-8638 Skype 1-888-649-8638support phone
                    number
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: plugins
          Assignee: unassigned at gcc dot gnu.org
          Reporter: virat76kumble at gmail dot com
  Target Milestone: ---

Created attachment 39209
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39209&action=edit
Skype help 1.888.649.8638 tech support number

@@Call, +1-888-649-8638 for all type help by SKYPE tech support phone number,
Intuit SKYPE Tech Support Phone Number, SKYPE Help Desk Phone Number, SKYPE
tech support number, SKYPE technical support phone number, @@@ SKYPE phone
number, SKYPE technical support number, SKYPE support phone number, SKYPE
technical support, SKYPE Customer Service Phone Number, SKYPE Customer Service
Number, SKYPE Customer Support Phone Number, SKYPE Customer Support Number,
@@1-888-649-8638@@ SKYPE Customer Service Helpline Number, SKYPE Customer Care
Number, SKYPE support team phone number, @@1-888-649-8638@@SKYPE help
number-SKYPE Helpline Number; SKYPE help phone number-SKYPE Helpline Number,
SKYPE Tech Support Toll free Number, SKYPE Support Telephone Number, SKYPE Tech
Support Telephone number, SKYPE Tech Support contact number, SKYPE support
contact number, SKYPE technical support contact number. Call, +1-888-649-8638
SKYPE tech support phone number, Intuit SKYPE Tech Support Phone Number, SKYPE
Help Desk Phone Number, SKYPE tech support number, SKYPE technical support
phone number, SKYPE phone number, SKYPE technical support number, SKYPE support
phone number. It is very popular toll free number which provide by SKYPE
technical support, SKYPE Customer Service Phone Number, SKYPE Customer Service
Number, SKYPE Customer Support Phone Number, SKYPE Customer Support Number,
SKYPE Customer Service Helpline Number, SKYPE Customer Care Number, SKYPE
support team phone number. Call, SKYPE tech support phone number, Intuit SKYPE
Tech Support Phone Number, SKYPE Help Desk Phone Number, SKYPE tech support
number, SKYPE technical support phone number, SKYPE phone number, SKYPE
technical support number, SKYPE support phone number, SKYPE technical support,
SKYPE Customer Service Phone Number, SKYPE Customer Service Number, SKYPE
Customer Support Phone Number, SKYPE Customer Support Number, SKYPE Customer
Service Helpline Number, SKYPE Customer Care Number, SKYPE support team phone
number, #SKYPE Tech Support Phone +1-888-649-8638 Number SKYPE customer support
number
SKYPE 1-888-649-8638 technical support
SKYPE support phone number
SKYPE tech support toll free number in usa
SKYPE tech support phone number
SKYPE tech support phone number free
SKYPE technical support phone number
SKYPE technologies phone number
SKYPE telephone support number
SKYPE support contact number
SKYPE 1-888-649-8638 customer support phone number
SKYPE 1-888-649-8638 problems
SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 technical support
 SKYPE 1-888-649-8638 toll free number
 SKYPE com customer service phone number
SKYPE contact phone number
SKYPE contact telephone number
SKYPE customer service contact number
SKYPE customer service email
SKYPE customer service phone number
SKYPE customer service telephone number
SKYPE customer services email
SKYPE customer support email address
SKYPE customer support number
SKYPE customer support phone number
SKYPE 1-888-649-8638 tech support assistant
SKYPE support assistant
SKYPE tech support
+SKYPE 1-888-649-8638 +online +support
+SBCGLOBAL+support+number
+SBCGLOBAL+online+support
SKYPE 1-888-649-8638 number technical support
SKYPE 1-888-649-8638 service number
SKYPE 1-888-649-8638 support contact phone number
SKYPE 1-888-649-8638 telephone support number
telephone number SKYPE 1-888-649-8638
customer service number SKYPE 1-888-649-8638
compaq SKYPE 1-888-649-8638 support
SKYPE 1-888-649-8638 compaq support
SKYPE 1-888-649-8638 customer service
SKYPE 1-888-649-8638 contact phone number
SKYPE 1-888-649-8638 customer phone number
SKYPE 1-888-649-8638 customer services number
SKYPE 1-888-649-8638 customer support telephone number
SKYPE 1-888-649-8638 support online
SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 service phone number
SKYPE 1-888-649-8638 support customer service number
SKYPE 1-888-649-8638 tech support phone numbers
SKYPE 1-888-649-8638 technical support contact number
SKYPE 1-888-649-8638 telephone number customer service
number SKYPE 1-888-649-8638 tech support
online SKYPE 1-888-649-8638 tech support
SKYPE 1-888-649-8638 customer support
SKYPE 1-888-649-8638 customer service
SKYPE 1-888-649-8638 online support
SKYPE 1-888-649-8638 phone number customer support
SKYPE 1-888-649-8638 support telephone numbers
SKYPE 1-888-649-8638 technical support numbers
SKYPE 1-888-649-8638 usa support
telephone number SKYPE 1-888-649-8638 support
SKYPE 1-888-649-8638 support
SKYPE support
SKYPE 1-888-649-8638 tech support
>From gcc-bugs-return-534185-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 14:06:49 2016
Return-Path: <gcc-bugs-return-534185-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 41744 invoked by alias); 11 Aug 2016 14:06:48 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 40824 invoked by uid 89); 11 Aug 2016 14:06:40 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 14:06:40 +0000
From: "rahulcdc908 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug boehm-gc/73846] New: SUpport@@@ 1.8.0.0.7.5.0.6.5.8.4+++ Webroot Antivirus Customer support Number USA
Date: Thu, 11 Aug 2016 14:06:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: boehm-gc
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rahulcdc908 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73846-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01521.txt.bz2
Content-length: 488

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73846

            Bug ID: 73846
           Summary: SUpport@@@ 1.8.0.0.7.5.0.6.5.8.4+++ Webroot Antivirus
                    Customer support Number USA
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: boehm-gc
          Assignee: unassigned at gcc dot gnu.org
          Reporter: rahulcdc908 at gmail dot com
  Target Milestone: ---
>From gcc-bugs-return-534186-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 14:07:10 2016
Return-Path: <gcc-bugs-return-534186-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 47455 invoked by alias); 11 Aug 2016 14:07:10 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 46400 invoked by uid 89); 11 Aug 2016 14:06:57 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 14:06:57 +0000
From: "jamesbro12q at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/73848] New: NORTON Support Phone Number!!1 877.288.2779
Date: Thu, 11 Aug 2016 14:07:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jamesbro12q at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73848-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01522.txt.bz2
Content-length: 8782

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73848

            Bug ID: 73848
           Summary: NORTON Support Phone Number!!1 877.288.2779
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: jamesbro12q at gmail dot com
  Target Milestone: ---

NORTON Support Phone Number!!1 877.288.2779 NORTON support phone number NORTON
Support Phone Number!!1 877.288.2779 NORTON support phone number
Norton helpline phone number@~1877-288-2779 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1877-2882779**Norton antivirus support phone
number
usa+1-877-288-2779) Technical support number
CANADA+1877-288-2779 Norton Antivirus Technical Support
USA-1877-288-1288contact Norton antivirus customer service phone number
AUS-1-877-288-2779 phone number for Norton customer service
UK-1877-288-2779 phone number for Norton antivirus technical support
1-877-288-2779 phone number for Norton antivirus customer service
phone number for Norton antivirus technical support
phone number for Norton security
Norton customer service telephone number
Norton customer support
Norton grentry non payment
Norton helpline support number
Norton internet security customer service
Norton internet security technical support
Norton oem customer service
Norton pc cillin technical support
Norton phone support
Norton removal tool download
Norton subscription renewal
Norton support contact
Norton support hotline
Norton support phone number
Norton tech support phone number
Norton technical support
Norton technical support chat
Norton technical support phone number
Norton technical support phone number usa
Norton telephone number
Norton titanium antivirus
Norton titanium internet security
Norton titanium maximum
Norton titanium maximum security
Norton titanium problems
NORTON Support Phone Number!!1 877.288.2779 NORTON support phone number NORTON
Support Phone Number!!1 877.288.2779 NORTON support phone number
Norton helpline phone number@~1877-288-2779 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1877-2882779**Norton antivirus support phone
number
usa+1-877-288-2779) Technical support number
CANADA+1877-288-2779 Norton Antivirus Technical Support
USA-1877-288-1288contact Norton antivirus customer service phone number
AUS-1-877-288-2779 phone number for Norton customer service
UK-1877-288-2779 phone number for Norton antivirus technical support
1-877-288-2779 phone number for Norton antivirus customer service
Norton titanium removal tool
Norton titanium reviews
Norton titanium support
Norton virus removal service
uninstall Norton smart surfing for mac
usa customer care number for Norton antivirus
Norton phone number customer service
Norton phone numbers customer support
Norton phone support number
Norton security contact phone number
Norton security phone number customer service
Norton security support phone number
Norton support contact number
Norton support email address
Norton support phone number
Norton support telephone number
Norton support telephone number usa
Norton support telephone number
Norton tech support number
NORTON Support Phone Number!!1 877.288.2779 NORTON support phone number NORTON
Support Phone Number!!1 877.288.2779 NORTON support phone number
Norton helpline phone number@~1877-288-2779 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1877-2882779**Norton antivirus support phone
number
usa+1-877-288-2779) Technical support number
CANADA+1877-288-2779 Norton Antivirus Technical Support
USA-1877-288-1288contact Norton antivirus customer service phone number
AUS-1-877-288-2779 phone number for Norton customer service
UK-1877-288-2779 phone number for Norton antivirus technical support
1-877-288-2779 phone number for Norton antivirus customer serviceNorton
antivirus customer care phone number
Norton antivirus customer service billing
Norton antivirus customer service email address
Norton antivirus customer service live chat
Norton antivirus customer service telephone number
Norton antivirus customer support usa phone number
Norton antivirus help desk support phone number free in usa
Norton antivirus phone number customer service us
Norton antivirus phone number support
Norton antivirus support phone number
Norton antivirus tech support phone number free in usa
Norton antivirus tech support phone number
Norton antivirus technical support customer service
Norton antivirus technical support number
Norton antivirus telephone number
Norton antivirus toll free customer care number
Norton antivirus toll free number in usa
Norton antivirus contact phone number in usa
Norton antivirus customer service number
Norton antivirus customer service phone number
Norton antivirus customer service telephone number
Norton antivirus customer support number
Norton antivirus customer support phone number
NORTON Support Phone Number!!1 877.288.2779 NORTON support phone number NORTON
Support Phone Number!!1 877.288.2779 NORTON support phone number
Norton helpline phone number@~1877-288-2779 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1877-2882779**Norton antivirus support phone
number
usa+1-877-288-2779) Technical support number
CANADA+1877-288-2779 Norton Antivirus Technical Support
USA-1877-288-1288contact Norton antivirus customer service phone number
AUS-1-877-288-2779 phone number for Norton customer service
UK-1877-288-2779 phone number for Norton antivirus technical support
1-877-288-2779 phone number for Norton antivirus customer service
Norton antivirus customer support phone number
Norton antivirus help desk phone number in usa
Norton antivirus phone number
Norton tech support phone number
Norton tech support phone number free
Norton technical support phone number
Norton technical support cutomer phone number
Norton technical support phone number
Norton technical support number free in usa
Norton technical support number toll free number
Norton technical support phone number
Norton technologies phone number
Norton telephone support number
Norton antivirus customer support phone number
Norton antivirus customer service phone number
Norton customer support phone number
Norton phone number customer service
Norton technical support telephone number
contact Norton antivirus customer service phone number
customer service number for Norton antivirus
phone number for Norton antivirus
phone number for Norton antivirus customer service
phone number for Norton antivirus support
phone number for Norton customer service
phone number for Norton customer service
phone number for Norton customer support
NORTON Support Phone Number!!1 877.288.2779 NORTON support phone number NORTON
Support Phone Number!!1 877.288.2779 NORTON support phone number
Norton helpline phone number@~1877-288-2779 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1877-2882779**Norton antivirus support phone
number
usa+1-877-288-2779) Technical support number
CANADA+1877-288-2779 Norton Antivirus Technical Support
USA-1877-288-1288contact Norton antivirus customer service phone number
AUS-1-877-288-2779 phone number for Norton customer service
UK-1877-288-2779 phone number for Norton antivirus technical support
1-877-288-2779 phone number for Norton antivirus customer service
phone number for Norton tech support
phone number Norton antivirus customer service
Norton antivirus customer service number
Norton antivirus customer service phone
Norton antivirus customer service phone number
Norton antivirus customer service phone number us
Norton antivirus customer service telephone number
Norton antivirus customer support
Norton antivirus customer support number
Norton antivirus phone number customer service us
Norton antivirus phone number support
Norton antivirus phone support
Norton antivirus phone support number
Norton antivirus support phone number
Norton antivirus tech support phone number
Norton antivirus technical support
Norton antivirus technical support number
Norton antivirus technical support phone number
Norton customer service phone number
Norton customer support phone number
Norton helpline phone number
Norton internet security customer service
Norton internet security customer service phone number
Norton internet security help phone number
Norton internet security phone number customer service
Norton phone number customer service
Norton phone number customer support
Norton security customer service phone number
>From gcc-bugs-return-534187-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 14:07:11 2016
Return-Path: <gcc-bugs-return-534187-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 47558 invoked by alias); 11 Aug 2016 14:07:11 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 46523 invoked by uid 89); 11 Aug 2016 14:06:58 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 14:06:58 +0000
From: "rahulcdc908 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug boehm-gc/73849] New: SUpport@@@ 1.8.0.0.7.5.0.6.5.8.4+++ Webroot Antivirus Customer support Number USA
Date: Thu, 11 Aug 2016 14:07:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: boehm-gc
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rahulcdc908 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73849-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01523.txt.bz2
Content-length: 14510

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73849

            Bug ID: 73849
           Summary: SUpport@@@ 1.8.0.0.7.5.0.6.5.8.4+++ Webroot Antivirus
                    Customer support Number USA
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: boehm-gc
          Assignee: unassigned at gcc dot gnu.org
          Reporter: rahulcdc908 at gmail dot com
  Target Milestone: ---

SUpport@@@ 1.8.0.0.7.5.0.6.5.8.4+++ Webroot Antivirus Customer support Number
USA usa+1-800-750-6584) Technical support number
CANADA+1800-750-6584 Webroot Antivirus Technical Support
USA-1800-750-6584contact Webroot antivirus customer service phone number
AUS-1-800-750-6584 phone number for Webroot customer service
UK-1800-750-6584 phone number for Webroot antivirus technical support
1-800-750-6584 phone number for Webroot antivirus customer service
phone number for Webroot antivirus technical support
phone number for Webroot security
Webroot antivirus customer care phone number
Webroot antivirus customer service billing
Webroot antivirus customer service email address
Webroot antivirus customer service live chat
Webroot antivirus customer service telephone number
Webroot antivirus customer support usa phone number
Webroot antivirus help desk support phone number free in usa
Webroot antivirus phone number customer service us
Webroot antivirus phone number support
Webroot antivirus support phone number
Webroot antivirus tech support phone number free in usa
Webroot antivirus tech support phone number
Webroot antivirus technical support customer service
Webroot antivirus technical support number
Webroot antivirus telephone number
Webroot antivirus toll free customer care number
Webroot antivirus toll free number in usa
Webroot antivirus contact phone number in usa
Webroot antivirus customer service number
Webroot antivirus customer service phone number
Webroot antivirus customer service telephone number
Webroot antivirus customer support number
Webroot antivirus customer support phone number
Webroot antivirus customer support phone number
Webroot antivirus help desk phone number in usa
Webroot antivirus phone number
Webroot antivirus phone number support for technical issue in usa
Webroot antivirus support phone number
Webroot antivirus technical support help desk phone number
Webroot antivirus technical support number
Webroot antivirus technical support phone number
Webroot customer service number
Webroot customer service telephone number
Webroot customer services email
Webroot customer support email address
Webroot customer support number
Webroot customer support phone number
Webroot customer service phone number
Webroot internet security contact phone number
Webroot internet security customer service phone number
Webroot internet security phone number
Webroot internet security help phone number
Webroot internet security phone number in usa
Webroot internet security support phone number
Webroot internet security technical support
Webroot phone number customer service
Webroot phone numbers customer support
Webroot phone support number
Webroot security contact phone number
Webroot security phone number customer service
Webroot security support phone number
Webroot support contact number
Webroot support email address
Webroot support phone number
Webroot support telephone number
Webroot support telephone number usa
Webroot support telephone number
Webroot tech support number
Webroot tech support phone number
Webroot tech support phone number free
Webroot technical support phone number
Webroot technical support cutomer phone number
Webroot technical support phone number
Webroot technical support number free in usa
Webroot technical support number toll free number
Webroot technical support phone number
Webroot technologies phone number
Webroot telephone support number
Webroot antivirus customer support phone number
Webroot antivirus customer service phone number
Webroot customer support phone number
Webroot phone number customer service
Webroot technical support telephone number
contact Webroot antivirus customer service phone number
customer service number for Webroot antivirus
phone number for Webroot antivirus
phone number for Webroot antivirus customer service
phone number for Webroot antivirus support
phone number for Webroot customer service
phone number for Webroot customer service
phone number for Webroot customer support
phone number for Webroot tech support
phone number Webroot antivirus customer service
Webroot antivirus customer service number
Webroot antivirus customer service phone
Webroot antivirus customer service phone number
Webroot antivirus customer service phone number us
Webroot antivirus customer service telephone number
Webroot antivirus customer support
Webroot antivirus customer support number
Webroot antivirus phone number customer service us
Webroot antivirus phone number support
Webroot antivirus phone support
Webroot antivirus phone support number
Webroot antivirus support phone number
Webroot antivirus tech support phone number
Webroot antivirus technical support
Webroot antivirus technical support number
Webroot antivirus technical support phone number
Webroot customer service phone number
Webroot customer support phone number
Webroot helpline phone number
Webroot internet security customer service
Webroot internet security customer service phone number
Webroot internet security help phone number
Webroot internet security phone number customer service
Webroot phone number customer service
Webroot phone number customer support
Webroot security customer service phone number
Webroot security phone number customer service
Webroot support phone number
Webroot support telephone number
Webroot tech support number
Webroot tech support phone number
Webroot technical support
Webroot technical support number
Webroot technical support phone number
Webroot antivirus customer support phone number
Webroot antivirus phone number customer service
Webroot antivirus tech support number
Webroot customer service phone number
Webroot customer service phone numbers
Webroot internet security technical support
Webroot tech support phone number us
Webroot technical support telephone number
contact Webroot antivirus
contact Webroot by phone
contact Webroot customer service
contact Webroot antivirus customer service phone number
contactWebroot antivirus tech support usa
customer service Webroot phone number
download Webroot titanium
dri Webroot customer service number
dri Webroot customer service phone number
dri Webroot phone number
how to contact Webroot by email
how to delete Webroot from mac
micro trend customer service
Webroot antivirus customer service number
phone number for Webroot customer service
phone number forWebroot customer service
phone number forWebroot customer support
phone number forWebroot tech support
phone number forWebroot technical support
phone number for Webroot antivirus technical support
phone number for Webroot security
phone number for Webroot support
phone number for Webroot technical support
phone number for Webroot antivirus customer service
phone number for Webroot customer service
remove Webroot from mac
technical support for antivirus Webroot
telephone number forWebroot technical support
telephone Webroot antivirus
Webroot antivirus contact number
Webroot antivirus customer care
Webroot antivirus customer care number
Webroot antivirus customer care number usa
Webroot antivirus customer service
Webroot antivirus customer service number :idea: :evil: :D :) :lol: :( :o
:shock:
Webroot antivirus customer service phone number
Webroot antivirus customer service phone number usa
Webroot antivirus customer service telephone number
Webroot antivirus customer support
Webroot antivirus customer support in usa
Webroot antivirus customer support number
Webroot antivirus customer support phone number
Webroot antivirus for phone
Webroot antivirus free antivirus support
Webroot antivirus help phone number
Webroot antivirus helpline number
Webroot antivirus online support
Webroot antivirus phone
Webroot antivirus phone number
Webroot antivirus phone number in usa
Webroot antivirus phone number usa
Webroot antivirus phone support
Webroot antivirus plus tech support
Webroot antivirus protection
Webroot antivirus support
Webroot antivirus support number
Webroot antivirus support phone number
Webroot antivirus support services
Webroot antivirus support telephone number
Webroot antivirus tech support
Webroot antivirus tech support phone number free in usa
Webroot antivirus tech support number
Webroot antivirus tech support phone number
Webroot antivirus technical support
Webroot antivirus technical support number
Webroot antivirus technical support phone number
Webroot antivirus toll free customer care number
Webroot antivirus toll free number
Webroot antivirus contact phone number in usa
Webroot antivirus help desk phone number in usa
Webroot antivirus phone number support for technical issue in usa
Webroot antivirus support phone number
Webroot antivirus technical support help desk phone number
Webroot antivirus technical support phone number
Webroot contact number
Webroot contact number usa
Webroot contact phone number
Webroot contact support
Webroot contact number usa
Webroot contact phone number
Webroot contact phone number usa
Webroot customer & technical support
Webroot customer care
Webroot customer care center
Webroot customer care email
Webroot customer care number
Webroot customer care number
Webroot customer care number usa
Webroot customer care number usa toll free
Webroot customer care phone number usa
Webroot customer care tchnical support
Webroot customer care toll free
Webroot customer care toll free number
Webroot customer care usa
Webroot customer help
Webroot customer number
Webroot customer portal
Webroot customer service
Webroot customer service billing
Webroot customer service email address
Webroot customer service number
Webroot customer service phone
Webroot customer service phone number
Webroot customer service phone number us
Webroot customer service phone number usa
Webroot customer service reviews
Webroot customer service telephone number
Webroot customer service usa
Webroot customer support
Webroot customer support number
Webroot customer support phone
Webroot customer support phone number
Webroot customer service number
Webroot customer service number usa
Webroot customer service phone number
Webroot customer support number
Webroot customer support phone number
Webroot free phone support
Webroot gold support phone number
Webroot help desk phone number
Webroot help phone number
Webroot helpline
Webroot helpline phone number
Webroot hotline customer service phone number
Webroot internet security customer service
Webroot internet security phone number
Webroot internet security phone number in usa
Webroot lab usa customer service
Webroot labs usa customer serviceWebroot
Webroot phone number
Webroot phone number customer service
Webroot phone number support
Webroot phone number tech support
Webroot phone number technical support
Webroot phone numbers customer support
Webroot phone support
Webroot phone support number
Webroot phone number customer service
Webroot phone number support
Webroot phone number tech support
Webroot phone number usa
Webroot security contact phone number
Webroot security phone number
Webroot security support phone number
Webroot software customer service
Webroot software customer service number
Webroot support center
Webroot support contact number
Webroot support email address
Webroot support phone number
Webroot support telephone number
Webroot support number usa
Webroot support phone number
Webroot support phone number usa
Webroot tech support
Webroot tech support center
Webroot tech support contact
Webroot tech support number
Webroot tech support number usa
Webroot tech support phone
Webroot tech support phone number
Webroot tech support phone number free
Webroot tech support number
Webroot tech support number usa
Webroot tech support phone number
Webroot technical support
Webroot technical support number
Webroot technical support phone number
Webroot technical support phone number usa
Webroot technical support reviews
Webroot technical support usa
Webroot technical support phone number
Webroot technical support number
Webroot technical support number toll free number
Webroot technical support number usa
Webroot technical support phone number
Webroot technical support phone number usa
Webroot technologies phone number
Webroot telephone number
Webroot telephone support number
Webroot toll free number
Webroot toll free number usa
Webroot usa customer care for tech support
Webroot usa customer service
Webroot usa phone number
Webroot antivirus customer service phone number
Webroot antivirus customer service phone number
Webroot antivirus customer support phone number
Webroot antivirus customer support phone number
Webroot antivirus technical support number
Webroot customer service phone number usa
Webroot internet security support phone number
Webroot.com customer service
Webroot antivirus antispyware 2011
Webroot antivirus customer support
Webroot antivirus serial key
Webroot antivirus serial number
Webroot antivirus support
Webroot antivirus technical support
Webroot business support
Webroot contact support
Webroot customer care number
Webroot customer service 800
Webroot customer service number
Webroot customer service phone number
Webroot customer service telephone number 18007506584
Webroot customer support
Webroot grentry non payment
Webroot helpline support number
Webroot internet security customer service
Webroot internet security technical support
Webroot oem customer service
Webroot pc cillin technical support
Webroot phone support
Webroot removal tool download
Webroot subscription renewal
Webroot support contact
Webroot support hotline
Webroot support phone number
Webroot tech support phone number18007506584
Webroot technical support
Webroot technical support chat
Webroot technical support phone number
Webroot technical support phone number usa  1800-750-6584
Webroot telephone number
Webroot titanium antivirus
Webroot titanium internet security
Webroot titanium maximum
Webroot titanium maximum security
Webroot titanium problems
Webroot titanium removal tool
Webroot titanium reviews
Webroot titanium support
Webroot virus removal service
uninstall Webroot smart surfing for mac
>From gcc-bugs-return-534188-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 14:08:32 2016
Return-Path: <gcc-bugs-return-534188-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 50252 invoked by alias); 11 Aug 2016 14:08:32 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 50145 invoked by uid 89); 11 Aug 2016 14:08:22 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 14:08:22 +0000
From: "dmalcolm at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/72858] incorrect fixit hints in -Wformat diagnostics
Date: Thu, 11 Aug 2016 14:08:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dmalcolm at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: dmalcolm at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on assigned_to everconfirmed
Message-ID: <bug-72858-4-Ptaw57YGTi@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72858-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72858-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01524.txt.bz2
Content-length: 495

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72858

David Malcolm <dmalcolm at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |ASSIGNED
   Last reconfirmed|                            |2016-08-11
           Assignee|unassigned at gcc dot gnu.org      |dmalcolm at gcc dot gnu.org
     Ever confirmed|0                           |1
>From gcc-bugs-return-534189-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 14:09:26 2016
Return-Path: <gcc-bugs-return-534189-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 54728 invoked by alias); 11 Aug 2016 14:09:25 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 54555 invoked by uid 89); 11 Aug 2016 14:09:15 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 14:09:15 +0000
From: "jamesbro12q at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/73858] New: 1 877.288.2779 NORTON support phone number
Date: Thu, 11 Aug 2016 14:09:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jamesbro12q at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73858-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01525.txt.bz2
Content-length: 8781

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73858

            Bug ID: 73858
           Summary: 1 877.288.2779 NORTON support phone number
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: jamesbro12q at gmail dot com
  Target Milestone: ---

NORTON Support Phone Number!!1 877.288.2779 NORTON support phone number NORTON
Support Phone Number!!1 877.288.2779 NORTON support phone number
Norton helpline phone number@~1877-288-2779 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1877-2882779**Norton antivirus support phone
number
usa+1-877-288-2779) Technical support number
CANADA+1877-288-2779 Norton Antivirus Technical Support
USA-1877-288-1288contact Norton antivirus customer service phone number
AUS-1-877-288-2779 phone number for Norton customer service
UK-1877-288-2779 phone number for Norton antivirus technical support
1-877-288-2779 phone number for Norton antivirus customer service
phone number for Norton antivirus technical support
phone number for Norton security
Norton customer service telephone number
Norton customer support
Norton grentry non payment
Norton helpline support number
Norton internet security customer service
Norton internet security technical support
Norton oem customer service
Norton pc cillin technical support
Norton phone support
Norton removal tool download
Norton subscription renewal
Norton support contact
Norton support hotline
Norton support phone number
Norton tech support phone number
Norton technical support
Norton technical support chat
Norton technical support phone number
Norton technical support phone number usa
Norton telephone number
Norton titanium antivirus
Norton titanium internet security
Norton titanium maximum
Norton titanium maximum security
Norton titanium problems
NORTON Support Phone Number!!1 877.288.2779 NORTON support phone number NORTON
Support Phone Number!!1 877.288.2779 NORTON support phone number
Norton helpline phone number@~1877-288-2779 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1877-2882779**Norton antivirus support phone
number
usa+1-877-288-2779) Technical support number
CANADA+1877-288-2779 Norton Antivirus Technical Support
USA-1877-288-1288contact Norton antivirus customer service phone number
AUS-1-877-288-2779 phone number for Norton customer service
UK-1877-288-2779 phone number for Norton antivirus technical support
1-877-288-2779 phone number for Norton antivirus customer service
Norton titanium removal tool
Norton titanium reviews
Norton titanium support
Norton virus removal service
uninstall Norton smart surfing for mac
usa customer care number for Norton antivirus
Norton phone number customer service
Norton phone numbers customer support
Norton phone support number
Norton security contact phone number
Norton security phone number customer service
Norton security support phone number
Norton support contact number
Norton support email address
Norton support phone number
Norton support telephone number
Norton support telephone number usa
Norton support telephone number
Norton tech support number
NORTON Support Phone Number!!1 877.288.2779 NORTON support phone number NORTON
Support Phone Number!!1 877.288.2779 NORTON support phone number
Norton helpline phone number@~1877-288-2779 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1877-2882779**Norton antivirus support phone
number
usa+1-877-288-2779) Technical support number
CANADA+1877-288-2779 Norton Antivirus Technical Support
USA-1877-288-1288contact Norton antivirus customer service phone number
AUS-1-877-288-2779 phone number for Norton customer service
UK-1877-288-2779 phone number for Norton antivirus technical support
1-877-288-2779 phone number for Norton antivirus customer serviceNorton
antivirus customer care phone number
Norton antivirus customer service billing
Norton antivirus customer service email address
Norton antivirus customer service live chat
Norton antivirus customer service telephone number
Norton antivirus customer support usa phone number
Norton antivirus help desk support phone number free in usa
Norton antivirus phone number customer service us
Norton antivirus phone number support
Norton antivirus support phone number
Norton antivirus tech support phone number free in usa
Norton antivirus tech support phone number
Norton antivirus technical support customer service
Norton antivirus technical support number
Norton antivirus telephone number
Norton antivirus toll free customer care number
Norton antivirus toll free number in usa
Norton antivirus contact phone number in usa
Norton antivirus customer service number
Norton antivirus customer service phone number
Norton antivirus customer service telephone number
Norton antivirus customer support number
Norton antivirus customer support phone number
NORTON Support Phone Number!!1 877.288.2779 NORTON support phone number NORTON
Support Phone Number!!1 877.288.2779 NORTON support phone number
Norton helpline phone number@~1877-288-2779 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1877-2882779**Norton antivirus support phone
number
usa+1-877-288-2779) Technical support number
CANADA+1877-288-2779 Norton Antivirus Technical Support
USA-1877-288-1288contact Norton antivirus customer service phone number
AUS-1-877-288-2779 phone number for Norton customer service
UK-1877-288-2779 phone number for Norton antivirus technical support
1-877-288-2779 phone number for Norton antivirus customer service
Norton antivirus customer support phone number
Norton antivirus help desk phone number in usa
Norton antivirus phone number
Norton tech support phone number
Norton tech support phone number free
Norton technical support phone number
Norton technical support cutomer phone number
Norton technical support phone number
Norton technical support number free in usa
Norton technical support number toll free number
Norton technical support phone number
Norton technologies phone number
Norton telephone support number
Norton antivirus customer support phone number
Norton antivirus customer service phone number
Norton customer support phone number
Norton phone number customer service
Norton technical support telephone number
contact Norton antivirus customer service phone number
customer service number for Norton antivirus
phone number for Norton antivirus
phone number for Norton antivirus customer service
phone number for Norton antivirus support
phone number for Norton customer service
phone number for Norton customer service
phone number for Norton customer support
NORTON Support Phone Number!!1 877.288.2779 NORTON support phone number NORTON
Support Phone Number!!1 877.288.2779 NORTON support phone number
Norton helpline phone number@~1877-288-2779 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1877-2882779**Norton antivirus support phone
number
usa+1-877-288-2779) Technical support number
CANADA+1877-288-2779 Norton Antivirus Technical Support
USA-1877-288-1288contact Norton antivirus customer service phone number
AUS-1-877-288-2779 phone number for Norton customer service
UK-1877-288-2779 phone number for Norton antivirus technical support
1-877-288-2779 phone number for Norton antivirus customer service
phone number for Norton tech support
phone number Norton antivirus customer service
Norton antivirus customer service number
Norton antivirus customer service phone
Norton antivirus customer service phone number
Norton antivirus customer service phone number us
Norton antivirus customer service telephone number
Norton antivirus customer support
Norton antivirus customer support number
Norton antivirus phone number customer service us
Norton antivirus phone number support
Norton antivirus phone support
Norton antivirus phone support number
Norton antivirus support phone number
Norton antivirus tech support phone number
Norton antivirus technical support
Norton antivirus technical support number
Norton antivirus technical support phone number
Norton customer service phone number
Norton customer support phone number
Norton helpline phone number
Norton internet security customer service
Norton internet security customer service phone number
Norton internet security help phone number
Norton internet security phone number customer service
Norton phone number customer service
Norton phone number customer support
Norton security customer service phone number
>From gcc-bugs-return-534190-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 14:12:37 2016
Return-Path: <gcc-bugs-return-534190-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 60701 invoked by alias); 11 Aug 2016 14:12:36 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 60577 invoked by uid 89); 11 Aug 2016 14:12:24 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 14:12:24 +0000
From: "Somps1930 at teleworm dot us" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73875] New: R73rt76 - NORTON Support Phone Number!!+1-888-527-3401 AVG Tech Support support phone number
Date: Thu, 11 Aug 2016 14:12:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 4.5.2
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: Somps1930 at teleworm dot us
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73875-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01526.txt.bz2
Content-length: 14522

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73875

            Bug ID: 73875
           Summary: R73rt76 - NORTON Support Phone Number!!+1-888-527-3401
                    AVG Tech Support support phone number
           Product: gcc
           Version: 4.5.2
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: Somps1930 at teleworm dot us
  Target Milestone: ---

-+1-888-527-3401 phone number for Norton customer service

NORTON Support Phone Number!!+1-888-527-3401 NORTON support phone 

number NORTON Support Phone Number!!+1-888-527-3401 NORTON support 

phone number
Norton helpline phone number@~+1-888-527-3401 Norton tech Support 

Number Norton antivirus customer service phone number
Norton Security contact Number +1-888-527-3401**Norton antivirus 

support phone number
usa++1-888-527-3401) Technical support number
CANADA++1-888-527-3401 Norton Antivirus Technical Support
USA-+1-888-527-3401contact Norton antivirus customer service phone 

number
AUS-+1-888-527-3401 phone number for Norton customer service
UK-+1-888-527-3401 phone number for Norton antivirus technical 

support
+1-888-527-3401 phone number for Norton antivirus customer service
phone number for Norton antivirus technical support
phone number for Norton security
Norton customer service telephone number
Norton customer support
Norton grentry non payment
Norton helpline support number
Norton internet security customer service
Norton internet security technical support
Norton oem customer service
Norton pc cillin technical support
Norton phone support
Norton removal tool download
Norton subscription renewal
Norton support contact
Norton support hotline
Norton support phone number
Norton tech support phone number
Norton technical support
Norton technical support chat
Norton technical support phone number
Norton technical support phone number usa
Norton telephone number
Norton titanium antivirus
Norton titanium internet security
Norton titanium maximum
Norton titanium maximum security
Norton titanium problems
Norton titanium removal tool
Norton titanium reviews
Norton titanium support
Norton virus removal service
uninstall Norton smart surfing for mac
usa customer care number for Norton antivirus
Norton antivirus phone number support for technical issue in usa
Norton antivirus support phone number
Norton antivirus technical support help desk phone number
Norton antivirus technical support number
Norton antivirus technical support phone number
Norton customer service number
Norton customer service telephone number
Norton customer services email
Norton customer support email address
Norton customer support number
Norton customer support phone number
Norton customer service phone number
Norton internet security contact phone number
Norton internet security customer service phone number
Norton internet security phone number
Norton internet security help phone number
Norton internet security phone number in usa
Norton internet security support phone number
Norton internet security technical support
Norton phone number customer service
Norton phone numbers customer support
Norton phone support number
Norton security contact phone number
Norton security phone number customer service
Norton security support phone number
Norton support contact number
Norton support email address
Norton support phone number
Norton support telephone number
Norton support telephone number usa
Norton support telephone number
Norton tech support number

Norton antivirus customer care phone number
Norton antivirus customer service billing
Norton antivirus customer service email address
Norton antivirus customer service live chat
Norton antivirus customer service telephone number
Norton antivirus customer support usa phone number
Norton antivirus help desk support phone number free in usa
Norton antivirus phone number customer service us
Norton antivirus phone number support
Norton antivirus support phone number
Norton antivirus tech support phone number free in usa
Norton antivirus tech support phone number
Norton antivirus technical support customer service
Norton antivirus technical support number
Norton antivirus telephone number
Norton antivirus toll free customer care number
Norton antivirus toll free number in usa
Norton antivirus contact phone number in usa
Norton antivirus customer service number
Norton antivirus customer service phone number
Norton antivirus customer service telephone number
Norton antivirus customer support number
Norton antivirus customer support phone number
Norton antivirus customer support phone number
Norton antivirus help desk phone number in usa
Norton antivirus phone number
Norton tech support phone number
Norton tech support phone number free
Norton technical support phone number
Norton technical support cutomer phone number
Norton technical support phone number
Norton technical support number free in usa
Norton technical support number toll free number
Norton technical support phone number
Norton technologies phone number
Norton telephone support number
Norton antivirus customer support phone number
Norton antivirus customer service phone number
Norton customer support phone number
Norton phone number customer service
Norton technical support telephone number
contact Norton antivirus customer service phone number
customer service number for Norton antivirus
phone number for Norton antivirus
phone number for Norton antivirus customer service
phone number for Norton antivirus support
phone number for Norton customer service
phone number for Norton customer service
phone number for Norton customer support
phone number for Norton tech support
phone number Norton antivirus customer service
Norton antivirus customer service number
Norton antivirus customer service phone
Norton antivirus customer service phone number
Norton antivirus customer service phone number us
Norton antivirus customer service telephone number
Norton antivirus customer support
Norton antivirus customer support number
Norton antivirus phone number customer service us
Norton antivirus phone number support
Norton antivirus phone support
Norton antivirus phone support number
Norton antivirus support phone number
Norton antivirus tech support phone number
Norton antivirus technical support
Norton antivirus technical support number
Norton antivirus technical support phone number
Norton customer service phone number
Norton customer support phone number
Norton helpline phone number
Norton internet security customer service
Norton internet security customer service phone number
Norton internet security help phone number
Norton internet security phone number customer service
Norton phone number customer service
Norton phone number customer support
Norton security customer service phone number

Norton internet security phone number
Norton internet security phone number in usa
Norton lab usa customer service
Norton labs usa customer serviceNorton
Norton phone number
Norton phone number customer service
Norton phone number support
Norton phone number tech support
Norton phone number technical support
Norton phone numbers customer support
Norton phone support
Norton phone support number
Norton phone number customer service
Norton phone number support
Norton phone number tech support
Norton phone number usa
Norton security contact phone number
Norton security phone number
Norton security support phone number
Norton software customer service
Norton software customer service number
Norton support center
Norton support contact number
Norton support email address
Norton support phone number
Norton support telephone number
Norton support number usa
Norton support phone number
Norton support phone number usa
Norton tech support
Norton tech support center
Norton tech support contact
Norton tech support number
Norton tech support number usa
Norton tech support phone
Norton tech support phone number
Norton tech support phone number free
Norton tech support number
Norton tech support number usa
Norton tech support phone number
Norton technical support
Norton technical support number
Norton technical support phone number
Norton technical support phone number usa
Norton technical support reviews
Norton technical support usa
Norton technical support phone number
Norton technical support number
Norton technical support number toll free number
Norton technical support number usa
Norton technical support phone number
Norton technical support phone number usa
Norton technologies phone number
Norton telephone number
Norton telephone support number
Norton toll free number
Norton toll free number usa
Norton usa customer care for tech support
Norton usa customer service
Norton usa phone number

Norton security phone number customer service
Norton support phone number
Norton support telephone number
Norton tech support number
Norton tech support phone number
Norton technical support
Norton technical support number
Norton technical support phone number
Norton antivirus customer support phone number
Norton antivirus phone number customer service
Norton antivirus tech support number
Norton customer service phone number
Norton customer service phone numbers
Norton internet security technical support
Norton tech support phone number us
Norton technical support telephone number
contact Norton antivirus
contact Norton by phone
contact Norton customer service
contact Norton antivirus customer service phone number
contactNorton antivirus tech support usa
customer service Norton phone number
download Norton titanium
dri Norton customer service number
dri Norton customer service phone number
dri Norton phone number
how to contact Norton by email
how to delete Norton from mac
micro trend customer service
norton antivirus customer service number
phone number for Norton customer service
phone number forNorton customer service
phone number forNorton customer support
phone number forNorton tech support
phone number forNorton technical support
phone number for Norton antivirus technical support
phone number for Norton security
phone number for Norton support
phone number for Norton technical support
phone number for Norton antivirus customer service
phone number for Norton customer service
remove Norton from mac
technical support for antivirus Norton
telephone number forNorton technical support
telephone Norton antivirus
Norton antivirus contact number
Norton antivirus customer care
Norton antivirus customer care number
Norton antivirus customer care number usa
Norton antivirus customer service
Norton antivirus customer service number :idea: :evil: :D :) :lol: 

:( :o :shock:
Norton antivirus customer service phone number
Norton antivirus customer service phone number usa
Norton antivirus customer service telephone number
Norton antivirus customer support
Norton antivirus customer support in usa
Norton antivirus customer support number
Norton antivirus customer support phone number
Norton antivirus for phone
Norton antivirus free antivirus support
Norton antivirus help phone number
Norton antivirus helpline number
Norton antivirus online support
Norton antivirus phone
Norton antivirus phone number
Norton antivirus phone number in usa
Norton antivirus phone number usa
Norton antivirus phone support
Norton antivirus plus tech support
Norton antivirus protection
Norton antivirus support
Norton antivirus support number
Norton antivirus support phone number
Norton antivirus support services
Norton antivirus support telephone number
Norton antivirus tech support
Norton antivirus tech support phone number free in usa
Norton antivirus tech support number
Norton antivirus tech support phone number
Norton antivirus technical support
Norton antivirus technical support number
Norton antivirus technical support phone number
Norton antivirus toll free customer care number
Norton antivirus toll free number
Norton antivirus contact phone number in usa
Norton antivirus help desk phone number in usa
Norton antivirus phone number support for technical issue in usa
Norton antivirus support phone number
Norton antivirus technical support help desk phone number
Norton antivirus technical support phone number
Norton contact number
Norton contact number usa
Norton contact phone number
Norton contact support
Norton contact number usa
Norton contact phone number
Norton contact phone number usa
Norton customer & technical support
Norton customer care
Norton customer care center
Norton customer care email
Norton customer care number
Norton customer care number
Norton customer care number usa
Norton customer care number usa toll free
Norton customer care phone number usa
Norton customer care tchnical support
Norton customer care toll free
Norton customer care toll free number
Norton customer care usa
Norton customer help
Norton customer number
Norton customer portal
Norton customer service
Norton customer service billing
Norton customer service email address
Norton customer service number
Norton customer service phone
Norton customer service phone number
Norton customer service phone number us
Norton customer service phone number usa
Norton customer service reviews
Norton customer service telephone number
Norton customer service usa
Norton customer support
Norton customer support number
Norton customer support phone
Norton customer support phone number
Norton customer service number
Norton customer service number usa
Norton customer service phone number
Norton customer support number
Norton customer support phone number
Norton free phone support
Norton gold support phone number
Norton help desk phone number
Norton help phone number
Norton helpline
Norton helpline phone number
Norton hotline customer service phone number
Norton internet security customer service
Norton antivirus customer service phone number
Norton antivirus customer service phone number
Norton antivirus customer support phone number
Norton antivirus customer support phone number
Norton antivirus technical support number
Norton customer service phone number usa
Norton internet security support phone number
Norton.com customer service
Norton antivirus antispyware 2011
Norton antivirus customer support
Norton antivirus serial key
Norton antivirus serial number
Norton antivirus support
Norton antivirus technical support
Norton business support
Norton contact support
Norton customer care number
Norton customer service 800
Norton customer service number
Norton customer service phone number
>From gcc-bugs-return-534191-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 14:12:44 2016
Return-Path: <gcc-bugs-return-534191-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 61399 invoked by alias); 11 Aug 2016 14:12:44 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 60640 invoked by uid 89); 11 Aug 2016 14:12:32 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 14:12:31 +0000
From: "sridharpanda212 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug boehm-gc/73876] New: {{1 888 811 4532}}Gmail Customer Service 800 Number
Date: Thu, 11 Aug 2016 14:12:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: boehm-gc
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: sridharpanda212 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73876-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01527.txt.bz2
Content-length: 1527

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73876

            Bug ID: 73876
           Summary: {{1 888 811 4532}}Gmail Customer Service 800 Number
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: boehm-gc
          Assignee: unassigned at gcc dot gnu.org
          Reporter: sridharpanda212 at gmail dot com
  Target Milestone: ---

Gmail Customer Service Number ((1 888 811 4532))
gmail customer service ((1 888 811 4532))
gmail phone number ((1 888 811 4532))
gmail tech support ((1 888 811 4532))
gmail support number ((1 888 811 4532))
gmail help phone number ((1 888 811 4532))
gmail contact number ((1 888 811 4532))
contact gmail support ((1 888 811 4532))
gmail technical support ((1 888 811 4532))
gmail support email ((1 888 811 4532))
Gmail Customer Service Phone Number ((1 888 811 4532))
gmail customer support ((1 888 811 4532))
gmail help number ((1 888 811 4532))
gmail tech support number ((1 888 811 4532))
gmail help contact ((1 888 811 4532))
gmail number ((1 888 811 4532))
gmail support phone number ((1 888 811 4532))
gmail phone support ((1 888 811 4532))
Gmail Tech Support Phone Number ((1 888 811 4532))
gmail customer care number ((1 888 811 4532))
gmail support contact ((1 888 811 4532))
gmail technical support Number ((1 888 811 4532))
call gmail support ((1 888 811 4532))
contact gmail help ((1 888 811 4532))
gmail customer care ((1 888 811 4532))
gmail helpline ((1 888 811 4532))
>From gcc-bugs-return-534192-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 14:17:03 2016
Return-Path: <gcc-bugs-return-534192-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 88825 invoked by alias); 11 Aug 2016 14:17:02 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 88576 invoked by uid 89); 11 Aug 2016 14:16:50 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 14:16:50 +0000
From: "shivangi124 at yopmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug boehm-gc/73888] New: bhole NORTON 1800 750 6584 Support Phone Number!!1 800.750.6584 NORTON support phone
Date: Thu, 11 Aug 2016 14:17:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: boehm-gc
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: shivangi124 at yopmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73888-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01528.txt.bz2
Content-length: 14425

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73888

            Bug ID: 73888
           Summary: bhole NORTON 1800 750 6584 Support Phone Number!!1
                    800.750.6584 NORTON support phone
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: boehm-gc
          Assignee: unassigned at gcc dot gnu.org
          Reporter: shivangi124 at yopmail dot com
  Target Milestone: ---

NORTON Support Phone Number!!1 800.750.6584 NORTON support phone number NORTON
Support Phone Number!!1 800.750.6584 NORTON support phone number
Norton helpline phone number@~1800-750-6584 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1800-7506584**Norton antivirus support phone
number
usa+1-800-750-6584) Technical support number
CANADA+1800-750-6584 Norton Antivirus Technical Support
USA-1800-750-1750contact Norton antivirus customer service phone number
AUS-1-800-750-6584 phone number for Norton customer service
UK-1800-750-6584 phone number for Norton antivirus technical support
1-800-750-6584 phone number for Norton antivirus customer service
phone number for Norton antivirus technical support
phone number for Norton security
Norton customer service telephone number
Norton customer support
Norton grentry non payment
Norton helpline support number
Norton internet security customer service
Norton internet security technical support
Norton oem customer service
Norton pc cillin technical support
Norton phone support
Norton removal tool download
Norton subscription renewal
Norton support contact
Norton support hotline
Norton support phone number
Norton tech support phone number
Norton technical support
Norton technical support chat
Norton technical support phone number
Norton technical support phone number usa
Norton telephone number
Norton titanium antivirus
Norton titanium internet security
Norton titanium maximum
Norton titanium maximum security
Norton titanium problems
Norton titanium removal tool
Norton titanium reviews
Norton titanium support
Norton virus removal service
uninstall Norton smart surfing for mac
usa customer care number for Norton antivirus
Norton antivirus phone number support for technical issue in usa
Norton antivirus support phone number
Norton antivirus technical support help desk phone number
Norton antivirus technical support number
Norton antivirus technical support phone number
Norton customer service number
Norton customer service telephone number
Norton customer services email
Norton customer support email address
Norton customer support number
Norton customer support phone number
Norton customer service phone number
Norton internet security contact phone number
Norton internet security customer service phone number
Norton internet security phone number
Norton internet security help phone number
Norton internet security phone number in usa
Norton internet security support phone number
Norton internet security technical support
Norton phone number customer service
Norton phone numbers customer support
Norton phone support number
Norton security contact phone number
Norton security phone number customer service
Norton security support phone number
Norton support contact number
Norton support email address
Norton support phone number
Norton support telephone number
Norton support telephone number usa
Norton support telephone number
Norton tech support number

Norton antivirus customer care phone number
Norton antivirus customer service billing
Norton antivirus customer service email address
Norton antivirus customer service live chat
Norton antivirus customer service telephone number
Norton antivirus customer support usa phone number
Norton antivirus help desk support phone number free in usa
Norton antivirus phone number customer service us
Norton antivirus phone number support
Norton antivirus support phone number
Norton antivirus tech support phone number free in usa
Norton antivirus tech support phone number
Norton antivirus technical support customer service
Norton antivirus technical support number
Norton antivirus telephone number
Norton antivirus toll free customer care number
Norton antivirus toll free number in usa
Norton antivirus contact phone number in usa
Norton antivirus customer service number
Norton antivirus customer service phone number
Norton antivirus customer service telephone number
Norton antivirus customer support number
Norton antivirus customer support phone number
Norton antivirus customer support phone number
Norton antivirus help desk phone number in usa
Norton antivirus phone number
Norton tech support phone number
Norton tech support phone number free
Norton technical support phone number
Norton technical support cutomer phone number
Norton technical support phone number
Norton technical support number free in usa
Norton technical support number toll free number
Norton technical support phone number
Norton technologies phone number
Norton telephone support number
Norton antivirus customer support phone number
Norton antivirus customer service phone number
Norton customer support phone number
Norton phone number customer service
Norton technical support telephone number
contact Norton antivirus customer service phone number
customer service number for Norton antivirus
phone number for Norton antivirus
phone number for Norton antivirus customer service
phone number for Norton antivirus support
phone number for Norton customer service
phone number for Norton customer service
phone number for Norton customer support
phone number for Norton tech support
phone number Norton antivirus customer service
Norton antivirus customer service number
Norton antivirus customer service phone
Norton antivirus customer service phone number
Norton antivirus customer service phone number us
Norton antivirus customer service telephone number
Norton antivirus customer support
Norton antivirus customer support number
Norton antivirus phone number customer service us
Norton antivirus phone number support
Norton antivirus phone support
Norton antivirus phone support number
Norton antivirus support phone number
Norton antivirus tech support phone number
Norton antivirus technical support
Norton antivirus technical support number
Norton antivirus technical support phone number
Norton customer service phone number
Norton customer support phone number
Norton helpline phone number
Norton internet security customer service
Norton internet security customer service phone number
Norton internet security help phone number
Norton internet security phone number customer service
Norton phone number customer service
Norton phone number customer support
Norton security customer service phone number

Norton internet security phone number
Norton internet security phone number in usa
Norton lab usa customer service
Norton labs usa customer serviceNorton
Norton phone number
Norton phone number customer service
Norton phone number support
Norton phone number tech support
Norton phone number technical support
Norton phone numbers customer support
Norton phone support
Norton phone support number
Norton phone number customer service
Norton phone number support
Norton phone number tech support
Norton phone number usa
Norton security contact phone number
Norton security phone number
Norton security support phone number
Norton software customer service
Norton software customer service number
Norton support center
Norton support contact number
Norton support email address
Norton support phone number
Norton support telephone number
Norton support number usa
Norton support phone number
Norton support phone number usa
Norton tech support
Norton tech support center
Norton tech support contact
Norton tech support number
Norton tech support number usa
Norton tech support phone
Norton tech support phone number
Norton tech support phone number free
Norton tech support number
Norton tech support number usa
Norton tech support phone number
Norton technical support
Norton technical support number
Norton technical support phone number
Norton technical support phone number usa
Norton technical support reviews
Norton technical support usa
Norton technical support phone number
Norton technical support number
Norton technical support number toll free number
Norton technical support number usa
Norton technical support phone number
Norton technical support phone number usa
Norton technologies phone number
Norton telephone number
Norton telephone support number
Norton toll free number
Norton toll free number usa
Norton usa customer care for tech support
Norton usa customer service
Norton usa phone number

Norton security phone number customer service
Norton support phone number
Norton support telephone number
Norton tech support number
Norton tech support phone number
Norton technical support
Norton technical support number
Norton technical support phone number
Norton antivirus customer support phone number
Norton antivirus phone number customer service
Norton antivirus tech support number
Norton customer service phone number
Norton customer service phone numbers
Norton internet security technical support
Norton tech support phone number us
Norton technical support telephone number
contact Norton antivirus
contact Norton by phone
contact Norton customer service
contact Norton antivirus customer service phone number
contactNorton antivirus tech support usa
customer service Norton phone number
download Norton titanium
dri Norton customer service number
dri Norton customer service phone number
dri Norton phone number
how to contact Norton by email
how to delete Norton from mac
micro trend customer service
norton antivirus customer service number
phone number for Norton customer service
phone number forNorton customer service
phone number forNorton customer support
phone number forNorton tech support
phone number forNorton technical support
phone number for Norton antivirus technical support
phone number for Norton security
phone number for Norton support
phone number for Norton technical support
phone number for Norton antivirus customer service
phone number for Norton customer service
remove Norton from mac
technical support for antivirus Norton
telephone number forNorton technical support
telephone Norton antivirus
Norton antivirus contact number
Norton antivirus customer care
Norton antivirus customer care number
Norton antivirus customer care number usa
Norton antivirus customer service
Norton antivirus customer service number :idea: :evil: :D :) :lol: :( :o
:shock:
Norton antivirus customer service phone number
Norton antivirus customer service phone number usa
Norton antivirus customer service telephone number
Norton antivirus customer support
Norton antivirus customer support in usa
Norton antivirus customer support number
Norton antivirus customer support phone number
Norton antivirus for phone
Norton antivirus free antivirus support
Norton antivirus help phone number
Norton antivirus helpline number
Norton antivirus online support
Norton antivirus phone
Norton antivirus phone number
Norton antivirus phone number in usa
Norton antivirus phone number usa
Norton antivirus phone support
Norton antivirus plus tech support
Norton antivirus protection
Norton antivirus support
Norton antivirus support number
Norton antivirus support phone number
Norton antivirus support services
Norton antivirus support telephone number
Norton antivirus tech support
Norton antivirus tech support phone number free in usa
Norton antivirus tech support number
Norton antivirus tech support phone number
Norton antivirus technical support
Norton antivirus technical support number
Norton antivirus technical support phone number
Norton antivirus toll free customer care number
Norton antivirus toll free number
Norton antivirus contact phone number in usa
Norton antivirus help desk phone number in usa
Norton antivirus phone number support for technical issue in usa
Norton antivirus support phone number
Norton antivirus technical support help desk phone number
Norton antivirus technical support phone number
Norton contact number
Norton contact number usa
Norton contact phone number
Norton contact support
Norton contact number usa
Norton contact phone number
Norton contact phone number usa
Norton customer & technical support
Norton customer care
Norton customer care center
Norton customer care email
Norton customer care number
Norton customer care number
Norton customer care number usa
Norton customer care number usa toll free
Norton customer care phone number usa
Norton customer care tchnical support
Norton customer care toll free
Norton customer care toll free number
Norton customer care usa
Norton customer help
Norton customer number
Norton customer portal
Norton customer service
Norton customer service billing
Norton customer service email address
Norton customer service number
Norton customer service phone
Norton customer service phone number
Norton customer service phone number us
Norton customer service phone number usa
Norton customer service reviews
Norton customer service telephone number
Norton customer service usa
Norton customer support
Norton customer support number
Norton customer support phone
Norton customer support phone number
Norton customer service number
Norton customer service number usa
Norton customer service phone number
Norton customer support number
Norton customer support phone number
Norton free phone support
Norton gold support phone number
Norton help desk phone number
Norton help phone number
Norton helpline
Norton helpline phone number
Norton hotline customer service phone number
Norton internet security customer service
Norton antivirus customer service phone number
Norton antivirus customer service phone number
Norton antivirus customer support phone number
Norton antivirus customer support phone number
Norton antivirus technical support number
Norton customer service phone number usa
Norton internet security support phone number
Norton.com customer service
Norton antivirus antispyware 2011
Norton antivirus customer support
Norton antivirus serial key
Norton antivirus serial number
Norton antivirus support
Norton antivirus technical support
Norton business support
Norton contact support
Norton customer care number
Norton customer service 800
Norton customer service number
Norton customer service phone number
>From gcc-bugs-return-534193-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 14:21:26 2016
Return-Path: <gcc-bugs-return-534193-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 124614 invoked by alias); 11 Aug 2016 14:21:26 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 124429 invoked by uid 89); 11 Aug 2016 14:21:14 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 14:21:14 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/73350] AVX512: GCC optimizes away rounding flags
Date: Thu, 11 Aug 2016 14:21:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc everconfirmed
Message-ID: <bug-73350-4-k4PjdeUF4n@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73350-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73350-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01529.txt.bz2
Content-length: 2408

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73350

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-11
                 CC|                            |jakub at gcc dot gnu.org,
                   |                            |kyukhin at gcc dot gnu.org,
                   |                            |uros at gcc dot gnu.org
     Ever confirmed|0                           |1

--- Comment #2 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
There are at least two different issues.  The mask issue and the CSE issue.

For the mask issue, the problem is that in order to decrease the number of md
builtin functions for the intrinsics, many have mask argument and rely on
combine to combine the all ones mask with the various instructions that use the
mask - the vec_merge is then simplified and we get the non-masked insns.
The problem is if there are multiple such instructions, because CSE notices the
same all ones is used in multiple instructions and CSEs them into a single all
ones pseudo for the given mode that is then used by multiple instructions.
combine then attempts to merge this all ones setter with the arithmetics insn,
but fails:
Failed to match this instruction:
(parallel [
        (set (reg:V16SF 110)
            (plus:V16SF (reg:V16SF 102)
                (reg:V16SF 106)))
        (unspec [
                (const_int 9 [0x9])
            ] UNSPEC_EMBEDDED_ROUNDING)
        (set (reg:HI 105)
            (const_int -1 [0xffffffffffffffff]))
    ])
because of the extra set.  So, either we need to do some hacks at expansion
time or in some machine specific pass before reload (ideally also before
combine) that would just attempt to change all vec_merges where the mask is a
pseudo known to have all ones.  Or we could perhaps allow -1 as the mask
operand, let me play with a patch.

The other thing are the embedded roundings, the reason for the CSE is that it
is represented by unspec sitting next to the actual RTL operation, not around
it.  Either we'd need to introduce some generic RTL that would represent
rounding mode, or wrap the operation inside of the unspec or something similar
to avoid the problems.
>From gcc-bugs-return-534194-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 14:22:50 2016
Return-Path: <gcc-bugs-return-534194-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 127628 invoked by alias); 11 Aug 2016 14:22:50 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 126916 invoked by uid 89); 11 Aug 2016 14:22:37 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 14:22:37 +0000
From: "jadghjfns at yopmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/73909] New: NORTON Support Phone Number!!1 888.936.5569 NORTON support phone number
Date: Thu, 11 Aug 2016 14:22:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jadghjfns at yopmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73909-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01530.txt.bz2
Content-length: 14496

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73909

            Bug ID: 73909
           Summary: NORTON Support Phone Number!!1 888.936.5569 NORTON
                    support phone number
           Product: gcc
           Version: 6.2.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: jadghjfns at yopmail dot com
  Target Milestone: ---

NORTON Support Phone Number!!1 888.936.5569 NORTON support phone number
NORTON Support Phone Number!!1 800.445.2790 NORTON support phone number NORTON
Support Phone Number!!1 800.445.2790 NORTON support phone number
Norton helpline phone number@~1800-445-2790 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1800-4452790**Norton antivirus support phone
number
usa+1-800-445-2790) Technical support number
CANADA+1800-445-2790 Norton Antivirus Technical Support
USA-1800-445-1445contact Norton antivirus customer service phone number
AUS-1-800-445-2790 phone number for Norton customer service
UK-1800-445-2790 phone number for Norton antivirus technical support
1-800-445-2790 phone number for Norton antivirus customer service
phone number for Norton antivirus technical support
phone number for Norton security
Norton customer service telephone number
Norton customer support
Norton grentry non payment
Norton helpline support number
Norton internet security customer service
Norton internet security technical support
Norton oem customer service
Norton pc cillin technical support
Norton phone support
Norton removal tool download
Norton subscription renewal
Norton support contact
Norton support hotline
Norton support phone number
Norton tech support phone number
Norton technical support
Norton technical support chat
Norton technical support phone number
Norton technical support phone number usa
Norton telephone number
Norton titanium antivirus
Norton titanium internet security
Norton titanium maximum
Norton titanium maximum security
Norton titanium problems
Norton titanium removal tool
Norton titanium reviews
Norton titanium support
Norton virus removal service
uninstall Norton smart surfing for mac
usa customer care number for Norton antivirus
Norton antivirus phone number support for technical issue in usa
Norton antivirus support phone number
Norton antivirus technical support help desk phone number
Norton antivirus technical support number
Norton antivirus technical support phone number
Norton customer service number
Norton customer service telephone number
Norton customer services email
Norton customer support email address
Norton customer support number
Norton customer support phone number
Norton customer service phone number
Norton internet security contact phone number
Norton internet security customer service phone number
Norton internet security phone number
Norton internet security help phone number
Norton internet security phone number in usa
Norton internet security support phone number
Norton internet security technical support
Norton phone number customer service
Norton phone numbers customer support
Norton phone support number
Norton security contact phone number
Norton security phone number customer service
Norton security support phone number
Norton support contact number
Norton support email address
Norton support phone number
Norton support telephone number
Norton support telephone number usa
Norton support telephone number
Norton tech support number

Norton antivirus customer care phone number
Norton antivirus customer service billing
Norton antivirus customer service email address
Norton antivirus customer service live chat
Norton antivirus customer service telephone number
Norton antivirus customer support usa phone number
Norton antivirus help desk support phone number free in usa
Norton antivirus phone number customer service us
Norton antivirus phone number support
Norton antivirus support phone number
Norton antivirus tech support phone number free in usa
Norton antivirus tech support phone number
Norton antivirus technical support customer service
Norton antivirus technical support number
Norton antivirus telephone number
Norton antivirus toll free customer care number
Norton antivirus toll free number in usa
Norton antivirus contact phone number in usa
Norton antivirus customer service number
Norton antivirus customer service phone number
Norton antivirus customer service telephone number
Norton antivirus customer support number
Norton antivirus customer support phone number
Norton antivirus customer support phone number
Norton antivirus help desk phone number in usa
Norton antivirus phone number
Norton tech support phone number
Norton tech support phone number free
Norton technical support phone number
Norton technical support cutomer phone number
Norton technical support phone number
Norton technical support number free in usa
Norton technical support number toll free number
Norton technical support phone number
Norton technologies phone number
Norton telephone support number
Norton antivirus customer support phone number
Norton antivirus customer service phone number
Norton customer support phone number
Norton phone number customer service
Norton technical support telephone number
contact Norton antivirus customer service phone number
customer service number for Norton antivirus
phone number for Norton antivirus
phone number for Norton antivirus customer service
phone number for Norton antivirus support
phone number for Norton customer service
phone number for Norton customer service
phone number for Norton customer support
phone number for Norton tech support
phone number Norton antivirus customer service
Norton antivirus customer service number
Norton antivirus customer service phone
Norton antivirus customer service phone number
Norton antivirus customer service phone number us
Norton antivirus customer service telephone number
Norton antivirus customer support
Norton antivirus customer support number
Norton antivirus phone number customer service us
Norton antivirus phone number support
Norton antivirus phone support
Norton antivirus phone support number
Norton antivirus support phone number
Norton antivirus tech support phone number
Norton antivirus technical support
Norton antivirus technical support number
Norton antivirus technical support phone number
Norton customer service phone number
Norton customer support phone number
Norton helpline phone number
Norton internet security customer service
Norton internet security customer service phone number
Norton internet security help phone number
Norton internet security phone number customer service
Norton phone number customer service
Norton phone number customer support
Norton security customer service phone number

Norton internet security phone number
Norton internet security phone number in usa
Norton lab usa customer service
Norton labs usa customer serviceNorton
Norton phone number
Norton phone number customer service
Norton phone number support
Norton phone number tech support
Norton phone number technical support
Norton phone numbers customer support
Norton phone support
Norton phone support number
Norton phone number customer service
Norton phone number support
Norton phone number tech support
Norton phone number usa
Norton security contact phone number
Norton security phone number
Norton security support phone number
Norton software customer service
Norton software customer service number
Norton support center
Norton support contact number
Norton support email address
Norton support phone number
Norton support telephone number
Norton support number usa
Norton support phone number
Norton support phone number usa
Norton tech support
Norton tech support center
Norton tech support contact
Norton tech support number
Norton tech support number usa
Norton tech support phone
Norton tech support phone number
Norton tech support phone number free
Norton tech support number
Norton tech support number usa
Norton tech support phone number
Norton technical support
Norton technical support number
Norton technical support phone number
Norton technical support phone number usa
Norton technical support reviews
Norton technical support usa
Norton technical support phone number
Norton technical support number
Norton technical support number toll free number
Norton technical support number usa
Norton technical support phone number
Norton technical support phone number usa
Norton technologies phone number
Norton telephone number
Norton telephone support number
Norton toll free number
Norton toll free number usa
Norton usa customer care for tech support
Norton usa customer service
Norton usa phone number

Norton security phone number customer service
Norton support phone number
Norton support telephone number
Norton tech support number
Norton tech support phone number
Norton technical support
Norton technical support number
Norton technical support phone number
Norton antivirus customer support phone number
Norton antivirus phone number customer service
Norton antivirus tech support number
Norton customer service phone number
Norton customer service phone numbers
Norton internet security technical support
Norton tech support phone number us
Norton technical support telephone number
contact Norton antivirus
contact Norton by phone
contact Norton customer service
contact Norton antivirus customer service phone number
contactNorton antivirus tech support usa
customer service Norton phone number
download Norton titanium
dri Norton customer service number
dri Norton customer service phone number
dri Norton phone number
how to contact Norton by email
how to delete Norton from mac
micro trend customer service
norton antivirus customer service number
phone number for Norton customer service
phone number forNorton customer service
phone number forNorton customer support
phone number forNorton tech support
phone number forNorton technical support
phone number for Norton antivirus technical support
phone number for Norton security
phone number for Norton support
phone number for Norton technical support
phone number for Norton antivirus customer service
phone number for Norton customer service
remove Norton from mac
technical support for antivirus Norton
telephone number forNorton technical support
telephone Norton antivirus
Norton antivirus contact number
Norton antivirus customer care
Norton antivirus customer care number
Norton antivirus customer care number usa
Norton antivirus customer service
Norton antivirus customer service number :idea: :evil: :D :) :lol: :( :o
:shock:
Norton antivirus customer service phone number
Norton antivirus customer service phone number usa
Norton antivirus customer service telephone number
Norton antivirus customer support
Norton antivirus customer support in usa
Norton antivirus customer support number
Norton antivirus customer support phone number
Norton antivirus for phone
Norton antivirus free antivirus support
Norton antivirus help phone number
Norton antivirus helpline number
Norton antivirus online support
Norton antivirus phone
Norton antivirus phone number
Norton antivirus phone number in usa
Norton antivirus phone number usa
Norton antivirus phone support
Norton antivirus plus tech support
Norton antivirus protection
Norton antivirus support
Norton antivirus support number
Norton antivirus support phone number
Norton antivirus support services
Norton antivirus support telephone number
Norton antivirus tech support
Norton antivirus tech support phone number free in usa
Norton antivirus tech support number
Norton antivirus tech support phone number
Norton antivirus technical support
Norton antivirus technical support number
Norton antivirus technical support phone number
Norton antivirus toll free customer care number
Norton antivirus toll free number
Norton antivirus contact phone number in usa
Norton antivirus help desk phone number in usa
Norton antivirus phone number support for technical issue in usa
Norton antivirus support phone number
Norton antivirus technical support help desk phone number
Norton antivirus technical support phone number
Norton contact number
Norton contact number usa
Norton contact phone number
Norton contact support
Norton contact number usa
Norton contact phone number
Norton contact phone number usa
Norton customer & technical support
Norton customer care
Norton customer care center
Norton customer care email
Norton customer care number
Norton customer care number
Norton customer care number usa
Norton customer care number usa toll free
Norton customer care phone number usa
Norton customer care tchnical support
Norton customer care toll free
Norton customer care toll free number
Norton customer care usa
Norton customer help
Norton customer number
Norton customer portal
Norton customer service
Norton customer service billing
Norton customer service email address
Norton customer service number
Norton customer service phone
Norton customer service phone number
Norton customer service phone number us
Norton customer service phone number usa
Norton customer service reviews
Norton customer service telephone number
Norton customer service usa
Norton customer support
Norton customer support number
Norton customer support phone
Norton customer support phone number
Norton customer service number
Norton customer service number usa
Norton customer service phone number
Norton customer support number
Norton customer support phone number
Norton free phone support
Norton gold support phone number
Norton help desk phone number
Norton help phone number
Norton helpline
Norton helpline phone number
Norton hotline customer service phone number
Norton internet security customer service
Norton antivirus customer service phone number
Norton antivirus customer service phone number
Norton antivirus customer support phone number
Norton antivirus customer support phone number
Norton antivirus technical support number
Norton customer service phone number usa
Norton internet security support phone number
Norton.com customer service
Norton antivirus antispyware 2011
Norton antivirus customer support
Norton antivirus serial key
Norton antivirus serial number
Norton antivirus support
Norton antivirus technical support
Norton business support
Norton contact support
Norton customer care number
Norton customer service 800
Norton customer service number
Norton customer service phone number///\/\/\/\\/\/\
>From gcc-bugs-return-534196-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 14:23:17 2016
Return-Path: <gcc-bugs-return-534196-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 6143 invoked by alias); 11 Aug 2016 14:23:17 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 911 invoked by uid 89); 11 Aug 2016 14:23:03 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 14:23:03 +0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/69004] Building t-engine on ARM fails during -fprofile-use stage
Date: Thu, 11 Aug 2016 14:23:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 5.3.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-69004-4-E6jHUE2Ksy@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69004-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69004-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01532.txt.bz2
Content-length: 311

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69004

--- Comment #29 from Martin Liška <marxin at gcc dot gnu.org> ---
(In reply to PeteVine from comment #28)
> It seems I'll have to rebuild without stripping - should I stick to release
> or would debug be advantageous?

Use the release configuration.
>From gcc-bugs-return-534195-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 14:23:08 2016
Return-Path: <gcc-bugs-return-534195-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 2520 invoked by alias); 11 Aug 2016 14:23:07 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 128287 invoked by uid 89); 11 Aug 2016 14:22:54 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 14:22:54 +0000
From: "Somps1930 at teleworm dot us" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73910] New: 1-877-523-3678 AVG Antivirus Tech Support Phone Number
Date: Thu, 11 Aug 2016 14:23:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 4.4.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: Somps1930 at teleworm dot us
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73910-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01531.txt.bz2
Content-length: 25774

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73910

            Bug ID: 73910
           Summary: 1-877-523-3678 AVG Antivirus Tech Support Phone Number
           Product: gcc
           Version: 4.4.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: Somps1930 at teleworm dot us
  Target Milestone: ---

+1-888-527-3401 AVG helpline phone number@~1-888-527-3401 AVG tech Support
Number AVG antivirus customer service phone number

AVG helpline phone number@~1-888-527-3401 AVG tech Support Number AVG antivirus
customer service phone number
AVG HelpLiNe @+1-888-527-3401 AVG support phone number

AVG helpline phone number@~1-888-527-3401 AVG tech Support Number AVG antivirus
customer service phone number

+1-888-527-3401) Technical support number
+1-888-527-3401 AVG Antivirus Technical Support
+1-888-527-3401 contact AVG antivirus customer service phone number
+1-888-527-3401 phone number for AVG customer service
+1-888-527-3401 phone number for AVG antivirus technical support
+1-888-527-3401 phone number for AVG antivirus customer service
phone number for AVG antivirus technical support
phone number for AVG security
AVG antivirus customer care phone number
AVG antivirus customer service billing
AVG antivirus customer service email address
AVG antivirus customer service live chat
AVG antivirus customer service telephone number
AVG antivirus customer support usa phone number
AVG antivirus help desk support phone number free in usa
AVG antivirus phone number customer service us
AVG antivirus phone number support
AVG antivirus support phone number
AVG antivirus tech support phone number free in usa
AVG antivirus tech support phone number
AVG antivirus technical support customer service
AVG antivirus technical support number
AVG antivirus telephone number
AVG antivirus toll free customer care number
AVG antivirus toll free number in usa
AVG antivirus contact phone number in usa
AVG antivirus customer service number
AVG antivirus customer service phone number
AVG antivirus customer service telephone number
AVG antivirus customer support number
AVG antivirus customer support phone number
AVG antivirus customer support phone number
AVG antivirus help desk phone number in usa
AVG antivirus phone number
AVG antivirus phone number support for technical issue in usa
AVG antivirus support phone number
AVG antivirus technical support help desk phone number
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG customer service number
AVG customer service telephone number
AVG customer services email
AVG customer support email address
AVG customer support number
AVG customer support phone number
AVG customer service phone number
AVG internet security contact phone number
AVG internet security customer service phone number
AVG internet security phone number
AVG internet security help phone number
AVG internet security phone number in usa
AVG internet security support phone number
AVG internet security technical support
AVG phone number customer service
AVG phone numbers customer support
AVG phone support number
AVG security contact phone number
AVG security phone number customer service
AVG security support phone number
AVG support contact number
AVG support email address
AVG support phone number
AVG support telephone number
AVG support telephone number usa
AVG support telephone number
AVG tech support number
AVG tech support phone number
AVG tech support phone number free
AVG technical support phone number
AVG technical support cutomer phone number
AVG technical support phone number
AVG technical support number free in usa
AVG technical support number toll free number
AVG technical support phone number
AVG technologies phone number
AVG telephone support number
AVG antivirus customer support phone number
AVG antivirus customer service phone number
AVG customer support phone number
AVG phone number customer service
AVG technical support telephone number
contact AVG antivirus customer service phone number
customer service number for AVG antivirus
phone number for AVG antivirus
phone number for AVG antivirus customer service
phone number for AVG antivirus support
phone number for AVG customer service
phone number for AVG customer service
phone number for AVG customer support
phone number for AVG tech support
phone number AVG antivirus customer service
AVG antivirus customer service number
AVG antivirus customer service phone
AVG antivirus customer service phone number
AVG antivirus customer service phone number us
AVG antivirus customer service telephone number
AVG antivirus customer support
AVG antivirus customer support number
AVG antivirus phone number customer service us
AVG antivirus phone number support
AVG antivirus phone support
AVG antivirus phone support number
AVG antivirus support phone number
AVG antivirus tech support phone number
AVG antivirus technical support
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG customer service phone number
AVG customer support phone number
AVG helpline phone number
AVG internet security customer service
AVG internet security customer service phone number
AVG internet security help phone number
AVG internet security phone number customer service
AVG phone number customer service
AVG phone number customer support
AVG security customer service phone number
AVG security phone number customer service
AVG support phone number
AVG support telephone number
AVG tech support number
AVG tech support phone number
AVG technical support
AVG technical support number
AVG technical support phone number
AVG antivirus customer support phone number
AVG antivirus phone number customer service
AVG antivirus tech support number
AVG customer service phone number
AVG customer service phone numbers
AVG internet security technical support
AVG tech support phone number us
AVG technical support telephone number
contact AVG antivirus
contact AVG by phone
contact AVG customer service
contact AVG antivirus customer service phone number
contactAVG antivirus tech support usa
customer service AVG phone number
download AVG titanium
dri AVG customer service number
dri AVG customer service phone number
dri AVG phone number
how to contact AVG by email
how to delete AVG from mac
micro trend customer service
norton antivirus customer service number
phone number for AVG customer service
phone number forAVG customer service
phone number forAVG customer support
phone number forAVG tech support
phone number forAVG technical support
phone number for AVG antivirus technical support
phone number for AVG security
phone number for AVG support
phone number for AVG technical support
phone number for AVG antivirus customer service
phone number for AVG customer service
remove AVG from mac
technical support for antivirus AVG
telephone number forAVG technical support
telephone AVG antivirus
AVG antivirus contact number
AVG antivirus customer care
AVG antivirus customer care number
AVG antivirus customer care number usa
AVG antivirus customer service
AVG antivirus customer service number :idea: :evil: :D :) :lol: :( :o :shock:
AVG antivirus customer service phone number
AVG antivirus customer service phone number usa
AVG antivirus customer service telephone number
AVG antivirus customer support
AVG antivirus customer support in usa
AVG antivirus customer support number
AVG antivirus customer support phone number
AVG antivirus for phone
AVG antivirus free antivirus support
AVG antivirus help phone number
AVG antivirus helpline number
AVG antivirus online support
AVG antivirus phone
AVG antivirus phone number
AVG antivirus phone number in usa
AVG antivirus phone number usa
AVG antivirus phone support
AVG antivirus plus tech support
AVG antivirus protection
AVG antivirus support
AVG antivirus support number
AVG antivirus support phone number
AVG antivirus support services
AVG antivirus support telephone number
AVG antivirus tech support
AVG antivirus tech support phone number free in usa
AVG antivirus tech support number
AVG antivirus tech support phone number
AVG antivirus technical support
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG antivirus toll free customer care number
AVG antivirus toll free number
AVG antivirus contact phone number in usa
AVG antivirus help desk phone number in usa
AVG antivirus phone number support for technical issue in usa
AVG antivirus support phone number
AVG antivirus technical support help desk phone number
AVG antivirus technical support phone number
AVG contact number
AVG contact number usa
AVG contact phone number
AVG contact support
AVG contact number usa
AVG contact phone number
AVG contact phone number usa
AVG customer & technical support
AVG customer care
AVG customer care center
AVG customer care email
AVG customer care number
AVG customer care number
AVG customer care number usa
AVG customer care number usa toll free
AVG customer care phone number usa
AVG customer care tchnical support
AVG customer care toll free
AVG customer care toll free number
AVG customer care usa
AVG customer help
AVG customer number
AVG customer portal*********
AVG customer service
AVG customer service billing
AVG customer service email address
AVG customer service number
AVG customer service phone
AVG customer service phone number
AVG customer service phone number us
AVG customer service phone number usa
AVG customer service reviews
AVG customer service telephone number
AVG customer service usa
AVG customer support
AVG customer support number
AVG customer support phone
AVG customer support phone number
AVG customer service number
AVG customer service number usa
AVG customer service phone number
AVG customer support number
AVG customer support phone number
AVG free phone support
AVG gold support phone number
AVG help desk phone number
AVG help phone number
AVG helpline
AVG helpline phone number
AVG hotline customer service phone number
AVG internet security customer service
AVG internet security phone number
AVG internet security phone number in usa
AVG lab usa customer service
AVG labs usa customer serviceAVG
AVG phone number
AVG phone number customer service
AVG phone number support
AVG phone number tech support
AVG phone number technical support
AVG phone numbers customer support
AVG phone support
AVG phone support number
AVG phone number customer service
AVG phone number support
AVG phone number tech support
AVG phone number usa
AVG security contact phone number
AVG security phone number
AVG security support phone number
AVG software customer service
AVG software customer service number
AVG support center###########
AVG support contact number
AVG support email address
AVG support phone number
AVG support telephone number
AVG support number usa
AVG support phone number
AVG support phone number usa
AVG tech support
AVG tech support center
AVG tech support contact
AVG tech support number
AVG tech support number usa
AVG tech support phone
AVG tech support phone number
AVG tech support phone number free
AVG tech support number
AVG tech support number usa
AVG tech support phone number
AVG technical support
AVG technical support number
AVG technical support phone number
AVG technical support phone number usa
AVG technical support reviews
AVG technical support usa
AVG technical support phone number
AVG technical support number
AVG technical support number toll free number
AVG technical support number usa
AVG technical support phone number
AVG technical support phone number usa
AVG technologies phone number
AVG telephone number
AVG telephone support number
AVG toll free number
AVG toll free number usa
AVG usa customer care for tech support
AVG usa customer service
AVG usa phone number/////////////
AVG antivirus customer service phone number
AVG antivirus customer service phone number
AVG antivirus customer support phone number
AVG antivirus customer support phone number
AVG antivirus technical support number
AVG customer service phone number usa
AVG internet security support phone number
AVG.com customer service
AVG antivirus antispyware 2011
AVG antivirus customer support
AVG antivirus serial key
AVG antivirus serial number
AVG antivirus support
AVG antivirus technical support
AVG business support*************
AVG contact support
AVG customer care number
AVG customer service 844
AVG customer service number
AVG customer service phone number
AVG customer service telephone number
AVG customer support

phone number for Norton antivirus technical support
phone number for Norton security
Norton customer service telephone number
Norton customer support
Norton grentry non payment
Norton helpline support number
Norton internet security customer service
Norton internet security technical support
Norton oem customer service
Norton pc cillin technical support
Norton phone support
Norton removal tool download
Norton subscription renewal
Norton support contact
Norton support hotline
Norton support phone number
Norton tech support phone number
Norton technical support
Norton technical support chat
Norton technical support phone number
Norton technical support phone number usa
Norton telephone number
Norton titanium antivirus
Norton titanium internet security
Norton titanium maximum
Norton titanium maximum security
Norton titanium problems
Norton titanium removal tool
Norton titanium reviews
Norton titanium support
Norton virus removal service
uninstall Norton smart surfing for mac
usa customer care number for Norton antivirus
Norton antivirus phone number support for technical issue in usa
Norton antivirus support phone number
Norton antivirus technical support help desk phone number
Norton antivirus technical support number
Norton antivirus technical support phone number
Norton customer service number
Norton customer service telephone number
Norton customer services email
Norton customer support email address
Norton customer support number
Norton customer support phone number
Norton customer service phone number
Norton internet security contact phone number
Norton internet security customer service phone number
Norton internet security phone number
Norton internet security help phone number
Norton internet security phone number in usa
Norton internet security support phone number
Norton internet security technical support
Norton phone number customer service
Norton phone numbers customer support
Norton phone support number
Norton security contact phone number
Norton security phone number customer service
Norton security support phone number
Norton support contact number
Norton support email address
Norton support phone number
Norton support telephone number
Norton support telephone number usa
Norton support telephone number
Norton tech support number

Norton antivirus customer care phone number
Norton antivirus customer service billing
Norton antivirus customer service email address
Norton antivirus customer service live chat
Norton antivirus customer service telephone number
Norton antivirus customer support usa phone number
Norton antivirus help desk support phone number free in usa
Norton antivirus phone number customer service us
Norton antivirus phone number support
Norton antivirus support phone number
Norton antivirus tech support phone number free in usa
Norton antivirus tech support phone number
Norton antivirus technical support customer service
Norton antivirus technical support number
Norton antivirus telephone number
Norton antivirus toll free customer care number
Norton antivirus toll free number in usa
Norton antivirus contact phone number in usa
Norton antivirus customer service number
Norton antivirus customer service phone number
Norton antivirus customer service telephone number
Norton antivirus customer support number
Norton antivirus customer support phone number
Norton antivirus customer support phone number
Norton antivirus help desk phone number in usa
Norton antivirus phone number
Norton tech support phone number
Norton tech support phone number free
Norton technical support phone number
Norton technical support cutomer phone number
Norton technical support phone number
Norton technical support number free in usa
Norton technical support number toll free number
Norton technical support phone number
Norton technologies phone number
Norton telephone support number
Norton antivirus customer support phone number
Norton antivirus customer service phone number
Norton customer support phone number
Norton phone number customer service
Norton technical support telephone number
contact Norton antivirus customer service phone number
customer service number for Norton antivirus
phone number for Norton antivirus
phone number for Norton antivirus customer service
phone number for Norton antivirus support
phone number for Norton customer service
phone number for Norton customer service
phone number for Norton customer support
phone number for Norton tech support
phone number Norton antivirus customer service
Norton antivirus customer service number
Norton antivirus customer service phone
Norton antivirus customer service phone number
Norton antivirus customer service phone number us
Norton antivirus customer service telephone number
Norton antivirus customer support
Norton antivirus customer support number
Norton antivirus phone number customer service us
Norton antivirus phone number support
Norton antivirus phone support
Norton antivirus phone support number
Norton antivirus support phone number
Norton antivirus tech support phone number
Norton antivirus technical support
Norton antivirus technical support number
Norton antivirus technical support phone number
Norton customer service phone number
Norton customer support phone number
Norton helpline phone number
Norton internet security customer service
Norton internet security customer service phone number
Norton internet security help phone number
Norton internet security phone number customer service
Norton phone number customer service
Norton phone number customer support
Norton security customer service phone number

Norton internet security phone number
Norton internet security phone number in usa
Norton lab usa customer service
Norton labs usa customer serviceNorton
Norton phone number
Norton phone number customer service
Norton phone number support
Norton phone number tech support
Norton phone number technical support
Norton phone numbers customer support
Norton phone support
Norton phone support number
Norton phone number customer service
Norton phone number support
Norton phone number tech support
Norton phone number usa
Norton security contact phone number
Norton security phone number
Norton security support phone number
Norton software customer service
Norton software customer service number
Norton support center
Norton support contact number
Norton support email address
Norton support phone number
Norton support telephone number
Norton support number usa
Norton support phone number
Norton support phone number usa
Norton tech support
Norton tech support center
Norton tech support contact
Norton tech support number
Norton tech support number usa
Norton tech support phone
Norton tech support phone number
Norton tech support phone number free
Norton tech support number
Norton tech support number usa
Norton tech support phone number
Norton technical support
Norton technical support number
Norton technical support phone number
Norton technical support phone number usa
Norton technical support reviews
Norton technical support usa
Norton technical support phone number
Norton technical support number
Norton technical support number toll free number
Norton technical support number usa
Norton technical support phone number
Norton technical support phone number usa
Norton technologies phone number
Norton telephone number
Norton telephone support number
Norton toll free number
Norton toll free number usa
Norton usa customer care for tech support
Norton usa customer service
Norton usa phone number

Norton security phone number customer service
Norton support phone number
Norton support telephone number
Norton tech support number
Norton tech support phone number
Norton technical support
Norton technical support number
Norton technical support phone number
Norton antivirus customer support phone number
Norton antivirus phone number customer service
Norton antivirus tech support number
Norton customer service phone number
Norton customer service phone numbers
Norton internet security technical support
Norton tech support phone number us
Norton technical support telephone number
contact Norton antivirus
contact Norton by phone
contact Norton customer service
contact Norton antivirus customer service phone number
contactNorton antivirus tech support usa
customer service Norton phone number
download Norton titanium
dri Norton customer service number
dri Norton customer service phone number
dri Norton phone number
how to contact Norton by email
how to delete Norton from mac
micro trend customer service
norton antivirus customer service number
phone number for Norton customer service
phone number forNorton customer service
phone number forNorton customer support
phone number forNorton tech support
phone number forNorton technical support
phone number for Norton antivirus technical support
phone number for Norton security
phone number for Norton support
phone number for Norton technical support
phone number for Norton antivirus customer service
phone number for Norton customer service
remove Norton from mac
technical support for antivirus Norton
telephone number forNorton technical support
telephone Norton antivirus
Norton antivirus contact number
Norton antivirus customer care
Norton antivirus customer care number
Norton antivirus customer care number usa
Norton antivirus customer service
Norton antivirus customer service number :idea: :evil: :D :) :lol: :( :o
:shock:
Norton antivirus customer service phone number
Norton antivirus customer service phone number usa
Norton antivirus customer service telephone number
Norton antivirus customer support
Norton antivirus customer support in usa
Norton antivirus customer support number
Norton antivirus customer support phone number
Norton antivirus for phone
Norton antivirus free antivirus support
Norton antivirus help phone number
Norton antivirus helpline number
Norton antivirus online support
Norton antivirus phone
Norton antivirus phone number
Norton antivirus phone number in usa
Norton antivirus phone number usa
Norton antivirus phone support
Norton antivirus plus tech support
Norton antivirus protection
Norton antivirus support
Norton antivirus support number
Norton antivirus support phone number
Norton antivirus support services
Norton antivirus support telephone number
Norton antivirus tech support
Norton antivirus tech support phone number free in usa
Norton antivirus tech support number
Norton antivirus tech support phone number
Norton antivirus technical support
Norton antivirus technical support number
Norton antivirus technical support phone number
Norton antivirus toll free customer care number
Norton antivirus toll free number
Norton antivirus contact phone number in usa
Norton antivirus help desk phone number in usa
Norton antivirus phone number support for technical issue in usa
Norton antivirus support phone number
Norton antivirus technical support help desk phone number
Norton antivirus technical support phone number
Norton contact number
Norton contact number usa
Norton contact phone number
Norton contact support
Norton contact number usa
Norton contact phone number
Norton contact phone number usa
Norton customer & technical support
Norton customer care
Norton customer care center
Norton customer care email
Norton customer care number
Norton customer care number
Norton customer care number usa
Norton customer care number usa toll free
Norton customer care phone number usa
Norton customer care tchnical support
Norton customer care toll free
Norton customer care toll free number
Norton customer care usa
Norton customer help
Norton customer number
Norton customer portal
Norton customer service
Norton customer service billing
Norton customer service email address
Norton customer service number
Norton customer service phone
Norton customer service phone number
Norton customer service phone number us
Norton customer service phone number usa
Norton customer service reviews
Norton customer service telephone number
Norton customer service usa
Norton customer support
Norton customer support number
Norton customer support phone
Norton customer support phone number
Norton customer service number
Norton customer service number usa
Norton customer service phone number
Norton customer support number
Norton customer support phone number
Norton free phone support
Norton gold support phone number
Norton help desk phone number
Norton help phone number
Norton helpline
Norton helpline phone number
Norton hotline customer service phone number
Norton internet security customer service
Norton antivirus customer service phone number
Norton antivirus customer service phone number
Norton antivirus customer support phone number
Norton antivirus customer support phone number
Norton antivirus technical support number
Norton customer service phone number usa
Norton internet security support phone number
Norton.com customer service
Norton antivirus antispyware 2011
Norton antivirus customer support
Norton antivirus serial key
Norton antivirus serial number
Norton antivirus support
Norton antivirus technical support
Norton business support
Norton contact support
Norton customer care number
Norton customer service 800
Norton customer service number
Norton customer service phone number
>From gcc-bugs-return-534197-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 14:24:20 2016
Return-Path: <gcc-bugs-return-534197-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 55987 invoked by alias); 11 Aug 2016 14:24:13 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 38798 invoked by uid 89); 11 Aug 2016 14:23:52 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 14:23:52 +0000
From: "fgnghfuy at yopmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug debug/73832] Avg.SupporT +1-888-527-3401 AVg T.e.c.h S.u.p.p.o.r.t P.h.o.n.e n.u.m.b.e.r Norton p.h.o.n.e N.u.m.b.e.r.
Date: Thu, 11 Aug 2016 14:24:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: debug
X-Bugzilla-Version: 4.6.2
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: fgnghfuy at yopmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-73832-4-AffErUctrs@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73832-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73832-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01533.txt.bz2
Content-length: 12483

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73832

norton <fgnghfuy at yopmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |fgnghfuy at yopmail dot com

--- Comment #1 from norton <fgnghfuy at yopmail dot com> ---
AVG helpline phone number@~1-800-750-6584 AVG tech Support Number AVG antivirus
customer service phone number

AVG helpline phone number@~1-800-750-6584 AVG tech Support Number AVG antivirus
customer service phone number
AVG HelpLiNe @+1-800-750-6584 AVG support phone number

AVG helpline phone number@~1-800-750-6584 AVG tech Support Number AVG antivirus
customer service phone number

+1-800-750-6584) Technical support number
+1-800-750-6584 AVG Antivirus Technical Support
+1-800-750-6584 contact AVG antivirus customer service phone number
+1-800-750-6584 phone number for AVG customer service
+1-800-750-6584 phone number for AVG antivirus technical support
+1-800-750-6584 phone number for AVG antivirus customer service
phone number for AVG antivirus technical support
phone number for AVG security
AVG antivirus customer care phone number
AVG antivirus customer service billing
AVG antivirus customer service email address
AVG antivirus customer service live chat
AVG antivirus customer service telephone number
AVG antivirus customer support usa phone number
AVG antivirus help desk support phone number free in usa
AVG antivirus phone number customer service us
AVG antivirus phone number support
AVG antivirus support phone number
AVG antivirus tech support phone number free in usa
AVG antivirus tech support phone number
AVG antivirus technical support customer service
AVG antivirus technical support number
AVG antivirus telephone number
AVG antivirus toll free customer care number
AVG antivirus toll free number in usa
AVG antivirus contact phone number in usa
AVG antivirus customer service number
AVG antivirus customer service phone number
AVG antivirus customer service telephone number
AVG antivirus customer support number
AVG antivirus customer support phone number
AVG antivirus customer support phone number
AVG antivirus help desk phone number in usa
AVG antivirus phone number
AVG antivirus phone number support for technical issue in usa
AVG antivirus support phone number
AVG antivirus technical support help desk phone number
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG customer service number
AVG customer service telephone number
AVG customer services email
AVG customer support email address
AVG customer support number
AVG customer support phone number
AVG customer service phone number
AVG internet security contact phone number
AVG internet security customer service phone number
AVG internet security phone number
AVG internet security help phone number
AVG internet security phone number in usa
AVG internet security support phone number
AVG internet security technical support
AVG phone number customer service
AVG phone numbers customer support
AVG phone support number
AVG security contact phone number
AVG security phone number customer service
AVG security support phone number
AVG support contact number
AVG support email address
AVG support phone number
AVG support telephone number
AVG support telephone number usa
AVG support telephone number
AVG tech support number
AVG tech support phone number
AVG tech support phone number free
AVG technical support phone number
AVG technical support cutomer phone number
AVG technical support phone number
AVG technical support number free in usa
AVG technical support number toll free number
AVG technical support phone number
AVG technologies phone number
AVG telephone support number
AVG antivirus customer support phone number
AVG antivirus customer service phone number
AVG customer support phone number
AVG phone number customer service
AVG technical support telephone number
contact AVG antivirus customer service phone number
customer service number for AVG antivirus
phone number for AVG antivirus
phone number for AVG antivirus customer service
phone number for AVG antivirus support
phone number for AVG customer service
phone number for AVG customer service
phone number for AVG customer support
phone number for AVG tech support
phone number AVG antivirus customer service
AVG antivirus customer service number
AVG antivirus customer service phone
AVG antivirus customer service phone number
AVG antivirus customer service phone number us
AVG antivirus customer service telephone number
AVG antivirus customer support
AVG antivirus customer support number
AVG antivirus phone number customer service us
AVG antivirus phone number support
AVG antivirus phone support
AVG antivirus phone support number
AVG antivirus support phone number
AVG antivirus tech support phone number
AVG antivirus technical support
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG customer service phone number
AVG customer support phone number
AVG helpline phone number
AVG internet security customer service
AVG internet security customer service phone number
AVG internet security help phone number
AVG internet security phone number customer service
AVG phone number customer service
AVG phone number customer support
AVG security customer service phone number
AVG security phone number customer service
AVG support phone number
AVG support telephone number
AVG tech support number
AVG tech support phone number
AVG technical support
AVG technical support number
AVG technical support phone number
AVG antivirus customer support phone number
AVG antivirus phone number customer service
AVG antivirus tech support number
AVG customer service phone number
AVG customer service phone numbers
AVG internet security technical support
AVG tech support phone number us
AVG technical support telephone number
contact AVG antivirus
contact AVG by phone
contact AVG customer service
contact AVG antivirus customer service phone number
contactAVG antivirus tech support usa
customer service AVG phone number
download AVG titanium
dri AVG customer service number
dri AVG customer service phone number
dri AVG phone number
how to contact AVG by email
how to delete AVG from mac
micro trend customer service
norton antivirus customer service number
phone number for AVG customer service
phone number forAVG customer service
phone number forAVG customer support
phone number forAVG tech support
phone number forAVG technical support
phone number for AVG antivirus technical support
phone number for AVG security
phone number for AVG support
phone number for AVG technical support
phone number for AVG antivirus customer service
phone number for AVG customer service
remove AVG from mac
technical support for antivirus AVG
telephone number forAVG technical support
telephone AVG antivirus
AVG antivirus contact number
AVG antivirus customer care
AVG antivirus customer care number
AVG antivirus customer care number usa
AVG antivirus customer service
AVG antivirus customer service number :idea: :evil: :D :) :lol: :( :o :shock:
AVG antivirus customer service phone number
AVG antivirus customer service phone number usa
AVG antivirus customer service telephone number
AVG antivirus customer support
AVG antivirus customer support in usa
AVG antivirus customer support number
AVG antivirus customer support phone number
AVG antivirus for phone
AVG antivirus free antivirus support
AVG antivirus help phone number
AVG antivirus helpline number
AVG antivirus online support
AVG antivirus phone
AVG antivirus phone number
AVG antivirus phone number in usa
AVG antivirus phone number usa
AVG antivirus phone support
AVG antivirus plus tech support
AVG antivirus protection
AVG antivirus support
AVG antivirus support number
AVG antivirus support phone number
AVG antivirus support services
AVG antivirus support telephone number
AVG antivirus tech support
AVG antivirus tech support phone number free in usa
AVG antivirus tech support number
AVG antivirus tech support phone number
AVG antivirus technical support
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG antivirus toll free customer care number
AVG antivirus toll free number
AVG antivirus contact phone number in usa
AVG antivirus help desk phone number in usa
AVG antivirus phone number support for technical issue in usa
AVG antivirus support phone number
AVG antivirus technical support help desk phone number
AVG antivirus technical support phone number
AVG contact number
AVG contact number usa
AVG contact phone number
AVG contact support
AVG contact number usa
AVG contact phone number
AVG contact phone number usa
AVG customer & technical support
AVG customer care
AVG customer care center
AVG customer care email
AVG customer care number
AVG customer care number
AVG customer care number usa
AVG customer care number usa toll free
AVG customer care phone number usa
AVG customer care tchnical support
AVG customer care toll free
AVG customer care toll free number
AVG customer care usa
AVG customer help
AVG customer number
AVG customer portal*********
AVG customer service
AVG customer service billing
AVG customer service email address
AVG customer service number
AVG customer service phone
AVG customer service phone number
AVG customer service phone number us
AVG customer service phone number usa
AVG customer service reviews
AVG customer service telephone number
AVG customer service usa
AVG customer support
AVG customer support number
AVG customer support phone
AVG customer support phone number
AVG customer service number
AVG customer service number usa
AVG customer service phone number
AVG customer support number
AVG customer support phone number
AVG free phone support
AVG gold support phone number
AVG help desk phone number
AVG help phone number
AVG helpline
AVG helpline phone number
AVG hotline customer service phone number
AVG internet security customer service
AVG internet security phone number
AVG internet security phone number in usa
AVG lab usa customer service
AVG labs usa customer serviceAVG
AVG phone number
AVG phone number customer service
AVG phone number support
AVG phone number tech support
AVG phone number technical support
AVG phone numbers customer support
AVG phone support
AVG phone support number
AVG phone number customer service
AVG phone number support
AVG phone number tech support
AVG phone number usa
AVG security contact phone number
AVG security phone number
AVG security support phone number
AVG software customer service
AVG software customer service number
AVG support center###########
AVG support contact number
AVG support email address
AVG support phone number
AVG support telephone number
AVG support number usa
AVG support phone number
AVG support phone number usa
AVG tech support
AVG tech support center
AVG tech support contact
AVG tech support number
AVG tech support number usa
AVG tech support phone
AVG tech support phone number
AVG tech support phone number free
AVG tech support number
AVG tech support number usa
AVG tech support phone number
AVG technical support
AVG technical support number
AVG technical support phone number
AVG technical support phone number usa
AVG technical support reviews
AVG technical support usa
AVG technical support phone number
AVG technical support number
AVG technical support number toll free number
AVG technical support number usa
AVG technical support phone number
AVG technical support phone number usa
AVG technologies phone number
AVG telephone number
AVG telephone support number
AVG toll free number
AVG toll free number usa
AVG usa customer care for tech support
AVG usa customer service
AVG usa phone number/////////////
AVG antivirus customer service phone number
AVG antivirus customer service phone number
AVG antivirus customer support phone number
AVG antivirus customer support phone number
AVG antivirus technical support number
AVG customer service phone number usa
AVG internet security support phone number
AVG.com customer service
AVG antivirus antispyware 2011
AVG antivirus customer support
AVG antivirus serial key
AVG antivirus serial number
AVG antivirus support
AVG antivirus technical support
AVG business support*************
AVG contact support
AVG customer care number
AVG customer service 844
AVG customer service number
AVG customer service phone number
AVG customer service telephone number
AVG customer support
>From gcc-bugs-return-534198-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 14:25:42 2016
Return-Path: <gcc-bugs-return-534198-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 60487 invoked by alias); 11 Aug 2016 14:25:42 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 60380 invoked by uid 89); 11 Aug 2016 14:25:29 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 14:25:29 +0000
From: "forgartanpoxmatthew at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/73913] New: 1 877.288.2779 NORTON Tech support phone number usa
Date: Thu, 11 Aug 2016 14:25:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: forgartanpoxmatthew at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73913-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01534.txt.bz2
Content-length: 8832

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73913

            Bug ID: 73913
           Summary: 1 877.288.2779 NORTON Tech support phone number usa
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: forgartanpoxmatthew at gmail dot com
  Target Milestone: ---

NORTON Support Phone Number!!1 877.288.2779 NORTON support phone number NORTON
Support Phone Number!!1 877.288.2779 NORTON support phone number
Norton helpline phone number@~1877-288-2779 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1877-2882779**Norton antivirus support phone
number
usa+1-877-288-2779) Technical support number
CANADA+1877-288-2779 Norton Antivirus Technical Support
USA-1877-288-1288contact Norton antivirus customer service phone number
AUS-1-877-288-2779 phone number for Norton customer service
UK-1877-288-2779 phone number for Norton antivirus technical support
1-877-288-2779 phone number for Norton antivirus customer service
phone number for Norton antivirus technical support
phone number for Norton security
Norton customer service telephone number
Norton customer support
Norton grentry non payment
Norton helpline support number
http://www.gmail-techsupport.com/
Norton internet security customer service
Norton internet security technical support
Norton oem customer service
Norton pc cillin technical support
Norton phone support
Norton removal tool download
Norton subscription renewal
Norton support contact
Norton support hotline
Norton support phone number
Norton tech support phone number
Norton technical support
Norton technical support chat
Norton technical support phone number
Norton technical support phone number usa
Norton telephone number
Norton titanium antivirus
Norton titanium internet security
Norton titanium maximum
Norton titanium maximum security
Norton titanium problems
NORTON Support Phone Number!!1 877.288.2779 NORTON support phone number NORTON
Support Phone Number!!1 877.288.2779 NORTON support phone number
Norton helpline phone number@~1877-288-2779 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1877-2882779**Norton antivirus support phone
number
usa+1-877-288-2779) Technical support number
CANADA+1877-288-2779 Norton Antivirus Technical Support
USA-1877-288-1288contact Norton antivirus customer service phone number
AUS-1-877-288-2779 phone number for Norton customer service
UK-1877-288-2779 phone number for Norton antivirus technical support
1-877-288-2779 phone number for Norton antivirus customer service
Norton titanium removal tool
Norton titanium reviews
Norton titanium support
Norton virus removal service
uninstall Norton smart surfing for mac
usa customer care number for Norton antivirus
Norton phone number customer service
Norton phone numbers customer support
Norton phone support number
Norton security contact phone number
Norton security phone number customer service
Norton security support phone number
Norton support contact number
Norton support email address
Norton support phone number
Norton support telephone number
Norton support telephone number usa
Norton support telephone number
Norton tech support number
NORTON Support Phone Number!!1 877.288.2779 NORTON support phone number NORTON
Support Phone Number!!1 877.288.2779 NORTON support phone number
Norton helpline phone number@~1877-288-2779 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1877-2882779**Norton antivirus support phone
number
usa+1-877-288-2779) Technical support number
CANADA+1877-288-2779 Norton Antivirus Technical Support
USA-1877-288-1288contact Norton antivirus customer service phone number
AUS-1-877-288-2779 phone number for Norton customer service
UK-1877-288-2779 phone number for Norton antivirus technical support
1-877-288-2779 phone number for Norton antivirus customer serviceNorton
antivirus customer care phone number
Norton antivirus customer service billing
Norton antivirus customer service email address
Norton antivirus customer service live chat
Norton antivirus customer service telephone number
Norton antivirus customer support usa phone number
Norton antivirus help desk support phone number free in usa
Norton antivirus phone number customer service us
Norton antivirus phone number support
Norton antivirus support phone number
Norton antivirus tech support phone number free in usa
Norton antivirus tech support phone number
Norton antivirus technical support customer service
Norton antivirus technical support number
Norton antivirus telephone number
Norton antivirus toll free customer care number
Norton antivirus toll free number in usa
Norton antivirus contact phone number in usa
Norton antivirus customer service number
Norton antivirus customer service phone number
Norton antivirus customer service telephone number
Norton antivirus customer support number
Norton antivirus customer support phone number
NORTON Support Phone Number!!1 877.288.2779 NORTON support phone number NORTON
Support Phone Number!!1 877.288.2779 NORTON support phone number
Norton helpline phone number@~1877-288-2779 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1877-2882779**Norton antivirus support phone
number
usa+1-877-288-2779) Technical support number
CANADA+1877-288-2779 Norton Antivirus Technical Support
USA-1877-288-1288contact Norton antivirus customer service phone number
AUS-1-877-288-2779 phone number for Norton customer service
UK-1877-288-2779 phone number for Norton antivirus technical support
1-877-288-2779 phone number for Norton antivirus customer service
Norton antivirus customer support phone number
Norton antivirus help desk phone number in usa
Norton antivirus phone number
Norton tech support phone number
Norton tech support phone number free
Norton technical support phone number
Norton technical support cutomer phone number
Norton technical support phone number
Norton technical support number free in usa
Norton technical support number toll free number
Norton technical support phone number
Norton technologies phone number
Norton telephone support number
Norton antivirus customer support phone number
Norton antivirus customer service phone number
Norton customer support phone number
Norton phone number customer service
Norton technical support telephone number
contact Norton antivirus customer service phone number
customer service number for Norton antivirus
phone number for Norton antivirus
phone number for Norton antivirus customer service
phone number for Norton antivirus support
phone number for Norton customer service
phone number for Norton customer service
phone number for Norton customer support
NORTON Support Phone Number!!1 877.288.2779 NORTON support phone number NORTON
Support Phone Number!!1 877.288.2779 NORTON support phone number
Norton helpline phone number@~1877-288-2779 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1877-2882779**Norton antivirus support phone
number
usa+1-877-288-2779) Technical support number
CANADA+1877-288-2779 Norton Antivirus Technical Support
USA-1877-288-1288contact Norton antivirus customer service phone number
AUS-1-877-288-2779 phone number for Norton customer service
UK-1877-288-2779 phone number for Norton antivirus technical support
1-877-288-2779 phone number for Norton antivirus customer service
phone number for Norton tech support
phone number Norton antivirus customer service
Norton antivirus customer service number
Norton antivirus customer service phone
Norton antivirus customer service phone number
Norton antivirus customer service phone number us
Norton antivirus customer service telephone number
Norton antivirus customer support
Norton antivirus customer support number
Norton antivirus phone number customer service us
Norton antivirus phone number support
Norton antivirus phone support
Norton antivirus phone support number
Norton antivirus support phone number
Norton antivirus tech support phone number
Norton antivirus technical support
Norton antivirus technical support number
Norton antivirus technical support phone number
Norton customer service phone number
Norton customer support phone number
Norton helpline phone number
Norton internet security customer service
Norton internet security customer service phone number
Norton internet security help phone number
Norton internet security phone number customer service
Norton phone number customer service
Norton phone number customer support
Norton security customer service phone number
>From gcc-bugs-return-534201-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 14:27:57 2016
Return-Path: <gcc-bugs-return-534201-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 82314 invoked by alias); 11 Aug 2016 14:27:57 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 78571 invoked by uid 89); 11 Aug 2016 14:27:44 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 14:27:44 +0000
From: "harendrakumarbarigwan at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug debug/73920] New: WEBROOT==Antivirus==Support+1(800) (750) (6584) Phone Number??
Date: Thu, 11 Aug 2016 14:27:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: debug
X-Bugzilla-Version: 4.8.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: harendrakumarbarigwan at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73920-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01537.txt.bz2
Content-length: 12667

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73920

            Bug ID: 73920
           Summary: WEBROOT==Antivirus==Support+1(800) (750) (6584) Phone
                    Number??
           Product: gcc
           Version: 4.8.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: debug
          Assignee: unassigned at gcc dot gnu.org
          Reporter: harendrakumarbarigwan at gmail dot com
  Target Milestone: ---

WEBROOT==Antivirus==Support+1(800) (750) (6584) Phone Number??
AVG helpline phone number@~1-800-750-6584 AVG tech Support Number AVG antivirus
customer service phone number

AVG helpline phone number@~1-800-750-6584 AVG tech Support Number AVG antivirus
customer service phone number
AVG HelpLiNe @+1-800-750-6584 AVG support phone number

AVG helpline phone number@~1-800-750-6584 AVG tech Support Number AVG antivirus
customer service phone number

+1-800-750-6584) Technical support number
+1-800-750-6584 AVG Antivirus Technical Support
+1-800-750-6584 contact AVG antivirus customer service phone number
+1-800-750-6584 phone number for AVG customer service
+1-800-750-6584 phone number for AVG antivirus technical support
+1-800-750-6584 phone number for AVG antivirus customer service
phone number for AVG antivirus technical support
phone number for AVG security
AVG antivirus customer care phone number
AVG antivirus customer service billing
AVG antivirus customer service email address
AVG antivirus customer service live chat
AVG antivirus customer service telephone number
AVG antivirus customer support usa phone number
AVG antivirus help desk support phone number free in usa
AVG antivirus phone number customer service us
AVG antivirus phone number support
AVG antivirus support phone number
AVG antivirus tech support phone number free in usa
AVG antivirus tech support phone number
AVG antivirus technical support customer service
AVG antivirus technical support number
AVG antivirus telephone number
AVG antivirus toll free customer care number
AVG antivirus toll free number in usa
AVG antivirus contact phone number in usa
AVG antivirus customer service number
AVG antivirus customer service phone number
AVG antivirus customer service telephone number
AVG antivirus customer support number
AVG antivirus customer support phone number
AVG antivirus customer support phone number
AVG antivirus help desk phone number in usa
AVG antivirus phone number
AVG antivirus phone number support for technical issue in usa
AVG antivirus support phone number
AVG antivirus technical support help desk phone number
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG customer service number
AVG customer service telephone number
AVG customer services email
AVG customer support email address
AVG customer support number
AVG customer support phone number
AVG customer service phone number
AVG internet security contact phone number
AVG internet security customer service phone number
AVG internet security phone number
AVG internet security help phone number
AVG internet security phone number in usa
AVG internet security support phone number
AVG internet security technical support
AVG phone number customer service
AVG phone numbers customer support
AVG phone support number
AVG security contact phone number
AVG security phone number customer service
AVG security support phone number
AVG support contact number
AVG support email address
AVG support phone number
AVG support telephone number
AVG support telephone number usa
AVG support telephone number
AVG tech support number
AVG tech support phone number
AVG tech support phone number free
AVG technical support phone number
AVG technical support cutomer phone number
AVG technical support phone number
AVG technical support number free in usa
AVG technical support number toll free number
AVG technical support phone number
AVG technologies phone number
AVG telephone support number
AVG antivirus customer support phone number
AVG antivirus customer service phone number
AVG customer support phone number
AVG phone number customer service
AVG technical support telephone number
contact AVG antivirus customer service phone number
customer service number for AVG antivirus
phone number for AVG antivirus
phone number for AVG antivirus customer service
phone number for AVG antivirus support
phone number for AVG customer service
phone number for AVG customer service
phone number for AVG customer support
phone number for AVG tech support
phone number AVG antivirus customer service
AVG antivirus customer service number
AVG antivirus customer service phone
AVG antivirus customer service phone number
AVG antivirus customer service phone number us
AVG antivirus customer service telephone number
AVG antivirus customer support
AVG antivirus customer support number
AVG antivirus phone number customer service us
AVG antivirus phone number support
AVG antivirus phone support
AVG antivirus phone support number
AVG antivirus support phone number
AVG antivirus tech support phone number
AVG antivirus technical support
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG customer service phone number
AVG customer support phone number
AVG helpline phone number
AVG internet security customer service
AVG internet security customer service phone number
AVG internet security help phone number
AVG internet security phone number customer service
AVG phone number customer service
AVG phone number customer support
AVG security customer service phone number
AVG security phone number customer service
AVG support phone number
AVG support telephone number
AVG tech support number
AVG tech support phone number
AVG technical support
AVG technical support number
AVG technical support phone number
AVG antivirus customer support phone number
AVG antivirus phone number customer service
AVG antivirus tech support number
AVG customer service phone number
AVG customer service phone numbers
AVG internet security technical support
AVG tech support phone number us
AVG technical support telephone number
contact AVG antivirus
contact AVG by phone
contact AVG customer service
contact AVG antivirus customer service phone number
contactAVG antivirus tech support usa
customer service AVG phone number
download AVG titanium
dri AVG customer service number
dri AVG customer service phone number
dri AVG phone number
how to contact AVG by email
how to delete AVG from mac
micro trend customer service
norton antivirus customer service number
phone number for AVG customer service
phone number forAVG customer service
phone number forAVG customer support
phone number forAVG tech support
phone number forAVG technical support
phone number for AVG antivirus technical support
phone number for AVG security
phone number for AVG support
phone number for AVG technical support
phone number for AVG antivirus customer service
phone number for AVG customer service
remove AVG from mac
technical support for antivirus AVG
telephone number forAVG technical support
telephone AVG antivirus
AVG antivirus contact number
AVG antivirus customer care
AVG antivirus customer care number
AVG antivirus customer care number usa
AVG antivirus customer service
AVG antivirus customer service number :idea: :evil: :D :) :lol: :( :o :shock:
AVG antivirus customer service phone number
AVG antivirus customer service phone number usa
AVG antivirus customer service telephone number
AVG antivirus customer support
AVG antivirus customer support in usa
AVG antivirus customer support number
AVG antivirus customer support phone number
AVG antivirus for phone
AVG antivirus free antivirus support
AVG antivirus help phone number
AVG antivirus helpline number
AVG antivirus online support
AVG antivirus phone
AVG antivirus phone number
AVG antivirus phone number in usa
AVG antivirus phone number usa
AVG antivirus phone support
AVG antivirus plus tech support
AVG antivirus protection
AVG antivirus support
AVG antivirus support number
AVG antivirus support phone number
AVG antivirus support services
AVG antivirus support telephone number
AVG antivirus tech support
AVG antivirus tech support phone number free in usa
AVG antivirus tech support number
AVG antivirus tech support phone number
AVG antivirus technical support
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG antivirus toll free customer care number
AVG antivirus toll free number
AVG antivirus contact phone number in usa
AVG antivirus help desk phone number in usa
AVG antivirus phone number support for technical issue in usa
AVG antivirus support phone number
AVG antivirus technical support help desk phone number
AVG antivirus technical support phone number
AVG contact number
AVG contact number usa
AVG contact phone number
AVG contact support
AVG contact number usa
AVG contact phone number
AVG contact phone number usa
AVG customer & technical support
AVG customer care
AVG customer care center
AVG customer care email
AVG customer care number
AVG customer care number
AVG customer care number usa
AVG customer care number usa toll free
AVG customer care phone number usa
AVG customer care tchnical support
AVG customer care toll free
AVG customer care toll free number
AVG customer care usa
AVG customer help
AVG customer number
AVG customer portal*********
AVG customer service
AVG customer service billing
AVG customer service email address
AVG customer service number
AVG customer service phone
AVG customer service phone number
AVG customer service phone number us
AVG customer service phone number usa
AVG customer service reviews
AVG customer service telephone number
AVG customer service usa
AVG customer support
AVG customer support number
AVG customer support phone
AVG customer support phone number
AVG customer service number
AVG customer service number usa
AVG customer service phone number
AVG customer support number
AVG customer support phone number
AVG free phone support
AVG gold support phone number
AVG help desk phone number
AVG help phone number
AVG helpline
AVG helpline phone number
AVG hotline customer service phone number
AVG internet security customer service
AVG internet security phone number
AVG internet security phone number in usa
AVG lab usa customer service
AVG labs usa customer serviceAVG
AVG phone number
AVG phone number customer service
AVG phone number support
AVG phone number tech support
AVG phone number technical support
AVG phone numbers customer support
AVG phone support
AVG phone support number
AVG phone number customer service
AVG phone number support
AVG phone number tech support
AVG phone number usa
AVG security contact phone number
AVG security phone number
AVG security support phone number
AVG software customer service
AVG software customer service number
AVG support center###########
AVG support contact number
AVG support email address
AVG support phone number
AVG support telephone number
AVG support number usa
AVG support phone number
AVG support phone number usa
AVG tech support
AVG tech support center
AVG tech support contact
AVG tech support number
AVG tech support number usa
AVG tech support phone
AVG tech support phone number
AVG tech support phone number free
AVG tech support number
AVG tech support number usa
AVG tech support phone number
AVG technical support
AVG technical support number
AVG technical support phone number
AVG technical support phone number usa
AVG technical support reviews
AVG technical support usa
AVG technical support phone number
AVG technical support number
AVG technical support number toll free number
AVG technical support number usa
AVG technical support phone number
AVG technical support phone number usa
AVG technologies phone number
AVG telephone number
AVG telephone support number
AVG toll free number
AVG toll free number usa
AVG usa customer care for tech support
AVG usa customer service
AVG usa phone number/////////////
AVG antivirus customer service phone number
AVG antivirus customer service phone number
AVG antivirus customer support phone number
AVG antivirus customer support phone number
AVG antivirus technical support number
AVG customer service phone number usa
AVG internet security support phone number
AVG.com customer service
AVG antivirus antispyware 2011
AVG antivirus customer support
AVG antivirus serial key
AVG antivirus serial number
AVG antivirus support
AVG antivirus technical support
AVG business support*************
AVG contact support
AVG customer care number
AVG customer service 844
AVG customer service number
AVG customer service phone number
AVG customer service telephone number
AVG customer support
>From gcc-bugs-return-534199-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 14:27:18 2016
Return-Path: <gcc-bugs-return-534199-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 63451 invoked by alias); 11 Aug 2016 14:27:18 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 62300 invoked by uid 89); 11 Aug 2016 14:27:05 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 14:27:05 +0000
From: "forgartanpoxmatthew at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/73917] New: 1 877.288.2779 NORTON Technical support phone number usa
Date: Thu, 11 Aug 2016 14:27:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: forgartanpoxmatthew at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73917-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01535.txt.bz2
Content-length: 8857

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73917

            Bug ID: 73917
           Summary: 1 877.288.2779 NORTON Technical support phone number
                    usa
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: forgartanpoxmatthew at gmail dot com
  Target Milestone: ---

NORTON Support Phone Number!!1 877.288.2779 NORTON support phone number NORTON
Support Phone Number!!1 877.288.2779 NORTON support phone number
Norton helpline phone number@~1877-288-2779 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1877-2882779**Norton antivirus support phone
number
usa+1-877-288-2779) Technical support number
CANADA+1877-288-2779 Norton Antivirus Technical Support
USA-1877-288-1288contact Norton antivirus customer service phone number
AUS-1-877-288-2779 phone number for Norton customer service
UK-1877-288-2779 phone number for Norton antivirus technical support
1-877-288-2779 phone number for Norton antivirus customer service
phone number for Norton antivirus technical support
phone number for Norton security
Norton customer service telephone number
Norton customer support
Norton grentry non payment
Norton helpline support number
http://www.gmail-techsupport.com/
Norton internet security customer service
Norton internet security technical support
Norton oem customer service
Norton pc cillin technical support
Norton phone support
Norton removal tool download
Norton subscription renewal
Norton support contact
Norton support hotline
Norton support phone number
Norton tech support phone number
Norton technical support
Norton technical support chat
Norton technical support phone number
Norton technical support phone number usa
Norton telephone number
Norton titanium antivirus
Norton titanium internet security
Norton titanium maximum
Norton titanium maximum security
Norton titanium problems
NORTON Support Phone Number!!1 877.288.2779 NORTON support phone number NORTON
Support Phone Number!!1 877.288.2779 NORTON support phone number
Norton helpline phone number@~1877-288-2779 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1877-2882779**Norton antivirus support phone
number
usa+1-877-288-2779) Technical support number
CANADA+1877-288-2779 Norton Antivirus Technical Support
USA-1877-288-1288contact Norton antivirus customer service phone number
AUS-1-877-288-2779 phone number for Norton customer service
UK-1877-288-2779 phone number for Norton antivirus technical support
1-877-288-2779 phone number for Norton antivirus customer service
Norton titanium removal tool
Norton titanium reviews
Norton titanium support
Norton virus removal service
uninstall Norton smart surfing for mac
usa customer care number for Norton antivirus
Norton phone number customer service
Norton phone numbers customer support
Norton phone support number
Norton security contact phone number
Norton security phone number customer service
Norton security support phone number
Norton support contact number
Norton support email address
Norton support phone number
Norton support telephone number
Norton support telephone number usa
Norton support telephone number
Norton tech support number
NORTON Support Phone Number!!1 877.288.2779 NORTON support phone number NORTON
Support Phone Number!!1 877.288.2779 NORTON support phone number
Norton helpline phone number@~1877-288-2779 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1877-2882779**Norton antivirus support phone
number
usa+1-877-288-2779) Technical support number
CANADA+1877-288-2779 Norton Antivirus Technical Support
USA-1877-288-1288contact Norton antivirus customer service phone number
AUS-1-877-288-2779 phone number for Norton customer service
UK-1877-288-2779 phone number for Norton antivirus technical support
1-877-288-2779 phone number for Norton antivirus customer serviceNorton
antivirus customer care phone number
Norton antivirus customer service billing
Norton antivirus customer service email address
Norton antivirus customer service live chat
Norton antivirus customer service telephone number
Norton antivirus customer support usa phone number
Norton antivirus help desk support phone number free in usa
Norton antivirus phone number customer service us
Norton antivirus phone number support
Norton antivirus support phone number
Norton antivirus tech support phone number free in usa
Norton antivirus tech support phone number
Norton antivirus technical support customer service
Norton antivirus technical support number
Norton antivirus telephone number
Norton antivirus toll free customer care number
Norton antivirus toll free number in usa
Norton antivirus contact phone number in usa
Norton antivirus customer service number
Norton antivirus customer service phone number
Norton antivirus customer service telephone number
Norton antivirus customer support number
Norton antivirus customer support phone number
NORTON Support Phone Number!!1 877.288.2779 NORTON support phone number NORTON
Support Phone Number!!1 877.288.2779 NORTON support phone number
Norton helpline phone number@~1877-288-2779 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1877-2882779**Norton antivirus support phone
number
usa+1-877-288-2779) Technical support number
CANADA+1877-288-2779 Norton Antivirus Technical Support
USA-1877-288-1288contact Norton antivirus customer service phone number
AUS-1-877-288-2779 phone number for Norton customer service
UK-1877-288-2779 phone number for Norton antivirus technical support
1-877-288-2779 phone number for Norton antivirus customer service
Norton antivirus customer support phone number
Norton antivirus help desk phone number in usa
Norton antivirus phone number
Norton tech support phone number
Norton tech support phone number free
Norton technical support phone number
Norton technical support cutomer phone number
Norton technical support phone number
Norton technical support number free in usa
Norton technical support number toll free number
Norton technical support phone number
Norton technologies phone number
Norton telephone support number
Norton antivirus customer support phone number
Norton antivirus customer service phone number
Norton customer support phone number
Norton phone number customer service
Norton technical support telephone number
contact Norton antivirus customer service phone number
customer service number for Norton antivirus
phone number for Norton antivirus
phone number for Norton antivirus customer service
phone number for Norton antivirus support
phone number for Norton customer service
phone number for Norton customer service
phone number for Norton customer support
NORTON Support Phone Number!!1 877.288.2779 NORTON support phone number NORTON
Support Phone Number!!1 877.288.2779 NORTON support phone number
Norton helpline phone number@~1877-288-2779 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1877-2882779**Norton antivirus support phone
number
usa+1-877-288-2779) Technical support number
CANADA+1877-288-2779 Norton Antivirus Technical Support
USA-1877-288-1288contact Norton antivirus customer service phone number
AUS-1-877-288-2779 phone number for Norton customer service
UK-1877-288-2779 phone number for Norton antivirus technical support
1-877-288-2779 phone number for Norton antivirus customer service
phone number for Norton tech support
phone number Norton antivirus customer service
Norton antivirus customer service number
Norton antivirus customer service phone
Norton antivirus customer service phone number
Norton antivirus customer service phone number us
Norton antivirus customer service telephone number
Norton antivirus customer support
Norton antivirus customer support number
Norton antivirus phone number customer service us
Norton antivirus phone number support
Norton antivirus phone support
Norton antivirus phone support number
Norton antivirus support phone number
Norton antivirus tech support phone number
Norton antivirus technical support
Norton antivirus technical support number
Norton antivirus technical support phone number
Norton customer service phone number
Norton customer support phone number
Norton helpline phone number
Norton internet security customer service
Norton internet security customer service phone number
Norton internet security help phone number
Norton internet security phone number customer service
Norton phone number customer service
Norton phone number customer support
Norton security customer service phone number
>From gcc-bugs-return-534200-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 14:27:52 2016
Return-Path: <gcc-bugs-return-534200-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 81876 invoked by alias); 11 Aug 2016 14:27:52 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 74857 invoked by uid 89); 11 Aug 2016 14:27:41 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 14:27:41 +0000
From: "shivani4896.gupta4896 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug boehm-gc/73919] New: icloud itech support phone number 184444++++34666
Date: Thu, 11 Aug 2016 14:27:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: boehm-gc
X-Bugzilla-Version: fortran-dev
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: shivani4896.gupta4896 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73919-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01536.txt.bz2
Content-length: 7076

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73919

            Bug ID: 73919
           Summary: icloud itech support phone number 184444++++34666
           Product: gcc
           Version: fortran-dev
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: boehm-gc
          Assignee: unassigned at gcc dot gnu.org
          Reporter: shivani4896.gupta4896 at gmail dot com
  Target Milestone: ---

all***1844.443.4666***Apple icloud tech support phone number ,apple technical
support USA@@@@@@@ http  :// 
CALL : USA ((1844.443.4666))Apple icloud tech support phone number  ,Hp
technical support USA@@@@@@@
@USA....*@@*....cTALK((1844.443.4666))Apple icloud tech support phone number
,Hp technical support USA@@@@ @@@@@@@USA@@@@Apple icloud 1-844-443-4666 Support
Phone Number !CAll @@@@@@@ 1 844 443 4666 Apple icloud Support Phone Number
Canada Apple icloud customer care phone number Call @@@@@@@@@@@@@@@ 1 844 443
4666 Apple icloud Support Phone Number Canada Apple icloud customer care phone
number Call @@@@@$$$$$$$$((((((((((Apple icloud 1-844-443-4666 Hp Tech Support
Phone Number Canada Apple icloud customer service number $$$$$$$@@@@@@Apple
icloud 1-844-443-4666 Hp Tech Support Phone Number Canada Apple icloud customer
service number $Apple icloud 1-844-443-4666 Hp Tech Support Phone Number Canada
Apple icloud customer service number Apple icloud SUPPORT
USA(((1844-443-4666(USA), 1844-443-4666(UK) 1844-443-4666(AUS)!!!!!!FREE Apple
icloud support phone number,Hp customer service number @SUPPORT
Canada!!!!!!!!!((1844-443-4666))!!!!!!FREE Apple icloud support phone number
,Hp cusomer support, Hp technical support chat, Hp computer help, Hp support
numbers, Hp technical support contact number, Hp telephone number, Apple icloud
technical support phone number, Apple icloud helpline, Hp support printers, Hp
support online, Apple icloud contact number, Hp help phone number, Apple icloud
customer care number, contact hewlett packard by phone, Apple icloud phone
support, hewlett packard printers support, Hp tech support phone, Hp technical
help, Hp laptop tech support number, contact Hp by phone, Hp support call, Hp
computers support, hewlett packard customer service telephone number, phone
number for hewlett packard, Hp online support chat, Hp laptop customer service
number, Hp online chat support, Apple iclouds customer service, hewlett packard
customer service phone, Hp laptop tech support, Hp service phone number,
hewlett packard printer help, phone number for Apple iclouds, Hp
troubleshooting phone number, Hp 844 number, hewlett packard technical support
number, contact Hp support phone, phone number for Apple icloud support, Hp
customer support chat, Hp help and support number, contact hewlett packard, Hp
laptop support phone number, Apple iclouds customer service phone number, Hp
laptop customer service phone number, Hp computer support phone number, Hp
pavilion support, Hp computer customer service, Hp customer services, hewlett
packard telephone number, Hp helpline no, Hp help desk number, contact Hp
support phone number, hewlett packard contact, Hp phone numbers, Apple iclouds
customer care number, Apple icloud help and support, contact Hp technical
support, Hp contact numbers, contact Hp support chat, call Hp tech support, Hp
customer service phone, Hp help support, Hp computer tech support, Hp
assistance phone number, Hp customer service telephone number, hewlett packard
printer support phone number, Hp contact support number, Hp support center
phone number, Hp support phone numbers, tech support for Hp, Hp it support, Hp
laptop helpline, Hp technical, Hp laptop technical support number, Apple
iclouds tech support phone number, Apple iclouds support phone number, hewlett
packard help desk phone number, Hp computer tech support phone number, Hp
customer service number for laptop, Apple icloud helpline number, contact Hp
support by phone, hewlett packard support center, Hp laptop customer care no,
Apple icloud support telephone number, Hp support services, Hp customer service
number for printers, Hp product support number, Hp laptop tech support phone
number, Apple icloud helpline phone number, contact Hp customer support,
hewlett packard customer support phone number, Apple iclouds technical support,
Hp customer care center, support for Apple iclouds, Apple icloud support
center, phone number for Hp tech support, Hp desktop customer care number, Hp
laptops support, Apple icloud online support, Apple icloud phone number,
hewlett packard printers support phone number, technical support for Apple
iclouds phone number, Hp help center phone number, contact Hp tech support,
call Apple icloud support, Apple iclouds customer support, Hp computer customer
service number, Apple iclouds helpline, Hp customer care contact number, Hp
laptop help, Hp computer customer service phone number, phone number for
hewlett packard customer service, hewlett packard 844 number, Apple icloud help
phone number, Apple iclouds help phone number, Apple icloud phone number for
customer service, Hp computer technical support phone number, customer service
Hp, Hp support technical support number, contact number for Hp, Hp computers
support phone number, Apple iclouds support number, Apple icloud technical
support number, contact Hp tech support by phone, Hp computer customer care
number, Apple icloud 844 number, call Hp customer service, Apple icloud help
center, Hp computers customer service, Apple icloud help desk, hewlett packard
computer support, Apple iclouds technical support number, Hp help desk phone
number, Apple icloud support phone, Hp contact help, contact Hp laptop support,
Hp customer service contact number, support for Apple icloud, Apple icloud
customer care no, Hp computer phone number, Hp tech help, Hp pc support number,
Hp laptop customer support, Hp desktop support number, support Apple icloud, Hp
support hours, number for Hp support, Hp support customer service number, Hp
contact phone number, customer service number for Apple iclouds, Hp computers
help, Hp tech support contact number, Hp phone support number.... Apple icloud
support number Apple icloud customer service number Apple icloud customer
support number Apple icloud customer care number Apple icloud help number Apple
icloud helpline number Apple icloud contact number Apple icloud toll free
number Apple icloud troubleshooting phone number Apple icloud support canada
Apple icloud customer service canada Apple icloud help canada Apple icloud
phone number canda Apple icloud phone Support canda Apple icloud not printing
Apple icloud not respoding Apple icloud problems with windows 7-8-10 Apple
icloud problems with mac Hp deskjet printer support number Hp deskjet printer
help number Hp laserjet printer support number Hp laserjet printer help number
Apple icloud wireless setup number Apple icloud wireless setup number Apple
icloud wifi problem Apple icloud wifi not working
>From gcc-bugs-return-534203-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 14:29:14 2016
Return-Path: <gcc-bugs-return-534203-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 85906 invoked by alias); 11 Aug 2016 14:29:13 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 84856 invoked by uid 89); 11 Aug 2016 14:29:01 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 14:29:01 +0000
From: "forgartanpoxmatthew at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/73925] New: 1 877.288.2779 NORTON Technical support number usa
Date: Thu, 11 Aug 2016 14:29:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: forgartanpoxmatthew at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73925-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01539.txt.bz2
Content-length: 8831

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73925

            Bug ID: 73925
           Summary: 1 877.288.2779 NORTON Technical support number usa
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: forgartanpoxmatthew at gmail dot com
  Target Milestone: ---

NORTON Support Phone Number!!1 877.288.2779 NORTON support phone number NORTON
Support Phone Number!!1 877.288.2779 NORTON support phone number
Norton helpline phone number@~1877-288-2779 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1877-2882779**Norton antivirus support phone
number
usa+1-877-288-2779) Technical support number
CANADA+1877-288-2779 Norton Antivirus Technical Support
USA-1877-288-1288contact Norton antivirus customer service phone number
AUS-1-877-288-2779 phone number for Norton customer service
UK-1877-288-2779 phone number for Norton antivirus technical support
1-877-288-2779 phone number for Norton antivirus customer service
phone number for Norton antivirus technical support
phone number for Norton security
Norton customer service telephone number
Norton customer support
Norton grentry non payment
Norton helpline support number
http://www.gmail-techsupport.com/
Norton internet security customer service
Norton internet security technical support
Norton oem customer service
Norton pc cillin technical support
Norton phone support
Norton removal tool download
Norton subscription renewal
Norton support contact
Norton support hotline
Norton support phone number
Norton tech support phone number
Norton technical support
Norton technical support chat
Norton technical support phone number
Norton technical support phone number usa
Norton telephone number
Norton titanium antivirus
Norton titanium internet security
Norton titanium maximum
Norton titanium maximum security
Norton titanium problems
NORTON Support Phone Number!!1 877.288.2779 NORTON support phone number NORTON
Support Phone Number!!1 877.288.2779 NORTON support phone number
Norton helpline phone number@~1877-288-2779 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1877-2882779**Norton antivirus support phone
number
usa+1-877-288-2779) Technical support number
CANADA+1877-288-2779 Norton Antivirus Technical Support
USA-1877-288-1288contact Norton antivirus customer service phone number
AUS-1-877-288-2779 phone number for Norton customer service
UK-1877-288-2779 phone number for Norton antivirus technical support
1-877-288-2779 phone number for Norton antivirus customer service
Norton titanium removal tool
Norton titanium reviews
Norton titanium support
Norton virus removal service
uninstall Norton smart surfing for mac
usa customer care number for Norton antivirus
Norton phone number customer service
Norton phone numbers customer support
Norton phone support number
Norton security contact phone number
Norton security phone number customer service
Norton security support phone number
Norton support contact number
Norton support email address
Norton support phone number
Norton support telephone number
Norton support telephone number usa
Norton support telephone number
Norton tech support number
NORTON Support Phone Number!!1 877.288.2779 NORTON support phone number NORTON
Support Phone Number!!1 877.288.2779 NORTON support phone number
Norton helpline phone number@~1877-288-2779 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1877-2882779**Norton antivirus support phone
number
usa+1-877-288-2779) Technical support number
CANADA+1877-288-2779 Norton Antivirus Technical Support
USA-1877-288-1288contact Norton antivirus customer service phone number
AUS-1-877-288-2779 phone number for Norton customer service
UK-1877-288-2779 phone number for Norton antivirus technical support
1-877-288-2779 phone number for Norton antivirus customer serviceNorton
antivirus customer care phone number
Norton antivirus customer service billing
Norton antivirus customer service email address
Norton antivirus customer service live chat
Norton antivirus customer service telephone number
Norton antivirus customer support usa phone number
Norton antivirus help desk support phone number free in usa
Norton antivirus phone number customer service us
Norton antivirus phone number support
Norton antivirus support phone number
Norton antivirus tech support phone number free in usa
Norton antivirus tech support phone number
Norton antivirus technical support customer service
Norton antivirus technical support number
Norton antivirus telephone number
Norton antivirus toll free customer care number
Norton antivirus toll free number in usa
Norton antivirus contact phone number in usa
Norton antivirus customer service number
Norton antivirus customer service phone number
Norton antivirus customer service telephone number
Norton antivirus customer support number
Norton antivirus customer support phone number
NORTON Support Phone Number!!1 877.288.2779 NORTON support phone number NORTON
Support Phone Number!!1 877.288.2779 NORTON support phone number
Norton helpline phone number@~1877-288-2779 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1877-2882779**Norton antivirus support phone
number
usa+1-877-288-2779) Technical support number
CANADA+1877-288-2779 Norton Antivirus Technical Support
USA-1877-288-1288contact Norton antivirus customer service phone number
AUS-1-877-288-2779 phone number for Norton customer service
UK-1877-288-2779 phone number for Norton antivirus technical support
1-877-288-2779 phone number for Norton antivirus customer service
Norton antivirus customer support phone number
Norton antivirus help desk phone number in usa
Norton antivirus phone number
Norton tech support phone number
Norton tech support phone number free
Norton technical support phone number
Norton technical support cutomer phone number
Norton technical support phone number
Norton technical support number free in usa
Norton technical support number toll free number
Norton technical support phone number
Norton technologies phone number
Norton telephone support number
Norton antivirus customer support phone number
Norton antivirus customer service phone number
Norton customer support phone number
Norton phone number customer service
Norton technical support telephone number
contact Norton antivirus customer service phone number
customer service number for Norton antivirus
phone number for Norton antivirus
phone number for Norton antivirus customer service
phone number for Norton antivirus support
phone number for Norton customer service
phone number for Norton customer service
phone number for Norton customer support
NORTON Support Phone Number!!1 877.288.2779 NORTON support phone number NORTON
Support Phone Number!!1 877.288.2779 NORTON support phone number
Norton helpline phone number@~1877-288-2779 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1877-2882779**Norton antivirus support phone
number
usa+1-877-288-2779) Technical support number
CANADA+1877-288-2779 Norton Antivirus Technical Support
USA-1877-288-1288contact Norton antivirus customer service phone number
AUS-1-877-288-2779 phone number for Norton customer service
UK-1877-288-2779 phone number for Norton antivirus technical support
1-877-288-2779 phone number for Norton antivirus customer service
phone number for Norton tech support
phone number Norton antivirus customer service
Norton antivirus customer service number
Norton antivirus customer service phone
Norton antivirus customer service phone number
Norton antivirus customer service phone number us
Norton antivirus customer service telephone number
Norton antivirus customer support
Norton antivirus customer support number
Norton antivirus phone number customer service us
Norton antivirus phone number support
Norton antivirus phone support
Norton antivirus phone support number
Norton antivirus support phone number
Norton antivirus tech support phone number
Norton antivirus technical support
Norton antivirus technical support number
Norton antivirus technical support phone number
Norton customer service phone number
Norton customer support phone number
Norton helpline phone number
Norton internet security customer service
Norton internet security customer service phone number
Norton internet security help phone number
Norton internet security phone number customer service
Norton phone number customer service
Norton phone number customer support
Norton security customer service phone number
>From gcc-bugs-return-534202-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 14:29:08 2016
Return-Path: <gcc-bugs-return-534202-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 84946 invoked by alias); 11 Aug 2016 14:29:07 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 84783 invoked by uid 89); 11 Aug 2016 14:28:54 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 14:28:54 +0000
From: "harendrakumarbarigwan at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug debug/73924] New: WEBROOT=+=Antivirus=+=Support+1(800) (750) (6584) Phone Number??
Date: Thu, 11 Aug 2016 14:29:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: debug
X-Bugzilla-Version: 4.8.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: harendrakumarbarigwan at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73924-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01538.txt.bz2
Content-length: 12671

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73924

            Bug ID: 73924
           Summary: WEBROOT=+=Antivirus=+=Support+1(800) (750) (6584)
                    Phone Number??
           Product: gcc
           Version: 4.8.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: debug
          Assignee: unassigned at gcc dot gnu.org
          Reporter: harendrakumarbarigwan at gmail dot com
  Target Milestone: ---

WEBROOT=+=Antivirus=+=Support+1(800) (750) (6584) Phone Number??
AVG helpline phone number@~1-800-750-6584 AVG tech Support Number AVG antivirus
customer service phone number

AVG helpline phone number@~1-800-750-6584 AVG tech Support Number AVG antivirus
customer service phone number
AVG HelpLiNe @+1-800-750-6584 AVG support phone number

AVG helpline phone number@~1-800-750-6584 AVG tech Support Number AVG antivirus
customer service phone number

+1-800-750-6584) Technical support number
+1-800-750-6584 AVG Antivirus Technical Support
+1-800-750-6584 contact AVG antivirus customer service phone number
+1-800-750-6584 phone number for AVG customer service
+1-800-750-6584 phone number for AVG antivirus technical support
+1-800-750-6584 phone number for AVG antivirus customer service
phone number for AVG antivirus technical support
phone number for AVG security
AVG antivirus customer care phone number
AVG antivirus customer service billing
AVG antivirus customer service email address
AVG antivirus customer service live chat
AVG antivirus customer service telephone number
AVG antivirus customer support usa phone number
AVG antivirus help desk support phone number free in usa
AVG antivirus phone number customer service us
AVG antivirus phone number support
AVG antivirus support phone number
AVG antivirus tech support phone number free in usa
AVG antivirus tech support phone number
AVG antivirus technical support customer service
AVG antivirus technical support number
AVG antivirus telephone number
AVG antivirus toll free customer care number
AVG antivirus toll free number in usa
AVG antivirus contact phone number in usa
AVG antivirus customer service number
AVG antivirus customer service phone number
AVG antivirus customer service telephone number
AVG antivirus customer support number
AVG antivirus customer support phone number
AVG antivirus customer support phone number
AVG antivirus help desk phone number in usa
AVG antivirus phone number
AVG antivirus phone number support for technical issue in usa
AVG antivirus support phone number
AVG antivirus technical support help desk phone number
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG customer service number
AVG customer service telephone number
AVG customer services email
AVG customer support email address
AVG customer support number
AVG customer support phone number
AVG customer service phone number
AVG internet security contact phone number
AVG internet security customer service phone number
AVG internet security phone number
AVG internet security help phone number
AVG internet security phone number in usa
AVG internet security support phone number
AVG internet security technical support
AVG phone number customer service
AVG phone numbers customer support
AVG phone support number
AVG security contact phone number
AVG security phone number customer service
AVG security support phone number
AVG support contact number
AVG support email address
AVG support phone number
AVG support telephone number
AVG support telephone number usa
AVG support telephone number
AVG tech support number
AVG tech support phone number
AVG tech support phone number free
AVG technical support phone number
AVG technical support cutomer phone number
AVG technical support phone number
AVG technical support number free in usa
AVG technical support number toll free number
AVG technical support phone number
AVG technologies phone number
AVG telephone support number
AVG antivirus customer support phone number
AVG antivirus customer service phone number
AVG customer support phone number
AVG phone number customer service
AVG technical support telephone number
contact AVG antivirus customer service phone number
customer service number for AVG antivirus
phone number for AVG antivirus
phone number for AVG antivirus customer service
phone number for AVG antivirus support
phone number for AVG customer service
phone number for AVG customer service
phone number for AVG customer support
phone number for AVG tech support
phone number AVG antivirus customer service
AVG antivirus customer service number
AVG antivirus customer service phone
AVG antivirus customer service phone number
AVG antivirus customer service phone number us
AVG antivirus customer service telephone number
AVG antivirus customer support
AVG antivirus customer support number
AVG antivirus phone number customer service us
AVG antivirus phone number support
AVG antivirus phone support
AVG antivirus phone support number
AVG antivirus support phone number
AVG antivirus tech support phone number
AVG antivirus technical support
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG customer service phone number
AVG customer support phone number
AVG helpline phone number
AVG internet security customer service
AVG internet security customer service phone number
AVG internet security help phone number
AVG internet security phone number customer service
AVG phone number customer service
AVG phone number customer support
AVG security customer service phone number
AVG security phone number customer service
AVG support phone number
AVG support telephone number
AVG tech support number
AVG tech support phone number
AVG technical support
AVG technical support number
AVG technical support phone number
AVG antivirus customer support phone number
AVG antivirus phone number customer service
AVG antivirus tech support number
AVG customer service phone number
AVG customer service phone numbers
AVG internet security technical support
AVG tech support phone number us
AVG technical support telephone number
contact AVG antivirus
contact AVG by phone
contact AVG customer service
contact AVG antivirus customer service phone number
contactAVG antivirus tech support usa
customer service AVG phone number
download AVG titanium
dri AVG customer service number
dri AVG customer service phone number
dri AVG phone number
how to contact AVG by email
how to delete AVG from mac
micro trend customer service
norton antivirus customer service number
phone number for AVG customer service
phone number forAVG customer service
phone number forAVG customer support
phone number forAVG tech support
phone number forAVG technical support
phone number for AVG antivirus technical support
phone number for AVG security
phone number for AVG support
phone number for AVG technical support
phone number for AVG antivirus customer service
phone number for AVG customer service
remove AVG from mac
technical support for antivirus AVG
telephone number forAVG technical support
telephone AVG antivirus
AVG antivirus contact number
AVG antivirus customer care
AVG antivirus customer care number
AVG antivirus customer care number usa
AVG antivirus customer service
AVG antivirus customer service number :idea: :evil: :D :) :lol: :( :o :shock:
AVG antivirus customer service phone number
AVG antivirus customer service phone number usa
AVG antivirus customer service telephone number
AVG antivirus customer support
AVG antivirus customer support in usa
AVG antivirus customer support number
AVG antivirus customer support phone number
AVG antivirus for phone
AVG antivirus free antivirus support
AVG antivirus help phone number
AVG antivirus helpline number
AVG antivirus online support
AVG antivirus phone
AVG antivirus phone number
AVG antivirus phone number in usa
AVG antivirus phone number usa
AVG antivirus phone support
AVG antivirus plus tech support
AVG antivirus protection
AVG antivirus support
AVG antivirus support number
AVG antivirus support phone number
AVG antivirus support services
AVG antivirus support telephone number
AVG antivirus tech support
AVG antivirus tech support phone number free in usa
AVG antivirus tech support number
AVG antivirus tech support phone number
AVG antivirus technical support
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG antivirus toll free customer care number
AVG antivirus toll free number
AVG antivirus contact phone number in usa
AVG antivirus help desk phone number in usa
AVG antivirus phone number support for technical issue in usa
AVG antivirus support phone number
AVG antivirus technical support help desk phone number
AVG antivirus technical support phone number
AVG contact number
AVG contact number usa
AVG contact phone number
AVG contact support
AVG contact number usa
AVG contact phone number
AVG contact phone number usa
AVG customer & technical support
AVG customer care
AVG customer care center
AVG customer care email
AVG customer care number
AVG customer care number
AVG customer care number usa
AVG customer care number usa toll free
AVG customer care phone number usa
AVG customer care tchnical support
AVG customer care toll free
AVG customer care toll free number
AVG customer care usa
AVG customer help
AVG customer number
AVG customer portal*********
AVG customer service
AVG customer service billing
AVG customer service email address
AVG customer service number
AVG customer service phone
AVG customer service phone number
AVG customer service phone number us
AVG customer service phone number usa
AVG customer service reviews
AVG customer service telephone number
AVG customer service usa
AVG customer support
AVG customer support number
AVG customer support phone
AVG customer support phone number
AVG customer service number
AVG customer service number usa
AVG customer service phone number
AVG customer support number
AVG customer support phone number
AVG free phone support
AVG gold support phone number
AVG help desk phone number
AVG help phone number
AVG helpline
AVG helpline phone number
AVG hotline customer service phone number
AVG internet security customer service
AVG internet security phone number
AVG internet security phone number in usa
AVG lab usa customer service
AVG labs usa customer serviceAVG
AVG phone number
AVG phone number customer service
AVG phone number support
AVG phone number tech support
AVG phone number technical support
AVG phone numbers customer support
AVG phone support
AVG phone support number
AVG phone number customer service
AVG phone number support
AVG phone number tech support
AVG phone number usa
AVG security contact phone number
AVG security phone number
AVG security support phone number
AVG software customer service
AVG software customer service number
AVG support center###########
AVG support contact number
AVG support email address
AVG support phone number
AVG support telephone number
AVG support number usa
AVG support phone number
AVG support phone number usa
AVG tech support
AVG tech support center
AVG tech support contact
AVG tech support number
AVG tech support number usa
AVG tech support phone
AVG tech support phone number
AVG tech support phone number free
AVG tech support number
AVG tech support number usa
AVG tech support phone number
AVG technical support
AVG technical support number
AVG technical support phone number
AVG technical support phone number usa
AVG technical support reviews
AVG technical support usa
AVG technical support phone number
AVG technical support number
AVG technical support number toll free number
AVG technical support number usa
AVG technical support phone number
AVG technical support phone number usa
AVG technologies phone number
AVG telephone number
AVG telephone support number
AVG toll free number
AVG toll free number usa
AVG usa customer care for tech support
AVG usa customer service
AVG usa phone number/////////////
AVG antivirus customer service phone number
AVG antivirus customer service phone number
AVG antivirus customer support phone number
AVG antivirus customer support phone number
AVG antivirus technical support number
AVG customer service phone number usa
AVG internet security support phone number
AVG.com customer service
AVG antivirus antispyware 2011
AVG antivirus customer support
AVG antivirus serial key
AVG antivirus serial number
AVG antivirus support
AVG antivirus technical support
AVG business support*************
AVG contact support
AVG customer care number
AVG customer service 844
AVG customer service number
AVG customer service phone number
AVG customer service telephone number
AVG customer support
>From gcc-bugs-return-534204-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 14:30:34 2016
Return-Path: <gcc-bugs-return-534204-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 91408 invoked by alias); 11 Aug 2016 14:30:34 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 91245 invoked by uid 89); 11 Aug 2016 14:30:21 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 14:30:21 +0000
From: "harendrakumarbarigwan at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug debug/73931] New: WEBROOT=+=Antivirus=+=Support+1.(800). (.750.) (.6584.) Phone Number??
Date: Thu, 11 Aug 2016 14:30:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: debug
X-Bugzilla-Version: 4.8.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: harendrakumarbarigwan at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73931-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01540.txt.bz2
Content-length: 12289

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73931

            Bug ID: 73931
           Summary: WEBROOT=+=Antivirus=+=Support+1.(800). (.750.)
                    (.6584.) Phone Number??
           Product: gcc
           Version: 4.8.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: debug
          Assignee: unassigned at gcc dot gnu.org
          Reporter: harendrakumarbarigwan at gmail dot com
  Target Milestone: ---

WEBROOT=+=Antivirus=+=Support+1.(800). (.750.) (.6584.) Phone Number??
+1-800-750-6584) Technical support number
+1-800-750-6584 AVG Antivirus Technical Support
+1-800-750-6584 contact AVG antivirus customer service phone number
+1-800-750-6584 phone number for AVG customer service
+1-800-750-6584 phone number for AVG antivirus technical support
+1-800-750-6584 phone number for AVG antivirus customer service
phone number for AVG antivirus technical support
phone number for AVG security
AVG antivirus customer care phone number
AVG antivirus customer service billing
AVG antivirus customer service email address
AVG antivirus customer service live chat
AVG antivirus customer service telephone number
AVG antivirus customer support usa phone number
AVG antivirus help desk support phone number free in usa
AVG antivirus phone number customer service us
AVG antivirus phone number support
AVG antivirus support phone number
AVG antivirus tech support phone number free in usa
AVG antivirus tech support phone number
AVG antivirus technical support customer service
AVG antivirus technical support number
AVG antivirus telephone number
AVG antivirus toll free customer care number
AVG antivirus toll free number in usa
AVG antivirus contact phone number in usa
AVG antivirus customer service number
AVG antivirus customer service phone number
AVG antivirus customer service telephone number
AVG antivirus customer support number
AVG antivirus customer support phone number
AVG antivirus customer support phone number
AVG antivirus help desk phone number in usa
AVG antivirus phone number
AVG antivirus phone number support for technical issue in usa
AVG antivirus support phone number
AVG antivirus technical support help desk phone number
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG customer service number
AVG customer service telephone number
AVG customer services email
AVG customer support email address
AVG customer support number
AVG customer support phone number
AVG customer service phone number
AVG internet security contact phone number
AVG internet security customer service phone number
AVG internet security phone number
AVG internet security help phone number
AVG internet security phone number in usa
AVG internet security support phone number
AVG internet security technical support
AVG phone number customer service
AVG phone numbers customer support
AVG phone support number
AVG security contact phone number
AVG security phone number customer service
AVG security support phone number
AVG support contact number
AVG support email address
AVG support phone number
AVG support telephone number
AVG support telephone number usa
AVG support telephone number
AVG tech support number
AVG tech support phone number
AVG tech support phone number free
AVG technical support phone number
AVG technical support cutomer phone number
AVG technical support phone number
AVG technical support number free in usa
AVG technical support number toll free number
AVG technical support phone number
AVG technologies phone number
AVG telephone support number
AVG antivirus customer support phone number
AVG antivirus customer service phone number
AVG customer support phone number
AVG phone number customer service
AVG technical support telephone number
contact AVG antivirus customer service phone number
customer service number for AVG antivirus
phone number for AVG antivirus
phone number for AVG antivirus customer service
phone number for AVG antivirus support
phone number for AVG customer service
phone number for AVG customer service
phone number for AVG customer support
phone number for AVG tech support
phone number AVG antivirus customer service
AVG antivirus customer service number
AVG antivirus customer service phone
AVG antivirus customer service phone number
AVG antivirus customer service phone number us
AVG antivirus customer service telephone number
AVG antivirus customer support
AVG antivirus customer support number
AVG antivirus phone number customer service us
AVG antivirus phone number support
AVG antivirus phone support
AVG antivirus phone support number
AVG antivirus support phone number
AVG antivirus tech support phone number
AVG antivirus technical support
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG customer service phone number
AVG customer support phone number
AVG helpline phone number
AVG internet security customer service
AVG internet security customer service phone number
AVG internet security help phone number
AVG internet security phone number customer service
AVG phone number customer service
AVG phone number customer support
AVG security customer service phone number
AVG security phone number customer service
AVG support phone number
AVG support telephone number
AVG tech support number
AVG tech support phone number
AVG technical support
AVG technical support number
AVG technical support phone number
AVG antivirus customer support phone number
AVG antivirus phone number customer service
AVG antivirus tech support number
AVG customer service phone number
AVG customer service phone numbers
AVG internet security technical support
AVG tech support phone number us
AVG technical support telephone number
contact AVG antivirus
contact AVG by phone
contact AVG customer service
contact AVG antivirus customer service phone number
contactAVG antivirus tech support usa
customer service AVG phone number
download AVG titanium
dri AVG customer service number
dri AVG customer service phone number
dri AVG phone number
how to contact AVG by email
how to delete AVG from mac
micro trend customer service
norton antivirus customer service number
phone number for AVG customer service
phone number forAVG customer service
phone number forAVG customer support
phone number forAVG tech support
phone number forAVG technical support
phone number for AVG antivirus technical support
phone number for AVG security
phone number for AVG support
phone number for AVG technical support
phone number for AVG antivirus customer service
phone number for AVG customer service
remove AVG from mac
technical support for antivirus AVG
telephone number forAVG technical support
telephone AVG antivirus
AVG antivirus contact number
AVG antivirus customer care
AVG antivirus customer care number
AVG antivirus customer care number usa
AVG antivirus customer service
AVG antivirus customer service number :idea: :evil: :D :) :lol: :( :o :shock:
AVG antivirus customer service phone number
AVG antivirus customer service phone number usa
AVG antivirus customer service telephone number
AVG antivirus customer support
AVG antivirus customer support in usa
AVG antivirus customer support number
AVG antivirus customer support phone number
AVG antivirus for phone
AVG antivirus free antivirus support
AVG antivirus help phone number
AVG antivirus helpline number
AVG antivirus online support
AVG antivirus phone
AVG antivirus phone number
AVG antivirus phone number in usa
AVG antivirus phone number usa
AVG antivirus phone support
AVG antivirus plus tech support
AVG antivirus protection
AVG antivirus support
AVG antivirus support number
AVG antivirus support phone number
AVG antivirus support services
AVG antivirus support telephone number
AVG antivirus tech support
AVG antivirus tech support phone number free in usa
AVG antivirus tech support number
AVG antivirus tech support phone number
AVG antivirus technical support
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG antivirus toll free customer care number
AVG antivirus toll free number
AVG antivirus contact phone number in usa
AVG antivirus help desk phone number in usa
AVG antivirus phone number support for technical issue in usa
AVG antivirus support phone number
AVG antivirus technical support help desk phone number
AVG antivirus technical support phone number
AVG contact number
AVG contact number usa
AVG contact phone number
AVG contact support
AVG contact number usa
AVG contact phone number
AVG contact phone number usa
AVG customer & technical support
AVG customer care
AVG customer care center
AVG customer care email
AVG customer care number
AVG customer care number
AVG customer care number usa
AVG customer care number usa toll free
AVG customer care phone number usa
AVG customer care tchnical support
AVG customer care toll free
AVG customer care toll free number
AVG customer care usa
AVG customer help
AVG customer number
AVG customer portal*********
AVG customer service
AVG customer service billing
AVG customer service email address
AVG customer service number
AVG customer service phone
AVG customer service phone number
AVG customer service phone number us
AVG customer service phone number usa
AVG customer service reviews
AVG customer service telephone number
AVG customer service usa
AVG customer support
AVG customer support number
AVG customer support phone
AVG customer support phone number
AVG customer service number
AVG customer service number usa
AVG customer service phone number
AVG customer support number
AVG customer support phone number
AVG free phone support
AVG gold support phone number
AVG help desk phone number
AVG help phone number
AVG helpline
AVG helpline phone number
AVG hotline customer service phone number
AVG internet security customer service
AVG internet security phone number
AVG internet security phone number in usa
AVG lab usa customer service
AVG labs usa customer serviceAVG
AVG phone number
AVG phone number customer service
AVG phone number support
AVG phone number tech support
AVG phone number technical support
AVG phone numbers customer support
AVG phone support
AVG phone support number
AVG phone number customer service
AVG phone number support
AVG phone number tech support
AVG phone number usa
AVG security contact phone number
AVG security phone number
AVG security support phone number
AVG software customer service
AVG software customer service number
AVG support center###########
AVG support contact number
AVG support email address
AVG support phone number
AVG support telephone number
AVG support number usa
AVG support phone number
AVG support phone number usa
AVG tech support
AVG tech support center
AVG tech support contact
AVG tech support number
AVG tech support number usa
AVG tech support phone
AVG tech support phone number
AVG tech support phone number free
AVG tech support number
AVG tech support number usa
AVG tech support phone number
AVG technical support
AVG technical support number
AVG technical support phone number
AVG technical support phone number usa
AVG technical support reviews
AVG technical support usa
AVG technical support phone number
AVG technical support number
AVG technical support number toll free number
AVG technical support number usa
AVG technical support phone number
AVG technical support phone number usa
AVG technologies phone number
AVG telephone number
AVG telephone support number
AVG toll free number
AVG toll free number usa
AVG usa customer care for tech support
AVG usa customer service
AVG usa phone number/////////////
AVG antivirus customer service phone number
AVG antivirus customer service phone number
AVG antivirus customer support phone number
AVG antivirus customer support phone number
AVG antivirus technical support number
AVG customer service phone number usa
AVG internet security support phone number
AVG.com customer service
AVG antivirus antispyware 2011
AVG antivirus customer support
AVG antivirus serial key
AVG antivirus serial number
AVG antivirus support
AVG antivirus technical support
AVG business support*************
AVG contact support
AVG customer care number
AVG customer service 844
AVG customer service number
AVG customer service phone number
AVG customer service telephone number
AVG customer support
>From gcc-bugs-return-534205-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 14:31:53 2016
Return-Path: <gcc-bugs-return-534205-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 105310 invoked by alias); 11 Aug 2016 14:31:53 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 105159 invoked by uid 89); 11 Aug 2016 14:31:47 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 14:31:47 +0000
From: "paldhirendra2612 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug boehm-gc/73939] New: NORTON Support Phone Number!!1 844.443.4666 NORTON support phone number
Date: Thu, 11 Aug 2016 14:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: boehm-gc
X-Bugzilla-Version: new-ra
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: paldhirendra2612 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73939-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01541.txt.bz2
Content-length: 8911

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73939

            Bug ID: 73939
           Summary: NORTON Support Phone Number!!1 844.443.4666 NORTON
                    support phone number
           Product: gcc
           Version: new-ra
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: boehm-gc
          Assignee: unassigned at gcc dot gnu.org
          Reporter: paldhirendra2612 at gmail dot com
  Target Milestone: ---

NORTON Support Phone Number!!1 844.443.4666 NORTON support phone number


NORTON Support Phone Number!!1 844.443.4666 NORTON support phone number NORTON
Support Phone Number!!1 844.443.4666 NORTON support phone number
Norton helpline phone number@~1844-443-4666 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1844-4434666**Norton antivirus support phone
number
usa+1-844-443-4666) Technical support number
CANADA+1844-443-4666 Norton Antivirus Technical Support
USA-1844-443-1443contact Norton antivirus customer service phone number
AUS-1-844-443-4666 phone number for Norton customer service
UK-1844-443-4666 phone number for Norton antivirus technical support
1-844-443-4666 phone number for Norton antivirus customer service
phone number for Norton antivirus technical support
phone number for Norton security
Norton customer service telephone number
Norton customer support
Norton grentry non payment
Norton helpline support number
Norton internet security customer service
Norton internet security technical support
Norton oem customer service
Norton pc cillin technical support
Norton phone support
Norton removal tool download
Norton subscription renewal
Norton support contact
Norton support hotline
Norton support phone number
Norton tech support phone number
Norton technical support
Norton technical support chat
Norton technical support phone number
Norton technical support phone number usa
Norton telephone number
Norton titanium antivirus
Norton titanium internet security
Norton titanium maximum
Norton titanium maximum security
Norton titanium problems
NORTON Support Phone Number!!1 844.443.4666 NORTON support phone number NORTON
Support Phone Number!!1 844.443.4666 NORTON support phone number
Norton helpline phone number@~1844-443-4666 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1844-4434666**Norton antivirus support phone
number
usa+1-844-443-4666) Technical support number
CANADA+1844-443-4666 Norton Antivirus Technical Support
USA-1844-443-1443contact Norton antivirus customer service phone number
AUS-1-844-443-4666 phone number for Norton customer service
UK-1844-443-4666 phone number for Norton antivirus technical support
1-844-443-4666 phone number for Norton antivirus customer service
Norton titanium removal tool
Norton titanium reviews
Norton titanium support
Norton virus removal service
uninstall Norton smart surfing for mac
usa customer care number for Norton antivirus
Norton phone number customer service
Norton phone numbers customer support
Norton phone support number
Norton security contact phone number
Norton security phone number customer service
Norton security support phone number
Norton support contact number
Norton support email address
Norton support phone number
Norton support telephone number
Norton support telephone number usa
Norton support telephone number
Norton tech support number
NORTON Support Phone Number!!1 844.443.4666 NORTON support phone number NORTON
Support Phone Number!!1 844.443.4666 NORTON support phone number
Norton helpline phone number@~1844-443-4666 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1844-4434666**Norton antivirus support phone
number
usa+1-844-443-4666) Technical support number
CANADA+1844-443-4666 Norton Antivirus Technical Support
USA-1844-443-1443contact Norton antivirus customer service phone number
AUS-1-844-443-4666 phone number for Norton customer service
UK-1844-443-4666 phone number for Norton antivirus technical support
1-844-443-4666 phone number for Norton antivirus customer serviceNorton
antivirus customer care phone number
Norton antivirus customer service billing
Norton antivirus customer service email address
Norton antivirus customer service live chat
Norton antivirus customer service telephone number
Norton antivirus customer support usa phone number
Norton antivirus help desk support phone number free in usa
Norton antivirus phone number customer service us
Norton antivirus phone number support
Norton antivirus support phone number
Norton antivirus tech support phone number free in usa
Norton antivirus tech support phone number
Norton antivirus technical support customer service
Norton antivirus technical support number
Norton antivirus telephone number
Norton antivirus toll free customer care number
Norton antivirus toll free number in usa
Norton antivirus contact phone number in usa
Norton antivirus customer service number
Norton antivirus customer service phone number
Norton antivirus customer service telephone number
Norton antivirus customer support number
Norton antivirus customer support phone number
NORTON Support Phone Number!!1 844.443.4666 NORTON support phone number NORTON
Support Phone Number!!1 844.443.4666 NORTON support phone number
Norton helpline phone number@~1844-443-4666 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1844-4434666**Norton antivirus support phone
number
usa+1-844-443-4666) Technical support number
CANADA+1844-443-4666 Norton Antivirus Technical Support
USA-1844-443-1443contact Norton antivirus customer service phone number
AUS-1-844-443-4666 phone number for Norton customer service
UK-1844-443-4666 phone number for Norton antivirus technical support
1-844-443-4666 phone number for Norton antivirus customer service
Norton antivirus customer support phone number
Norton antivirus help desk phone number in usa
Norton antivirus phone number
Norton tech support phone number
Norton tech support phone number free
Norton technical support phone number
Norton technical support cutomer phone number
Norton technical support phone number
Norton technical support number free in usa
Norton technical support number toll free number
Norton technical support phone number
Norton technologies phone number
Norton telephone support number
Norton antivirus customer support phone number
Norton antivirus customer service phone number
Norton customer support phone number
Norton phone number customer service
Norton technical support telephone number
contact Norton antivirus customer service phone number
customer service number for Norton antivirus
phone number for Norton antivirus
phone number for Norton antivirus customer service
phone number for Norton antivirus support
phone number for Norton customer service
phone number for Norton customer service
phone number for Norton customer support
NORTON Support Phone Number!!1 844.443.4666 NORTON support phone number NORTON
Support Phone Number!!1 844.443.4666 NORTON support phone number
Norton helpline phone number@~1844-443-4666 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1844-4434666**Norton antivirus support phone
number
usa+1-844-443-4666) Technical support number
CANADA+1844-443-4666 Norton Antivirus Technical Support
USA-1844-443-1443contact Norton antivirus customer service phone number
AUS-1-844-443-4666 phone number for Norton customer service
UK-1844-443-4666 phone number for Norton antivirus technical support
1-844-443-4666 phone number for Norton antivirus customer service
phone number for Norton tech support
phone number Norton antivirus customer service
Norton antivirus customer service number
Norton antivirus customer service phone
Norton antivirus customer service phone number
Norton antivirus customer service phone number us
Norton antivirus customer service telephone number
Norton antivirus customer support
Norton antivirus customer support number
Norton antivirus phone number customer service us
Norton antivirus phone number support
Norton antivirus phone support
Norton antivirus phone support number
Norton antivirus support phone number
Norton antivirus tech support phone number
Norton antivirus technical support
Norton antivirus technical support number
Norton antivirus technical support phone number
Norton customer service phone number
Norton customer support phone number
Norton helpline phone number
Norton internet security customer service
Norton internet security customer service phone number
Norton internet security help phone number
Norton internet security phone number customer service
Norton phone number customer service
Norton phone number customer support
Norton security customer service phone number
>From gcc-bugs-return-534206-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 14:32:18 2016
Return-Path: <gcc-bugs-return-534206-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 106405 invoked by alias); 11 Aug 2016 14:32:18 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 106202 invoked by uid 89); 11 Aug 2016 14:32:05 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 14:32:05 +0000
From: "harendrakumarbarigwan at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug debug/73940] New: WEBROOT=+=AntIVIrus=+=Support+1.(8.00). (.7.50.) (.6.584.) Phone Number??
Date: Thu, 11 Aug 2016 14:32:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: debug
X-Bugzilla-Version: 4.8.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: harendrakumarbarigwan at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73940-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01542.txt.bz2
Content-length: 12689

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73940

            Bug ID: 73940
           Summary: WEBROOT=+=AntIVIrus=+=Support+1.(8.00). (.7.50.)
                    (.6.584.) Phone Number??
           Product: gcc
           Version: 4.8.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: debug
          Assignee: unassigned at gcc dot gnu.org
          Reporter: harendrakumarbarigwan at gmail dot com
  Target Milestone: ---

WEBROOT=+=AntIVIrus=+=Support+1.(8.00). (.7.50.) (.6.584.) Phone Number??
AVG helpline phone number@~1-800-750-6584 AVG tech Support Number AVG antivirus
customer service phone number

AVG helpline phone number@~1-800-750-6584 AVG tech Support Number AVG antivirus
customer service phone number
AVG HelpLiNe @+1-800-750-6584 AVG support phone number

AVG helpline phone number@~1-800-750-6584 AVG tech Support Number AVG antivirus
customer service phone number

+1-800-750-6584) Technical support number
+1-800-750-6584 AVG Antivirus Technical Support
+1-800-750-6584 contact AVG antivirus customer service phone number
+1-800-750-6584 phone number for AVG customer service
+1-800-750-6584 phone number for AVG antivirus technical support
+1-800-750-6584 phone number for AVG antivirus customer service
phone number for AVG antivirus technical support
phone number for AVG security
AVG antivirus customer care phone number
AVG antivirus customer service billing
AVG antivirus customer service email address
AVG antivirus customer service live chat
AVG antivirus customer service telephone number
AVG antivirus customer support usa phone number
AVG antivirus help desk support phone number free in usa
AVG antivirus phone number customer service us
AVG antivirus phone number support
AVG antivirus support phone number
AVG antivirus tech support phone number free in usa
AVG antivirus tech support phone number
AVG antivirus technical support customer service
AVG antivirus technical support number
AVG antivirus telephone number
AVG antivirus toll free customer care number
AVG antivirus toll free number in usa
AVG antivirus contact phone number in usa
AVG antivirus customer service number
AVG antivirus customer service phone number
AVG antivirus customer service telephone number
AVG antivirus customer support number
AVG antivirus customer support phone number
AVG antivirus customer support phone number
AVG antivirus help desk phone number in usa
AVG antivirus phone number
AVG antivirus phone number support for technical issue in usa
AVG antivirus support phone number
AVG antivirus technical support help desk phone number
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG customer service number
AVG customer service telephone number
AVG customer services email
AVG customer support email address
AVG customer support number
AVG customer support phone number
AVG customer service phone number
AVG internet security contact phone number
AVG internet security customer service phone number
AVG internet security phone number
AVG internet security help phone number
AVG internet security phone number in usa
AVG internet security support phone number
AVG internet security technical support
AVG phone number customer service
AVG phone numbers customer support
AVG phone support number
AVG security contact phone number
AVG security phone number customer service
AVG security support phone number
AVG support contact number
AVG support email address
AVG support phone number
AVG support telephone number
AVG support telephone number usa
AVG support telephone number
AVG tech support number
AVG tech support phone number
AVG tech support phone number free
AVG technical support phone number
AVG technical support cutomer phone number
AVG technical support phone number
AVG technical support number free in usa
AVG technical support number toll free number
AVG technical support phone number
AVG technologies phone number
AVG telephone support number
AVG antivirus customer support phone number
AVG antivirus customer service phone number
AVG customer support phone number
AVG phone number customer service
AVG technical support telephone number
contact AVG antivirus customer service phone number
customer service number for AVG antivirus
phone number for AVG antivirus
phone number for AVG antivirus customer service
phone number for AVG antivirus support
phone number for AVG customer service
phone number for AVG customer service
phone number for AVG customer support
phone number for AVG tech support
phone number AVG antivirus customer service
AVG antivirus customer service number
AVG antivirus customer service phone
AVG antivirus customer service phone number
AVG antivirus customer service phone number us
AVG antivirus customer service telephone number
AVG antivirus customer support
AVG antivirus customer support number
AVG antivirus phone number customer service us
AVG antivirus phone number support
AVG antivirus phone support
AVG antivirus phone support number
AVG antivirus support phone number
AVG antivirus tech support phone number
AVG antivirus technical support
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG customer service phone number
AVG customer support phone number
AVG helpline phone number
AVG internet security customer service
AVG internet security customer service phone number
AVG internet security help phone number
AVG internet security phone number customer service
AVG phone number customer service
AVG phone number customer support
AVG security customer service phone number
AVG security phone number customer service
AVG support phone number
AVG support telephone number
AVG tech support number
AVG tech support phone number
AVG technical support
AVG technical support number
AVG technical support phone number
AVG antivirus customer support phone number
AVG antivirus phone number customer service
AVG antivirus tech support number
AVG customer service phone number
AVG customer service phone numbers
AVG internet security technical support
AVG tech support phone number us
AVG technical support telephone number
contact AVG antivirus
contact AVG by phone
contact AVG customer service
contact AVG antivirus customer service phone number
contactAVG antivirus tech support usa
customer service AVG phone number
download AVG titanium
dri AVG customer service number
dri AVG customer service phone number
dri AVG phone number
how to contact AVG by email
how to delete AVG from mac
micro trend customer service
norton antivirus customer service number
phone number for AVG customer service
phone number forAVG customer service
phone number forAVG customer support
phone number forAVG tech support
phone number forAVG technical support
phone number for AVG antivirus technical support
phone number for AVG security
phone number for AVG support
phone number for AVG technical support
phone number for AVG antivirus customer service
phone number for AVG customer service
remove AVG from mac
technical support for antivirus AVG
telephone number forAVG technical support
telephone AVG antivirus
AVG antivirus contact number
AVG antivirus customer care
AVG antivirus customer care number
AVG antivirus customer care number usa
AVG antivirus customer service
AVG antivirus customer service number :idea: :evil: :D :) :lol: :( :o :shock:
AVG antivirus customer service phone number
AVG antivirus customer service phone number usa
AVG antivirus customer service telephone number
AVG antivirus customer support
AVG antivirus customer support in usa
AVG antivirus customer support number
AVG antivirus customer support phone number
AVG antivirus for phone
AVG antivirus free antivirus support
AVG antivirus help phone number
AVG antivirus helpline number
AVG antivirus online support
AVG antivirus phone
AVG antivirus phone number
AVG antivirus phone number in usa
AVG antivirus phone number usa
AVG antivirus phone support
AVG antivirus plus tech support
AVG antivirus protection
AVG antivirus support
AVG antivirus support number
AVG antivirus support phone number
AVG antivirus support services
AVG antivirus support telephone number
AVG antivirus tech support
AVG antivirus tech support phone number free in usa
AVG antivirus tech support number
AVG antivirus tech support phone number
AVG antivirus technical support
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG antivirus toll free customer care number
AVG antivirus toll free number
AVG antivirus contact phone number in usa
AVG antivirus help desk phone number in usa
AVG antivirus phone number support for technical issue in usa
AVG antivirus support phone number
AVG antivirus technical support help desk phone number
AVG antivirus technical support phone number
AVG contact number
AVG contact number usa
AVG contact phone number
AVG contact support
AVG contact number usa
AVG contact phone number
AVG contact phone number usa
AVG customer & technical support
AVG customer care
AVG customer care center
AVG customer care email
AVG customer care number
AVG customer care number
AVG customer care number usa
AVG customer care number usa toll free
AVG customer care phone number usa
AVG customer care tchnical support
AVG customer care toll free
AVG customer care toll free number
AVG customer care usa
AVG customer help
AVG customer number
AVG customer portal*********
AVG customer service
AVG customer service billing
AVG customer service email address
AVG customer service number
AVG customer service phone
AVG customer service phone number
AVG customer service phone number us
AVG customer service phone number usa
AVG customer service reviews
AVG customer service telephone number
AVG customer service usa
AVG customer support
AVG customer support number
AVG customer support phone
AVG customer support phone number
AVG customer service number
AVG customer service number usa
AVG customer service phone number
AVG customer support number
AVG customer support phone number
AVG free phone support
AVG gold support phone number
AVG help desk phone number
AVG help phone number
AVG helpline
AVG helpline phone number
AVG hotline customer service phone number
AVG internet security customer service
AVG internet security phone number
AVG internet security phone number in usa
AVG lab usa customer service
AVG labs usa customer serviceAVG
AVG phone number
AVG phone number customer service
AVG phone number support
AVG phone number tech support
AVG phone number technical support
AVG phone numbers customer support
AVG phone support
AVG phone support number
AVG phone number customer service
AVG phone number support
AVG phone number tech support
AVG phone number usa
AVG security contact phone number
AVG security phone number
AVG security support phone number
AVG software customer service
AVG software customer service number
AVG support center###########
AVG support contact number
AVG support email address
AVG support phone number
AVG support telephone number
AVG support number usa
AVG support phone number
AVG support phone number usa
AVG tech support
AVG tech support center
AVG tech support contact
AVG tech support number
AVG tech support number usa
AVG tech support phone
AVG tech support phone number
AVG tech support phone number free
AVG tech support number
AVG tech support number usa
AVG tech support phone number
AVG technical support
AVG technical support number
AVG technical support phone number
AVG technical support phone number usa
AVG technical support reviews
AVG technical support usa
AVG technical support phone number
AVG technical support number
AVG technical support number toll free number
AVG technical support number usa
AVG technical support phone number
AVG technical support phone number usa
AVG technologies phone number
AVG telephone number
AVG telephone support number
AVG toll free number
AVG toll free number usa
AVG usa customer care for tech support
AVG usa customer service
AVG usa phone number/////////////
AVG antivirus customer service phone number
AVG antivirus customer service phone number
AVG antivirus customer support phone number
AVG antivirus customer support phone number
AVG antivirus technical support number
AVG customer service phone number usa
AVG internet security support phone number
AVG.com customer service
AVG antivirus antispyware 2011
AVG antivirus customer support
AVG antivirus serial key
AVG antivirus serial number
AVG antivirus support
AVG antivirus technical support
AVG business support*************
AVG contact support
AVG customer care number
AVG customer service 844
AVG customer service number
AVG customer service phone number
AVG customer service telephone number
AVG customer support
>From gcc-bugs-return-534207-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 14:33:17 2016
Return-Path: <gcc-bugs-return-534207-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 128870 invoked by alias); 11 Aug 2016 14:33:16 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 128711 invoked by uid 89); 11 Aug 2016 14:33:03 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 14:33:03 +0000
From: "jadghjfns at yopmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug driver/73943] New: Norton 360 Live Support Help = 1888-936-5569 @@ Norton 360 technical support phone number
Date: Thu, 11 Aug 2016 14:33:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: driver
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jadghjfns at yopmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73943-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01543.txt.bz2
Content-length: 8141

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73943

            Bug ID: 73943
           Summary: Norton 360 Live Support Help = 1888-936-5569 @@ Norton
                    360 technical support phone number
           Product: gcc
           Version: 5.4.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: driver
          Assignee: unassigned at gcc dot gnu.org
          Reporter: jadghjfns at yopmail dot com
  Target Milestone: ---

Norton 360 Live Support Help = 1888-936-5569 @@ Norton 360 technical support
phone number
orton Live Support and Help‎ 1800-790-9186 @@ Norton support phone number
Norton Live Support and Help‎ 1800-790-9186 @@ Norton support phone number
Norton Live Support and Help‎ 1800-790-9186 Norton 360 support phone number usa
USA Canada>>>> 1 800-445-2790++ Norton 360 support phone number 1
800-445-2790usa/canada. Norton 360 Tech Support Number
@@!1-800-445-2790;!!Norton 360 Support Number
WikiGenes- @+++1800-445-2790++000Norton 360 support phone
number18004452790usa/canada
Norton antivirus technical support phone number 1.800-445-2790
hdfc toll free customer care number(((!1.800-445-2790)) Norton 360 Tech Support
Number @@!1-800-445-2790!! Norton 360 Support Number
Norton toll free customer care number 1.800-445-2790
Norton toll free customer care number 1.800-445-2790
Norton toll free customer care number 1.800-445-2790
Norton toll free customer care number 1.800-445-2790>>>>>
Norton technical support phone number ((1.800-445-2790))
Norton technical support number 1.800-445-2790
Norton technical support number 1.800-445-2790
symantec technical support number 1.800-445-2790
Norton antivirus technical support number 1.800-445-2790
Norton support phone number 1.800-445-2790
Norton locations Norton 360 Tech Support Number @@!1-800-445-2790!! Norton 360
Support Number Norton 360 Tech Support Number @@!1-800-445-2790!! Norton 360
Support Number
Norton customer service
Norton antivirus customer care__Norton Support phone number 1.800-445-2790
Norton customer support phone number 1.800-445-2790
Norton customer support phone number 1.800-445-2790
Norton antivirus customer support phone number 1.800-445-2790Norton antivirus
customer service phone number 1.800-445-2790
Norton antivirus technical support phone number 1.800-445-2790
Norton antivirus tech support phone number 1.800-445-2790
Norton antivirus phone number 1.800-445-2790 Norton 360 Tech Support Number
@@!1-800-445-2790!! Norton 360 Support Number
Norton security center phone number 1.800-445-2790
Norton support telephone number 1.800-445-2790
Norton 360 technical support phone number 1.800-445-2790
symantec technical support phone number 1.800-445-2790
Norton tech support phone number 1.800-445-2790 Norton 360 Tech Support Number
@@!1-800-445-2790!! Norton 360 Support Number
apple technical support phone number 1.800-445-2790 usa
microsoft technical support phone number 1.800-445-2790 usa
gmail technical support phone number 1.800-445-2790 usa
kaspersky technical support phone number 1.800-445-2790 usa
lenovo technical support phone number 1.800-445-2790 usa
epson technical support phone number 1.800-445-2790 usa
Norton technical support phone number 1.800-445-2790 Norton 360 Tech Support
Number @@!1-800-445-2790!! Norton 360 Support Number
Norton AntiVirus Customer Service Phone Number #1: 800-445-2790
Norton Phone number 1-800-445-2790 Norton 360 phone number Norton 360 support
phone number
Free~* C@ll 1.800-445-2790 Norton 360 technical support phone number usa
1.800-445-2790 Norton 360 technical support phone number Norton free call
~* C@ll 1.800-445-2790 Norton 360 technical support phone number usa
1.800-445-2790 Norton 360 technical support phone number Norton free call
Norton 360 Tech Support Number @@!1-800-445-2790!! Norton 360 Support Number
PHONE support USA @1.800-445-2790 Norton antivirus technical support phone
number
Norton locations
Norton online support
Norton Support phone number 1.800-445-2790
Norton customer care Norton tech support phone number 1.800-445-2790
Norton tech support phone number 1.800-445-2790
Norton antivirus tech support phone number 1.800-445-2790
Norton locations Norton 360 Tech Support Number @@!1-800-445-2790!! Norton 360
Support Number
Norton Support phone number 1.800-445-2790
service Norton com
Norton login
Norton technical support phone number 1.800-445-2790
Norton customer service
Norton Support phone number 1.800-445-2790
Norton support telephone number 1.800-445-2790
Norton support phone number 1.800-445-2790
Norton antivirus support phone number 1.800-445-2790 Norton 360 Tech Support
Number @@!1-800-445-2790!! Norton 360 Support Number
Norton antivirus tech support phone number 1.800-445-2790
Norton antivirus customer service phone number 1.800-445-2790
Norton 360 technical support phone number 1.800-445-2790
symantec technical support phone number 1.800-445-2790
Norton technical support phone number 1.800-445-2790
Norton customer service telephone number 1.800-445-2790
Norton antivirus phone number 1.800-445-2790
Norton antivirus customer service phone number 1.800-445-2790
Norton antivirus customer service Support Norton 360 Tech Support Number
@@!1-800-445-2790!! Norton 360 Support Number
Norton antivirus phone number 1.800-445-2790
Norton phone number 1.800-445-2790 cancel subscription
Norton technical support phone number 1.800-445-2790
Norton 800 phone number 1.800-445-2790
snapdeal toll free customer care number 1.800-445-2790
sbi toll free customer care number 1.800-445-2790
airtel toll free customer care number 1.800-445-2790
Norton customer service number 1.800-445-2790
Norton call center Norton 360 Tech Support Number @@!1-800-445-2790!! Norton
360 Support Number
Norton customer service email address
Norton customer care no Norton 360 Tech Support Number @@!1-800-445-2790!!
Norton 360 Support Number
call Norton support
chat with Norton support
Norton customer support
Norton antivirus customer service number 1.800-445-2790
Norton Norton 360 Tech Support Number @@!1-800-445-2790!! Norton 360 Support
Number
Norton call center
Norton hq
Norton office locations
Norton support site
Norton telephone number 1.800-445-2790 for customer support
Norton customer service contact number 1.800-445-2790
Norton customer care
Norton toll free number 1.800-445-2790
Norton security contact number 1.800-445-2790
contact Vipre
Norton headquarters Norton 360 Tech Support Number @@!1-800-445-2790!! Norton
360 Support Number
Norton customer service chat
Norton customer service telephone number 1.800-445-2790
Norton Support phone number 1.800-445-2790
Norton customer support
Norton customer service refund
Norton login
Norton locations
Norton customer service number 1.800-445-2790 uk
Norton locations
Norton customer service email address
Norton support site Norton 360 Tech Support Number @@!1-800-445-2790!! Norton
360 Support Number
Norton technical support phone number 1.800-445-2790
Norton technical support live chat
Norton technical support email address
Norton technical support number 1.800-445-2790
Norton technical support number 1.800-445-2790 Norton 360 Tech Support Number
@@!1-800-445-2790!! Norton 360 Support Number
symantec technical support number 1.800-445-2790
Norton antivirus technical support number 1.800-445-2790
Norton customer support phone number 1.800-445-2790
Norton customer support number 1.800-445-2790
Norton customer support number 1.800-445-2790 Norton 360 Tech Support Number
@@!1-800-445-2790!! Norton 360 Support Number
Norton antivirus customer support number 1.800-445-2790
Norton locations Norton 360 Tech Support Number @@!1-800-445-2790!! Norton 360
Support Number
Norton Support phone number 1.800-445-2790
Norton corporate phone number 1.800-445-2790 Norton 360 Tech Support Number
@@!1-800-445-2790!! Norton 360 Support Number
Norton customer service Support
Norton technical support phone number 1.800-445-2790
Norton tech support phone number 1.800-445-2790
Norton tech support number 1.800-445-2790
Norton tech support number 1.800-445-2790 FREE
>From gcc-bugs-return-534208-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 14:34:12 2016
Return-Path: <gcc-bugs-return-534208-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 26924 invoked by alias); 11 Aug 2016 14:34:12 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 5868 invoked by uid 89); 11 Aug 2016 14:33:58 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 14:33:58 +0000
From: "Somps1930 at teleworm dot us" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73946] New: REalll--TALKi$$USA-$$$$$$$ +1-888-527-3401 AVG TECH SUPPORT PHONE NUMBER USA, ANTIVIRUS TECH SUPPORT PHONE NUMBER
Date: Thu, 11 Aug 2016 14:34:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 4.2.3
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: Somps1930 at teleworm dot us
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73946-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01544.txt.bz2
Content-length: 25873

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73946

            Bug ID: 73946
           Summary: REalll--TALKi$$USA-$$$$$$$ +1-888-527-3401 AVG TECH
                    SUPPORT PHONE NUMBER USA, ANTIVIRUS TECH SUPPORT PHONE
                    NUMBER
           Product: gcc
           Version: 4.2.3
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: Somps1930 at teleworm dot us
  Target Milestone: ---

+1-888-527-3401 AVG helpline phone number@~1-888-527-3401 AVG tech Support
Number AVG antivirus customer service phone number

AVG helpline phone number@~1-888-527-3401 AVG tech Support Number AVG antivirus
customer service phone number
AVG HelpLiNe @+1-888-527-3401 AVG support phone number

AVG helpline phone number@~1-888-527-3401 AVG tech Support Number AVG antivirus
customer service phone number

+1-888-527-3401) Technical support number
+1-888-527-3401 AVG Antivirus Technical Support
+1-888-527-3401 contact AVG antivirus customer service phone number
+1-888-527-3401 phone number for AVG customer service
+1-888-527-3401 phone number for AVG antivirus technical support
+1-888-527-3401 phone number for AVG antivirus customer service
phone number for AVG antivirus technical support
phone number for AVG security
AVG antivirus customer care phone number
AVG antivirus customer service billing
AVG antivirus customer service email address
AVG antivirus customer service live chat
AVG antivirus customer service telephone number
AVG antivirus customer support usa phone number
AVG antivirus help desk support phone number free in usa
AVG antivirus phone number customer service us
AVG antivirus phone number support
AVG antivirus support phone number
AVG antivirus tech support phone number free in usa
AVG antivirus tech support phone number
AVG antivirus technical support customer service
AVG antivirus technical support number
AVG antivirus telephone number
AVG antivirus toll free customer care number
AVG antivirus toll free number in usa
AVG antivirus contact phone number in usa
AVG antivirus customer service number
AVG antivirus customer service phone number
AVG antivirus customer service telephone number
AVG antivirus customer support number
AVG antivirus customer support phone number
AVG antivirus customer support phone number
AVG antivirus help desk phone number in usa
AVG antivirus phone number
AVG antivirus phone number support for technical issue in usa
AVG antivirus support phone number
AVG antivirus technical support help desk phone number
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG customer service number
AVG customer service telephone number
AVG customer services email
AVG customer support email address
AVG customer support number
AVG customer support phone number
AVG customer service phone number
AVG internet security contact phone number
AVG internet security customer service phone number
AVG internet security phone number
AVG internet security help phone number
AVG internet security phone number in usa
AVG internet security support phone number
AVG internet security technical support
AVG phone number customer service
AVG phone numbers customer support
AVG phone support number
AVG security contact phone number
AVG security phone number customer service
AVG security support phone number
AVG support contact number
AVG support email address
AVG support phone number
AVG support telephone number
AVG support telephone number usa
AVG support telephone number
AVG tech support number
AVG tech support phone number
AVG tech support phone number free
AVG technical support phone number
AVG technical support cutomer phone number
AVG technical support phone number
AVG technical support number free in usa
AVG technical support number toll free number
AVG technical support phone number
AVG technologies phone number
AVG telephone support number
AVG antivirus customer support phone number
AVG antivirus customer service phone number
AVG customer support phone number
AVG phone number customer service
AVG technical support telephone number
contact AVG antivirus customer service phone number
customer service number for AVG antivirus
phone number for AVG antivirus
phone number for AVG antivirus customer service
phone number for AVG antivirus support
phone number for AVG customer service
phone number for AVG customer service
phone number for AVG customer support
phone number for AVG tech support
phone number AVG antivirus customer service
AVG antivirus customer service number
AVG antivirus customer service phone
AVG antivirus customer service phone number
AVG antivirus customer service phone number us
AVG antivirus customer service telephone number
AVG antivirus customer support
AVG antivirus customer support number
AVG antivirus phone number customer service us
AVG antivirus phone number support
AVG antivirus phone support
AVG antivirus phone support number
AVG antivirus support phone number
AVG antivirus tech support phone number
AVG antivirus technical support
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG customer service phone number
AVG customer support phone number
AVG helpline phone number
AVG internet security customer service
AVG internet security customer service phone number
AVG internet security help phone number
AVG internet security phone number customer service
AVG phone number customer service
AVG phone number customer support
AVG security customer service phone number
AVG security phone number customer service
AVG support phone number
AVG support telephone number
AVG tech support number
AVG tech support phone number
AVG technical support
AVG technical support number
AVG technical support phone number
AVG antivirus customer support phone number
AVG antivirus phone number customer service
AVG antivirus tech support number
AVG customer service phone number
AVG customer service phone numbers
AVG internet security technical support
AVG tech support phone number us
AVG technical support telephone number
contact AVG antivirus
contact AVG by phone
contact AVG customer service
contact AVG antivirus customer service phone number
contactAVG antivirus tech support usa
customer service AVG phone number
download AVG titanium
dri AVG customer service number
dri AVG customer service phone number
dri AVG phone number
how to contact AVG by email
how to delete AVG from mac
micro trend customer service
norton antivirus customer service number
phone number for AVG customer service
phone number forAVG customer service
phone number forAVG customer support
phone number forAVG tech support
phone number forAVG technical support
phone number for AVG antivirus technical support
phone number for AVG security
phone number for AVG support
phone number for AVG technical support
phone number for AVG antivirus customer service
phone number for AVG customer service
remove AVG from mac
technical support for antivirus AVG
telephone number forAVG technical support
telephone AVG antivirus
AVG antivirus contact number
AVG antivirus customer care
AVG antivirus customer care number
AVG antivirus customer care number usa
AVG antivirus customer service
AVG antivirus customer service number :idea: :evil: :D :) :lol: :( :o :shock:
AVG antivirus customer service phone number
AVG antivirus customer service phone number usa
AVG antivirus customer service telephone number
AVG antivirus customer support
AVG antivirus customer support in usa
AVG antivirus customer support number
AVG antivirus customer support phone number
AVG antivirus for phone
AVG antivirus free antivirus support
AVG antivirus help phone number
AVG antivirus helpline number
AVG antivirus online support
AVG antivirus phone
AVG antivirus phone number
AVG antivirus phone number in usa
AVG antivirus phone number usa
AVG antivirus phone support
AVG antivirus plus tech support
AVG antivirus protection
AVG antivirus support
AVG antivirus support number
AVG antivirus support phone number
AVG antivirus support services
AVG antivirus support telephone number
AVG antivirus tech support
AVG antivirus tech support phone number free in usa
AVG antivirus tech support number
AVG antivirus tech support phone number
AVG antivirus technical support
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG antivirus toll free customer care number
AVG antivirus toll free number
AVG antivirus contact phone number in usa
AVG antivirus help desk phone number in usa
AVG antivirus phone number support for technical issue in usa
AVG antivirus support phone number
AVG antivirus technical support help desk phone number
AVG antivirus technical support phone number
AVG contact number
AVG contact number usa
AVG contact phone number
AVG contact support
AVG contact number usa
AVG contact phone number
AVG contact phone number usa
AVG customer & technical support
AVG customer care
AVG customer care center
AVG customer care email
AVG customer care number
AVG customer care number
AVG customer care number usa
AVG customer care number usa toll free
AVG customer care phone number usa
AVG customer care tchnical support
AVG customer care toll free
AVG customer care toll free number
AVG customer care usa
AVG customer help
AVG customer number
AVG customer portal*********
AVG customer service
AVG customer service billing
AVG customer service email address
AVG customer service number
AVG customer service phone
AVG customer service phone number
AVG customer service phone number us
AVG customer service phone number usa
AVG customer service reviews
AVG customer service telephone number
AVG customer service usa
AVG customer support
AVG customer support number
AVG customer support phone
AVG customer support phone number
AVG customer service number
AVG customer service number usa
AVG customer service phone number
AVG customer support number
AVG customer support phone number
AVG free phone support
AVG gold support phone number
AVG help desk phone number
AVG help phone number
AVG helpline
AVG helpline phone number
AVG hotline customer service phone number
AVG internet security customer service
AVG internet security phone number
AVG internet security phone number in usa
AVG lab usa customer service
AVG labs usa customer serviceAVG
AVG phone number
AVG phone number customer service
AVG phone number support
AVG phone number tech support
AVG phone number technical support
AVG phone numbers customer support
AVG phone support
AVG phone support number
AVG phone number customer service
AVG phone number support
AVG phone number tech support
AVG phone number usa
AVG security contact phone number
AVG security phone number
AVG security support phone number
AVG software customer service
AVG software customer service number
AVG support center###########
AVG support contact number
AVG support email address
AVG support phone number
AVG support telephone number
AVG support number usa
AVG support phone number
AVG support phone number usa
AVG tech support
AVG tech support center
AVG tech support contact
AVG tech support number
AVG tech support number usa
AVG tech support phone
AVG tech support phone number
AVG tech support phone number free
AVG tech support number
AVG tech support number usa
AVG tech support phone number
AVG technical support
AVG technical support number
AVG technical support phone number
AVG technical support phone number usa
AVG technical support reviews
AVG technical support usa
AVG technical support phone number
AVG technical support number
AVG technical support number toll free number
AVG technical support number usa
AVG technical support phone number
AVG technical support phone number usa
AVG technologies phone number
AVG telephone number
AVG telephone support number
AVG toll free number
AVG toll free number usa
AVG usa customer care for tech support
AVG usa customer service
AVG usa phone number/////////////
AVG antivirus customer service phone number
AVG antivirus customer service phone number
AVG antivirus customer support phone number
AVG antivirus customer support phone number
AVG antivirus technical support number
AVG customer service phone number usa
AVG internet security support phone number
AVG.com customer service
AVG antivirus antispyware 2011
AVG antivirus customer support
AVG antivirus serial key
AVG antivirus serial number
AVG antivirus support
AVG antivirus technical support
AVG business support*************
AVG contact support
AVG customer care number
AVG customer service 844
AVG customer service number
AVG customer service phone number
AVG customer service telephone number
AVG customer support

phone number for Norton antivirus technical support
phone number for Norton security
Norton customer service telephone number
Norton customer support
Norton grentry non payment
Norton helpline support number
Norton internet security customer service
Norton internet security technical support
Norton oem customer service
Norton pc cillin technical support
Norton phone support
Norton removal tool download
Norton subscription renewal
Norton support contact
Norton support hotline
Norton support phone number
Norton tech support phone number
Norton technical support
Norton technical support chat
Norton technical support phone number
Norton technical support phone number usa
Norton telephone number
Norton titanium antivirus
Norton titanium internet security
Norton titanium maximum
Norton titanium maximum security
Norton titanium problems
Norton titanium removal tool
Norton titanium reviews
Norton titanium support
Norton virus removal service
uninstall Norton smart surfing for mac
usa customer care number for Norton antivirus
Norton antivirus phone number support for technical issue in usa
Norton antivirus support phone number
Norton antivirus technical support help desk phone number
Norton antivirus technical support number
Norton antivirus technical support phone number
Norton customer service number
Norton customer service telephone number
Norton customer services email
Norton customer support email address
Norton customer support number
Norton customer support phone number
Norton customer service phone number
Norton internet security contact phone number
Norton internet security customer service phone number
Norton internet security phone number
Norton internet security help phone number
Norton internet security phone number in usa
Norton internet security support phone number
Norton internet security technical support
Norton phone number customer service
Norton phone numbers customer support
Norton phone support number
Norton security contact phone number
Norton security phone number customer service
Norton security support phone number
Norton support contact number
Norton support email address
Norton support phone number
Norton support telephone number
Norton support telephone number usa
Norton support telephone number
Norton tech support number

Norton antivirus customer care phone number
Norton antivirus customer service billing
Norton antivirus customer service email address
Norton antivirus customer service live chat
Norton antivirus customer service telephone number
Norton antivirus customer support usa phone number
Norton antivirus help desk support phone number free in usa
Norton antivirus phone number customer service us
Norton antivirus phone number support
Norton antivirus support phone number
Norton antivirus tech support phone number free in usa
Norton antivirus tech support phone number
Norton antivirus technical support customer service
Norton antivirus technical support number
Norton antivirus telephone number
Norton antivirus toll free customer care number
Norton antivirus toll free number in usa
Norton antivirus contact phone number in usa
Norton antivirus customer service number
Norton antivirus customer service phone number
Norton antivirus customer service telephone number
Norton antivirus customer support number
Norton antivirus customer support phone number
Norton antivirus customer support phone number
Norton antivirus help desk phone number in usa
Norton antivirus phone number
Norton tech support phone number
Norton tech support phone number free
Norton technical support phone number
Norton technical support cutomer phone number
Norton technical support phone number
Norton technical support number free in usa
Norton technical support number toll free number
Norton technical support phone number
Norton technologies phone number
Norton telephone support number
Norton antivirus customer support phone number
Norton antivirus customer service phone number
Norton customer support phone number
Norton phone number customer service
Norton technical support telephone number
contact Norton antivirus customer service phone number
customer service number for Norton antivirus
phone number for Norton antivirus
phone number for Norton antivirus customer service
phone number for Norton antivirus support
phone number for Norton customer service
phone number for Norton customer service
phone number for Norton customer support
phone number for Norton tech support
phone number Norton antivirus customer service
Norton antivirus customer service number
Norton antivirus customer service phone
Norton antivirus customer service phone number
Norton antivirus customer service phone number us
Norton antivirus customer service telephone number
Norton antivirus customer support
Norton antivirus customer support number
Norton antivirus phone number customer service us
Norton antivirus phone number support
Norton antivirus phone support
Norton antivirus phone support number
Norton antivirus support phone number
Norton antivirus tech support phone number
Norton antivirus technical support
Norton antivirus technical support number
Norton antivirus technical support phone number
Norton customer service phone number
Norton customer support phone number
Norton helpline phone number
Norton internet security customer service
Norton internet security customer service phone number
Norton internet security help phone number
Norton internet security phone number customer service
Norton phone number customer service
Norton phone number customer support
Norton security customer service phone number

Norton internet security phone number
Norton internet security phone number in usa
Norton lab usa customer service
Norton labs usa customer serviceNorton
Norton phone number
Norton phone number customer service
Norton phone number support
Norton phone number tech support
Norton phone number technical support
Norton phone numbers customer support
Norton phone support
Norton phone support number
Norton phone number customer service
Norton phone number support
Norton phone number tech support
Norton phone number usa
Norton security contact phone number
Norton security phone number
Norton security support phone number
Norton software customer service
Norton software customer service number
Norton support center
Norton support contact number
Norton support email address
Norton support phone number
Norton support telephone number
Norton support number usa
Norton support phone number
Norton support phone number usa
Norton tech support
Norton tech support center
Norton tech support contact
Norton tech support number
Norton tech support number usa
Norton tech support phone
Norton tech support phone number
Norton tech support phone number free
Norton tech support number
Norton tech support number usa
Norton tech support phone number
Norton technical support
Norton technical support number
Norton technical support phone number
Norton technical support phone number usa
Norton technical support reviews
Norton technical support usa
Norton technical support phone number
Norton technical support number
Norton technical support number toll free number
Norton technical support number usa
Norton technical support phone number
Norton technical support phone number usa
Norton technologies phone number
Norton telephone number
Norton telephone support number
Norton toll free number
Norton toll free number usa
Norton usa customer care for tech support
Norton usa customer service
Norton usa phone number

Norton security phone number customer service
Norton support phone number
Norton support telephone number
Norton tech support number
Norton tech support phone number
Norton technical support
Norton technical support number
Norton technical support phone number
Norton antivirus customer support phone number
Norton antivirus phone number customer service
Norton antivirus tech support number
Norton customer service phone number
Norton customer service phone numbers
Norton internet security technical support
Norton tech support phone number us
Norton technical support telephone number
contact Norton antivirus
contact Norton by phone
contact Norton customer service
contact Norton antivirus customer service phone number
contactNorton antivirus tech support usa
customer service Norton phone number
download Norton titanium
dri Norton customer service number
dri Norton customer service phone number
dri Norton phone number
how to contact Norton by email
how to delete Norton from mac
micro trend customer service
norton antivirus customer service number
phone number for Norton customer service
phone number forNorton customer service
phone number forNorton customer support
phone number forNorton tech support
phone number forNorton technical support
phone number for Norton antivirus technical support
phone number for Norton security
phone number for Norton support
phone number for Norton technical support
phone number for Norton antivirus customer service
phone number for Norton customer service
remove Norton from mac
technical support for antivirus Norton
telephone number forNorton technical support
telephone Norton antivirus
Norton antivirus contact number
Norton antivirus customer care
Norton antivirus customer care number
Norton antivirus customer care number usa
Norton antivirus customer service
Norton antivirus customer service number :idea: :evil: :D :) :lol: :( :o
:shock:
Norton antivirus customer service phone number
Norton antivirus customer service phone number usa
Norton antivirus customer service telephone number
Norton antivirus customer support
Norton antivirus customer support in usa
Norton antivirus customer support number
Norton antivirus customer support phone number
Norton antivirus for phone
Norton antivirus free antivirus support
Norton antivirus help phone number
Norton antivirus helpline number
Norton antivirus online support
Norton antivirus phone
Norton antivirus phone number
Norton antivirus phone number in usa
Norton antivirus phone number usa
Norton antivirus phone support
Norton antivirus plus tech support
Norton antivirus protection
Norton antivirus support
Norton antivirus support number
Norton antivirus support phone number
Norton antivirus support services
Norton antivirus support telephone number
Norton antivirus tech support
Norton antivirus tech support phone number free in usa
Norton antivirus tech support number
Norton antivirus tech support phone number
Norton antivirus technical support
Norton antivirus technical support number
Norton antivirus technical support phone number
Norton antivirus toll free customer care number
Norton antivirus toll free number
Norton antivirus contact phone number in usa
Norton antivirus help desk phone number in usa
Norton antivirus phone number support for technical issue in usa
Norton antivirus support phone number
Norton antivirus technical support help desk phone number
Norton antivirus technical support phone number
Norton contact number
Norton contact number usa
Norton contact phone number
Norton contact support
Norton contact number usa
Norton contact phone number
Norton contact phone number usa
Norton customer & technical support
Norton customer care
Norton customer care center
Norton customer care email
Norton customer care number
Norton customer care number
Norton customer care number usa
Norton customer care number usa toll free
Norton customer care phone number usa
Norton customer care tchnical support
Norton customer care toll free
Norton customer care toll free number
Norton customer care usa
Norton customer help
Norton customer number
Norton customer portal
Norton customer service
Norton customer service billing
Norton customer service email address
Norton customer service number
Norton customer service phone
Norton customer service phone number
Norton customer service phone number us
Norton customer service phone number usa
Norton customer service reviews
Norton customer service telephone number
Norton customer service usa
Norton customer support
Norton customer support number
Norton customer support phone
Norton customer support phone number
Norton customer service number
Norton customer service number usa
Norton customer service phone number
Norton customer support number
Norton customer support phone number
Norton free phone support
Norton gold support phone number
Norton help desk phone number
Norton help phone number
Norton helpline
Norton helpline phone number
Norton hotline customer service phone number
Norton internet security customer service
Norton antivirus customer service phone number
Norton antivirus customer service phone number
Norton antivirus customer support phone number
Norton antivirus customer support phone number
Norton antivirus technical support number
Norton customer service phone number usa
Norton internet security support phone number
Norton.com customer service
Norton antivirus antispyware 2011
Norton antivirus customer support
Norton antivirus serial key
Norton antivirus serial number
Norton antivirus support
Norton antivirus technical support
Norton business support
Norton contact support
Norton customer care number
Norton customer service 800
Norton customer service number
Norton customer service phone number
>From gcc-bugs-return-534209-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 14:35:35 2016
Return-Path: <gcc-bugs-return-534209-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 45234 invoked by alias); 11 Aug 2016 14:35:35 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 36168 invoked by uid 89); 11 Aug 2016 14:35:21 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 14:35:21 +0000
From: "ysrumyan at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/70467] Useless "and [esp],-1" emitted on AND with uint64_t variable
Date: Thu, 11 Aug 2016 14:35:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ysrumyan at gmail dot com
X-Bugzilla-Status: REOPENED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-70467-4-HrKry509wC@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70467-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70467-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01545.txt.bz2
Content-length: 445

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70467

Yuri Rumyantsev <ysrumyan at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ysrumyan at gmail dot com

--- Comment #13 from Yuri Rumyantsev <ysrumyan at gmail dot com> ---
The fix r235764 introduced regression described in PR71956.
>From gcc-bugs-return-534210-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 14:36:44 2016
Return-Path: <gcc-bugs-return-534210-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 54239 invoked by alias); 11 Aug 2016 14:36:43 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 54084 invoked by uid 89); 11 Aug 2016 14:36:39 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-0.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=billing, hotline, number, technologies
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 14:36:33 +0000
From: "jadghjfns at yopmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/73949] New: NORTON Support Phone Number!!1 888.936.5569 NORTON support phone number
Date: Thu, 11 Aug 2016 14:36:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jadghjfns at yopmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73949-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01546.txt.bz2
Content-length: 8902

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73949

            Bug ID: 73949
           Summary: NORTON Support Phone Number!!1 888.936.5569 NORTON
                    support phone number
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: jadghjfns at yopmail dot com
  Target Milestone: ---

NORTON Support Phone Number!!1 888.936.5569 NORTON support phone number
NORTON Support Phone Number!!1 877.288.2779 NORTON support phone number NORTON
Support Phone Number!!1 877.288.2779 NORTON support phone number
Norton helpline phone number@~1877-288-2779 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1877-2882779**Norton antivirus support phone
number
usa+1-877-288-2779) Technical support number
CANADA+1877-288-2779 Norton Antivirus Technical Support
USA-1877-288-1288contact Norton antivirus customer service phone number
AUS-1-877-288-2779 phone number for Norton customer service
UK-1877-288-2779 phone number for Norton antivirus technical support
1-877-288-2779 phone number for Norton antivirus customer service
phone number for Norton antivirus technical support
phone number for Norton security
Norton customer service telephone number
Norton customer support
Norton grentry non payment
Norton helpline support number
Norton internet security customer service
Norton internet security technical support
Norton oem customer service
Norton pc cillin technical support
Norton phone support
Norton removal tool download
Norton subscription renewal
Norton support contact
Norton support hotline
Norton support phone number
Norton tech support phone number
Norton technical support
Norton technical support chat
Norton technical support phone number
Norton technical support phone number usa
Norton telephone number
Norton titanium antivirus
Norton titanium internet security
Norton titanium maximum
Norton titanium maximum security
Norton titanium problems
NORTON Support Phone Number!!1 877.288.2779 NORTON support phone number NORTON
Support Phone Number!!1 877.288.2779 NORTON support phone number
Norton helpline phone number@~1877-288-2779 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1877-2882779**Norton antivirus support phone
number
usa+1-877-288-2779) Technical support number
CANADA+1877-288-2779 Norton Antivirus Technical Support
USA-1877-288-1288contact Norton antivirus customer service phone number
AUS-1-877-288-2779 phone number for Norton customer service
UK-1877-288-2779 phone number for Norton antivirus technical support
1-877-288-2779 phone number for Norton antivirus customer service
Norton titanium removal tool
Norton titanium reviews
Norton titanium support
Norton virus removal service
uninstall Norton smart surfing for mac
usa customer care number for Norton antivirus
Norton phone number customer service
Norton phone numbers customer support
Norton phone support number
Norton security contact phone number
Norton security phone number customer service
Norton security support phone number
Norton support contact number
Norton support email address
Norton support phone number
Norton support telephone number
Norton support telephone number usa
Norton support telephone number
Norton tech support number
NORTON Support Phone Number!!1 877.288.2779 NORTON support phone number NORTON
Support Phone Number!!1 877.288.2779 NORTON support phone number
Norton helpline phone number@~1877-288-2779 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1877-2882779**Norton antivirus support phone
number
usa+1-877-288-2779) Technical support number
CANADA+1877-288-2779 Norton Antivirus Technical Support
USA-1877-288-1288contact Norton antivirus customer service phone number
AUS-1-877-288-2779 phone number for Norton customer service
UK-1877-288-2779 phone number for Norton antivirus technical support
1-877-288-2779 phone number for Norton antivirus customer serviceNorton
antivirus customer care phone number
Norton antivirus customer service billing
Norton antivirus customer service email address
Norton antivirus customer service live chat
Norton antivirus customer service telephone number
Norton antivirus customer support usa phone number
Norton antivirus help desk support phone number free in usa
Norton antivirus phone number customer service us
Norton antivirus phone number support
Norton antivirus support phone number
Norton antivirus tech support phone number free in usa
Norton antivirus tech support phone number
Norton antivirus technical support customer service
Norton antivirus technical support number
Norton antivirus telephone number
Norton antivirus toll free customer care number
Norton antivirus toll free number in usa
Norton antivirus contact phone number in usa
Norton antivirus customer service number
Norton antivirus customer service phone number
Norton antivirus customer service telephone number
Norton antivirus customer support number
Norton antivirus customer support phone number
NORTON Support Phone Number!!1 877.288.2779 NORTON support phone number NORTON
Support Phone Number!!1 877.288.2779 NORTON support phone number
Norton helpline phone number@~1877-288-2779 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1877-2882779**Norton antivirus support phone
number
usa+1-877-288-2779) Technical support number
CANADA+1877-288-2779 Norton Antivirus Technical Support
USA-1877-288-1288contact Norton antivirus customer service phone number
AUS-1-877-288-2779 phone number for Norton customer service
UK-1877-288-2779 phone number for Norton antivirus technical support
1-877-288-2779 phone number for Norton antivirus customer service
Norton antivirus customer support phone number
Norton antivirus help desk phone number in usa
Norton antivirus phone number
Norton tech support phone number
Norton tech support phone number free
Norton technical support phone number
Norton technical support cutomer phone number
Norton technical support phone number
Norton technical support number free in usa
Norton technical support number toll free number
Norton technical support phone number
Norton technologies phone number
Norton telephone support number
Norton antivirus customer support phone number
Norton antivirus customer service phone number
Norton customer support phone number
Norton phone number customer service
Norton technical support telephone number
contact Norton antivirus customer service phone number
customer service number for Norton antivirus
phone number for Norton antivirus
phone number for Norton antivirus customer service
phone number for Norton antivirus support
phone number for Norton customer service
phone number for Norton customer service
phone number for Norton customer support
NORTON Support Phone Number!!1 877.288.2779 NORTON support phone number NORTON
Support Phone Number!!1 877.288.2779 NORTON support phone number
Norton helpline phone number@~1877-288-2779 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1877-2882779**Norton antivirus support phone
number
usa+1-877-288-2779) Technical support number
CANADA+1877-288-2779 Norton Antivirus Technical Support
USA-1877-288-1288contact Norton antivirus customer service phone number
AUS-1-877-288-2779 phone number for Norton customer service
UK-1877-288-2779 phone number for Norton antivirus technical support
1-877-288-2779 phone number for Norton antivirus customer service
phone number for Norton tech support
phone number Norton antivirus customer service
Norton antivirus customer service number
Norton antivirus customer service phone
Norton antivirus customer service phone number
Norton antivirus customer service phone number us
Norton antivirus customer service telephone number
Norton antivirus customer support
Norton antivirus customer support number
Norton antivirus phone number customer service us
Norton antivirus phone number support
Norton antivirus phone support
Norton antivirus phone support number
Norton antivirus support phone number
Norton antivirus tech support phone number
Norton antivirus technical support
Norton antivirus technical support number
Norton antivirus technical support phone number
Norton customer service phone number
Norton customer support phone number
Norton helpline phone number
Norton internet security customer service
Norton internet security customer service phone number
Norton internet security help phone number
Norton internet security phone number customer service
Norton phone number customer service
Norton phone number customer support
Norton security customer service phone number
>From gcc-bugs-return-534211-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 14:37:17 2016
Return-Path: <gcc-bugs-return-534211-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 67450 invoked by alias); 11 Aug 2016 14:37:16 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 67366 invoked by uid 89); 11 Aug 2016 14:37:13 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=3.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,LIKELY_SPAM_BODY,SPAM_SUBJECT1 autolearn=no version=3.3.2 spammy=billing, hotline, number, technologies
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 14:37:03 +0000
From: "Wilty1952 at cuvox dot de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73950] New: RAndyyy: AVG Antivirus Toll Free Number ++1.888.52.3401 AVG#### Technical Support Phone Number USA AVG Customer Service Helpline Number
Date: Thu, 11 Aug 2016 14:37:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 4.2.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: Wilty1952 at cuvox dot de
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73950-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01547.txt.bz2
Content-length: 25892

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73950

            Bug ID: 73950
           Summary: RAndyyy: AVG Antivirus Toll Free Number
                    ++1.888.52.3401 AVG#### Technical Support Phone Number
                    USA AVG Customer Service Helpline Number
           Product: gcc
           Version: 4.2.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: Wilty1952 at cuvox dot de
  Target Milestone: ---

+1-888-527-3401 AVG helpline phone number@~1-888-527-3401 AVG tech Support
Number AVG antivirus customer service phone number

AVG helpline phone number@~1-888-527-3401 AVG tech Support Number AVG antivirus
customer service phone number
AVG HelpLiNe @+1-888-527-3401 AVG support phone number

AVG helpline phone number@~1-888-527-3401 AVG tech Support Number AVG antivirus
customer service phone number

+1-888-527-3401) Technical support number
+1-888-527-3401 AVG Antivirus Technical Support
+1-888-527-3401 contact AVG antivirus customer service phone number
+1-888-527-3401 phone number for AVG customer service
+1-888-527-3401 phone number for AVG antivirus technical support
+1-888-527-3401 phone number for AVG antivirus customer service
phone number for AVG antivirus technical support
phone number for AVG security
AVG antivirus customer care phone number
AVG antivirus customer service billing
AVG antivirus customer service email address
AVG antivirus customer service live chat
AVG antivirus customer service telephone number
AVG antivirus customer support usa phone number
AVG antivirus help desk support phone number free in usa
AVG antivirus phone number customer service us
AVG antivirus phone number support
AVG antivirus support phone number
AVG antivirus tech support phone number free in usa
AVG antivirus tech support phone number
AVG antivirus technical support customer service
AVG antivirus technical support number
AVG antivirus telephone number
AVG antivirus toll free customer care number
AVG antivirus toll free number in usa
AVG antivirus contact phone number in usa
AVG antivirus customer service number
AVG antivirus customer service phone number
AVG antivirus customer service telephone number
AVG antivirus customer support number
AVG antivirus customer support phone number
AVG antivirus customer support phone number
AVG antivirus help desk phone number in usa
AVG antivirus phone number
AVG antivirus phone number support for technical issue in usa
AVG antivirus support phone number
AVG antivirus technical support help desk phone number
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG customer service number
AVG customer service telephone number
AVG customer services email
AVG customer support email address
AVG customer support number
AVG customer support phone number
AVG customer service phone number
AVG internet security contact phone number
AVG internet security customer service phone number
AVG internet security phone number
AVG internet security help phone number
AVG internet security phone number in usa
AVG internet security support phone number
AVG internet security technical support
AVG phone number customer service
AVG phone numbers customer support
AVG phone support number
AVG security contact phone number
AVG security phone number customer service
AVG security support phone number
AVG support contact number
AVG support email address
AVG support phone number
AVG support telephone number
AVG support telephone number usa
AVG support telephone number
AVG tech support number
AVG tech support phone number
AVG tech support phone number free
AVG technical support phone number
AVG technical support cutomer phone number
AVG technical support phone number
AVG technical support number free in usa
AVG technical support number toll free number
AVG technical support phone number
AVG technologies phone number
AVG telephone support number
AVG antivirus customer support phone number
AVG antivirus customer service phone number
AVG customer support phone number
AVG phone number customer service
AVG technical support telephone number
contact AVG antivirus customer service phone number
customer service number for AVG antivirus
phone number for AVG antivirus
phone number for AVG antivirus customer service
phone number for AVG antivirus support
phone number for AVG customer service
phone number for AVG customer service
phone number for AVG customer support
phone number for AVG tech support
phone number AVG antivirus customer service
AVG antivirus customer service number
AVG antivirus customer service phone
AVG antivirus customer service phone number
AVG antivirus customer service phone number us
AVG antivirus customer service telephone number
AVG antivirus customer support
AVG antivirus customer support number
AVG antivirus phone number customer service us
AVG antivirus phone number support
AVG antivirus phone support
AVG antivirus phone support number
AVG antivirus support phone number
AVG antivirus tech support phone number
AVG antivirus technical support
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG customer service phone number
AVG customer support phone number
AVG helpline phone number
AVG internet security customer service
AVG internet security customer service phone number
AVG internet security help phone number
AVG internet security phone number customer service
AVG phone number customer service
AVG phone number customer support
AVG security customer service phone number
AVG security phone number customer service
AVG support phone number
AVG support telephone number
AVG tech support number
AVG tech support phone number
AVG technical support
AVG technical support number
AVG technical support phone number
AVG antivirus customer support phone number
AVG antivirus phone number customer service
AVG antivirus tech support number
AVG customer service phone number
AVG customer service phone numbers
AVG internet security technical support
AVG tech support phone number us
AVG technical support telephone number
contact AVG antivirus
contact AVG by phone
contact AVG customer service
contact AVG antivirus customer service phone number
contactAVG antivirus tech support usa
customer service AVG phone number
download AVG titanium
dri AVG customer service number
dri AVG customer service phone number
dri AVG phone number
how to contact AVG by email
how to delete AVG from mac
micro trend customer service
norton antivirus customer service number
phone number for AVG customer service
phone number forAVG customer service
phone number forAVG customer support
phone number forAVG tech support
phone number forAVG technical support
phone number for AVG antivirus technical support
phone number for AVG security
phone number for AVG support
phone number for AVG technical support
phone number for AVG antivirus customer service
phone number for AVG customer service
remove AVG from mac
technical support for antivirus AVG
telephone number forAVG technical support
telephone AVG antivirus
AVG antivirus contact number
AVG antivirus customer care
AVG antivirus customer care number
AVG antivirus customer care number usa
AVG antivirus customer service
AVG antivirus customer service number :idea: :evil: :D :) :lol: :( :o :shock:
AVG antivirus customer service phone number
AVG antivirus customer service phone number usa
AVG antivirus customer service telephone number
AVG antivirus customer support
AVG antivirus customer support in usa
AVG antivirus customer support number
AVG antivirus customer support phone number
AVG antivirus for phone
AVG antivirus free antivirus support
AVG antivirus help phone number
AVG antivirus helpline number
AVG antivirus online support
AVG antivirus phone
AVG antivirus phone number
AVG antivirus phone number in usa
AVG antivirus phone number usa
AVG antivirus phone support
AVG antivirus plus tech support
AVG antivirus protection
AVG antivirus support
AVG antivirus support number
AVG antivirus support phone number
AVG antivirus support services
AVG antivirus support telephone number
AVG antivirus tech support
AVG antivirus tech support phone number free in usa
AVG antivirus tech support number
AVG antivirus tech support phone number
AVG antivirus technical support
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG antivirus toll free customer care number
AVG antivirus toll free number
AVG antivirus contact phone number in usa
AVG antivirus help desk phone number in usa
AVG antivirus phone number support for technical issue in usa
AVG antivirus support phone number
AVG antivirus technical support help desk phone number
AVG antivirus technical support phone number
AVG contact number
AVG contact number usa
AVG contact phone number
AVG contact support
AVG contact number usa
AVG contact phone number
AVG contact phone number usa
AVG customer & technical support
AVG customer care
AVG customer care center
AVG customer care email
AVG customer care number
AVG customer care number
AVG customer care number usa
AVG customer care number usa toll free
AVG customer care phone number usa
AVG customer care tchnical support
AVG customer care toll free
AVG customer care toll free number
AVG customer care usa
AVG customer help
AVG customer number
AVG customer portal*********
AVG customer service
AVG customer service billing
AVG customer service email address
AVG customer service number
AVG customer service phone
AVG customer service phone number
AVG customer service phone number us
AVG customer service phone number usa
AVG customer service reviews
AVG customer service telephone number
AVG customer service usa
AVG customer support
AVG customer support number
AVG customer support phone
AVG customer support phone number
AVG customer service number
AVG customer service number usa
AVG customer service phone number
AVG customer support number
AVG customer support phone number
AVG free phone support
AVG gold support phone number
AVG help desk phone number
AVG help phone number
AVG helpline
AVG helpline phone number
AVG hotline customer service phone number
AVG internet security customer service
AVG internet security phone number
AVG internet security phone number in usa
AVG lab usa customer service
AVG labs usa customer serviceAVG
AVG phone number
AVG phone number customer service
AVG phone number support
AVG phone number tech support
AVG phone number technical support
AVG phone numbers customer support
AVG phone support
AVG phone support number
AVG phone number customer service
AVG phone number support
AVG phone number tech support
AVG phone number usa
AVG security contact phone number
AVG security phone number
AVG security support phone number
AVG software customer service
AVG software customer service number
AVG support center###########
AVG support contact number
AVG support email address
AVG support phone number
AVG support telephone number
AVG support number usa
AVG support phone number
AVG support phone number usa
AVG tech support
AVG tech support center
AVG tech support contact
AVG tech support number
AVG tech support number usa
AVG tech support phone
AVG tech support phone number
AVG tech support phone number free
AVG tech support number
AVG tech support number usa
AVG tech support phone number
AVG technical support
AVG technical support number
AVG technical support phone number
AVG technical support phone number usa
AVG technical support reviews
AVG technical support usa
AVG technical support phone number
AVG technical support number
AVG technical support number toll free number
AVG technical support number usa
AVG technical support phone number
AVG technical support phone number usa
AVG technologies phone number
AVG telephone number
AVG telephone support number
AVG toll free number
AVG toll free number usa
AVG usa customer care for tech support
AVG usa customer service
AVG usa phone number/////////////
AVG antivirus customer service phone number
AVG antivirus customer service phone number
AVG antivirus customer support phone number
AVG antivirus customer support phone number
AVG antivirus technical support number
AVG customer service phone number usa
AVG internet security support phone number
AVG.com customer service
AVG antivirus antispyware 2011
AVG antivirus customer support
AVG antivirus serial key
AVG antivirus serial number
AVG antivirus support
AVG antivirus technical support
AVG business support*************
AVG contact support
AVG customer care number
AVG customer service 844
AVG customer service number
AVG customer service phone number
AVG customer service telephone number
AVG customer support

phone number for Norton antivirus technical support
phone number for Norton security
Norton customer service telephone number
Norton customer support
Norton grentry non payment
Norton helpline support number
Norton internet security customer service
Norton internet security technical support
Norton oem customer service
Norton pc cillin technical support
Norton phone support
Norton removal tool download
Norton subscription renewal
Norton support contact
Norton support hotline
Norton support phone number
Norton tech support phone number
Norton technical support
Norton technical support chat
Norton technical support phone number
Norton technical support phone number usa
Norton telephone number
Norton titanium antivirus
Norton titanium internet security
Norton titanium maximum
Norton titanium maximum security
Norton titanium problems
Norton titanium removal tool
Norton titanium reviews
Norton titanium support
Norton virus removal service
uninstall Norton smart surfing for mac
usa customer care number for Norton antivirus
Norton antivirus phone number support for technical issue in usa
Norton antivirus support phone number
Norton antivirus technical support help desk phone number
Norton antivirus technical support number
Norton antivirus technical support phone number
Norton customer service number
Norton customer service telephone number
Norton customer services email
Norton customer support email address
Norton customer support number
Norton customer support phone number
Norton customer service phone number
Norton internet security contact phone number
Norton internet security customer service phone number
Norton internet security phone number
Norton internet security help phone number
Norton internet security phone number in usa
Norton internet security support phone number
Norton internet security technical support
Norton phone number customer service
Norton phone numbers customer support
Norton phone support number
Norton security contact phone number
Norton security phone number customer service
Norton security support phone number
Norton support contact number
Norton support email address
Norton support phone number
Norton support telephone number
Norton support telephone number usa
Norton support telephone number
Norton tech support number

Norton antivirus customer care phone number
Norton antivirus customer service billing
Norton antivirus customer service email address
Norton antivirus customer service live chat
Norton antivirus customer service telephone number
Norton antivirus customer support usa phone number
Norton antivirus help desk support phone number free in usa
Norton antivirus phone number customer service us
Norton antivirus phone number support
Norton antivirus support phone number
Norton antivirus tech support phone number free in usa
Norton antivirus tech support phone number
Norton antivirus technical support customer service
Norton antivirus technical support number
Norton antivirus telephone number
Norton antivirus toll free customer care number
Norton antivirus toll free number in usa
Norton antivirus contact phone number in usa
Norton antivirus customer service number
Norton antivirus customer service phone number
Norton antivirus customer service telephone number
Norton antivirus customer support number
Norton antivirus customer support phone number
Norton antivirus customer support phone number
Norton antivirus help desk phone number in usa
Norton antivirus phone number
Norton tech support phone number
Norton tech support phone number free
Norton technical support phone number
Norton technical support cutomer phone number
Norton technical support phone number
Norton technical support number free in usa
Norton technical support number toll free number
Norton technical support phone number
Norton technologies phone number
Norton telephone support number
Norton antivirus customer support phone number
Norton antivirus customer service phone number
Norton customer support phone number
Norton phone number customer service
Norton technical support telephone number
contact Norton antivirus customer service phone number
customer service number for Norton antivirus
phone number for Norton antivirus
phone number for Norton antivirus customer service
phone number for Norton antivirus support
phone number for Norton customer service
phone number for Norton customer service
phone number for Norton customer support
phone number for Norton tech support
phone number Norton antivirus customer service
Norton antivirus customer service number
Norton antivirus customer service phone
Norton antivirus customer service phone number
Norton antivirus customer service phone number us
Norton antivirus customer service telephone number
Norton antivirus customer support
Norton antivirus customer support number
Norton antivirus phone number customer service us
Norton antivirus phone number support
Norton antivirus phone support
Norton antivirus phone support number
Norton antivirus support phone number
Norton antivirus tech support phone number
Norton antivirus technical support
Norton antivirus technical support number
Norton antivirus technical support phone number
Norton customer service phone number
Norton customer support phone number
Norton helpline phone number
Norton internet security customer service
Norton internet security customer service phone number
Norton internet security help phone number
Norton internet security phone number customer service
Norton phone number customer service
Norton phone number customer support
Norton security customer service phone number

Norton internet security phone number
Norton internet security phone number in usa
Norton lab usa customer service
Norton labs usa customer serviceNorton
Norton phone number
Norton phone number customer service
Norton phone number support
Norton phone number tech support
Norton phone number technical support
Norton phone numbers customer support
Norton phone support
Norton phone support number
Norton phone number customer service
Norton phone number support
Norton phone number tech support
Norton phone number usa
Norton security contact phone number
Norton security phone number
Norton security support phone number
Norton software customer service
Norton software customer service number
Norton support center
Norton support contact number
Norton support email address
Norton support phone number
Norton support telephone number
Norton support number usa
Norton support phone number
Norton support phone number usa
Norton tech support
Norton tech support center
Norton tech support contact
Norton tech support number
Norton tech support number usa
Norton tech support phone
Norton tech support phone number
Norton tech support phone number free
Norton tech support number
Norton tech support number usa
Norton tech support phone number
Norton technical support
Norton technical support number
Norton technical support phone number
Norton technical support phone number usa
Norton technical support reviews
Norton technical support usa
Norton technical support phone number
Norton technical support number
Norton technical support number toll free number
Norton technical support number usa
Norton technical support phone number
Norton technical support phone number usa
Norton technologies phone number
Norton telephone number
Norton telephone support number
Norton toll free number
Norton toll free number usa
Norton usa customer care for tech support
Norton usa customer service
Norton usa phone number

Norton security phone number customer service
Norton support phone number
Norton support telephone number
Norton tech support number
Norton tech support phone number
Norton technical support
Norton technical support number
Norton technical support phone number
Norton antivirus customer support phone number
Norton antivirus phone number customer service
Norton antivirus tech support number
Norton customer service phone number
Norton customer service phone numbers
Norton internet security technical support
Norton tech support phone number us
Norton technical support telephone number
contact Norton antivirus
contact Norton by phone
contact Norton customer service
contact Norton antivirus customer service phone number
contactNorton antivirus tech support usa
customer service Norton phone number
download Norton titanium
dri Norton customer service number
dri Norton customer service phone number
dri Norton phone number
how to contact Norton by email
how to delete Norton from mac
micro trend customer service
norton antivirus customer service number
phone number for Norton customer service
phone number forNorton customer service
phone number forNorton customer support
phone number forNorton tech support
phone number forNorton technical support
phone number for Norton antivirus technical support
phone number for Norton security
phone number for Norton support
phone number for Norton technical support
phone number for Norton antivirus customer service
phone number for Norton customer service
remove Norton from mac
technical support for antivirus Norton
telephone number forNorton technical support
telephone Norton antivirus
Norton antivirus contact number
Norton antivirus customer care
Norton antivirus customer care number
Norton antivirus customer care number usa
Norton antivirus customer service
Norton antivirus customer service number :idea: :evil: :D :) :lol: :( :o
:shock:
Norton antivirus customer service phone number
Norton antivirus customer service phone number usa
Norton antivirus customer service telephone number
Norton antivirus customer support
Norton antivirus customer support in usa
Norton antivirus customer support number
Norton antivirus customer support phone number
Norton antivirus for phone
Norton antivirus free antivirus support
Norton antivirus help phone number
Norton antivirus helpline number
Norton antivirus online support
Norton antivirus phone
Norton antivirus phone number
Norton antivirus phone number in usa
Norton antivirus phone number usa
Norton antivirus phone support
Norton antivirus plus tech support
Norton antivirus protection
Norton antivirus support
Norton antivirus support number
Norton antivirus support phone number
Norton antivirus support services
Norton antivirus support telephone number
Norton antivirus tech support
Norton antivirus tech support phone number free in usa
Norton antivirus tech support number
Norton antivirus tech support phone number
Norton antivirus technical support
Norton antivirus technical support number
Norton antivirus technical support phone number
Norton antivirus toll free customer care number
Norton antivirus toll free number
Norton antivirus contact phone number in usa
Norton antivirus help desk phone number in usa
Norton antivirus phone number support for technical issue in usa
Norton antivirus support phone number
Norton antivirus technical support help desk phone number
Norton antivirus technical support phone number
Norton contact number
Norton contact number usa
Norton contact phone number
Norton contact support
Norton contact number usa
Norton contact phone number
Norton contact phone number usa
Norton customer & technical support
Norton customer care
Norton customer care center
Norton customer care email
Norton customer care number
Norton customer care number
Norton customer care number usa
Norton customer care number usa toll free
Norton customer care phone number usa
Norton customer care tchnical support
Norton customer care toll free
Norton customer care toll free number
Norton customer care usa
Norton customer help
Norton customer number
Norton customer portal
Norton customer service
Norton customer service billing
Norton customer service email address
Norton customer service number
Norton customer service phone
Norton customer service phone number
Norton customer service phone number us
Norton customer service phone number usa
Norton customer service reviews
Norton customer service telephone number
Norton customer service usa
Norton customer support
Norton customer support number
Norton customer support phone
Norton customer support phone number
Norton customer service number
Norton customer service number usa
Norton customer service phone number
Norton customer support number
Norton customer support phone number
Norton free phone support
Norton gold support phone number
Norton help desk phone number
Norton help phone number
Norton helpline
Norton helpline phone number
Norton hotline customer service phone number
Norton internet security customer service
Norton antivirus customer service phone number
Norton antivirus customer service phone number
Norton antivirus customer support phone number
Norton antivirus customer support phone number
Norton antivirus technical support number
Norton customer service phone number usa
Norton internet security support phone number
Norton.com customer service
Norton antivirus antispyware 2011
Norton antivirus customer support
Norton antivirus serial key
Norton antivirus serial number
Norton antivirus support
Norton antivirus technical support
Norton business support
Norton contact support
Norton customer care number
Norton customer service 800
Norton customer service number
Norton customer service phone number
>From gcc-bugs-return-534212-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 14:37:17 2016
Return-Path: <gcc-bugs-return-534212-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 67462 invoked by alias); 11 Aug 2016 14:37:17 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 67421 invoked by uid 89); 11 Aug 2016 14:37:15 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=1.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=billing, hotline, number, technologies
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 14:37:04 +0000
From: "forgartanpoxmatthew at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/73951] New: AVG Support Phone Number!!1 877.288.2779 AVG Technical Support Number usa
Date: Thu, 11 Aug 2016 14:37:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: forgartanpoxmatthew at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73951-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01548.txt.bz2
Content-length: 8305

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73951

            Bug ID: 73951
           Summary: AVG Support Phone Number!!1 877.288.2779 AVG Technical
                    Support Number usa
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: forgartanpoxmatthew at gmail dot com
  Target Milestone: ---

Avg Support Phone Number!!1 877.288.2779 Avg support phone number Avg Support
Phone Number!!1 877.288.2779 Avg support phone number
Avg helpline phone number@~1877-288-2779 Avg tech Support Number Avg antivirus
customer service phone number
Avg Security contact Number +1877-2882779**Avg antivirus support phone number
usa+1-877-288-2779) Technical support number
CANADA+1877-288-2779 Avg Antivirus Technical Support
USA-1877-288-1288contact Avg antivirus customer service phone number
AUS-1-877-288-2779 phone number for Avg customer service
UK-1877-288-2779 phone number for Avg antivirus technical support
1-877-288-2779 phone number for Avg antivirus customer service
phone number for Avg antivirus technical support
phone number for Avg security
Avg customer service telephone number
Avg customer support
Avg grentry non payment
Avg helpline support number
http://www.gmail-techsupport.com/
Avg internet security customer service
Avg internet security technical support
Avg oem customer service
Avg pc cillin technical support
Avg phone support
Avg removal tool download
Avg subscription renewal
Avg support contact
Avg support hotline
Avg support phone number
Avg tech support phone number
Avg technical support
Avg technical support chat
Avg technical support phone number
Avg technical support phone number usa
Avg telephone number
Avg titanium antivirus
Avg titanium internet security
Avg titanium maximum
Avg titanium maximum security
Avg titanium problems
Avg Support Phone Number!!1 877.288.2779 Avg support phone number Avg Support
Phone Number!!1 877.288.2779 Avg support phone number
Avg helpline phone number@~1877-288-2779 Avg tech Support Number Avg antivirus
customer service phone number
Avg Security contact Number +1877-2882779**Avg antivirus support phone number
usa+1-877-288-2779) Technical support number
CANADA+1877-288-2779 Avg Antivirus Technical Support
USA-1877-288-1288contact Avg antivirus customer service phone number
AUS-1-877-288-2779 phone number for Avg customer service
UK-1877-288-2779 phone number for Avg antivirus technical support
1-877-288-2779 phone number for Avg antivirus customer service
Avg titanium removal tool
Avg titanium reviews
Avg titanium support
Avg virus removal service
uninstall Avg smart surfing for mac
usa customer care number for Avg antivirus
Avg phone number customer service
Avg phone numbers customer support
Avg phone support number
Avg security contact phone number
Avg security phone number customer service
Avg security support phone number
Avg support contact number
Avg support email address
Avg support phone number
Avg support telephone number
Avg support telephone number usa
Avg support telephone number
Avg tech support number
Avg Support Phone Number!!1 877.288.2779 Avg support phone number Avg Support
Phone Number!!1 877.288.2779 Avg support phone number
Avg helpline phone number@~1877-288-2779 Avg tech Support Number Avg antivirus
customer service phone number
Avg Security contact Number +1877-2882779**Avg antivirus support phone number
usa+1-877-288-2779) Technical support number
CANADA+1877-288-2779 Avg Antivirus Technical Support
USA-1877-288-1288contact Avg antivirus customer service phone number
AUS-1-877-288-2779 phone number for Avg customer service
UK-1877-288-2779 phone number for Avg antivirus technical support
1-877-288-2779 phone number for Avg antivirus customer serviceAvg antivirus
customer care phone number
Avg antivirus customer service billing
Avg antivirus customer service email address
Avg antivirus customer service live chat
Avg antivirus customer service telephone number
Avg antivirus customer support usa phone number
Avg antivirus help desk support phone number free in usa
Avg antivirus phone number customer service us
Avg antivirus phone number support
Avg antivirus support phone number
Avg antivirus tech support phone number free in usa
Avg antivirus tech support phone number
Avg antivirus technical support customer service
Avg antivirus technical support number
Avg antivirus telephone number
Avg antivirus toll free customer care number
Avg antivirus toll free number in usa
Avg antivirus contact phone number in usa
Avg antivirus customer service number
Avg antivirus customer service phone number
Avg antivirus customer service telephone number
Avg antivirus customer support number
Avg antivirus customer support phone number
Avg Support Phone Number!!1 877.288.2779 Avg support phone number Avg Support
Phone Number!!1 877.288.2779 Avg support phone number
Avg helpline phone number@~1877-288-2779 Avg tech Support Number Avg antivirus
customer service phone number
Avg Security contact Number +1877-2882779**Avg antivirus support phone number
usa+1-877-288-2779) Technical support number
CANADA+1877-288-2779 Avg Antivirus Technical Support
USA-1877-288-1288contact Avg antivirus customer service phone number
AUS-1-877-288-2779 phone number for Avg customer service
UK-1877-288-2779 phone number for Avg antivirus technical support
1-877-288-2779 phone number for Avg antivirus customer service
Avg antivirus customer support phone number
Avg antivirus help desk phone number in usa
Avg antivirus phone number
Avg tech support phone number
Avg tech support phone number free
Avg technical support phone number
Avg technical support cutomer phone number
Avg technical support phone number
Avg technical support number free in usa
Avg technical support number toll free number
Avg technical support phone number
Avg technologies phone number
Avg telephone support number
Avg antivirus customer support phone number
Avg antivirus customer service phone number
Avg customer support phone number
Avg phone number customer service
Avg technical support telephone number
contact Avg antivirus customer service phone number
customer service number for Avg antivirus
phone number for Avg antivirus
phone number for Avg antivirus customer service
phone number for Avg antivirus support
phone number for Avg customer service
phone number for Avg customer service
phone number for Avg customer support
Avg Support Phone Number!!1 877.288.2779 Avg support phone number Avg Support
Phone Number!!1 877.288.2779 Avg support phone number
Avg helpline phone number@~1877-288-2779 Avg tech Support Number Avg antivirus
customer service phone number
Avg Security contact Number +1877-2882779**Avg antivirus support phone number
usa+1-877-288-2779) Technical support number
CANADA+1877-288-2779 Avg Antivirus Technical Support
USA-1877-288-1288contact Avg antivirus customer service phone number
AUS-1-877-288-2779 phone number for Avg customer service
UK-1877-288-2779 phone number for Avg antivirus technical support
1-877-288-2779 phone number for Avg antivirus customer service
phone number for Avg tech support
phone number Avg antivirus customer service
Avg antivirus customer service number
Avg antivirus customer service phone
Avg antivirus customer service phone number
Avg antivirus customer service phone number us
Avg antivirus customer service telephone number
Avg antivirus customer support
Avg antivirus customer support number
Avg antivirus phone number customer service us
Avg antivirus phone number support
Avg antivirus phone support
Avg antivirus phone support number
Avg antivirus support phone number
Avg antivirus tech support phone number
Avg antivirus technical support
Avg antivirus technical support number
Avg antivirus technical support phone number
Avg customer service phone number
Avg customer support phone number
Avg helpline phone number
Avg internet security customer service
Avg internet security customer service phone number
Avg internet security help phone number
Avg internet security phone number customer service
Avg phone number customer service
Avg phone number customer support
Avg security customer service phone number
>From gcc-bugs-return-534213-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 14:37:29 2016
Return-Path: <gcc-bugs-return-534213-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 68613 invoked by alias); 11 Aug 2016 14:37:28 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 68539 invoked by uid 89); 11 Aug 2016 14:37:27 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=1.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=headquarters, symantec, epson, Norton
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 14:37:17 +0000
From: "verma145rajesh at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug boehm-gc/73952] New: 1-844-443-4666 norton antivirus tech support phone number, 1-844-443-4666 norton support phone number usa
Date: Thu, 11 Aug 2016 14:37:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: boehm-gc
X-Bugzilla-Version: 4.7.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: verma145rajesh at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73952-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01549.txt.bz2
Content-length: 8635

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73952

            Bug ID: 73952
           Summary: 1-844-443-4666 norton antivirus tech support phone
                    number, 1-844-443-4666 norton support phone number usa
           Product: gcc
           Version: 4.7.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: boehm-gc
          Assignee: unassigned at gcc dot gnu.org
          Reporter: verma145rajesh at gmail dot com
  Target Milestone: ---

USA..1 844-443-4666++ Norton 360 support phone number om Norton tech support
phone number Norton 360 Tech Support Number
USA..1 844-443-4666++ Norton 360 support phone number om Norton tech support
phone number Norton 360 Tech Support Number
USAtralia>>>> USA-1 844-443-4666++ Norton 360 support phone number Norton tech
support phone number  Norton 360 Tech Support Number

USA  >>>> USA-1 844-443-4666++ Norton 360 support phone number USA-1
844-443-4666USA/canada Norton 360 Tech Support Number
@@!1-844-443-4666;!!Norton 360 Support Number

Norton Live Support and Help‎ 18(00-443-4666 @@ Norton tech support phone
number
Norton Live Support and Help‎ 18(00-443-4666 @@ Norton tech support phone
number
Norton Live Support and Help‎ 18(00-443-4666 Norton 360 support phone number
USA
USA Canada>>>> USA-1 844-443-4666++ Norton 360 support phone number USA-1
844-443-4666USA/canada Norton 360 Tech Support Number
@@!1-844-443-4666;!!Norton 360 Support Number
WikiGenes- @+++1844-443-4666++000Norton 360 support phone
number18444434666USA/canada
Norton antivirus technical support phone number 1.844-443-4666
hdfc toll free customer care number(((!1.844-443-4666)) Norton 360 Tech Support
Number @@!1-844-443-4666!! Norton 360 Support Number
Norton toll free customer care number 1.844-443-4666
Norton toll free customer care number 1.844-443-4666
Norton toll free customer care number 1.844-443-4666
Norton toll free customer care number 1.844-443-4666>>>>>
Norton technical support phone number ((1.844-443-4666))
Norton technical support number 1.844-443-4666
Norton technical support number 1.844-443-4666
symantec technical support number 1.844-443-4666
Norton antivirus technical support number 1.844-443-4666
Norton support phone number 1.844-443-4666
Norton locations Norton 360 Tech Support Number @@!1-844-443-4666!! Norton 360
Support Number Norton 360 Tech Support Number @@!1-844-443-4666!! Norton 360
Support Number
Norton customer service
Norton antivirus customer care__Norton Support phone number 1.844-443-4666
Norton customer support phone number 1.844-443-4666
Norton customer support phone number 1.844-443-4666
Norton antivirus customer support phone number 1.844-443-4666Norton antivirus
customer service phone number 1.844-443-4666
Norton antivirus technical support phone number 1.844-443-4666
Norton antivirus tech support phone number 1.844-443-4666
Norton antivirus phone number 1.844-443-4666 Norton 360 Tech Support Number
@@!1-844-443-4666!! Norton 360 Support Number
Norton security center phone number 1.844-443-4666
Norton support telephone number 1.844-443-4666
Norton 360 technical support phone number 1.844-443-4666
symantec technical support phone number 1.844-443-4666
Norton tech support phone number 1.844-443-4666 Norton 360 Tech Support Number
@@!1-844-443-4666!! Norton 360 Support Number
apple technical support phone number 1.844-443-4666 USA
microsoft technical support phone number 1.844-443-4666 USA
gmail technical support phone number 1.844-443-4666 USA
kaspersky technical support phone number 1.844-443-4666 USA
lenovo technical support phone number 1.844-443-4666 USA
epson technical support phone number 1.844-443-4666 USA
Norton technical support phone number 1.844-443-4666 Norton 360 Tech Support
Number @@!1-844-443-4666!! Norton 360 Support Number
Norton AntiVirus Customer Service Phone Number #1: 844-443-4666
Norton Phone number 1-844-443-4666 Norton 360 phone number Norton 360 support
phone number
Free~* C@ll 1.844-443-4666 Norton 360 technical support phone number USA
1.844-443-4666 Norton 360 technical support phone number Norton free call
~* C@ll 1.844-443-4666 Norton 360 technical support phone number USA
1.844-443-4666 Norton 360 technical support phone number Norton free call
Norton 360 Tech Support Number @@!1-844-443-4666!! Norton 360 Support Number
PHONE support USA @1.844-443-4666 Norton antivirus technical support phone
number
Norton locations
Norton online support
Norton Support phone number 1.844-443-4666
Norton customer care Norton tech support phone number 1.844-443-4666
Norton tech support phone number 1.844-443-4666
Norton antivirus tech support phone number 1.844-443-4666
Norton locations Norton 360 Tech Support Number @@!1-844-443-4666!! Norton 360
Support Number
Norton Support phone number 1.844-443-4666
service Norton com
Norton login
Norton technical support phone number 1.844-443-4666
Norton customer service
Norton Support phone number 1.844-443-4666
Norton support telephone number 1.844-443-4666
Norton support phone number 1.844-443-4666
Norton antivirus support phone number 1.844-443-4666 Norton 360 Tech Support
Number @@!1-844-443-4666!! Norton 360 Support Number
Norton antivirus tech support phone number 1.844-443-4666
Norton antivirus customer service phone number 1.844-443-4666
Norton 360 technical support phone number 1.844-443-4666
symantec technical support phone number 1.844-443-4666
Norton technical support phone number 1.844-443-4666
Norton customer service telephone number 1.844-443-4666
Norton antivirus phone number 1.844-443-4666
Norton antivirus customer service phone number 1.844-443-4666
Norton antivirus customer service Support Norton 360 Tech Support Number
@@!1-844-443-4666!! Norton 360 Support Number
Norton antivirus phone number 1.844-443-4666
Norton phone number 1.844-443-4666 cancel subscription
Norton technical support phone number 1.844-443-4666
Norton 844 phone number 1.844-443-4666
snapdeal toll free customer care number 1.844-443-4666
sbi toll free customer care number 1.844-443-4666
airtel toll free customer care number 1.844-443-4666
Norton customer service number 1.844-443-4666
Norton call center Norton 360 Tech Support Number @@!1-844-443-4666!! Norton
360 Support Number
Norton customer service email address
Norton customer care no Norton 360 Tech Support Number @@!1-844-443-4666!!
Norton 360 Support Number
call Norton support
chat with Norton support
Norton customer support
Norton antivirus customer service number 1.844-443-4666
Norton Norton 360 Tech Support Number @@!1-844-443-4666!! Norton 360 Support
Number
Norton call center
Norton hq
Norton office locations
Norton support site
Norton telephone number 1.844-443-4666 for customer support
Norton customer service contact number 1.844-443-4666
Norton customer care
Norton toll free number 1.844-443-4666
Norton security contact number 1.844-443-4666
contact Vipre
Norton headquarters Norton 360 Tech Support Number @@!1-844-443-4666!! Norton
360 Support Number
Norton customer service chat
Norton customer service telephone number 1.844-443-4666
Norton Support phone number 1.844-443-4666
Norton customer support
Norton customer service refund
Norton login
Norton locations
Norton customer service number 1.844-443-4666 USA
Norton locations
Norton customer service email address
Norton support site Norton 360 Tech Support Number @@!1-844-443-4666!! Norton
360 Support Number
Norton technical support phone number 1.844-443-4666
Norton technical support live chat
Norton technical support email address
Norton technical support number 1.844-443-4666
Norton technical support number 1.844-443-4666 Norton 360 Tech Support Number
@@!1-844-443-4666!! Norton 360 Support Number
symantec technical support number 1.844-443-4666
Norton antivirus technical support number 1.844-443-4666
Norton customer support phone number 1.844-443-4666
Norton customer support number 1.844-443-4666
Norton customer support number 1.844-443-4666 Norton 360 Tech Support Number
@@!1-844-443-4666!! Norton 360 Support Number
Norton antivirus customer support number 1.844-443-4666
Norton locations Norton 360 Tech Support Number @@!1-844-443-4666!! Norton 360
Support Number
Norton Support phone number 1.844-443-4666
Norton corporate phone number 1.844-443-4666 Norton 360 Tech Support Number
@@!1-844-443-4666!! Norton 360 Support Number
Norton customer service Support
Norton technical support phone number 1.844-443-4666
Norton tech support phone number 1.844-443-4666
Norton tech support number 1.844-443-4666
Norton tech support number 1.844-443-4666 FREE
>From gcc-bugs-return-534216-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 14:38:51 2016
Return-Path: <gcc-bugs-return-534216-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 75296 invoked by alias); 11 Aug 2016 14:38:51 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 75278 invoked by uid 89); 11 Aug 2016 14:38:50 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=1.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=billing, hotline, number, technologies
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 14:38:40 +0000
From: "forgartanpoxmatthew at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/73956] New: AVG Support Phone Number!!1 877.288.2779 AVG Tech Support Number usa
Date: Thu, 11 Aug 2016 14:38:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: forgartanpoxmatthew at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73956-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01552.txt.bz2
Content-length: 8300

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73956

            Bug ID: 73956
           Summary: AVG Support Phone Number!!1 877.288.2779 AVG Tech
                    Support Number usa
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: forgartanpoxmatthew at gmail dot com
  Target Milestone: ---

Avg Support Phone Number!!1 877.288.2779 Avg support phone number Avg Support
Phone Number!!1 877.288.2779 Avg support phone number
Avg helpline phone number@~1877-288-2779 Avg tech Support Number Avg antivirus
customer service phone number
Avg Security contact Number +1877-2882779**Avg antivirus support phone number
usa+1-877-288-2779) Technical support number
CANADA+1877-288-2779 Avg Antivirus Technical Support
USA-1877-288-1288contact Avg antivirus customer service phone number
AUS-1-877-288-2779 phone number for Avg customer service
UK-1877-288-2779 phone number for Avg antivirus technical support
1-877-288-2779 phone number for Avg antivirus customer service
phone number for Avg antivirus technical support
phone number for Avg security
Avg customer service telephone number
Avg customer support
Avg grentry non payment
Avg helpline support number
http://www.gmail-techsupport.com/
Avg internet security customer service
Avg internet security technical support
Avg oem customer service
Avg pc cillin technical support
Avg phone support
Avg removal tool download
Avg subscription renewal
Avg support contact
Avg support hotline
Avg support phone number
Avg tech support phone number
Avg technical support
Avg technical support chat
Avg technical support phone number
Avg technical support phone number usa
Avg telephone number
Avg titanium antivirus
Avg titanium internet security
Avg titanium maximum
Avg titanium maximum security
Avg titanium problems
Avg Support Phone Number!!1 877.288.2779 Avg support phone number Avg Support
Phone Number!!1 877.288.2779 Avg support phone number
Avg helpline phone number@~1877-288-2779 Avg tech Support Number Avg antivirus
customer service phone number
Avg Security contact Number +1877-2882779**Avg antivirus support phone number
usa+1-877-288-2779) Technical support number
CANADA+1877-288-2779 Avg Antivirus Technical Support
USA-1877-288-1288contact Avg antivirus customer service phone number
AUS-1-877-288-2779 phone number for Avg customer service
UK-1877-288-2779 phone number for Avg antivirus technical support
1-877-288-2779 phone number for Avg antivirus customer service
Avg titanium removal tool
Avg titanium reviews
Avg titanium support
Avg virus removal service
uninstall Avg smart surfing for mac
usa customer care number for Avg antivirus
Avg phone number customer service
Avg phone numbers customer support
Avg phone support number
Avg security contact phone number
Avg security phone number customer service
Avg security support phone number
Avg support contact number
Avg support email address
Avg support phone number
Avg support telephone number
Avg support telephone number usa
Avg support telephone number
Avg tech support number
Avg Support Phone Number!!1 877.288.2779 Avg support phone number Avg Support
Phone Number!!1 877.288.2779 Avg support phone number
Avg helpline phone number@~1877-288-2779 Avg tech Support Number Avg antivirus
customer service phone number
Avg Security contact Number +1877-2882779**Avg antivirus support phone number
usa+1-877-288-2779) Technical support number
CANADA+1877-288-2779 Avg Antivirus Technical Support
USA-1877-288-1288contact Avg antivirus customer service phone number
AUS-1-877-288-2779 phone number for Avg customer service
UK-1877-288-2779 phone number for Avg antivirus technical support
1-877-288-2779 phone number for Avg antivirus customer serviceAvg antivirus
customer care phone number
Avg antivirus customer service billing
Avg antivirus customer service email address
Avg antivirus customer service live chat
Avg antivirus customer service telephone number
Avg antivirus customer support usa phone number
Avg antivirus help desk support phone number free in usa
Avg antivirus phone number customer service us
Avg antivirus phone number support
Avg antivirus support phone number
Avg antivirus tech support phone number free in usa
Avg antivirus tech support phone number
Avg antivirus technical support customer service
Avg antivirus technical support number
Avg antivirus telephone number
Avg antivirus toll free customer care number
Avg antivirus toll free number in usa
Avg antivirus contact phone number in usa
Avg antivirus customer service number
Avg antivirus customer service phone number
Avg antivirus customer service telephone number
Avg antivirus customer support number
Avg antivirus customer support phone number
Avg Support Phone Number!!1 877.288.2779 Avg support phone number Avg Support
Phone Number!!1 877.288.2779 Avg support phone number
Avg helpline phone number@~1877-288-2779 Avg tech Support Number Avg antivirus
customer service phone number
Avg Security contact Number +1877-2882779**Avg antivirus support phone number
usa+1-877-288-2779) Technical support number
CANADA+1877-288-2779 Avg Antivirus Technical Support
USA-1877-288-1288contact Avg antivirus customer service phone number
AUS-1-877-288-2779 phone number for Avg customer service
UK-1877-288-2779 phone number for Avg antivirus technical support
1-877-288-2779 phone number for Avg antivirus customer service
Avg antivirus customer support phone number
Avg antivirus help desk phone number in usa
Avg antivirus phone number
Avg tech support phone number
Avg tech support phone number free
Avg technical support phone number
Avg technical support cutomer phone number
Avg technical support phone number
Avg technical support number free in usa
Avg technical support number toll free number
Avg technical support phone number
Avg technologies phone number
Avg telephone support number
Avg antivirus customer support phone number
Avg antivirus customer service phone number
Avg customer support phone number
Avg phone number customer service
Avg technical support telephone number
contact Avg antivirus customer service phone number
customer service number for Avg antivirus
phone number for Avg antivirus
phone number for Avg antivirus customer service
phone number for Avg antivirus support
phone number for Avg customer service
phone number for Avg customer service
phone number for Avg customer support
Avg Support Phone Number!!1 877.288.2779 Avg support phone number Avg Support
Phone Number!!1 877.288.2779 Avg support phone number
Avg helpline phone number@~1877-288-2779 Avg tech Support Number Avg antivirus
customer service phone number
Avg Security contact Number +1877-2882779**Avg antivirus support phone number
usa+1-877-288-2779) Technical support number
CANADA+1877-288-2779 Avg Antivirus Technical Support
USA-1877-288-1288contact Avg antivirus customer service phone number
AUS-1-877-288-2779 phone number for Avg customer service
UK-1877-288-2779 phone number for Avg antivirus technical support
1-877-288-2779 phone number for Avg antivirus customer service
phone number for Avg tech support
phone number Avg antivirus customer service
Avg antivirus customer service number
Avg antivirus customer service phone
Avg antivirus customer service phone number
Avg antivirus customer service phone number us
Avg antivirus customer service telephone number
Avg antivirus customer support
Avg antivirus customer support number
Avg antivirus phone number customer service us
Avg antivirus phone number support
Avg antivirus phone support
Avg antivirus phone support number
Avg antivirus support phone number
Avg antivirus tech support phone number
Avg antivirus technical support
Avg antivirus technical support number
Avg antivirus technical support phone number
Avg customer service phone number
Avg customer support phone number
Avg helpline phone number
Avg internet security customer service
Avg internet security customer service phone number
Avg internet security help phone number
Avg internet security phone number customer service
Avg phone number customer service
Avg phone number customer support
Avg security customer service phone number
>From gcc-bugs-return-534214-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 14:38:14 2016
Return-Path: <gcc-bugs-return-534214-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 73411 invoked by alias); 11 Aug 2016 14:38:14 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 73393 invoked by uid 89); 11 Aug 2016 14:38:13 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=1.8 required=5.0 tests=ALL_TRUSTED,BAYES_50,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=billing, hotline, number, technologies
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 14:38:07 +0000
From: "paldhirendra2612 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/73954] New: *****1*8*44*44*34*666*** norton tech support phone number usa,*******supp0rt 00000 num000ber
Date: Thu, 11 Aug 2016 14:38:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: lno
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: paldhirendra2612 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73954-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01550.txt.bz2
Content-length: 8997

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73954

            Bug ID: 73954
           Summary: *****1*8*44*44*34*666*** norton tech support phone
                    number usa,*******supp0rt 00000 num000ber
           Product: gcc
           Version: lno
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: paldhirendra2612 at gmail dot com
  Target Milestone: ---

NORTON Support Phone Number!!1 844.443.4666 NORTON support phone number


NORTON Support Phone Number!!1 844.443.4666 NORTON support phone number NORTON
Support Phone Number!!1 844.443.4666 NORTON support phone number
Norton helpline phone number@~1844-443-4666 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1844-4434666**Norton antivirus support phone
number
usa+1-844-443-4666) Technical support number
CANADA+1844-443-4666 Norton Antivirus Technical Support
USA-1844-443-1443contact Norton antivirus customer service phone number
AUS-1-844-443-4666 phone number for Norton customer service
UK-1844-443-4666 phone number for Norton antivirus technical support
1-844-443-4666 phone number for Norton antivirus customer service
phone number for Norton antivirus technical support
phone number for Norton security
Norton customer service telephone number
Norton customer support
Norton grentry non payment
Norton helpline support number
Norton internet security customer service
Norton internet security technical support
Norton oem customer service
Norton pc cillin technical support
Norton phone support
Norton removal tool download
Norton subscription renewal
Norton support contact
Norton support hotline
Norton support phone number
Norton tech support phone number
Norton technical support
Norton technical support chat
Norton technical support phone number
Norton technical support phone number usa
Norton telephone number
Norton titanium antivirus
Norton titanium internet security
Norton titanium maximum
Norton titanium maximum security
Norton titanium problems
NORTON Support Phone Number!!1 844.443.4666 NORTON support phone number NORTON
Support Phone Number!!1 844.443.4666 NORTON support phone number
Norton helpline phone number@~1844-443-4666 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1844-4434666**Norton antivirus support phone
number
usa+1-844-443-4666) Technical support number
CANADA+1844-443-4666 Norton Antivirus Technical Support
USA-1844-443-1443contact Norton antivirus customer service phone number
AUS-1-844-443-4666 phone number for Norton customer service
UK-1844-443-4666 phone number for Norton antivirus technical support
1-844-443-4666 phone number for Norton antivirus customer service
Norton titanium removal tool
Norton titanium reviews
Norton titanium support
Norton virus removal service
uninstall Norton smart surfing for mac
usa customer care number for Norton antivirus
Norton phone number customer service
Norton phone numbers customer support
Norton phone support number
Norton security contact phone number
Norton security phone number customer service
Norton security support phone number
Norton support contact number
Norton support email address
Norton support phone number
Norton support telephone number
Norton support telephone number usa
Norton support telephone number
Norton tech support number
NORTON Support Phone Number!!1 844.443.4666 NORTON support phone number NORTON
Support Phone Number!!1 844.443.4666 NORTON support phone number
Norton helpline phone number@~1844-443-4666 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1844-4434666**Norton antivirus support phone
number
usa+1-844-443-4666) Technical support number
CANADA+1844-443-4666 Norton Antivirus Technical Support
USA-1844-443-1443contact Norton antivirus customer service phone number
AUS-1-844-443-4666 phone number for Norton customer service
UK-1844-443-4666 phone number for Norton antivirus technical support
1-844-443-4666 phone number for Norton antivirus customer serviceNorton
antivirus customer care phone number
Norton antivirus customer service billing
Norton antivirus customer service email address
Norton antivirus customer service live chat
Norton antivirus customer service telephone number
Norton antivirus customer support usa phone number
Norton antivirus help desk support phone number free in usa
Norton antivirus phone number customer service us
Norton antivirus phone number support
Norton antivirus support phone number
Norton antivirus tech support phone number free in usa
Norton antivirus tech support phone number
Norton antivirus technical support customer service
Norton antivirus technical support number
Norton antivirus telephone number
Norton antivirus toll free customer care number
Norton antivirus toll free number in usa
Norton antivirus contact phone number in usa
Norton antivirus customer service number
Norton antivirus customer service phone number
Norton antivirus customer service telephone number
Norton antivirus customer support number
Norton antivirus customer support phone number
NORTON Support Phone Number!!1 844.443.4666 NORTON support phone number NORTON
Support Phone Number!!1 844.443.4666 NORTON support phone number
Norton helpline phone number@~1844-443-4666 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1844-4434666**Norton antivirus support phone
number
usa+1-844-443-4666) Technical support number
CANADA+1844-443-4666 Norton Antivirus Technical Support
USA-1844-443-1443contact Norton antivirus customer service phone number
AUS-1-844-443-4666 phone number for Norton customer service
UK-1844-443-4666 phone number for Norton antivirus technical support
1-844-443-4666 phone number for Norton antivirus customer service
Norton antivirus customer support phone number
Norton antivirus help desk phone number in usa
Norton antivirus phone number
Norton tech support phone number
Norton tech support phone number free
Norton technical support phone number
Norton technical support cutomer phone number
Norton technical support phone number
Norton technical support number free in usa
Norton technical support number toll free number
Norton technical support phone number
Norton technologies phone number
Norton telephone support number
Norton antivirus customer support phone number
Norton antivirus customer service phone number
Norton customer support phone number
Norton phone number customer service
Norton technical support telephone number
contact Norton antivirus customer service phone number
customer service number for Norton antivirus
phone number for Norton antivirus
phone number for Norton antivirus customer service
phone number for Norton antivirus support
phone number for Norton customer service 
 0000000000000000000000ooooooooooooooooooooooooooooooo00000000000000000000
suppoo000000rrrrrrRRRRRRRRRRRRRRRt 
phone number for Norton customer support
NORTON Support Phone Number!!1 844.443.4666 NORTON support phone number NORTON
Support Phone Number!!1 844.443.4666 NORTON support phone number
Norton helpline phone number@~1844-443-4666 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1844-4434666**Norton antivirus support phone
number
usa+1-844-443-4666) Technical support number
CANADA+1844-443-4666 Norton Antivirus Technical Support
USA-1844-443-1443contact Norton antivirus customer service phone number
AUS-1-844-443-4666 phone number for Norton customer service
UK-1844-443-4666 phone number for Norton antivirus technical support
1-844-443-4666 phone number for Norton antivirus customer service
phone number for Norton tech support
phone number Norton antivirus customer service
Norton antivirus customer service number
Norton antivirus customer service phone
Norton antivirus customer service phone number
Norton antivirus customer service phone number us
Norton antivirus customer service telephone number
Norton antivirus customer support
Norton antivirus customer support number
Norton antivirus phone number customer service us
Norton antivirus phone number support
Norton antivirus phone support
Norton antivirus phone support number
Norton antivirus support phone number
Norton antivirus tech support phone number
Norton antivirus technical support
Norton antivirus technical support number
Norton antivirus technical support phone number
Norton customer service phone number
Norton customer support phone number
Norton helpline phone number
Norton internet security customer service
Norton internet security customer service phone number
Norton internet security help phone number
Norton internet security phone number customer service
Norton phone number customer service
Norton phone number customer support
Norton security customer service phone number
>From gcc-bugs-return-534215-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 14:38:24 2016
Return-Path: <gcc-bugs-return-534215-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 74248 invoked by alias); 11 Aug 2016 14:38:24 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 74220 invoked by uid 89); 11 Aug 2016 14:38:23 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=1.8 required=5.0 tests=ALL_TRUSTED,BAYES_50,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=D*@, SUPPORT, aus, AUS
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 14:38:08 +0000
From: "shivani4896.gupta4896 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/73955] New: beliveable sloutioncall us@@ 18444434666 icloud tech support phone number 1844*443*4666
Date: Thu, 11 Aug 2016 14:38:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: shivani4896.gupta4896 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73955-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01551.txt.bz2
Content-length: 6870

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73955

            Bug ID: 73955
           Summary: beliveable sloutioncall us@@ 18444434666 icloud tech
                    support phone number 1844*443*4666
           Product: gcc
           Version: 6.2.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: shivani4896.gupta4896 at gmail dot com
  Target Milestone: ---

all***1844.443.4666***Apple icloud tech support phone number ,apple technical
support USA@@@@@@@ http  :// 
CALL : USA ((1844.443.4666))Apple icloud tech support phone number  ,Hp
technical support USA@@@@@@@
@USA....*@@*....cTALK((1844.443.4666))Apple icloud tech support phone number
,Hp technical support USA@@@@ @@@@@@@USA@@@@Apple icloud 1-844-443-4666 Support
Phone Number !CAll @@@@@@@ 1 844 443 4666 Apple icloud Support Phone Number
Canada Apple icloud customer care phone number Call @@@@@@@@@@@@@@@ 1 844 443
4666 Apple icloud Support Phone Number Canada Apple icloud customer care phone
number Call @@@@@$$$$$$$$((((((((((Apple icloud 1-844-443-4666 Hp Tech Support
Phone Number Canada Apple icloud customer service number $$$$$$$@@@@@@Apple
icloud 1-844-443-4666 Hp Tech Support Phone Number Canada Apple icloud customer
service number $Apple icloud 1-844-443-4666 Hp Tech Support Phone Number Canada
Apple icloud customer service number Apple icloud SUPPORT
USA(((1844-443-4666(USA), 1844-443-4666(UK) 1844-443-4666(AUS)!!!!!!FREE Apple
icloud support phone number,Hp customer service number @SUPPORT
Canada!!!!!!!!!((1844-443-4666))!!!!!!FREE Apple icloud support phone number
,Hp cusomer support, Hp technical support chat, Hp computer help, Hp support
numbers, Hp technical support contact number, Hp telephone number, Apple icloud
technical support phone number, Apple icloud helpline, Hp support printers, Hp
support online, Apple icloud contact number, Hp help phone number, Apple icloud
customer care number, contact hewlett packard by phone, Apple icloud phone
support, hewlett packard printers support, Hp tech support phone, Hp technical
help, Hp laptop tech support number, contact Hp by phone, Hp support call, Hp
computers support, hewlett packard customer service telephone number, phone
number for hewlett packard, Hp online support chat, Hp laptop customer service
number, Hp online chat support, Apple iclouds customer service, hewlett packard
customer service phone, Hp laptop tech support, Hp service phone number,
hewlett packard printer help, phone number for Apple iclouds, Hp
troubleshooting phone number, Hp 844 number, hewlett packard technical support
number, contact Hp support phone, phone number for Apple icloud support, Hp
customer support chat, Hp help and support number, contact hewlett packard, Hp
laptop support phone number, Apple iclouds customer service phone number, Hp
laptop customer service phone number, Hp computer support phone number, Hp
pavilion support, Hp computer customer service, Hp customer services, hewlett
packard telephone number, Hp helpline no, Hp help desk number, contact Hp
support phone number, hewlett packard contact, Hp phone numbers, Apple iclouds
customer care number, Apple icloud help and support, contact Hp technical
support, Hp contact numbers, contact Hp support chat, call Hp tech support, Hp
customer service phone, Hp help support, Hp computer tech support, Hp
assistance phone number, Hp customer service telephone number, hewlett packard
printer support phone number, Hp contact support number, Hp support center
phone number, Hp support phone numbers, tech support for Hp, Hp it support, Hp
laptop helpline, Hp technical, Hp laptop technical support number, Apple
iclouds tech support phone number, Apple iclouds support phone number, hewlett
packard help desk phone number, Hp computer tech support phone number, Hp
customer service number for laptop, Apple icloud helpline number, contact Hp
support by phone, hewlett packard support center, Hp laptop customer care no,
Apple icloud support telephone number, Hp support services, Hp customer service
number for printers, Hp product support number, Hp laptop tech support phone
number, Apple icloud helpline phone number, contact Hp customer support,
hewlett packard customer support phone number, Apple iclouds technical support,
Hp customer care center, support for Apple iclouds, Apple icloud support
center, phone number for Hp tech support, Hp desktop customer care number, Hp
laptops support, Apple icloud online support, Apple icloud phone number,
hewlett packard printers support phone number, technical support for Apple
iclouds phone number, Hp help center phone number, contact Hp tech support,
call Apple icloud support, Apple iclouds customer support, Hp computer customer
service number, Apple iclouds helpline, Hp customer care contact number, Hp
laptop help, Hp computer customer service phone number, phone number for
hewlett packard customer service, hewlett packard 844 number, Apple icloud help
phone number, Apple iclouds help phone number, Apple icloud phone number for
customer service, Hp computer technical support phone number, customer service
Hp, Hp support technical support number, contact number for Hp, Hp computers
support phone number, Apple iclouds support number, Apple icloud technical
support number, contact Hp tech support by phone, Hp computer customer care
number, Apple icloud 844 number, call Hp customer service, Apple icloud help
center, Hp computers customer service, Apple icloud help desk, hewlett packard
computer support, Apple iclouds technical support number, Hp help desk phone
number, Apple icloud support phone, Hp contact help, contact Hp laptop support,
Hp customer service contact number, support for Apple icloud, Apple icloud
customer care no, Hp computer phone number, Hp tech help, Hp pc support number,
Hp laptop customer support, Hp desktop support number, support Apple icloud, Hp
support hours, number for Hp support, Hp support customer service number, Hp
contact phone number, customer service number for Apple iclouds, Hp computers
help, Hp tech support contact number, Hp phone support number.... Apple icloud
support number Apple icloud customer service number Apple icloud customer
support number Apple icloud customer care number Apple icloud help number Apple
icloud helpline number Apple icloud contact number Apple icloud toll free
number Apple icloud troubleshooting phone number Apple icloud support canada
Apple icloud customer service canada Apple icloud help canada Apple icloud
phone number canda Apple icloud phone Support canda Apple icloud not printing
Apple icloud not respoding Apple icloud problems with windows 7-8-10 Apple
icloud problems with mac Hp
>From gcc-bugs-return-534217-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 14:39:02 2016
Return-Path: <gcc-bugs-return-534217-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 76099 invoked by alias); 11 Aug 2016 14:39:01 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 76085 invoked by uid 89); 11 Aug 2016 14:39:00 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GARBLED_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=numberphone, wireless, printers, hewlett
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 14:38:51 +0000
From: "alexsimith25 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug java/73957] New: HP printer Support Number        (888) 990-8801
Date: Thu, 11 Aug 2016 14:39:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: java
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: alexsimith25 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73957-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01553.txt.bz2
Content-length: 7943

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73957

            Bug ID: 73957
           Summary: HP printer Support Number        (888) 990-8801
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: java
          Assignee: unassigned at gcc dot gnu.org
          Reporter: alexsimith25 at gmail dot com
  Target Milestone: ---

HP printer Support Phone Number                       (888) 990-8801           
  HP printer Support






Are you facing technical problems with your HP printer and looking for HP
printer support phone number or HP printer support phone number or HP printer
customer service telephone number or HP printer customer service phone number
or HP printer customer service telephone number or HP printer customer service
telephone number, don’t worry you are at the right place. You just need to
connect with our HP printer technology expert through our toll free number
(888) 990-8801.HP printer Support Phone Number 1(888) 990-8801, HP printer
support. HP USA Customer Service Phone Number 1(888) 990-8801.

When you dial our HP printer support telephone number you’ll be connected with
one of our printer technology experts and s/he will help you to get rid of your
technical problem with Hewlett Packard Printer. In case they’re unable to fix
it they’ll be sharing a new HP printer support phone number of their senior
level technicians. hp printer troubleshooting , hp help and support , contact
hp printer support , hp support for printers , hp printer contact number , hp
printer phone support , install hp printer , hp laptop support number , hp
printer tech support phone number. We are provide best support for HP OfficeJet
Pro 8600 support. We have expert technician and they can resolve your issue and
we are providing hp tech support telephone number. Our more services are tech
support for hp, hp phone number for printer support, hp wireless printer
support phone number, hp printer fix ,hp printer setup , hp computer support
number , hp printer support phone number usa , hp wireless printer support
technical support for Hewlett Packard Printer. HP printer support,  They’ll
help you with HP printer support phone number or HP printer  support phone
number, HP printer  support phone number, HP printer customer service number,
HP printer  support phone number, HP printer support phone number. HP USA
Customer Service Phone Number 1(888) 990-8801

We are provide best support for HP OfficeJet Pro 8600 support. We have expert
technician and they can resolve your issue and we are providing hp tech support
telephone number. Our more services are tech support for hp, hp phone number
for printer support, hp wireless printer support phone number, hp printer fix.
Our printer technology experts are good enough to assist you if you are
searching on Google for HP printer support, hp printer help phone number, HP
printer help, HP printer helpline, HP printer helpdesk, HP printer tech
support, HP printer technical support number, support for Hewlett Packard
Printer, hp printer tech support number , hp printer technical support number ,
hp printer technical support phone number , hp printer troubleshooting , hp
help and support , contact hp printer support , hp support for printers , hp
printer contact number , hp printer phone support , install hp printer , hp
laptop support number , hp printer tech support phone number , hp printer setup
, hp computer support number , hp printer support phone number usa , hp
wireless printer support technical support for hp Printer. HP printer support,
HP printer help, hp printer help phone number,  HP printer helpline, HP printer
helpdesk, support for Hewlett Packard Printer, HP printer problem, HP printer
problems, HP printer problem, HP printer problems, HP printer issues, HP
printer issues, HP printer number, HP printer number, HP technical support
number. You don’t need to go and search on Google every time you need
assistance. 
HP USA Customer Service Phone Number 1(888) 990-8801, phone number for hp
support,hp 800 number,phone number for hp printer support,hp support telephone
number,hp help desk number,hp printers tech support phone number,hp printers
support phone number,hp printer helpline phone number,hp laptop technical
support number,hp phone number for tech support,hp troubleshooting phone
number,hp help and support phone number,call hp tech support,hp printer service
phone number
We are basically provided a technical support for the hp and the phone number
of the hp is 1(888) 990-8801. phone number for hp support,hp 800 number,phone
number for hp printer support,hp support telephone number,hp help desk
number,hp printers tech support phone number,hp printers support phone
number,hp printer helpline phone number,hp laptop technical support number,hp
phone number for tech support,hp troubleshooting phone number,hp help and
support phone number,call hp tech support,hp printer service phone number, hp
printer tech support number | hp printer technical support number | hp printer
technical support phone number | hp printer troubleshooting | hp help and
support | contact hp printer support | hp support for printers | hp printer
contact number | hp printer phone support | install hp printer | hp laptop
support number | hp printer tech support phone number | hp printer setup | hp
computer support number | hp printer support phone number usa | hp wireless
printer support
We are provide best support for HP OfficeJet Pro 8600 support. We have expert
technician and they can resolve your issue and we are providing hp tech support
telephone number. Our more services are tech support for hp, hp phone number
for printer support, hp wireless printer support phone number, hp printer fix.
hp printer tech support number | hp printer technical support number | hp
printer technical support phone number | hp printer troubleshooting | hp help
and support | contact hp printer support | hp support for printers | hp printer
contact number | hp printer phone support | install hp printer | hp laptop
support number | hp printer tech support phone number | hp printer setup | hp
computer support number | hp printer support phone number usa | hp wireless
printer support
HP printer setup, HP printer service with technical support number 1(888)
990-8801, HP printer Support, HP printer help, how to fix HP printer problem,
HP printer not working, HP printer configuration, HP printer Support Number 
1(888) 990-8801, HP printer support, HP printer support, HP printer support, HP
printer support, HP printer support, HP printer support, HP printer support, HP
printer support, HP printer support 1(888) 990-8801, Contact on HP printer tech
support phone number for HP printer technical help and HP printer suppor phone
number 1(888) 990-8801.
hp printer tech support number | hp printer technical support number | hp
printer technical support phone number | hp printer troubleshooting | hp help
and support | contact hp printer support | hp support for printers | hp printer
contact number | hp printer phone support | install hp printer | hp laptop
support number | hp printer tech support phone number | hp printer setup | hp
computer support number | hp printer support phone number usa | hp wireless
printer support |hp phone number for hp support,hp 800 number,phone number for
hp printer support,hp support telephone number,hp help desk number,hp printers
tech support phone number,hp printers support phone number,hp printer helpline
phone number,hp laptop technical support number,hp phone number for tech
support,hp troubleshooting phone number,hp help and support phone number,call
hp tech support,hp printer service phone number.
>From gcc-bugs-return-534218-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 14:41:20 2016
Return-Path: <gcc-bugs-return-534218-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 94864 invoked by alias); 11 Aug 2016 14:41:20 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 94369 invoked by uid 89); 11 Aug 2016 14:41:19 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=headquarters, symantec, D*@, yopmail
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 14:41:09 +0000
From: "jadghjfns at yopmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/73962] New: Call USA Canada>>>> 1 888-936-5569++ Norton 360 support phone number USA Canada?
Date: Thu, 11 Aug 2016 14:41:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jadghjfns at yopmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73962-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01554.txt.bz2
Content-length: 8312

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73962

            Bug ID: 73962
           Summary: Call USA Canada>>>> 1 888-936-5569++ Norton 360
                    support phone number USA Canada?
           Product: gcc
           Version: 6.1.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: jadghjfns at yopmail dot com
  Target Milestone: ---

Call USA Canada>>>> 1 888-936-5569++ Norton 360 support phone number USA
Canada?
Call USA Canada>>>> 1 855-990-5999++ Norton 360 support phone number 1
855-990-5999usa/canada Norton 360 Tech Support Number
@@!1-855-990-5999;!!Norton 360 Support Number for @@@@@Norton

Norton Live Support and Help 18(00-990-5999 @@ Norton tech support phone number
Norton Live Support and Help 18(00-990-5999 @@ Norton tech support phone number
Norton Live Support and Help 18(00-990-5999 Norton 360 support phone number usa
USA Canada>>>> 1 855-990-5999++ Norton 360 support phone number 1
855-990-5999usa/canada Norton 360 Tech Support Number
@@!1-855-990-5999;!!Norton 360 Support Number
WikiGenes- @+++1855-990-5999++000Norton 360 support phone
number18559905999usa/canada
Norton antivirus technical support phone number 1.855-990-5999
hdfc toll free customer care number(((!1.855-990-5999)) Norton 360 Tech Support
Number @@!1-855-990-5999!! Norton 360 Support Number
Norton toll free customer care number 1.855-990-5999
Norton toll free customer care number 1.855-990-5999
Norton toll free customer care number 1.855-990-5999
Norton toll free customer care number 1.855-990-5999>>>>>
Norton technical support phone number ((1.855-990-5999))
Norton technical support number 1.855-990-5999
Norton technical support number 1.855-990-5999
symantec technical support number @@@@@@@@@@@@@@@@@ 1.855-990-5999
Norton antivirus technical support number 1.855-990-5999
Norton support phone number 1.855-990-5999
Norton locations Norton 360 Tech Support Number @@!1-855-990-5999!! Norton 360
Support Number Norton 360 Tech Support Number @@!1-855-990-5999!! Norton 360
Support Number
Norton customer service
Norton antivirus customer care__Norton Support phone number 1.855-990-5999
Norton customer support phone number 1.855-990-5999
Norton customer support phone number 1.855-990-5999
Norton antivirus customer support phone number 1.855-990-5999Norton antivirus
customer service phone number 1.855-990-5999
Norton antivirus technical support phone number 1.855-990-5999
Norton antivirus tech support phone number 1.855-990-5999
Norton antivirus phone number 1.855-990-5999 Norton 360 Tech Support Number
@@!1-855-990-5999!! Norton 360 Support Number
Norton security center phone number 1.855-990-5999
Norton support telephone number 1.855-990-5999
Norton 360 technical support phone number 1.855-990-5999
symantec technical support phone number 1.855-990-5999
Norton tech support phone number 1.855-990-5999 Norton 360 Tech Support Number
@@!1-855-990-5999!! Norton 360 Support Number
apple technical support phone number 1.855-990-5999 usa
microsoft technical support phone number 1.855-990-5999 usa
gmail technical support phone number 1.855-990-5999 usa
kaspersky technical support phone number 1.855-990-5999 usa
lenovo technical support phone number 1.855-990-5999 usa
epson technical support phone number 1.855-990-5999 usa
Norton technical support phone number 1.855-990-5999 Norton 360 Tech Support
Number @@!1-855-990-5999!! Norton 360 Support Number
Norton AntiVirus Customer Service Phone Number #1: 855-990-5999
Norton Phone number 1-855-990-5999 Norton 360 phone number Norton 360 support
phone number
Free~* C@ll 1.855-990-5999 Norton 360 technical support phone number usa
1.855-990-5999 Norton 360 technical support phone number Norton free call
~* C@ll 1.855-990-5999 Norton 360 technical support phone number usa
1.855-990-5999 Norton 360 technical support phone number Norton free call
Norton 360 Tech Support Number @@!1-855-990-5999!! Norton 360 Support Number
PHONE support USA @1.855-990-5999 Norton antivirus technical support phone
number
Norton locations
Norton online support
Norton Support phone number 1.855-990-5999
Norton customer care Norton tech support phone number 1.855-990-5999
Norton tech support phone number 1.855-990-5999
Norton antivirus tech support phone number 1.855-990-5999
Norton locations Norton 360 Tech Support Number @@!1-855-990-5999!! Norton 360
Support Number
Norton Support phone number 1.855-990-5999
service Norton com
Norton login
Norton technical support phone number 1.855-990-5999
Norton customer service
Norton Support phone number 1.855-990-5999
Norton support telephone number 1.855-990-5999
Norton support phone number 1.855-990-5999
Norton antivirus support phone number 1.855-990-5999 Norton 360 Tech Support
Number @@!1-855-990-5999!! Norton 360 Support Number
Norton antivirus tech support phone number 1.855-990-5999
Norton antivirus customer service phone number 1.855-990-5999
Norton 360 technical support phone number 1.855-990-5999
symantec technical support phone number 1.855-990-5999
Norton technical support phone number 1.855-990-5999
Norton customer service telephone number 1.855-990-5999
Norton antivirus phone number 1.855-990-5999
Norton antivirus customer service phone number 1.855-990-5999
Norton antivirus customer service Support Norton 360 Tech Support Number
@@!1-855-990-5999!! Norton 360 Support Number
Norton antivirus phone number 1.855-990-5999
Norton phone number 1.855-990-5999 cancel subscription
Norton technical support phone number 1.855-990-5999
Norton 855 phone number 1.855-990-5999
snapdeal toll free customer care number 1.855-990-5999
sbi toll free customer care number 1.855-990-5999
airtel toll free customer care number 1.855-990-5999
Norton customer service number 1.855-990-5999
Norton call center Norton 360 Tech Support Number @@!1-855-990-5999!! Norton
360 Support Number
Norton customer service email address
Norton customer care no Norton 360 Tech Support Number @@!1-855-990-5999!!
Norton 360 Support Number
call Norton support
chat with Norton support
Norton customer support
Norton antivirus customer service number 1.855-990-5999
Norton Norton 360 Tech Support Number @@!1-855-990-5999!! Norton 360 Support
Number
Norton call center
Norton hq
Norton office locations
Norton support site
Norton telephone number 1.855-990-5999 for customer support
Norton customer service contact number 1.855-990-5999
Norton customer care
Norton toll free number 1.855-990-5999
Norton security contact number 1.855-990-5999
contact Vipre
Norton headquarters Norton 360 Tech Support Number @@!1-855-990-5999!! Norton
360 Support Number
Norton customer service chat
Norton customer service telephone number 1.855-990-5999
Norton Support phone number 1.855-990-5999
Norton customer support
Norton customer service refund
Norton login
Norton locations
Norton customer service number 1.855-990-5999 uk
Norton locations
Norton customer service email address
Norton support site Norton 360 Tech Support Number @@!1-855-990-5999!! Norton
360 Support Number
Norton technical support phone number 1.855-990-5999
Norton technical support live chat
Norton technical support email address
Norton technical support number 1.855-990-5999
Norton technical support number 1.855-990-5999 Norton 360 Tech Support Number
@@!1-855-990-5999!! Norton 360 Support Number
symantec technical support number 1.855-990-5999
Norton antivirus technical support number 1.855-990-5999
Norton customer support phone number 1.855-990-5999
Norton customer support number 1.855-990-5999
Norton customer support number 1.855-990-5999 Norton 360 Tech Support Number
@@!1-855-990-5999!! Norton 360 Support Number
Norton antivirus customer support number 1.855-990-5999
Norton locations Norton 360 Tech Support Number @@!1-855-990-5999!! Norton 360
Support Number
Norton Support phone number 1.855-990-5999
Norton corporate phone number 1.855-990-5999 Norton 360 Tech Support Number
@@!1-855-990-5999!! Norton 360 Support Number
Norton customer service Support
Norton technical support phone number 1.855-990-5999
Norton tech support phone number 1.855-990-5999
Norton tech support number 1.855-990-5999
Norton tech support number 1.855-990-5999 FREE
>From gcc-bugs-return-534219-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 14:42:41 2016
Return-Path: <gcc-bugs-return-534219-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 98188 invoked by alias); 11 Aug 2016 14:42:40 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 98169 invoked by uid 89); 11 Aug 2016 14:42:40 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=1.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyºsically, Hx-languages-length:364, HX-Envelope-From:sk:gcc-bug
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 14:42:31 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/73550] Another wrong -Wmaybe-uninitialized warning in switch statement
Date: Thu, 11 Aug 2016 14:42:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-73550-4-Fz1DLLsStY@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73550-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73550-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01555.txt.bz2
Content-length: 279

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73550

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
There was a patch to improve jump threading and vrp here just within a few
weeks. I wonder why that did not help. Basically this is a missing jump
threading.
>From gcc-bugs-return-534220-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 14:45:37 2016
Return-Path: <gcc-bugs-return-534220-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 107497 invoked by alias); 11 Aug 2016 14:45:36 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 107459 invoked by uid 89); 11 Aug 2016 14:45:35 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,BODY_8BITS,GARBLED_BODY,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=number, D*@, CANADA, Care
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 14:45:25 +0000
From: "jardonpeter123 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/73966] New: @$#@1#8#44:443-4666 mcAfee  Antivirus TECHNICAL support number for not installing
Date: Thu, 11 Aug 2016 14:45:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 4.6.3
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jardonpeter123 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73966-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01556.txt.bz2
Content-length: 37838

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73966

            Bug ID: 73966
           Summary: @$#@1#8#44:443-4666 mcAfee  Antivirus TECHNICAL
                    support number for not installing
           Product: gcc
           Version: 4.6.3
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: jardonpeter123 at gmail dot com
  Target Milestone: ---

Describe(HJHJKHmcAfeeAntivirus) $$Antivirus Problem$$1.844-443.4666 !mcAfee 
Antivirus Desk USa@ mcAfee  Antivirus Tech Support Number USA here.Describe
$$Antivirus Problem$$!. 1-844-443-4666!mcAfee  Antivirus Desk USa@ mcAfee 
Antivirus Tech Support Number USA here.mcAfee  Antivirus customer service
support phone number usa, here.jodjpm mcAfee  Antivirus technical support phone
number,mcAfee  Antivirus customer service support phone number usa,googotys
support at 1-844-443-4666 mcAfee  Antivirus tech support number mcAfee 
Antivirus helpdesk number

Best Service for 1-844-443-4666 mcAfee  Antivirus  toll free technical support
helpline desk customer number

Describe Best Service for 1-844-443-4666 mcAfee  Antivirus  toll free technical
support helpline desk customer number !!CALL..@ 1-844-443-4666 USA, mcAfee 
Antivirus customer service number .(.)mcAfee  Antivirus customer service phone
number

mcAfee  Antivirus support number, australia, mcAfee  Antivirus support number
for login problem, mcAfee  Antivirus support number 24/7, mcAfee  Antivirus
support number uk, mcAfee  Antivirus support number in Canada, mcAfee 
Antivirus support number south africa, mcAfee  Antivirus support contact number
Canada, mcAfee  Antivirus support phone number canada, mcAfee  Antivirus
customer service support number, mcAfee  Antivirus support phone number
ireland, mcAfee  Antivirus support contact number australia, mcAfee  Antivirus
customer service phone number australia, mcAfee  Antivirus customer service
phone number australia, mcAfee  Antivirus  support number, mcAfee  Antivirus
customer service contact number australia, mcAfee  Antivirus  support phone
number in Canada, mcAfee  Antivirus customer care number bangalore, mcAfee 
Antivirus helpline number bangalore, mcAfee  Antivirus business support phone
number, mcAfee  Antivirus support number canada, mcAfee  Antivirus customer
care number chennai, mcAfee  Antivirus support contact number uk, mcAfee 
Antivirus customer care number chandigarh, mcAfee  Antivirus customer care
contact number Canada, mcAfee  Antivirus customer support number Canada, mcAfee
 Antivirus customer care number delhi, mcAfee  Antivirus customer service phone
number delhi, mcAfee  Antivirus Antivirus support number, mcAfee  Antivirus
support number for customers, mcAfee  Antivirus support number for australia,
mcAfee  Antivirus customer care number for Canada, mcAfee  Antivirus customer
care number toll free, mcAfee  Antivirus support toll free number, mcAfee 
Antivirus customer care number toll free in Canada, mcAfee  Antivirus support
toll free number Canada, google mcAfee  Antivirus support number, mcAfee 
Antivirus customer care number hyderabad, mcAfee  Antivirus helpline number
hyderabad, mcAfee  Antivirus helpline phone number hyderabad, mcAfee  Antivirus
help support number, mcAfee  Antivirus help support phone number, mcAfee 
Antivirus support number ireland, mcAfee  Antivirus support phone number
Canada, mcAfee  Antivirus customer service number Canada, mcAfee  Antivirus
customer service phone number Canada, mcAfee  Antivirus it support number,
mcAfee  Antivirus customer care number kolkata, mcAfee  Antivirus live support
number, mcAfee  Antivirus customer care number mumbai

mcAfee  Antivirus customer service phone number 1-844-443-4666 USA, mcAfee 
Antivirus customer service number 1-844-443-4666

Urgent Mailer mcAfee  Antivirus customer service phone number 1-844-443-4666
USA, mcAfee  Antivirus customer service number 1-844-443-4666 canada

Helpline mcAfee  Antivirus - customer service phone number @1-844-443-4666@
USA, mcAfee  Antivirus customer service number 1-844-443-4666 canada , mcAfee 
Antivirus @@1-844-443-4666 support phone number TALK: mcAfee  Antivirus
customer service phone number @@ 1-844-443-4666 @@…USA/Canada ,
USA/CANADA...1-844-443-4666 mcAfee  Antivirus customer service number
1-844-443-4666 .usa/canada…………. CALL USA (((1-844-443-4666))))= mcAfee 
Antivirus customer service number 1-844-443-4666/ mcAfee  Antivirus CUSTOMER
SUPPORT PHONE number 1-844-443-4666/ mcAfee  Antivirus customer service PHONE
number 1-844-443-4666 Describe CALL USA 1-844-443-4666= mcAfee  Antivirus
customer service number 1-844-443-4666/ mcAfee  Antivirus CUSTOMER SUPPORT
PHONE number 1-844-443-4666/ mcAfee  Antivirus customer service PHONE number
1-844-443-4666
here.#############1-844-443-4666@@@@@@@@@@@@@@@@#########################

1-844-443-4666 mcAfee Antivirus customer service number 1-844-443-4666: mcAfee 
Antivirus is a free Antivirus service which is provided by Google. Google
provides many services to the people across the world and mcAfee  Antivirus is
one among its services. The mcAfee  Antivirus is launched in 2004 by Paul
Buchheit. The mcAfee  Antivirus is also an advertising supported Antivirus
service. 1-844-443-4666 mcAfee  Antivirus customer service Phone number
1-844-443-4666 | mcAfee  Antivirus toll free number 1-844-443-4666 mcAfee 
Antivirus toll free number 1-844-443-4666 1-844-443-4666, mcAfee  Antivirus
customer service Phone number 1-844-443-4666, mcAfee  Antivirus customer
service number 1-844-443-4666, mcAfee  Antivirus customer service , mcAfee 
Antivirus customer service number 1-844-443-4666 mcAfee  Antivirus customer
service Phone number 1-844-443-4666 1-844-443-4666toll free. If you wants to
change your Netgear Wifi Password on Windows or Mac than you are on right
place. Call on our toll free number 1-844-443-4666 and get all details any
problem related to Netgear. Here we will teach you that how to change Wifi
passport or security key password of netgear router on Windows or Mac. Step by
Step process to change /\/\/\/\/\/\/\/\/\/\12:08, 6 January 2016 (EST)12:08, 6
January 2016 (EST)~!!!!!!!!!!!!! mcAfee  Antivirus Password: Step 1: firstly
log in to your mcAfee  Antivirus 1-844-443-4666  and type in your username and
password. Step 2: Now click on the gear; this button looks like a small cog and
is located near the top right corner of PC screen. Step 3: Now select
"Settings." It will open up the Settings menu. Step 4: Select s and Import.
It's the fourth item from left of the top of the Settings tool bar. Step 5: You
need to type in your current password. Step 9: Type in a new password. As you
type it, you will see the strength of the password to the left of the new
password. Pick a new password with a high strength for own security. Step 7:
Now you can type in a new password. As you type
!!!@####$$%%&&*(()))(&&%%$#$##%%@#$%&%$# (!!)#$%&%$# (!)#$%it, you will see the
strength of the password to the left of the new password. Pick new password
with a high strength for your own security. Step 8: You need to confirm new
password. For asking any query regarding mcAfee  Antivirus  simply dials our
toll free number 1-844-443-4666 (1-844-443-4666) and short out your problem.
mcAfee  Antivirus customer service phone number 1-844-443-4666, mcAfee 
Antivirus customer service number 1-844-443-4666 usa, mcAfee  Antivirus
customer service phone canada, (1-844-443-4666) mcAfee  Antivirus customer
service phone number 1-844-443-4666 canada, mcAfee  Antivirus customer service
, mcAfee  Antivirus customer service , mcAfee  Antivirus customer service phone
number 1-844-443-4666, mcAfee  Antivirus customer service number
1-844-443-4666, (1-844-443-4666) mcAfee  Antivirus customer service phone,
mcAfee  Antivirus customer service number 1-844-443-4666 usa, mcAfee  Antivirus
customer service phone number 1-844-443-4666 usa, mcAfee  Antivirus customer
service canada, (1-844-443-4666) mcAfee  Antivirus customer support, mcAfee 
Antivirus customer service , avast antivirus customer service phone number
1-844-443-4666, mcAfee  Antivirus customer service phone number 1-844-443-4666,
(1-844-443-4666) mcAfee  Antivirus customer service number 1-844-443-4666,
mcAfee  Antivirus customer service , mcAfee  Antivirus customer support phone
number 1-844-443-4666 mcAfee  Antivirus customer service phone number
1-844-443-4666, mcAfee  Antivirus customer service phone number 1-844-443-4666,
mcAfee  Antivirus customer service phone number 1-844-443-4666, mcAfee 
Antivirus phone number 1-844-443-4666, mcAfee  Antivirus support number
1-844-443-4666, mcAfee  Antivirus helpline number 1-844-443-4666, mcAfee 
Antivirus tollfree number 1-844-443-4666, mcAfee  Antivirus support phone
number 1-844-443-4666, mcAfee  Antivirus customer service number
1-844-443-4666, (1-844-443-4666) mcAfee  Antivirus customer service number
1-844-443-4666, mcAfee  Antivirus customer service , mcAfee  Antivirus password
reset, mcAfee  Antivirus password reset phone number 1-844-443-4666, mcAfee 
Antivirus password recovery phone number 1-844-443-4666, mcAfee  Antivirus
customer service phone number 1-844-443-4666, mcAfee  Antivirus contact number
1-844-443-4666, mcAfee  Antivirus phone number 1-844-443-4666, mcAfee 
Antivirus support number 1-844-443-4666, mcAfee  Antivirus helpline number
1-844-443-4666, mcAfee  Antivirus tollfree number 1-844-443-4666, mcAfee 
Antivirus support phone number 1-844-443-4666, mcAfee  Antivirus password
recovery phone number 1-844-443-4666, mcAfee  Antivirus customer service phone
number 1-844-443-4666, mcAfee  Antivirus customer service number
1-844-443-4666, mcAfee  Antivirus customer service number 1-844-443-4666 usa,
mcAfee  Antivirus customer service , mcAfee  Antivirus password reset, mcAfee 
Antivirus contact number 1-844-443-4666, (1-844-443-4666) mcAfee  Antivirus
customer service number 1-844-443-4666 canada mcAfee  Antivirus customer
service phone number 1-844-443-4666, mcAfee  Antivirus customer service ,
mcAfee  Antivirus customer support number 1-844-443-4666, mcAfee  Antivirus
customer service number 1-844-443-4666, mcAfee  Antivirus customer service
number 1-844-443-4666, mcAfee  Antivirus password reset number 1-844-443-4666,
mcAfee  Antivirus password recovery number 1-844-443-4666, mcAfee  Antivirus
customer service phone number 1-844-443-4666, mcAfee  Antivirus customer
service phone number 1-844-443-4666, (1-844-443-4666) mcAfee  Antivirus
customer service phone number 1-844-443-4666, mcAfee  Antivirus password reset
phone number 1-844-443-4666, mcAfee  Antivirus customer service phone number
1-844-443-4666, mcAfee  Antivirus customer service , mcAfee  Antivirus customer
service phone number 1-844-443-4666, mcAfee  Antivirus customer service number
1-844-443-4666, mcAfee  Antivirus customer service number 1-844-443-4666 usa,
mcAfee  Antivirus customer service number 1-844-443-4666 canada, mcAfee 
Antivirus customer service number 1-844-443-4666, mcAfee  Antivirus customer
service number 1-844-443-4666, mcAfee  Antivirus customer support number
1-844-443-4666, mcAfee  Antivirus customer service number 1-844-443-4666,
mcAfee  Antivirus customer service number 1-844-443-4666, mcAfee  Antivirus
password reset number 1-844-443-4666, mcAfee  Antivirus password recovery
number 1-844-443-4666, mcAfee  Antivirus customer service phone number
1-844-443-4666 usa, mcAfee  Antivirus customer service phone number
1-844-443-4666, mcAfee  Antivirus customer service number 1-844-443-4666 usa,
mcAfee  Antivirus customer service phone canada, mcAfee  Antivirus customer
service phone number 1-844-443-4666 canada, mcAfee  Antivirus customer service
, (1-844-443-4666) mcAfee  Antivirus customer service , mcAfee  Antivirus
customer service phone, mcAfee  Antivirus customer service number
1-844-443-4666 usa, mcAfee  Antivirus customer service phone number
1-844-443-4666 usa, mcAfee  Antivirus customer service canada, mcAfee 
Antivirus customer support mcAfee  Antivirus customer service phone number
1-844-443-4666 mcAfee  Antivirus customer service google customer service
google customer service phone number 1-844-443-4666 google customer support
phone number 1-844-443-4666 mcAfee  Antivirus customer service chat mcAfee 
Antivirus support phone number 1-844-443-4666 mcAfee  Antivirus support number
1-844-443-4666

mcAfee  Antivirus Toll Free, @((1-844-443-4666))@-: mcAfee  Antivirus customer
service Number, mcAfee  Antivirus help desk phone number vides online solution
for all USA/CANADA clients. For any help of query call 1-844-443-4666 to get
all mcAfee  Antivirus  solution.

For any help of query call 1-844-443-4666 to get all mcAfee  Antivirus 
solution.

@@Call, 1'844=443-4666 for all type help by mcAfee  Antivirus support telephone
number,mcAfee  Antivirus support phone number,mcAfee  Antivirus support phone
number,mcAfee  Antivirus help phone number, mcAfee  Antivirus customer service
number.mcAfee  Antivirus support number, mcAfee  Antivirus phone number, mcAfee
 Antivirus customer service number, mcAfee  Antivirus customer support number,
mcAfee  Antivirus customer support phone number, mcAfee  Antivirus customer
service phone number, mcAfee  Antivirus payroll customer service phone number,
mcAfee  Antivirus support phone number

mcAfee  Antivirus help number-mcAfee  Antivirus Helpline Number; mcAfee 
Antivirus help phone number-mcAfee  Antivirus Helpline Number, mcAfee 
Antivirus customer service Toll free Number, mcAfee  Antivirus Support
Telephone Number, mcAfee  Antivirus customer service Telephone number, mcAfee 
Antivirus customer service contact number, mcAfee  Antivirus support contact
number, mcAfee  Antivirus customer service contact number, mcAfee  Antivirus
help desk phone number.mcAfee  Antivirus password recovery support phone
number.

Call, @(1-844-443-4666)@-: mcAfee  Antivirus password recovery support phone
number.

It is very popular toll free number which vide by mcAfee  Antivirus customer
service , mcAfee  Antivirus customer service Phone Number, mcAfee  Antivirus
customer service Number, mcAfee  Antivirus Customer Support Phone Number,
mcAfee  Antivirus Customer Support Number, mcAfee  Antivirus customer service
Helpline Number, mcAfee  Antivirus Customer Care Number, mcAfee  Antivirus
support team phone number. mcAfee  Antivirus password recovery support phone
number.

Call,@(1-844-443-4666)@-: mcAfee  Antivirus help number-mcAfee  Antivirus
Helpline Number; mcAfee  Antivirus help phone number, mcAfee  Antivirus
Helpline Number, mcAfee  Antivirus customer service Toll free Number, mcAfee 
Antivirus Support Telephone Number, mcAfee  Antivirus customer service
Telephone number, mcAfee  Antivirus customer service contact number, mcAfee 
Antivirus support contact number, mcAfee  Antivirus customer service contact
number, mcAfee  Antivirus support phone number, mcAfee  Antivirus payroll
support phone number. mcAfee  Antivirus payroll customer support phone number..
mcAfee  Antivirus password reset support phone number.

for all type help by mcAfee  Antivirus support telephone number, mcAfee 
Antivirus help phone number, mcAfee  Antivirus customer service number.mcAfee 
Antivirus support number, mcAfee  Antivirus phone number, mcAfee  Antivirus
customer service number, mcAfee  Antivirus customer support number, mcAfee 
Antivirus customer support phone number, mcAfee  Antivirus customer service
phone number, mcAfee  Antivirus payroll customer service phone number

mcAfee  Antivirus Toll Free, @(1-844-443-4666)@-: mcAfee  Antivirus customer
service Number, mcAfee  Antivirus help desk phone number vides online solution
for all USA/CANADA clients. For any help of query call 1-844-443-4666 to get
all mcAfee  Antivirus  solution.

For any help of query call 1-844-443-4666 to get all mcAfee  Antivirus 
solution.

@@Call, 1-844-443-4666 for all type help by mcAfee  Antivirus support telephone
number,mcAfee  Antivirus support phone number,mcAfee  Antivirus support phone
number,mcAfee  Antivirus help phone number, mcAfee  Antivirus customer service
number.mcAfee  Antivirus support number, mcAfee  Antivirus phone number, mcAfee
 Antivirus customer service number, mcAfee  Antivirus customer support number,
mcAfee  Antivirus customer support phone number, mcAfee  Antivirus customer
service phone number, mcAfee  Antivirus payroll customer service phone number,
mcAfee  Antivirus support phone number

mcAfee  Antivirus help number-mcAfee  Antivirus Helpline Number; mcAfee 
Antivirus help phone number-mcAfee  Antivirus Helpline Number, mcAfee 
Antivirus customer service Toll free Number, mcAfee  Antivirus1-844-443-4666,
mcAfee  Antivirus customer service number 1-844-443-4666, mcAfee  Antivirus
customer service number 1-844-443-4666, mcAfee  Antivirus password reset number
1-844-443-4666  Support Telephone Number, mcAfee  Antivirus customer service
Telephone number, mcAfee  Antivirus customer service contact number, mcAfee 
Antivirus support contact number, mcAfee  Antivirus customer service contact
number, mcAfee  Antivirus help desk phone number.mcAfee  Antivirus password
recovery support phone number.

Call, @(1-844-443-4666)@-: mcAfee  Antivirus password recovery support phone
number.

It is very popular toll free number which vide by mcAfee  Antivirus customer
service , mcAfee  Antivirus customer service Phone Number, mcAfee  Antivirus
customer service Number, mcAfee  Antivirus Customer Support Phone Number,
mcAfee  Antivirus Customer Support Number, mcAfee  Antivirus customer service
Helpline Number, mcAfee  Antivirus Customer Care Number, mcAfee  Antivirus
support team phone number. mcAfee  Antivirus password recovery support phone
number.

Call,@(1-844-443-4666)@-: mcAfee  Antivirus help number-mcAfee  Antivirus
Helpline Number; mcAfee  Antivirus help phone number, mcAfee  Antivirus
Helpline Number, mcAfee  Antivirus customer service Toll free Number, mcAfee 
Antivirus Support Telephone Number, mcAfee  Antivirus customer service
Telephone number, mcAfee  Antivirus customer service contact number, mcAfee 
Antivirus support contact number, mcAfee  Antivirus customer service contact
number, mcAfee  Antivirus support phone number, mcAfee  Antivirus payroll
support phone number. mcAfee  Antivirus payroll customer support phone number..
mcAfee  Antivirus password reset support phone number.

for all type help by mcAfee  Antivirus support telephone number, mcAfee 
Antivirus help phone number, mcAfee  Antivirus customer service number.mcAfee 
Antivirus support number, mcAfee  Antivirus phone number, mcAfee  Antivirus
customer service number, mcAfee  Antivirus customer support number, mcAfee 
Antivirus customer support phone number, mcAfee  Antivirus customer service
phone number, mcAfee  Antivirus payroll customer service phone number

mcAfee  Antivirus Toll Free, @(1-844-443-4666)@-: mcAfee  Antivirus customer
service Number, mcAfee  Antivirus help desk phone number vides online solution
for all USA/CANADA clients. For any help of query call 1-844-443-4666 to get
all mcAfee  Antivirus  solution.

For any help of query call 1-844-443-4666 to get all mcAfee  Antivirus 
solution.

@@Call, 1-844-443-4666 for all type help by mcAfee  Antivirus support telephone
number,mcAfee  Antivirus support phone number,mcAfee  Antivirus support phone
number,mcAfee  Antivirus help phone number, mcAfee  Antivirus customer service
number.mcAfee  Antivirus support number, mcAfee  Antivirus phone number, mcAfee
 Antivirus customer service number, mcAfee  Antivirus customer support number,
mcAfee  Antivirus customer support phone number, mcAfee  Antivirus customer
service phone number, mcAfee  Antivirus payroll customer service phone number,
mcAfee  Antivirus support phone number

mcAfee  Antivirus help number-mcAfee  Antivirus Helpline Number; mcAfee 
Antivirus help phone number-mcAfee  Antivirus Helpline Number, mcAfee 
Antivirus customer service Toll free Number, mcAfee  Antivirus Support
Telephone Number, mcAfee  Antivirus customer service Telephone number, mcAfee 
Antivirus customer service contact number, mcAfee  Antivirus support contact
number, mcAfee  Antivirus customer service contact number, mcAfee  Antivirus
help desk phone number.mcAfee  Antivirus password recovery support phone
number.

Call, @(1-844-443-4666)@-: mcAfee  Antivirus password recovery support phone
number.

It is very popular toll free number which vide by mcAfee  Antivirus customer
service , mcAfee  Antivirus customer service Phone Number, mcAfee  Antivirus
customer service Number, mcAfee  Antivirus Customer Support Phone Number,
mcAfee  Antivirus Customer Support Number, mcAfee  Antivirus customer service
Helpline Number, mcAfee  Antivirus Customer Care Number, mcAfee  Antivirus
support team phone number. mcAfee  Antivirus password recovery support phone
number.

Call,@(1-844-443-4666)@-: mcAfee  Antivirus help number-mcAfee  Antivirus
Helpline Number; mcAfee  Antivirus help phone number, mcAfee  Antivirus
Helpline Number, mcAfee  Antivirus customer service Toll free Number, mcAfee 
Antivirus Support Telephone Number, mcAfee  Antivirus customer service
Telephone number, mcAfee  Antivirus customer service contact number, mcAfee 
Antivirus support contact number, mcAfee  Antivirus customer service contact
number, mcAfee  Antivirus support phone number, mcAfee  Antivirus payroll
support phone number. mcAfee  Antivirus payroll customer support phone number..
mcAfee  Antivirus password reset support phone number.

for all type help by mcAfee  Antivirus support telephone number, mcAfee 
Antivirus help phone number, mcAfee  Antivirus customer service number.mcAfee 
Antivirus support number, mcAfee  Antivirus phone number, mcAfee  Antivirus
customer service number, mcAfee  Antivirus customer support number, mcAfee 
Antivirus customer support phone number, mcAfee  Antivirus customer service
phone number, mcAfee  Antivirus payroll customer service phone number

mcAfee  Antivirus Toll Free, @(1-844-443-4666)@-: mcAfee  Antivirus customer
service Number, mcAfee  Antivirus help desk phone number vides online solution
for all USA/CANADA clients. For any help of query call 1-844-443-4666 to get
all mcAfee  Antivirus  solution.

For any help of query call 1-844-443-4666 to get all mcAfee  Antivirus 
solution.

@@Call, 1-844-443-4666 for all type help by mcAfee  Antivirus support telephone
number,mcAfee  Antivirus support phone number,mcAfee  Antivirus support phone
number,mcAfee  Antivirus help phone number, mcAfee  Antivirus customer service
number.mcAfee  Antivirus support number, mcAfee  Antivirus phone number, mcAfee
 Antivirus customer service number, mcAfee  Antivirus customer support number,
mcAfee  Antivirus customer support phone number, mcAfee  Antivirus customer
service phone number, mcAfee  Antivirus payroll customer service phone number,
mcAfee  Antivirus support phone number

mcAfee  Antivirus help number-mcAfee  Antivirus Helpline Number; mcAfee 
Antivirus help phone number-mcAfee  Antivirus Helpline Number, mcAfee 
Antivirus customer service Toll free Number, mcAfee  Antivirus Support
Telephone Number, mcAfee  Antivirus customer service Telephone number, mcAfee 
Antivirus customer service contact number, mcAfee  Antivirus support contact
number, mcAfee  Antivirus customer service contact number, mcAfee  Antivirus
help desk phone number.mcAfee  Antivirus password recovery support phone
number.

Call, @(1-844-443-4666)@-: mcAfee  Antivirus password recovery support phone
number.

It is very popular toll free number which vide by mcAfee  Antivirus customer
service , mcAfee  Antivirus customer service Phone Number, mcAfee  Antivirus
customer service Number, mcAfee  Antivirus Customer Support Phone Number,
mcAfee  Antivirus Customer Support Number, mcAfee  Antivirus customer service
Helpline Number, mcAfee  Antivirus Customer Care Number, mcAfee  Antivirus
support team phone number. mcAfee  Antivirus password recovery support phone
number.

Call,@(1-844-443-4666)@-: mcAfee  Antivirus help number-mcAfee  Antivirus
Helpline Number; mcAfee  Antivirus help phone number, mcAfee  Antivirus
Helpline Number, mcAfee  Antivirus ":":1-844-443-4666"
customer service Toll free Number, mcAfee  Antivirus Support Telephone Number,
mcAfee  Antivirus customer service Telephone number, mcAfee  Antivirus customer
service contact number, mcAfee  Antivirus support contact number, mcAfee 
Antivirus customer service contact number, mcAfee  Antivirus support phone
number, mcAfee  Antivirus payroll support phone number. mcAfee  Antivirus
payroll customer support phone number.. mcAfee  Antivirus password reset
support phone number.

for all type help by mcAfee  Antivirus support telephone number, mcAfee 
Antivirus help phone number, mcAfee  Antivirus customer service number.mcAfee 
Antivirus support number, mcAfee  Antivirus phone number, mcAfee  Antivirus
customer service number, mcAfee  Antivirus customer support number, mcAfee 
Antivirus customer support phone number, mcAfee  Antivirus customer service
phone number, mcAfee  Antivirus payroll customer service phone number

mcAfee  Antivirus Toll Free, @(1-844-443-4666)@-: mcAfee  Antivirus customer
service Number, mcAfee  Antivirus help desk phone number vides online solution
for all USA/CANADA clients. For any help of query call 1-844-443-4666 to get
all mcAfee  Antivirus  solution.

For any help of query call 1-844-443-4666 to get all mcAfee  Antivirus 
solution.

@@Call, 1-844-443-4666 for all type help by mcAfee  Antivirus support telephone
1-844-443-4666 number,mcAfee  Antivirus support phone number,mcAfee  Antivirus
support phone number,mcAfee  Antivirus help phone number, mcAfee  Antivirus
customer service number.mcAfee  Antivirus support number, mcAfee  Antivirus
phone number, mcAfee  Antivirus customer service number, mcAfee  Antivirus
customer support number, mcAfee  Antivirus customer support phone number,
mcAfee  Antivirus customer service phone number, mcAfee  Antivirus payroll
customer service phone number, mcAfee  Antivirus support phone number

mcAfee  Antivirus help number-mcAfee  Antivirus Helpline Number; mcAfee 
Antivirus help phone number-mcAfee  Antivirus Helpline Number, mcAfee 
Antivirus customer service Toll free Number, mcAfee  Antivirus Support
Telephone Number, mcAfee  Antivirus customer service Telephone number, mcAfee 
Antivirus customer service contact number, mcAfee  Antivirus support contact
number, mcAfee  Antivirus customer service contact number, mcAfee  Antivirus
help desk phone number.mcAfee  Antivirus password recovery support phone
number.

Call, @(1-844-443-4666)@-: mcAfee  Antivirus password recovery support phone
number.

It is very popular toll free number which vide by mcAfee  Antivirus customer
service , mcAfee  Antivirus customer service Phone Number, mcAfee  Antivirus
customer service Number, mcAfee  Antivirus Customer Support Phone Number,
mcAfee  Antivirus Customer Support Number, mcAfee  Antivirus customer service
Helpline Number, mcAfee  Antivirus Customer Care Number, mcAfee  Antivirus
support team phone number. mcAfee  Antivirus password recovery support phone
number.

Call,@(1-844-443-4666)@-: mcAfee  Antivirus help number-mcAfee  Antivirus
Helpline Number; mcAfee  Antivirus help phone number, mcAfee  Antivirus
Helpline Number, mcAfee  Antivirus customer service Toll free Number, mcAfee 
Antivirus Support Telephone Number, mcAfee  Antivirus customer service
Telephone number, mcAfee  Antivirus customer service contact number, mcAfee 
Antivirus support contact number, mcAfee  Antivirus customer service contact
number, mcAfee  Antivirus support phone number, mcAfee  Antivirus payroll
support phone number. mcAfee  Antivirus payroll customer support phone number..
mcAfee  Antivirus password reset support phone number.

for all type help by mcAfee  Antivirus support telephone number, mcAfee 
Antivirus help phone number, mcAfee  Antivirus customer service number.mcAfee 
Antivirus support number, mcAfee  Antivirus phone number, mcAfee  Antivirus
customer service number, mcAfee  Antivirus customer support number, mcAfee 
Antivirus customer support phone number, mcAfee  Antivirus customer service
phone number, mcAfee  Antivirus payroll customer service phone number
(((++1-844-443-4666++)))mcAfee  Antivirus help center phone number

(((++1-844-443-4666++)))mcAfee Antivirus help center phone number

(((++1-844-443-4666++)))mcAfee Antivirus help center phone number

mcAfee  Antivirus Customer Service 1-844-443-4666 mcAfee  Antivirus CUSTOMER
CARE number 1-844-443-4666 mcAfee  
Antivirus tech support

number USA Canada

mcAfee Antivirus Scan Stopped Working before reaching 100 percent scan?
to Keep your Computer data safe, its necessary to scan your computer at least
in a week, So if you have mcAfee in your
 computer but 
while you are going to do scan you found nothing happen then it better to you
uninstall mcAfee and re install once again 
and update your subscription, but again you are getting problem like mcAfee not
responding or got stuck before reaching 100 percent complete scan, then you can
consult with mcAfee antivirus customer service experts online on above number,
mcAfee technical support experts analysis your problem and after few minutes
you will get exact solution for that mcAfee issues, so call skilled and
professionals mcAfee technical support experts 24/7 and keep your computer data
safe and secure by malware

Customer service 1-844-443-4666  Antivirus TECHNICAL support number
1-844-443-4666 mcAfee  Antivirus tech support number

USA Canada mcAfee Antivirus PRO TECHNICAL support number ))1-844-443-4666((
mcAfee  Antivirus customer support phone number 1-844-443-4666

USA Canada @(1-844-443-4666)mcAfee  Antivirus Tech Support Phone Number
provides online solution for all USA/CANADA clients. For any help of query call
1-844-443-4666 to get all mcAfee  Antivirus  solution. @@Call, 1-844-443-4666
for all type help by mcAfee  Antivirus tech support phone number, Intuit mcAfee
 Antivirus Tech Support Phone Number, mcAfee  Antivirus Help Desk Phone Number,
mcAfee  Antivirus tech support number, mcAfee  Antivirus technical support
phone number,@@@ mcAfee  Antivirus phone number, mcAfee  Antivirus technical
support number, mcAfee  Antivirus support phone number, mcAfee  Antivirus
technical support, mcAfee  Antivirus Customer Service Phone Number, mcAfee 
Antivirus Customer Service Number, mcAfee  Antivirus Customer Support Phone
Number, mcAfee  Antivirus Customer Support Number,@@@@ mcAfee  Antivirus
Customer Service Helpline Number, mcAfee  Antivirus Customer Care Number,
mcAfee  Antivirus support team phone number, @@@@@ mcAfee  Antivirus help
number-mcAfee  Antivirus Helpline Number; mcAfee  Antivirus help phone
number-mcAfee  Antivirus Helpline Number, mcAfee  Antivirus Tech Support Toll
free Number,  1-844-443-4666 mcAfee  Antivirus Support Telephone Number, mcAfee
 Antivirus Tech Support Telephone number, mcAfee  Antivirus Tech Support
contact number, mcAfee  Antivirus support contact number, mcAfee  Antivirus
technical support contact number. Call, mcAfee  Antivirus tech support phone
number, Intuit mcAfee  Antivirus Tech Support Phone Number, mcAfee  Antivirus
Help Desk Phone Number, mcAfee  Antivirus tech support number, mcAfee 
Antivirus technical support phone number, mcAfee  Antivirus phone number,
mcAfee  Antivirus technical support number, mcAfee  Antivirus support phone
number. It is very popular toll free number which provide by mcAfee 
1-844-443-4666 Antivirus technical support, mcAfee  Antivirus Customer Service
Phone Number, mcAfee  Antivirus Customer Service Number, mcAfee  Antivirus
Customer Support Phone Number, mcAfee  Antivirus Customer Support Number,
mcAfee  Antivirus Customer Service Helpline Number, mcAfee  Antivirus Customer
Care Number, mcAfee  Antivirus support team phone number. Call, mcAfee 
Antivirus tech support phone number, Intuit mcAfee  Antivirus Tech Support
Phone Number, mcAfee  Antivirus Help Desk Phone Number, mcAfee  Antivirus tech
support number, mcAfee  Antivirus technical support phone number, mcAfee 
Antivirus phone number, mcAfee  Antivirus technical support number, mcAfee 
Antivirus support phone number, mcAfee  Antivirus technical support, mcAfee 
Antivirus Customer Service Phone Number, mcAfee  Antivirus Customer Service
Number, mcAfee  Antivirus Customer Support Phone Number, mcAfee  Antivirus
Customer Support Number, mcAfee  Antivirus Customer Service Helpline Number,
mcAfee  Antivirus Customer Care Number, mcAfee  Antivirus support team phone
number, mcAfee  Antivirus help number- mcAfee  Antivirus Helpline Number;
mcAfee  Antivirus help phone number, mcAfee  Antivirus Helpline Number, mcAfee 
Antivirus Tech Support Toll free Number, mcAfee  Antivirus Support Telephone
Number, mcAfee  Antivirus Tech Support Telephone number, mcAfee  Antivirus Tech
Support contact number, mcAfee  Antivirus support contact number, mcAfee 
Antivirus technical support contact number, mcAfee  Antivirus pro support phone
number, mcAfee  Antivirus payroll support phone number. mcAfee  1-844-443-4666
Antivirus payroll customer support phone number mcAfee  Antivirus Support
Helpline Number, mcAfee  Antivirus contact number mcAfee  Antivirus tech
support phone number mcAfee  Antivirus support team phone number
Intuit@(1-844-443-4666)mcAfee  Antivirus Tech Support Phone Number provides
online solution for all USA/CANADA clients. For any help of query call
1-844-443-4666 to get all mcAfee  Antivirus  solution. @@Call, 1-844-443-4666
for all type help by mcAfee  Antivirus tech support phone number, Intuit mcAfee
 Antivirus Tech Support Phone Number, mcAfee  Antivirus Help Desk Phone Number,
mcAfee  Antivirus tech support number, mcAfee  Antivirus technical support
phone number,@@@ mcAfee  Antivirus phone number, mcAfee  Antivirus technical
support number, mcAfee  Antivirus support phone number, mcAfee  Antivirus
technical support, mcAfee  Antivirus Customer Service Phone Number, mcAfee 
Antivirus Customer Service Number, mcAfee  Antivirus Customer Support Phone
Number, mcAfee  Antivirus Customer Support Number,@@@@ mcAfee  Antivirus
Customer Service Helpline Number, mcAfee  Antivirus Customer Care Number,
mcAfee  Antivirus support team phone number, @@@@@ mcAfee  Antivirus help
number-mcAfee  Antivirus Helpline Number; mcAfee  Antivirus help phone
number-mcAfee  Antivirus Helpline Number, mcAfee  Antivirus Tech Support Toll
free Number, mcAfee  Antivirus Support Telephone Number, mcAfee  Antivirus Tech
Support Telephone number, mcAfee  Antivirus Tech Support contact number, mcAfee
 Antivirus support contact number, mcAfee  Antivirus technical support contact
number. Call, mcAfee  Antivirus tech support phone number, Intuit mcAfee 
Antivirus Tech Support Phone Number, 1-844-443-4666 mcAfee  Antivirus Help Desk
Phone Number, mcAfee  Antivirus tech support number, mcAfee  Antivirus
technical support phone number, mcAfee  1-844-443-4666 Antivirus phone number,
mcAfee  Antivirus technical support number, mcAfee  Antivirus support phone
number. It is very popular toll free number which provide by mcAfee  Antivirus
technical support, mcAfee  Antivirus Customer Service Phone Number, mcAfee 
Antivirus Customer Service Number, mcAfee  Antivirus Customer Support Phone
Number, mcAfee  Antivirus Customer Support Number, mcAfee  Antivirus Customer
Service Helpline  1-844-443-4666 Number, mcAfee  Antivirus Customer Care
Number, Avir 1-844-443-4666a  $^%$&%^*Antivirus support team phone number.
Call, mcAfee  Antivirus tech support phone number, Intuit mcAfee  Antivirus
Tech Support Phone Number, mcAfee  Antivirus Help Desk Phone Number, mcAfee 
Antivirus tech support number, mcAfee  Antivirus technical support phone
number, mcAfee  Antivirus phone number, mcAfee 1-844-443-4666  Antivirus
technical support number, mcAfee  Antivirus support phone number, mcAfee 
Antivirus technical support, mcAfee $%^&*() Antivirus Customer Service Phone
Number, mcAfee  Antivirus Customer Service Number, mcAfee  Antivirus Customer
Support Phone Number, mcAfee  Antivirus Customer Support Number, mcAfee 
Antivirus Customer#%$^&*()(*&^%$#@ Service Helpline Number, mcAfee  Antivirus
Customer Care Number, mcAfee  Antivirus support team phone number, mcAfee 
Antivirus help number- mcAfee  Antivirus Helpline Number; mcAfee  Antivirus
help phone number, mcAfee  Antivirus Helpline Number, mcAfee  Antivirus Tech
Support Toll free Number, mcAfee  Antivirus Support Telephone Number, mcAfee 
Antivirus Tech Support Telephone number, mcAfee  Antivirus Tech Support contact
number, mcAfee  Antivirus support co 1-844-443-4666ntact number, mcAfee 
Antivirus technical support contact number, mcAfee  Antivirus pro support phone
number, mcAfee  Antivirus payroll support phone number. mcAfee  Antivirus
payroll customer support phone number mcAfee  Antivirus Support Helpline
Number, mcAfee  Antivirus contact number mcAfee  Antivirus tech support phone
number mcAfee  Antivirus support team phone number Customer service
1-844-443-4666 mcAfee  Antivirus TECHNICAL support number 1-844-443-4666 mcAfee
 Antivirus tech support number USA Canada 1-844-443-4666.
>From gcc-bugs-return-534221-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 14:50:07 2016
Return-Path: <gcc-bugs-return-534221-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 121339 invoked by alias); 11 Aug 2016 14:50:07 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 121316 invoked by uid 89); 11 Aug 2016 14:50:06 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,LIKELY_SPAM_BODY,TECH_SUPPORT_PHONE autolearn=no version=3.3.2 spammy=billing, hotline, number, technologies
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 14:49:55 +0000
From: "Wilty1952 at cuvox dot de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: =?UTF-8?B?W0J1ZyBkZWJ1Zy83Mzk3OV0gTmV3OiBBVkcgVEVjaCBzdXBwb3J0IG51bWJl?= =?UTF-8?B?QEAgKysxLisuODg4LisuNTI3LisuMzQwMSBBdmfihKIgdGVjaCBTdXBwb3J0?= =?UTF-8?B?IFBob25lIG51bWJlcg==?Date: Thu, 11 Aug 2016 14:50:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: debug
X-Bugzilla-Version: 4.1.2
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: Wilty1952 at cuvox dot de
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73979-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01557.txt.bz2
Content-length: 25827

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73979

            Bug ID: 73979
           Summary: AVG TEch support numbe@@ ++1.+.888.+.527.+.3401 Avgâ„¢
                    tech Support Phone number
           Product: gcc
           Version: 4.1.2
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: debug
          Assignee: unassigned at gcc dot gnu.org
          Reporter: Wilty1952 at cuvox dot de
  Target Milestone: ---

+1-888-527-3401 AVG helpline phone number@~1-888-527-3401 AVG tech Support
Number AVG antivirus customer service phone number

AVG helpline phone number@~1-888-527-3401 AVG tech Support Number AVG antivirus
customer service phone number
AVG HelpLiNe @+1-888-527-3401 AVG support phone number

AVG helpline phone number@~1-888-527-3401 AVG tech Support Number AVG antivirus
customer service phone number

+1-888-527-3401) Technical support number
+1-888-527-3401 AVG Antivirus Technical Support
+1-888-527-3401 contact AVG antivirus customer service phone number
+1-888-527-3401 phone number for AVG customer service
+1-888-527-3401 phone number for AVG antivirus technical support
+1-888-527-3401 phone number for AVG antivirus customer service
phone number for AVG antivirus technical support
phone number for AVG security
AVG antivirus customer care phone number
AVG antivirus customer service billing
AVG antivirus customer service email address
AVG antivirus customer service live chat
AVG antivirus customer service telephone number
AVG antivirus customer support usa phone number
AVG antivirus help desk support phone number free in usa
AVG antivirus phone number customer service us
AVG antivirus phone number support
AVG antivirus support phone number
AVG antivirus tech support phone number free in usa
AVG antivirus tech support phone number
AVG antivirus technical support customer service
AVG antivirus technical support number
AVG antivirus telephone number
AVG antivirus toll free customer care number
AVG antivirus toll free number in usa
AVG antivirus contact phone number in usa
AVG antivirus customer service number
AVG antivirus customer service phone number
AVG antivirus customer service telephone number
AVG antivirus customer support number
AVG antivirus customer support phone number
AVG antivirus customer support phone number
AVG antivirus help desk phone number in usa
AVG antivirus phone number
AVG antivirus phone number support for technical issue in usa
AVG antivirus support phone number
AVG antivirus technical support help desk phone number
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG customer service number
AVG customer service telephone number
AVG customer services email
AVG customer support email address
AVG customer support number
AVG customer support phone number
AVG customer service phone number
AVG internet security contact phone number
AVG internet security customer service phone number
AVG internet security phone number
AVG internet security help phone number
AVG internet security phone number in usa
AVG internet security support phone number
AVG internet security technical support
AVG phone number customer service
AVG phone numbers customer support
AVG phone support number
AVG security contact phone number
AVG security phone number customer service
AVG security support phone number
AVG support contact number
AVG support email address
AVG support phone number
AVG support telephone number
AVG support telephone number usa
AVG support telephone number
AVG tech support number
AVG tech support phone number
AVG tech support phone number free
AVG technical support phone number
AVG technical support cutomer phone number
AVG technical support phone number
AVG technical support number free in usa
AVG technical support number toll free number
AVG technical support phone number
AVG technologies phone number
AVG telephone support number
AVG antivirus customer support phone number
AVG antivirus customer service phone number
AVG customer support phone number
AVG phone number customer service
AVG technical support telephone number
contact AVG antivirus customer service phone number
customer service number for AVG antivirus
phone number for AVG antivirus
phone number for AVG antivirus customer service
phone number for AVG antivirus support
phone number for AVG customer service
phone number for AVG customer service
phone number for AVG customer support
phone number for AVG tech support
phone number AVG antivirus customer service
AVG antivirus customer service number
AVG antivirus customer service phone
AVG antivirus customer service phone number
AVG antivirus customer service phone number us
AVG antivirus customer service telephone number
AVG antivirus customer support
AVG antivirus customer support number
AVG antivirus phone number customer service us
AVG antivirus phone number support
AVG antivirus phone support
AVG antivirus phone support number
AVG antivirus support phone number
AVG antivirus tech support phone number
AVG antivirus technical support
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG customer service phone number
AVG customer support phone number
AVG helpline phone number
AVG internet security customer service
AVG internet security customer service phone number
AVG internet security help phone number
AVG internet security phone number customer service
AVG phone number customer service
AVG phone number customer support
AVG security customer service phone number
AVG security phone number customer service
AVG support phone number
AVG support telephone number
AVG tech support number
AVG tech support phone number
AVG technical support
AVG technical support number
AVG technical support phone number
AVG antivirus customer support phone number
AVG antivirus phone number customer service
AVG antivirus tech support number
AVG customer service phone number
AVG customer service phone numbers
AVG internet security technical support
AVG tech support phone number us
AVG technical support telephone number
contact AVG antivirus
contact AVG by phone
contact AVG customer service
contact AVG antivirus customer service phone number
contactAVG antivirus tech support usa
customer service AVG phone number
download AVG titanium
dri AVG customer service number
dri AVG customer service phone number
dri AVG phone number
how to contact AVG by email
how to delete AVG from mac
micro trend customer service
norton antivirus customer service number
phone number for AVG customer service
phone number forAVG customer service
phone number forAVG customer support
phone number forAVG tech support
phone number forAVG technical support
phone number for AVG antivirus technical support
phone number for AVG security
phone number for AVG support
phone number for AVG technical support
phone number for AVG antivirus customer service
phone number for AVG customer service
remove AVG from mac
technical support for antivirus AVG
telephone number forAVG technical support
telephone AVG antivirus
AVG antivirus contact number
AVG antivirus customer care
AVG antivirus customer care number
AVG antivirus customer care number usa
AVG antivirus customer service
AVG antivirus customer service number :idea: :evil: :D :) :lol: :( :o :shock:
AVG antivirus customer service phone number
AVG antivirus customer service phone number usa
AVG antivirus customer service telephone number
AVG antivirus customer support
AVG antivirus customer support in usa
AVG antivirus customer support number
AVG antivirus customer support phone number
AVG antivirus for phone
AVG antivirus free antivirus support
AVG antivirus help phone number
AVG antivirus helpline number
AVG antivirus online support
AVG antivirus phone
AVG antivirus phone number
AVG antivirus phone number in usa
AVG antivirus phone number usa
AVG antivirus phone support
AVG antivirus plus tech support
AVG antivirus protection
AVG antivirus support
AVG antivirus support number
AVG antivirus support phone number
AVG antivirus support services
AVG antivirus support telephone number
AVG antivirus tech support
AVG antivirus tech support phone number free in usa
AVG antivirus tech support number
AVG antivirus tech support phone number
AVG antivirus technical support
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG antivirus toll free customer care number
AVG antivirus toll free number
AVG antivirus contact phone number in usa
AVG antivirus help desk phone number in usa
AVG antivirus phone number support for technical issue in usa
AVG antivirus support phone number
AVG antivirus technical support help desk phone number
AVG antivirus technical support phone number
AVG contact number
AVG contact number usa
AVG contact phone number
AVG contact support
AVG contact number usa
AVG contact phone number
AVG contact phone number usa
AVG customer & technical support
AVG customer care
AVG customer care center
AVG customer care email
AVG customer care number
AVG customer care number
AVG customer care number usa
AVG customer care number usa toll free
AVG customer care phone number usa
AVG customer care tchnical support
AVG customer care toll free
AVG customer care toll free number
AVG customer care usa
AVG customer help
AVG customer number
AVG customer portal*********
AVG customer service
AVG customer service billing
AVG customer service email address
AVG customer service number
AVG customer service phone
AVG customer service phone number
AVG customer service phone number us
AVG customer service phone number usa
AVG customer service reviews
AVG customer service telephone number
AVG customer service usa
AVG customer support
AVG customer support number
AVG customer support phone
AVG customer support phone number
AVG customer service number
AVG customer service number usa
AVG customer service phone number
AVG customer support number
AVG customer support phone number
AVG free phone support
AVG gold support phone number
AVG help desk phone number
AVG help phone number
AVG helpline
AVG helpline phone number
AVG hotline customer service phone number
AVG internet security customer service
AVG internet security phone number
AVG internet security phone number in usa
AVG lab usa customer service
AVG labs usa customer serviceAVG
AVG phone number
AVG phone number customer service
AVG phone number support
AVG phone number tech support
AVG phone number technical support
AVG phone numbers customer support
AVG phone support
AVG phone support number
AVG phone number customer service
AVG phone number support
AVG phone number tech support
AVG phone number usa
AVG security contact phone number
AVG security phone number
AVG security support phone number
AVG software customer service
AVG software customer service number
AVG support center###########
AVG support contact number
AVG support email address
AVG support phone number
AVG support telephone number
AVG support number usa
AVG support phone number
AVG support phone number usa
AVG tech support
AVG tech support center
AVG tech support contact
AVG tech support number
AVG tech support number usa
AVG tech support phone
AVG tech support phone number
AVG tech support phone number free
AVG tech support number
AVG tech support number usa
AVG tech support phone number
AVG technical support
AVG technical support number
AVG technical support phone number
AVG technical support phone number usa
AVG technical support reviews
AVG technical support usa
AVG technical support phone number
AVG technical support number
AVG technical support number toll free number
AVG technical support number usa
AVG technical support phone number
AVG technical support phone number usa
AVG technologies phone number
AVG telephone number
AVG telephone support number
AVG toll free number
AVG toll free number usa
AVG usa customer care for tech support
AVG usa customer service
AVG usa phone number/////////////
AVG antivirus customer service phone number
AVG antivirus customer service phone number
AVG antivirus customer support phone number
AVG antivirus customer support phone number
AVG antivirus technical support number
AVG customer service phone number usa
AVG internet security support phone number
AVG.com customer service
AVG antivirus antispyware 2011
AVG antivirus customer support
AVG antivirus serial key
AVG antivirus serial number
AVG antivirus support
AVG antivirus technical support
AVG business support*************
AVG contact support
AVG customer care number
AVG customer service 844
AVG customer service number
AVG customer service phone number
AVG customer service telephone number
AVG customer support

phone number for Norton antivirus technical support
phone number for Norton security
Norton customer service telephone number
Norton customer support
Norton grentry non payment
Norton helpline support number
Norton internet security customer service
Norton internet security technical support
Norton oem customer service
Norton pc cillin technical support
Norton phone support
Norton removal tool download
Norton subscription renewal
Norton support contact
Norton support hotline
Norton support phone number
Norton tech support phone number
Norton technical support
Norton technical support chat
Norton technical support phone number
Norton technical support phone number usa
Norton telephone number
Norton titanium antivirus
Norton titanium internet security
Norton titanium maximum
Norton titanium maximum security
Norton titanium problems
Norton titanium removal tool
Norton titanium reviews
Norton titanium support
Norton virus removal service
uninstall Norton smart surfing for mac
usa customer care number for Norton antivirus
Norton antivirus phone number support for technical issue in usa
Norton antivirus support phone number
Norton antivirus technical support help desk phone number
Norton antivirus technical support number
Norton antivirus technical support phone number
Norton customer service number
Norton customer service telephone number
Norton customer services email
Norton customer support email address
Norton customer support number
Norton customer support phone number
Norton customer service phone number
Norton internet security contact phone number
Norton internet security customer service phone number
Norton internet security phone number
Norton internet security help phone number
Norton internet security phone number in usa
Norton internet security support phone number
Norton internet security technical support
Norton phone number customer service
Norton phone numbers customer support
Norton phone support number
Norton security contact phone number
Norton security phone number customer service
Norton security support phone number
Norton support contact number
Norton support email address
Norton support phone number
Norton support telephone number
Norton support telephone number usa
Norton support telephone number
Norton tech support number

Norton antivirus customer care phone number
Norton antivirus customer service billing
Norton antivirus customer service email address
Norton antivirus customer service live chat
Norton antivirus customer service telephone number
Norton antivirus customer support usa phone number
Norton antivirus help desk support phone number free in usa
Norton antivirus phone number customer service us
Norton antivirus phone number support
Norton antivirus support phone number
Norton antivirus tech support phone number free in usa
Norton antivirus tech support phone number
Norton antivirus technical support customer service
Norton antivirus technical support number
Norton antivirus telephone number
Norton antivirus toll free customer care number
Norton antivirus toll free number in usa
Norton antivirus contact phone number in usa
Norton antivirus customer service number
Norton antivirus customer service phone number
Norton antivirus customer service telephone number
Norton antivirus customer support number
Norton antivirus customer support phone number
Norton antivirus customer support phone number
Norton antivirus help desk phone number in usa
Norton antivirus phone number
Norton tech support phone number
Norton tech support phone number free
Norton technical support phone number
Norton technical support cutomer phone number
Norton technical support phone number
Norton technical support number free in usa
Norton technical support number toll free number
Norton technical support phone number
Norton technologies phone number
Norton telephone support number
Norton antivirus customer support phone number
Norton antivirus customer service phone number
Norton customer support phone number
Norton phone number customer service
Norton technical support telephone number
contact Norton antivirus customer service phone number
customer service number for Norton antivirus
phone number for Norton antivirus
phone number for Norton antivirus customer service
phone number for Norton antivirus support
phone number for Norton customer service
phone number for Norton customer service
phone number for Norton customer support
phone number for Norton tech support
phone number Norton antivirus customer service
Norton antivirus customer service number
Norton antivirus customer service phone
Norton antivirus customer service phone number
Norton antivirus customer service phone number us
Norton antivirus customer service telephone number
Norton antivirus customer support
Norton antivirus customer support number
Norton antivirus phone number customer service us
Norton antivirus phone number support
Norton antivirus phone support
Norton antivirus phone support number
Norton antivirus support phone number
Norton antivirus tech support phone number
Norton antivirus technical support
Norton antivirus technical support number
Norton antivirus technical support phone number
Norton customer service phone number
Norton customer support phone number
Norton helpline phone number
Norton internet security customer service
Norton internet security customer service phone number
Norton internet security help phone number
Norton internet security phone number customer service
Norton phone number customer service
Norton phone number customer support
Norton security customer service phone number

Norton internet security phone number
Norton internet security phone number in usa
Norton lab usa customer service
Norton labs usa customer serviceNorton
Norton phone number
Norton phone number customer service
Norton phone number support
Norton phone number tech support
Norton phone number technical support
Norton phone numbers customer support
Norton phone support
Norton phone support number
Norton phone number customer service
Norton phone number support
Norton phone number tech support
Norton phone number usa
Norton security contact phone number
Norton security phone number
Norton security support phone number
Norton software customer service
Norton software customer service number
Norton support center
Norton support contact number
Norton support email address
Norton support phone number
Norton support telephone number
Norton support number usa
Norton support phone number
Norton support phone number usa
Norton tech support
Norton tech support center
Norton tech support contact
Norton tech support number
Norton tech support number usa
Norton tech support phone
Norton tech support phone number
Norton tech support phone number free
Norton tech support number
Norton tech support number usa
Norton tech support phone number
Norton technical support
Norton technical support number
Norton technical support phone number
Norton technical support phone number usa
Norton technical support reviews
Norton technical support usa
Norton technical support phone number
Norton technical support number
Norton technical support number toll free number
Norton technical support number usa
Norton technical support phone number
Norton technical support phone number usa
Norton technologies phone number
Norton telephone number
Norton telephone support number
Norton toll free number
Norton toll free number usa
Norton usa customer care for tech support
Norton usa customer service
Norton usa phone number

Norton security phone number customer service
Norton support phone number
Norton support telephone number
Norton tech support number
Norton tech support phone number
Norton technical support
Norton technical support number
Norton technical support phone number
Norton antivirus customer support phone number
Norton antivirus phone number customer service
Norton antivirus tech support number
Norton customer service phone number
Norton customer service phone numbers
Norton internet security technical support
Norton tech support phone number us
Norton technical support telephone number
contact Norton antivirus
contact Norton by phone
contact Norton customer service
contact Norton antivirus customer service phone number
contactNorton antivirus tech support usa
customer service Norton phone number
download Norton titanium
dri Norton customer service number
dri Norton customer service phone number
dri Norton phone number
how to contact Norton by email
how to delete Norton from mac
micro trend customer service
norton antivirus customer service number
phone number for Norton customer service
phone number forNorton customer service
phone number forNorton customer support
phone number forNorton tech support
phone number forNorton technical support
phone number for Norton antivirus technical support
phone number for Norton security
phone number for Norton support
phone number for Norton technical support
phone number for Norton antivirus customer service
phone number for Norton customer service
remove Norton from mac
technical support for antivirus Norton
telephone number forNorton technical support
telephone Norton antivirus
Norton antivirus contact number
Norton antivirus customer care
Norton antivirus customer care number
Norton antivirus customer care number usa
Norton antivirus customer service
Norton antivirus customer service number :idea: :evil: :D :) :lol: :( :o
:shock:
Norton antivirus customer service phone number
Norton antivirus customer service phone number usa
Norton antivirus customer service telephone number
Norton antivirus customer support
Norton antivirus customer support in usa
Norton antivirus customer support number
Norton antivirus customer support phone number
Norton antivirus for phone
Norton antivirus free antivirus support
Norton antivirus help phone number
Norton antivirus helpline number
Norton antivirus online support
Norton antivirus phone
Norton antivirus phone number
Norton antivirus phone number in usa
Norton antivirus phone number usa
Norton antivirus phone support
Norton antivirus plus tech support
Norton antivirus protection
Norton antivirus support
Norton antivirus support number
Norton antivirus support phone number
Norton antivirus support services
Norton antivirus support telephone number
Norton antivirus tech support
Norton antivirus tech support phone number free in usa
Norton antivirus tech support number
Norton antivirus tech support phone number
Norton antivirus technical support
Norton antivirus technical support number
Norton antivirus technical support phone number
Norton antivirus toll free customer care number
Norton antivirus toll free number
Norton antivirus contact phone number in usa
Norton antivirus help desk phone number in usa
Norton antivirus phone number support for technical issue in usa
Norton antivirus support phone number
Norton antivirus technical support help desk phone number
Norton antivirus technical support phone number
Norton contact number
Norton contact number usa
Norton contact phone number
Norton contact support
Norton contact number usa
Norton contact phone number
Norton contact phone number usa
Norton customer & technical support
Norton customer care
Norton customer care center
Norton customer care email
Norton customer care number
Norton customer care number
Norton customer care number usa
Norton customer care number usa toll free
Norton customer care phone number usa
Norton customer care tchnical support
Norton customer care toll free
Norton customer care toll free number
Norton customer care usa
Norton customer help
Norton customer number
Norton customer portal
Norton customer service
Norton customer service billing
Norton customer service email address
Norton customer service number
Norton customer service phone
Norton customer service phone number
Norton customer service phone number us
Norton customer service phone number usa
Norton customer service reviews
Norton customer service telephone number
Norton customer service usa
Norton customer support
Norton customer support number
Norton customer support phone
Norton customer support phone number
Norton customer service number
Norton customer service number usa
Norton customer service phone number
Norton customer support number
Norton customer support phone number
Norton free phone support
Norton gold support phone number
Norton help desk phone number
Norton help phone number
Norton helpline
Norton helpline phone number
Norton hotline customer service phone number
Norton internet security customer service
Norton antivirus customer service phone number
Norton antivirus customer service phone number
Norton antivirus customer support phone number
Norton antivirus customer support phone number
Norton antivirus technical support number
Norton customer service phone number usa
Norton internet security support phone number
Norton.com customer service
Norton antivirus antispyware 2011
Norton antivirus customer support
Norton antivirus serial key
Norton antivirus serial number
Norton antivirus support
Norton antivirus technical support
Norton business support
Norton contact support
Norton customer care number
Norton customer service 800
Norton customer service number
Norton customer service phone number
>From gcc-bugs-return-534222-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 14:50:54 2016
Return-Path: <gcc-bugs-return-534222-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 1707 invoked by alias); 11 Aug 2016 14:50:53 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 780 invoked by uid 89); 11 Aug 2016 14:50:53 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.3.2 spammy=analyzed
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 14:50:44 +0000
From: "amker at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/73550] Another wrong -Wmaybe-uninitialized warning in switch statement
Date: Thu, 11 Aug 2016 14:50:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: amker at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-73550-4-s8GGHtNEyH@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73550-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73550-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01558.txt.bz2
Content-length: 397

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73550

--- Comment #2 from amker at gcc dot gnu.org ---
(In reply to Andrew Pinski from comment #1)
> There was a patch to improve jump threading and vrp here just within a few
> weeks. I wonder why that did not help. Basically this is a missing jump
> threading.

It can't help if the uninitialized info is analyzed/given before jump
threading/vrp?
>From gcc-bugs-return-534223-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 14:51:04 2016
Return-Path: <gcc-bugs-return-534223-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 5346 invoked by alias); 11 Aug 2016 14:51:04 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 3068 invoked by uid 89); 11 Aug 2016 14:50:56 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 14:50:53 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: =?UTF-8?B?W0J1ZyBjLzcyODE2XSBbNS82IFJlZ3Jlc3Npb25dIElDRSBvbiB4ODZfNjQt?= =?UTF-8?B?bGludXgtZ251ICh0cmVlIGNoZWNrOiBleHBlY3RlZCB0cmVlIHRoYXQgY29u?= =?UTF-8?B?dGFpbnMg4oCYZGVjbCB3aXRoIFJUTOKAmSBzdHJ1Y3R1cmUsIGhhdmUg4oCY?= =?UTF-8?B?ZmllbGRfZGVjbOKAmSBpbiBzZXRfZGVjbF9ydGwsIGF0IGVtaXQtcnRsLmM6?= =?UTF-8?B?MTI4Mik=?Date: Thu, 11 Aug 2016 14:51:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72816-4-7XOfHK9lg2@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72816-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72816-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01559.txt.bz2
Content-length: 628

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72816

--- Comment #5 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Author: jakub
Date: Thu Aug 11 14:50:09 2016
New Revision: 239371

URL: https://gcc.gnu.org/viewcvs?rev=239371&root=gcc&view=rev
Log:
        PR c/72816
        * c-decl.c (grokdeclarator): When adding TYPE_DOMAIN for flexible
        array member through typedef, for orig_qual_indirect == 0 clear
        orig_qual_type.

        * gcc.dg/pr72816.c: New test.

Modified:
    trunk/gcc/c/ChangeLog
    trunk/gcc/c/c-decl.c
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/testsuite/gcc.dg/pr72816.c
>From gcc-bugs-return-534224-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 14:52:48 2016
Return-Path: <gcc-bugs-return-534224-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 9081 invoked by alias); 11 Aug 2016 14:52:47 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 9054 invoked by uid 89); 11 Aug 2016 14:52:47 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,LIKELY_SPAM_BODY,TECH_SUPPORT_PHONE autolearn=no version=3.3.2 spammy=billing, hotline, number, technologies
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 14:52:34 +0000
From: "Wilty1952 at cuvox dot de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73984] New: 1-888(527.3401) AVG TECH SUPPORT PHONE NUMBER USA, ANTIVIRUS TECH SUPPORT PHONE NUMBER
Date: Thu, 11 Aug 2016 14:52:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 4.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: Wilty1952 at cuvox dot de
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73984-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01560.txt.bz2
Content-length: 25823

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73984

            Bug ID: 73984
           Summary: 1-888(527.3401) AVG TECH SUPPORT PHONE NUMBER USA,
                    ANTIVIRUS TECH SUPPORT PHONE NUMBER
           Product: gcc
           Version: 4.1.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: Wilty1952 at cuvox dot de
  Target Milestone: ---

+1-888-527-3401 AVG helpline phone number@~1-888-527-3401 AVG tech Support
Number AVG antivirus customer service phone number

AVG helpline phone number@~1-888-527-3401 AVG tech Support Number AVG antivirus
customer service phone number
AVG HelpLiNe @+1-888-527-3401 AVG support phone number

AVG helpline phone number@~1-888-527-3401 AVG tech Support Number AVG antivirus
customer service phone number

+1-888-527-3401) Technical support number
+1-888-527-3401 AVG Antivirus Technical Support
+1-888-527-3401 contact AVG antivirus customer service phone number
+1-888-527-3401 phone number for AVG customer service
+1-888-527-3401 phone number for AVG antivirus technical support
+1-888-527-3401 phone number for AVG antivirus customer service
phone number for AVG antivirus technical support
phone number for AVG security
AVG antivirus customer care phone number
AVG antivirus customer service billing
AVG antivirus customer service email address
AVG antivirus customer service live chat
AVG antivirus customer service telephone number
AVG antivirus customer support usa phone number
AVG antivirus help desk support phone number free in usa
AVG antivirus phone number customer service us
AVG antivirus phone number support
AVG antivirus support phone number
AVG antivirus tech support phone number free in usa
AVG antivirus tech support phone number
AVG antivirus technical support customer service
AVG antivirus technical support number
AVG antivirus telephone number
AVG antivirus toll free customer care number
AVG antivirus toll free number in usa
AVG antivirus contact phone number in usa
AVG antivirus customer service number
AVG antivirus customer service phone number
AVG antivirus customer service telephone number
AVG antivirus customer support number
AVG antivirus customer support phone number
AVG antivirus customer support phone number
AVG antivirus help desk phone number in usa
AVG antivirus phone number
AVG antivirus phone number support for technical issue in usa
AVG antivirus support phone number
AVG antivirus technical support help desk phone number
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG customer service number
AVG customer service telephone number
AVG customer services email
AVG customer support email address
AVG customer support number
AVG customer support phone number
AVG customer service phone number
AVG internet security contact phone number
AVG internet security customer service phone number
AVG internet security phone number
AVG internet security help phone number
AVG internet security phone number in usa
AVG internet security support phone number
AVG internet security technical support
AVG phone number customer service
AVG phone numbers customer support
AVG phone support number
AVG security contact phone number
AVG security phone number customer service
AVG security support phone number
AVG support contact number
AVG support email address
AVG support phone number
AVG support telephone number
AVG support telephone number usa
AVG support telephone number
AVG tech support number
AVG tech support phone number
AVG tech support phone number free
AVG technical support phone number
AVG technical support cutomer phone number
AVG technical support phone number
AVG technical support number free in usa
AVG technical support number toll free number
AVG technical support phone number
AVG technologies phone number
AVG telephone support number
AVG antivirus customer support phone number
AVG antivirus customer service phone number
AVG customer support phone number
AVG phone number customer service
AVG technical support telephone number
contact AVG antivirus customer service phone number
customer service number for AVG antivirus
phone number for AVG antivirus
phone number for AVG antivirus customer service
phone number for AVG antivirus support
phone number for AVG customer service
phone number for AVG customer service
phone number for AVG customer support
phone number for AVG tech support
phone number AVG antivirus customer service
AVG antivirus customer service number
AVG antivirus customer service phone
AVG antivirus customer service phone number
AVG antivirus customer service phone number us
AVG antivirus customer service telephone number
AVG antivirus customer support
AVG antivirus customer support number
AVG antivirus phone number customer service us
AVG antivirus phone number support
AVG antivirus phone support
AVG antivirus phone support number
AVG antivirus support phone number
AVG antivirus tech support phone number
AVG antivirus technical support
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG customer service phone number
AVG customer support phone number
AVG helpline phone number
AVG internet security customer service
AVG internet security customer service phone number
AVG internet security help phone number
AVG internet security phone number customer service
AVG phone number customer service
AVG phone number customer support
AVG security customer service phone number
AVG security phone number customer service
AVG support phone number
AVG support telephone number
AVG tech support number
AVG tech support phone number
AVG technical support
AVG technical support number
AVG technical support phone number
AVG antivirus customer support phone number
AVG antivirus phone number customer service
AVG antivirus tech support number
AVG customer service phone number
AVG customer service phone numbers
AVG internet security technical support
AVG tech support phone number us
AVG technical support telephone number
contact AVG antivirus
contact AVG by phone
contact AVG customer service
contact AVG antivirus customer service phone number
contactAVG antivirus tech support usa
customer service AVG phone number
download AVG titanium
dri AVG customer service number
dri AVG customer service phone number
dri AVG phone number
how to contact AVG by email
how to delete AVG from mac
micro trend customer service
norton antivirus customer service number
phone number for AVG customer service
phone number forAVG customer service
phone number forAVG customer support
phone number forAVG tech support
phone number forAVG technical support
phone number for AVG antivirus technical support
phone number for AVG security
phone number for AVG support
phone number for AVG technical support
phone number for AVG antivirus customer service
phone number for AVG customer service
remove AVG from mac
technical support for antivirus AVG
telephone number forAVG technical support
telephone AVG antivirus
AVG antivirus contact number
AVG antivirus customer care
AVG antivirus customer care number
AVG antivirus customer care number usa
AVG antivirus customer service
AVG antivirus customer service number :idea: :evil: :D :) :lol: :( :o :shock:
AVG antivirus customer service phone number
AVG antivirus customer service phone number usa
AVG antivirus customer service telephone number
AVG antivirus customer support
AVG antivirus customer support in usa
AVG antivirus customer support number
AVG antivirus customer support phone number
AVG antivirus for phone
AVG antivirus free antivirus support
AVG antivirus help phone number
AVG antivirus helpline number
AVG antivirus online support
AVG antivirus phone
AVG antivirus phone number
AVG antivirus phone number in usa
AVG antivirus phone number usa
AVG antivirus phone support
AVG antivirus plus tech support
AVG antivirus protection
AVG antivirus support
AVG antivirus support number
AVG antivirus support phone number
AVG antivirus support services
AVG antivirus support telephone number
AVG antivirus tech support
AVG antivirus tech support phone number free in usa
AVG antivirus tech support number
AVG antivirus tech support phone number
AVG antivirus technical support
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG antivirus toll free customer care number
AVG antivirus toll free number
AVG antivirus contact phone number in usa
AVG antivirus help desk phone number in usa
AVG antivirus phone number support for technical issue in usa
AVG antivirus support phone number
AVG antivirus technical support help desk phone number
AVG antivirus technical support phone number
AVG contact number
AVG contact number usa
AVG contact phone number
AVG contact support
AVG contact number usa
AVG contact phone number
AVG contact phone number usa
AVG customer & technical support
AVG customer care
AVG customer care center
AVG customer care email
AVG customer care number
AVG customer care number
AVG customer care number usa
AVG customer care number usa toll free
AVG customer care phone number usa
AVG customer care tchnical support
AVG customer care toll free
AVG customer care toll free number
AVG customer care usa
AVG customer help
AVG customer number
AVG customer portal*********
AVG customer service
AVG customer service billing
AVG customer service email address
AVG customer service number
AVG customer service phone
AVG customer service phone number
AVG customer service phone number us
AVG customer service phone number usa
AVG customer service reviews
AVG customer service telephone number
AVG customer service usa
AVG customer support
AVG customer support number
AVG customer support phone
AVG customer support phone number
AVG customer service number
AVG customer service number usa
AVG customer service phone number
AVG customer support number
AVG customer support phone number
AVG free phone support
AVG gold support phone number
AVG help desk phone number
AVG help phone number
AVG helpline
AVG helpline phone number
AVG hotline customer service phone number
AVG internet security customer service
AVG internet security phone number
AVG internet security phone number in usa
AVG lab usa customer service
AVG labs usa customer serviceAVG
AVG phone number
AVG phone number customer service
AVG phone number support
AVG phone number tech support
AVG phone number technical support
AVG phone numbers customer support
AVG phone support
AVG phone support number
AVG phone number customer service
AVG phone number support
AVG phone number tech support
AVG phone number usa
AVG security contact phone number
AVG security phone number
AVG security support phone number
AVG software customer service
AVG software customer service number
AVG support center###########
AVG support contact number
AVG support email address
AVG support phone number
AVG support telephone number
AVG support number usa
AVG support phone number
AVG support phone number usa
AVG tech support
AVG tech support center
AVG tech support contact
AVG tech support number
AVG tech support number usa
AVG tech support phone
AVG tech support phone number
AVG tech support phone number free
AVG tech support number
AVG tech support number usa
AVG tech support phone number
AVG technical support
AVG technical support number
AVG technical support phone number
AVG technical support phone number usa
AVG technical support reviews
AVG technical support usa
AVG technical support phone number
AVG technical support number
AVG technical support number toll free number
AVG technical support number usa
AVG technical support phone number
AVG technical support phone number usa
AVG technologies phone number
AVG telephone number
AVG telephone support number
AVG toll free number
AVG toll free number usa
AVG usa customer care for tech support
AVG usa customer service
AVG usa phone number/////////////
AVG antivirus customer service phone number
AVG antivirus customer service phone number
AVG antivirus customer support phone number
AVG antivirus customer support phone number
AVG antivirus technical support number
AVG customer service phone number usa
AVG internet security support phone number
AVG.com customer service
AVG antivirus antispyware 2011
AVG antivirus customer support
AVG antivirus serial key
AVG antivirus serial number
AVG antivirus support
AVG antivirus technical support
AVG business support*************
AVG contact support
AVG customer care number
AVG customer service 844
AVG customer service number
AVG customer service phone number
AVG customer service telephone number
AVG customer support

phone number for Norton antivirus technical support
phone number for Norton security
Norton customer service telephone number
Norton customer support
Norton grentry non payment
Norton helpline support number
Norton internet security customer service
Norton internet security technical support
Norton oem customer service
Norton pc cillin technical support
Norton phone support
Norton removal tool download
Norton subscription renewal
Norton support contact
Norton support hotline
Norton support phone number
Norton tech support phone number
Norton technical support
Norton technical support chat
Norton technical support phone number
Norton technical support phone number usa
Norton telephone number
Norton titanium antivirus
Norton titanium internet security
Norton titanium maximum
Norton titanium maximum security
Norton titanium problems
Norton titanium removal tool
Norton titanium reviews
Norton titanium support
Norton virus removal service
uninstall Norton smart surfing for mac
usa customer care number for Norton antivirus
Norton antivirus phone number support for technical issue in usa
Norton antivirus support phone number
Norton antivirus technical support help desk phone number
Norton antivirus technical support number
Norton antivirus technical support phone number
Norton customer service number
Norton customer service telephone number
Norton customer services email
Norton customer support email address
Norton customer support number
Norton customer support phone number
Norton customer service phone number
Norton internet security contact phone number
Norton internet security customer service phone number
Norton internet security phone number
Norton internet security help phone number
Norton internet security phone number in usa
Norton internet security support phone number
Norton internet security technical support
Norton phone number customer service
Norton phone numbers customer support
Norton phone support number
Norton security contact phone number
Norton security phone number customer service
Norton security support phone number
Norton support contact number
Norton support email address
Norton support phone number
Norton support telephone number
Norton support telephone number usa
Norton support telephone number
Norton tech support number

Norton antivirus customer care phone number
Norton antivirus customer service billing
Norton antivirus customer service email address
Norton antivirus customer service live chat
Norton antivirus customer service telephone number
Norton antivirus customer support usa phone number
Norton antivirus help desk support phone number free in usa
Norton antivirus phone number customer service us
Norton antivirus phone number support
Norton antivirus support phone number
Norton antivirus tech support phone number free in usa
Norton antivirus tech support phone number
Norton antivirus technical support customer service
Norton antivirus technical support number
Norton antivirus telephone number
Norton antivirus toll free customer care number
Norton antivirus toll free number in usa
Norton antivirus contact phone number in usa
Norton antivirus customer service number
Norton antivirus customer service phone number
Norton antivirus customer service telephone number
Norton antivirus customer support number
Norton antivirus customer support phone number
Norton antivirus customer support phone number
Norton antivirus help desk phone number in usa
Norton antivirus phone number
Norton tech support phone number
Norton tech support phone number free
Norton technical support phone number
Norton technical support cutomer phone number
Norton technical support phone number
Norton technical support number free in usa
Norton technical support number toll free number
Norton technical support phone number
Norton technologies phone number
Norton telephone support number
Norton antivirus customer support phone number
Norton antivirus customer service phone number
Norton customer support phone number
Norton phone number customer service
Norton technical support telephone number
contact Norton antivirus customer service phone number
customer service number for Norton antivirus
phone number for Norton antivirus
phone number for Norton antivirus customer service
phone number for Norton antivirus support
phone number for Norton customer service
phone number for Norton customer service
phone number for Norton customer support
phone number for Norton tech support
phone number Norton antivirus customer service
Norton antivirus customer service number
Norton antivirus customer service phone
Norton antivirus customer service phone number
Norton antivirus customer service phone number us
Norton antivirus customer service telephone number
Norton antivirus customer support
Norton antivirus customer support number
Norton antivirus phone number customer service us
Norton antivirus phone number support
Norton antivirus phone support
Norton antivirus phone support number
Norton antivirus support phone number
Norton antivirus tech support phone number
Norton antivirus technical support
Norton antivirus technical support number
Norton antivirus technical support phone number
Norton customer service phone number
Norton customer support phone number
Norton helpline phone number
Norton internet security customer service
Norton internet security customer service phone number
Norton internet security help phone number
Norton internet security phone number customer service
Norton phone number customer service
Norton phone number customer support
Norton security customer service phone number

Norton internet security phone number
Norton internet security phone number in usa
Norton lab usa customer service
Norton labs usa customer serviceNorton
Norton phone number
Norton phone number customer service
Norton phone number support
Norton phone number tech support
Norton phone number technical support
Norton phone numbers customer support
Norton phone support
Norton phone support number
Norton phone number customer service
Norton phone number support
Norton phone number tech support
Norton phone number usa
Norton security contact phone number
Norton security phone number
Norton security support phone number
Norton software customer service
Norton software customer service number
Norton support center
Norton support contact number
Norton support email address
Norton support phone number
Norton support telephone number
Norton support number usa
Norton support phone number
Norton support phone number usa
Norton tech support
Norton tech support center
Norton tech support contact
Norton tech support number
Norton tech support number usa
Norton tech support phone
Norton tech support phone number
Norton tech support phone number free
Norton tech support number
Norton tech support number usa
Norton tech support phone number
Norton technical support
Norton technical support number
Norton technical support phone number
Norton technical support phone number usa
Norton technical support reviews
Norton technical support usa
Norton technical support phone number
Norton technical support number
Norton technical support number toll free number
Norton technical support number usa
Norton technical support phone number
Norton technical support phone number usa
Norton technologies phone number
Norton telephone number
Norton telephone support number
Norton toll free number
Norton toll free number usa
Norton usa customer care for tech support
Norton usa customer service
Norton usa phone number

Norton security phone number customer service
Norton support phone number
Norton support telephone number
Norton tech support number
Norton tech support phone number
Norton technical support
Norton technical support number
Norton technical support phone number
Norton antivirus customer support phone number
Norton antivirus phone number customer service
Norton antivirus tech support number
Norton customer service phone number
Norton customer service phone numbers
Norton internet security technical support
Norton tech support phone number us
Norton technical support telephone number
contact Norton antivirus
contact Norton by phone
contact Norton customer service
contact Norton antivirus customer service phone number
contactNorton antivirus tech support usa
customer service Norton phone number
download Norton titanium
dri Norton customer service number
dri Norton customer service phone number
dri Norton phone number
how to contact Norton by email
how to delete Norton from mac
micro trend customer service
norton antivirus customer service number
phone number for Norton customer service
phone number forNorton customer service
phone number forNorton customer support
phone number forNorton tech support
phone number forNorton technical support
phone number for Norton antivirus technical support
phone number for Norton security
phone number for Norton support
phone number for Norton technical support
phone number for Norton antivirus customer service
phone number for Norton customer service
remove Norton from mac
technical support for antivirus Norton
telephone number forNorton technical support
telephone Norton antivirus
Norton antivirus contact number
Norton antivirus customer care
Norton antivirus customer care number
Norton antivirus customer care number usa
Norton antivirus customer service
Norton antivirus customer service number :idea: :evil: :D :) :lol: :( :o
:shock:
Norton antivirus customer service phone number
Norton antivirus customer service phone number usa
Norton antivirus customer service telephone number
Norton antivirus customer support
Norton antivirus customer support in usa
Norton antivirus customer support number
Norton antivirus customer support phone number
Norton antivirus for phone
Norton antivirus free antivirus support
Norton antivirus help phone number
Norton antivirus helpline number
Norton antivirus online support
Norton antivirus phone
Norton antivirus phone number
Norton antivirus phone number in usa
Norton antivirus phone number usa
Norton antivirus phone support
Norton antivirus plus tech support
Norton antivirus protection
Norton antivirus support
Norton antivirus support number
Norton antivirus support phone number
Norton antivirus support services
Norton antivirus support telephone number
Norton antivirus tech support
Norton antivirus tech support phone number free in usa
Norton antivirus tech support number
Norton antivirus tech support phone number
Norton antivirus technical support
Norton antivirus technical support number
Norton antivirus technical support phone number
Norton antivirus toll free customer care number
Norton antivirus toll free number
Norton antivirus contact phone number in usa
Norton antivirus help desk phone number in usa
Norton antivirus phone number support for technical issue in usa
Norton antivirus support phone number
Norton antivirus technical support help desk phone number
Norton antivirus technical support phone number
Norton contact number
Norton contact number usa
Norton contact phone number
Norton contact support
Norton contact number usa
Norton contact phone number
Norton contact phone number usa
Norton customer & technical support
Norton customer care
Norton customer care center
Norton customer care email
Norton customer care number
Norton customer care number
Norton customer care number usa
Norton customer care number usa toll free
Norton customer care phone number usa
Norton customer care tchnical support
Norton customer care toll free
Norton customer care toll free number
Norton customer care usa
Norton customer help
Norton customer number
Norton customer portal
Norton customer service
Norton customer service billing
Norton customer service email address
Norton customer service number
Norton customer service phone
Norton customer service phone number
Norton customer service phone number us
Norton customer service phone number usa
Norton customer service reviews
Norton customer service telephone number
Norton customer service usa
Norton customer support
Norton customer support number
Norton customer support phone
Norton customer support phone number
Norton customer service number
Norton customer service number usa
Norton customer service phone number
Norton customer support number
Norton customer support phone number
Norton free phone support
Norton gold support phone number
Norton help desk phone number
Norton help phone number
Norton helpline
Norton helpline phone number
Norton hotline customer service phone number
Norton internet security customer service
Norton antivirus customer service phone number
Norton antivirus customer service phone number
Norton antivirus customer support phone number
Norton antivirus customer support phone number
Norton antivirus technical support number
Norton customer service phone number usa
Norton internet security support phone number
Norton.com customer service
Norton antivirus antispyware 2011
Norton antivirus customer support
Norton antivirus serial key
Norton antivirus serial number
Norton antivirus support
Norton antivirus technical support
Norton business support
Norton contact support
Norton customer care number
Norton customer service 800
Norton customer service number
Norton customer service phone number
>From gcc-bugs-return-534225-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 14:56:43 2016
Return-Path: <gcc-bugs-return-534225-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 19286 invoked by alias); 11 Aug 2016 14:56:43 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 19270 invoked by uid 89); 11 Aug 2016 14:56:42 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=1.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,FILL_THIS_FORM,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=yahoo, billing, hotline, number
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 14:56:32 +0000
From: "braydenjames2525 at yahoo dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73995] New: KASPERSKY Support Phone Number! 1 844.569.1583 KASPERSKY Technical Support Help Line Phone Number.
Date: Thu, 11 Aug 2016 14:56:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: new-ra
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: braydenjames2525 at yahoo dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73995-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01561.txt.bz2
Content-length: 9481

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73995

            Bug ID: 73995
           Summary: KASPERSKY Support Phone Number! 1 844.569.1583
                    KASPERSKY Technical Support Help Line Phone Number.
           Product: gcc
           Version: new-ra
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: braydenjames2525 at yahoo dot com
  Target Milestone: ---

KASPERSKY Support Phone Number! 1 844.569.1583 KASPERSKY Technical Support Help
Line Phone Number.
KASPERSKY Support Phone Number!!1 844.569.1583 KASPERSKY support phone number
KASPERSKY Support Phone Number!!1 844.569.1583 KASPERSKY support phone number
KASPERSKY helpline phone number@~1844-569-1583 KASPERSKY tech Support Number
KASPERSKY antivirus customer service phone number
KASPERSKY Security contact Number +1844-5691583**KASPERSKY antivirus support
phone number
usa+1-844-569-1583) Technical support number
CANADA+1844-569-1583 KASPERSKY Antivirus Technical Support
USA-1844-569-1569contact KASPERSKY antivirus customer service phone number
AUS-1-844-569-1583 phone number for KASPERSKY customer service
UK-1844-569-1583 phone number for KASPERSKY antivirus technical support
1-844-569-1583 phone number for KASPERSKY antivirus customer service
phone number for KASPERSKY antivirus technical support
phone number for KASPERSKY security
KASPERSKY customer service telephone number
KASPERSKY customer support
KASPERSKY helpline support number
KASPERSKY internet security customer service
KASPERSKY internet security technical support
KASPERSKY pc call in technical support
KASPERSKY phone support
KASPERSKY removal tool download
KASPERSKY subscription renewal
KASPERSKY support contact
KASPERSKY support hotline
KASPERSKY support phone number
KASPERSKY tech support phone number
KASPERSKY technical support
KASPERSKY technical support chat
KASPERSKY technical support phone number
KASPERSKY technical support phone number usa
KASPERSKY telephone number
KASPERSKY titanium antivirus
KASPERSKY titanium internet security
KASPERSKY titanium maximum
KASPERSKY titanium maximum security
KASPERSKY titanium problems
KASPERSKY Support Phone Number!!1 844.569.1583 KASPERSKY support phone number
KASPERSKY Support Phone Number!!1 844.569.1583 KASPERSKY support phone number
KASPERSKY helpline phone number@~1844-569-1583 KASPERSKY tech Support Number
KASPERSKY antivirus customer service phone number
KASPERSKY Security contact Number +1844-5691583**KASPERSKY antivirus support
phone number
usa+1-844-569-1583) Technical support number
CANADA+1844-569-1583 KASPERSKY Antivirus Technical Support
USA-1844-569-1569contact KASPERSKY antivirus customer service phone number
AUS-1-844-569-1583 phone number for KASPERSKY customer service
UK-1844-569-1583 phone number for KASPERSKY antivirus technical support
1-844-569-1583 phone number for KASPERSKY antivirus customer service
KASPERSKY titanium removal tool
KASPERSKY titanium reviews
KASPERSKY titanium support
KASPERSKY virus removal service
uninstall KASPERSKY smart surfing for mac
usa customer care number for KASPERSKY antivirus
KASPERSKY phone number customer service
KASPERSKY phone numbers customer support
KASPERSKY phone support number
KASPERSKY security contact phone number
KASPERSKY security phone number customer service
KASPERSKY security support phone number
KASPERSKY support contact number
KASPERSKY support email address
KASPERSKY support phone number
KASPERSKY support telephone number
KASPERSKY support telephone number usa
KASPERSKY support telephone number
KASPERSKY tech support number
KASPERSKY Support Phone Number!!1 844.569.1583 KASPERSKY support phone number
KASPERSKY Support Phone Number!!1 844.569.1583 KASPERSKY support phone number
KASPERSKY helpline phone number@~1844-569-1583 KASPERSKY tech Support Number
KASPERSKY antivirus customer service phone number
KASPERSKY Security contact Number +1844-5691583**KASPERSKY antivirus support
phone number
usa+1-844-569-1583) Technical support number
CANADA+1844-569-1583 KASPERSKY Antivirus Technical Support
USA-1844-569-1569contact KASPERSKY antivirus customer service phone number
AUS-1-844-569-1583 phone number for KASPERSKY customer service
UK-1844-569-1583 phone number for KASPERSKY antivirus technical support
1-844-569-1583 phone number for KASPERSKY antivirus customer serviceKASPERSKY
antivirus customer care phone number
KASPERSKY antivirus customer service billing
KASPERSKY antivirus customer service email address
KASPERSKY antivirus customer service live chat
KASPERSKY antivirus customer service telephone number
KASPERSKY antivirus customer support usa phone number
KASPERSKY antivirus help desk support phone number free in usa
KASPERSKY antivirus phone number customer service us
KASPERSKY antivirus phone number support
KASPERSKY antivirus support phone number
KASPERSKY antivirus tech support phone number free in usa
KASPERSKY antivirus tech support phone number
KASPERSKY antivirus technical support customer service
KASPERSKY antivirus technical support number
KASPERSKY antivirus telephone number
KASPERSKY antivirus toll free customer care number
KASPERSKY antivirus toll free number in usa
KASPERSKY antivirus contact phone number in usa
KASPERSKY antivirus customer service number
KASPERSKY antivirus customer service phone number
KASPERSKY antivirus customer service telephone number
KASPERSKY antivirus customer support number
KASPERSKY antivirus customer support phone number
KASPERSKY Support Phone Number!!1 844.569.1583 KASPERSKY support phone number
KASPERSKY Support Phone Number!!1 844.569.1583 KASPERSKY support phone number
KASPERSKY helpline phone number@~1844-569-1583 KASPERSKY tech Support Number
KASPERSKY antivirus customer service phone number
KASPERSKY Security contact Number +1844-5691583**KASPERSKY antivirus support
phone number
usa+1-844-569-1583) Technical support number
CANADA+1844-569-1583 KASPERSKY Antivirus Technical Support
USA-1844-569-1569contact KASPERSKY antivirus customer service phone number
AUS-1-844-569-1583 phone number for KASPERSKY customer service
UK-1844-569-1583 phone number for KASPERSKY antivirus technical support
1-844-569-1583 phone number for KASPERSKY antivirus customer service
KASPERSKY antivirus customer support phone number
KASPERSKY antivirus help desk phone number in usa
KASPERSKY antivirus phone number
KASPERSKY tech support phone number
KASPERSKY tech support phone number free
KASPERSKY technical support phone number
KASPERSKY technical support cutomer phone number
KASPERSKY technical support phone number
KASPERSKY technical support number free in usa
KASPERSKY technical support number toll free number
KASPERSKY technical support phone number
KASPERSKY technologies phone number
KASPERSKY telephone support number
KASPERSKY antivirus customer support phone number
KASPERSKY antivirus customer service phone number
KASPERSKY customer support phone number
KASPERSKY phone number customer service
KASPERSKY technical support telephone number
contact KASPERSKY antivirus customer service phone number
customer service number for KASPERSKY antivirus
phone number for KASPERSKY antivirus
phone number for KASPERSKY antivirus customer service
phone number for KASPERSKY antivirus support
phone number for KASPERSKY customer service
phone number for KASPERSKY customer service
phone number for KASPERSKY customer support
KASPERSKY Support Phone Number!!1 844.569.1583 KASPERSKY support phone number
KASPERSKY Support Phone Number!!1 844.569.1583 KASPERSKY support phone number
KASPERSKY helpline phone number@~1844-569-1583 KASPERSKY tech Support Number
KASPERSKY antivirus customer service phone number
KASPERSKY Security contact Number +1844-5691583**KASPERSKY antivirus support
phone number
usa+1-844-569-1583) Technical support number
CANADA+1844-569-1583 KASPERSKY Antivirus Technical Support
USA-1844-569-1569contact KASPERSKY antivirus customer service phone number
AUS-1-844-569-1583 phone number for KASPERSKY customer service
UK-1844-569-1583 phone number for KASPERSKY antivirus technical support
1-844-569-1583 phone number for KASPERSKY antivirus customer service
phone number for KASPERSKY tech support
phone number KASPERSKY antivirus customer service
KASPERSKY antivirus customer service number
KASPERSKY antivirus customer service phone
KASPERSKY antivirus customer service phone number
KASPERSKY antivirus customer service phone number us
KASPERSKY antivirus customer service telephone number
KASPERSKY antivirus customer support
KASPERSKY antivirus customer support number
KASPERSKY antivirus phone number customer service us
KASPERSKY antivirus phone number support
KASPERSKY antivirus phone support
KASPERSKY antivirus phone support number
KASPERSKY antivirus support phone number
KASPERSKY antivirus tech support phone number
KASPERSKY antivirus technical support
KASPERSKY antivirus technical support number
KASPERSKY antivirus technical support phone number
KASPERSKY customer service phone number
KASPERSKY customer support phone number
KASPERSKY helpline phone number
KASPERSKY internet security customer service
KASPERSKY internet security customer service phone number
KASPERSKY internet security help phone number
KASPERSKY internet security phone number customer service
KASPERSKY phone number customer service
KASPERSKY phone number customer support
KASPERSKY security customer service phone number
>From gcc-bugs-return-534226-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 14:57:04 2016
Return-Path: <gcc-bugs-return-534226-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 20533 invoked by alias); 11 Aug 2016 14:57:03 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 20512 invoked by uid 89); 11 Aug 2016 14:57:03 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,LIKELY_SPAM_BODY,TECH_SUPPORT_PHONE autolearn=no version=3.3.2 spammy=billing, hotline, number, technologies
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 14:56:52 +0000
From: "anfifhdsin at yopmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/73996] New: NORTON Support Phone Number!!...1 888.936.5569 NORTON support phone number..
Date: Thu, 11 Aug 2016 14:57:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: anfifhdsin at yopmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-73996-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01562.txt.bz2
Content-length: 8922

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73996

            Bug ID: 73996
           Summary: NORTON Support Phone Number!!...1 888.936.5569 NORTON
                    support phone number..
           Product: gcc
           Version: 6.1.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: anfifhdsin at yopmail dot com
  Target Milestone: ---

NORTON Support Phone Number!!...1 888.936.5569 NORTON support phone number..
NORTON Support Phone Number!!1 877.288.2779 NORTON support phone number NORTON
Support Phone Number!!1 877.288.2779 NORTON support phone number
Norton helpline phone number@~1877-288-2779 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1877-2882779**Norton antivirus support phone
number
usa+1-877-288-2779) Technical support number
CANADA+1877-288-2779 Norton Antivirus Technical Support
USA-1877-288-1288contact Norton antivirus customer service phone number
AUS-1-877-288-2779 phone number for Norton customer service
UK-1877-288-2779 phone number for Norton antivirus technical support
1-877-288-2779 phone number for Norton antivirus customer service
phone number for Norton antivirus technical support
phone number for Norton security
Norton customer service telephone number
Norton customer support
Norton grentry non payment
Norton helpline support number
Norton internet security customer service
Norton internet security technical support
Norton oem customer service
Norton pc cillin technical support
Norton phone support
Norton removal tool download
Norton subscription renewal
Norton support contact
Norton support hotline
Norton support phone number
Norton tech support phone number
Norton technical support
Norton technical support chat
Norton technical support phone number
Norton technical support phone number usa
Norton telephone number
Norton titanium antivirus
Norton titanium internet security
Norton titanium maximum
Norton titanium maximum security
Norton titanium problems
NORTON Support Phone Number!!1 877.288.2779 NORTON support phone number NORTON
Support Phone Number!!1 877.288.2779 NORTON support phone number
Norton helpline phone number@~1877-288-2779 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1877-2882779**Norton antivirus support phone
number
usa+1-877-288-2779) Technical support number
CANADA+1877-288-2779 Norton Antivirus Technical Support
USA-1877-288-1288contact Norton antivirus customer service phone number
AUS-1-877-288-2779 phone number for Norton customer service
UK-1877-288-2779 phone number for Norton antivirus technical support
1-877-288-2779 phone number for Norton antivirus customer service
Norton titanium removal tool
Norton titanium reviews
Norton titanium support
Norton virus removal service
uninstall Norton smart surfing for mac
usa customer care number for Norton antivirus
Norton phone number customer service
Norton phone numbers customer support
Norton phone support number
Norton security contact phone number
Norton security phone number customer service
Norton security support phone number
Norton support contact number
Norton support email address
Norton support phone number
Norton support telephone number
Norton support telephone number usa
Norton support telephone number
Norton tech support number
NORTON Support Phone Number!!1 877.288.2779 NORTON support phone number NORTON
Support Phone Number!!1 877.288.2779 NORTON support phone number
Norton helpline phone number@~1877-288-2779 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1877-2882779**Norton antivirus support phone
number
usa+1-877-288-2779) Technical support number
CANADA+1877-288-2779 Norton Antivirus Technical Support
USA-1877-288-1288contact Norton antivirus customer service phone number
AUS-1-877-288-2779 phone number for Norton customer service
UK-1877-288-2779 phone number for Norton antivirus technical support
1-877-288-2779 phone number for Norton antivirus customer serviceNorton
antivirus customer care phone number
Norton antivirus customer service billing
Norton antivirus customer service email address
Norton antivirus customer service live chat
Norton antivirus customer service telephone number
Norton antivirus customer support usa phone number
Norton antivirus help desk support phone number free in usa
Norton antivirus phone number customer service us
Norton antivirus phone number support
Norton antivirus support phone number
Norton antivirus tech support phone number free in usa
Norton antivirus tech support phone number
Norton antivirus technical support customer service
Norton antivirus technical support number
Norton antivirus telephone number
Norton antivirus toll free customer care number
Norton antivirus toll free number in usa
Norton antivirus contact phone number in usa
Norton antivirus customer service number
Norton antivirus customer service phone number
Norton antivirus customer service telephone number
Norton antivirus customer support number
Norton antivirus customer support phone number
NORTON Support Phone Number!!1 877.288.2779 NORTON support phone number NORTON
Support Phone Number!!1 877.288.2779 NORTON support phone number
Norton helpline phone number@~1877-288-2779 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1877-2882779**Norton antivirus support phone
number
usa+1-877-288-2779) Technical support number
CANADA+1877-288-2779 Norton Antivirus Technical Support
USA-1877-288-1288contact Norton antivirus customer service phone number
AUS-1-877-288-2779 phone number for Norton customer service
UK-1877-288-2779 phone number for Norton antivirus technical support
1-877-288-2779 phone number for Norton antivirus customer service
Norton antivirus customer support phone number
Norton antivirus help desk phone number in usa
Norton antivirus phone number
Norton tech support phone number
Norton tech support phone number free
Norton technical support phone number
Norton technical support cutomer phone number
Norton technical support phone number
Norton technical support number free in usa
Norton technical support number toll free number
Norton technical support phone number
Norton technologies phone number
Norton telephone support number
Norton antivirus customer support phone number
Norton antivirus customer service phone number
Norton customer support phone number
Norton phone number customer service
Norton technical support telephone number
contact Norton antivirus customer service phone number
customer service number for Norton antivirus
phone number for Norton antivirus
phone number for Norton antivirus customer service
phone number for Norton antivirus support
phone number for Norton customer service
phone number for Norton customer service
phone number for Norton customer support
NORTON Support Phone Number!!1 877.288.2779 NORTON support phone number NORTON
Support Phone Number!!1 877.288.2779 NORTON support phone number
Norton helpline phone number@~1877-288-2779 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1877-2882779**Norton antivirus support phone
number
usa+1-877-288-2779) Technical support number
CANADA+1877-288-2779 Norton Antivirus Technical Support
USA-1877-288-1288contact Norton antivirus customer service phone number
AUS-1-877-288-2779 phone number for Norton customer service
UK-1877-288-2779 phone number for Norton antivirus technical support
1-877-288-2779 phone number for Norton antivirus customer service
phone number for Norton tech support
phone number Norton antivirus customer service
Norton antivirus customer service number
Norton antivirus customer service phone
Norton antivirus customer service phone number
Norton antivirus customer service phone number us
Norton antivirus customer service telephone number
Norton antivirus customer support
Norton antivirus customer support number
Norton antivirus phone number customer service us
Norton antivirus phone number support
Norton antivirus phone support
Norton antivirus phone support number
Norton antivirus support phone number
Norton antivirus tech support phone number
Norton antivirus technical support
Norton antivirus technical support number
Norton antivirus technical support phone number
Norton customer service phone number
Norton customer support phone number
Norton helpline phone number
Norton internet security customer service
Norton internet security customer service phone number
Norton internet security help phone number
Norton internet security phone number customer service
Norton phone number customer service
Norton phone number customer support
Norton security customer service phone number/\//\/\
>From gcc-bugs-return-534228-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 14:58:45 2016
Return-Path: <gcc-bugs-return-534228-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 26131 invoked by alias); 11 Aug 2016 14:58:45 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 26115 invoked by uid 89); 11 Aug 2016 14:58:44 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,LIKELY_SPAM_BODY,TECH_SUPPORT_PHONE autolearn=no version=3.3.2 spammy=billing, hotline, number, technologies
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 14:58:31 +0000
From: "Wilty1952 at cuvox dot de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug debug/74003] New: 73998 - +1-888-527-3401 AVG Support Phone Number!!+1-888-527-3401 AVG Tech Support Number usa
Date: Thu, 11 Aug 2016 14:58:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: debug
X-Bugzilla-Version: 4.0.3
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: Wilty1952 at cuvox dot de
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-74003-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01564.txt.bz2
Content-length: 14522

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74003

            Bug ID: 74003
           Summary: 73998 - +1-888-527-3401 AVG Support Phone
                    Number!!+1-888-527-3401 AVG Tech Support Number usa
           Product: gcc
           Version: 4.0.3
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: debug
          Assignee: unassigned at gcc dot gnu.org
          Reporter: Wilty1952 at cuvox dot de
  Target Milestone: ---

-+1-888-527-3401 phone number for Norton customer service

NORTON Support Phone Number!!+1-888-527-3401 NORTON support phone 

number NORTON Support Phone Number!!+1-888-527-3401 NORTON support 

phone number
Norton helpline phone number@~+1-888-527-3401 Norton tech Support 

Number Norton antivirus customer service phone number
Norton Security contact Number +1-888-527-3401**Norton antivirus 

support phone number
usa++1-888-527-3401) Technical support number
CANADA++1-888-527-3401 Norton Antivirus Technical Support
USA-+1-888-527-3401contact Norton antivirus customer service phone 

number
AUS-+1-888-527-3401 phone number for Norton customer service
UK-+1-888-527-3401 phone number for Norton antivirus technical 

support
+1-888-527-3401 phone number for Norton antivirus customer service
phone number for Norton antivirus technical support
phone number for Norton security
Norton customer service telephone number
Norton customer support
Norton grentry non payment
Norton helpline support number
Norton internet security customer service
Norton internet security technical support
Norton oem customer service
Norton pc cillin technical support
Norton phone support
Norton removal tool download
Norton subscription renewal
Norton support contact
Norton support hotline
Norton support phone number
Norton tech support phone number
Norton technical support
Norton technical support chat
Norton technical support phone number
Norton technical support phone number usa
Norton telephone number
Norton titanium antivirus
Norton titanium internet security
Norton titanium maximum
Norton titanium maximum security
Norton titanium problems
Norton titanium removal tool
Norton titanium reviews
Norton titanium support
Norton virus removal service
uninstall Norton smart surfing for mac
usa customer care number for Norton antivirus
Norton antivirus phone number support for technical issue in usa
Norton antivirus support phone number
Norton antivirus technical support help desk phone number
Norton antivirus technical support number
Norton antivirus technical support phone number
Norton customer service number
Norton customer service telephone number
Norton customer services email
Norton customer support email address
Norton customer support number
Norton customer support phone number
Norton customer service phone number
Norton internet security contact phone number
Norton internet security customer service phone number
Norton internet security phone number
Norton internet security help phone number
Norton internet security phone number in usa
Norton internet security support phone number
Norton internet security technical support
Norton phone number customer service
Norton phone numbers customer support
Norton phone support number
Norton security contact phone number
Norton security phone number customer service
Norton security support phone number
Norton support contact number
Norton support email address
Norton support phone number
Norton support telephone number
Norton support telephone number usa
Norton support telephone number
Norton tech support number

Norton antivirus customer care phone number
Norton antivirus customer service billing
Norton antivirus customer service email address
Norton antivirus customer service live chat
Norton antivirus customer service telephone number
Norton antivirus customer support usa phone number
Norton antivirus help desk support phone number free in usa
Norton antivirus phone number customer service us
Norton antivirus phone number support
Norton antivirus support phone number
Norton antivirus tech support phone number free in usa
Norton antivirus tech support phone number
Norton antivirus technical support customer service
Norton antivirus technical support number
Norton antivirus telephone number
Norton antivirus toll free customer care number
Norton antivirus toll free number in usa
Norton antivirus contact phone number in usa
Norton antivirus customer service number
Norton antivirus customer service phone number
Norton antivirus customer service telephone number
Norton antivirus customer support number
Norton antivirus customer support phone number
Norton antivirus customer support phone number
Norton antivirus help desk phone number in usa
Norton antivirus phone number
Norton tech support phone number
Norton tech support phone number free
Norton technical support phone number
Norton technical support cutomer phone number
Norton technical support phone number
Norton technical support number free in usa
Norton technical support number toll free number
Norton technical support phone number
Norton technologies phone number
Norton telephone support number
Norton antivirus customer support phone number
Norton antivirus customer service phone number
Norton customer support phone number
Norton phone number customer service
Norton technical support telephone number
contact Norton antivirus customer service phone number
customer service number for Norton antivirus
phone number for Norton antivirus
phone number for Norton antivirus customer service
phone number for Norton antivirus support
phone number for Norton customer service
phone number for Norton customer service
phone number for Norton customer support
phone number for Norton tech support
phone number Norton antivirus customer service
Norton antivirus customer service number
Norton antivirus customer service phone
Norton antivirus customer service phone number
Norton antivirus customer service phone number us
Norton antivirus customer service telephone number
Norton antivirus customer support
Norton antivirus customer support number
Norton antivirus phone number customer service us
Norton antivirus phone number support
Norton antivirus phone support
Norton antivirus phone support number
Norton antivirus support phone number
Norton antivirus tech support phone number
Norton antivirus technical support
Norton antivirus technical support number
Norton antivirus technical support phone number
Norton customer service phone number
Norton customer support phone number
Norton helpline phone number
Norton internet security customer service
Norton internet security customer service phone number
Norton internet security help phone number
Norton internet security phone number customer service
Norton phone number customer service
Norton phone number customer support
Norton security customer service phone number

Norton internet security phone number
Norton internet security phone number in usa
Norton lab usa customer service
Norton labs usa customer serviceNorton
Norton phone number
Norton phone number customer service
Norton phone number support
Norton phone number tech support
Norton phone number technical support
Norton phone numbers customer support
Norton phone support
Norton phone support number
Norton phone number customer service
Norton phone number support
Norton phone number tech support
Norton phone number usa
Norton security contact phone number
Norton security phone number
Norton security support phone number
Norton software customer service
Norton software customer service number
Norton support center
Norton support contact number
Norton support email address
Norton support phone number
Norton support telephone number
Norton support number usa
Norton support phone number
Norton support phone number usa
Norton tech support
Norton tech support center
Norton tech support contact
Norton tech support number
Norton tech support number usa
Norton tech support phone
Norton tech support phone number
Norton tech support phone number free
Norton tech support number
Norton tech support number usa
Norton tech support phone number
Norton technical support
Norton technical support number
Norton technical support phone number
Norton technical support phone number usa
Norton technical support reviews
Norton technical support usa
Norton technical support phone number
Norton technical support number
Norton technical support number toll free number
Norton technical support number usa
Norton technical support phone number
Norton technical support phone number usa
Norton technologies phone number
Norton telephone number
Norton telephone support number
Norton toll free number
Norton toll free number usa
Norton usa customer care for tech support
Norton usa customer service
Norton usa phone number

Norton security phone number customer service
Norton support phone number
Norton support telephone number
Norton tech support number
Norton tech support phone number
Norton technical support
Norton technical support number
Norton technical support phone number
Norton antivirus customer support phone number
Norton antivirus phone number customer service
Norton antivirus tech support number
Norton customer service phone number
Norton customer service phone numbers
Norton internet security technical support
Norton tech support phone number us
Norton technical support telephone number
contact Norton antivirus
contact Norton by phone
contact Norton customer service
contact Norton antivirus customer service phone number
contactNorton antivirus tech support usa
customer service Norton phone number
download Norton titanium
dri Norton customer service number
dri Norton customer service phone number
dri Norton phone number
how to contact Norton by email
how to delete Norton from mac
micro trend customer service
norton antivirus customer service number
phone number for Norton customer service
phone number forNorton customer service
phone number forNorton customer support
phone number forNorton tech support
phone number forNorton technical support
phone number for Norton antivirus technical support
phone number for Norton security
phone number for Norton support
phone number for Norton technical support
phone number for Norton antivirus customer service
phone number for Norton customer service
remove Norton from mac
technical support for antivirus Norton
telephone number forNorton technical support
telephone Norton antivirus
Norton antivirus contact number
Norton antivirus customer care
Norton antivirus customer care number
Norton antivirus customer care number usa
Norton antivirus customer service
Norton antivirus customer service number :idea: :evil: :D :) :lol: 

:( :o :shock:
Norton antivirus customer service phone number
Norton antivirus customer service phone number usa
Norton antivirus customer service telephone number
Norton antivirus customer support
Norton antivirus customer support in usa
Norton antivirus customer support number
Norton antivirus customer support phone number
Norton antivirus for phone
Norton antivirus free antivirus support
Norton antivirus help phone number
Norton antivirus helpline number
Norton antivirus online support
Norton antivirus phone
Norton antivirus phone number
Norton antivirus phone number in usa
Norton antivirus phone number usa
Norton antivirus phone support
Norton antivirus plus tech support
Norton antivirus protection
Norton antivirus support
Norton antivirus support number
Norton antivirus support phone number
Norton antivirus support services
Norton antivirus support telephone number
Norton antivirus tech support
Norton antivirus tech support phone number free in usa
Norton antivirus tech support number
Norton antivirus tech support phone number
Norton antivirus technical support
Norton antivirus technical support number
Norton antivirus technical support phone number
Norton antivirus toll free customer care number
Norton antivirus toll free number
Norton antivirus contact phone number in usa
Norton antivirus help desk phone number in usa
Norton antivirus phone number support for technical issue in usa
Norton antivirus support phone number
Norton antivirus technical support help desk phone number
Norton antivirus technical support phone number
Norton contact number
Norton contact number usa
Norton contact phone number
Norton contact support
Norton contact number usa
Norton contact phone number
Norton contact phone number usa
Norton customer & technical support
Norton customer care
Norton customer care center
Norton customer care email
Norton customer care number
Norton customer care number
Norton customer care number usa
Norton customer care number usa toll free
Norton customer care phone number usa
Norton customer care tchnical support
Norton customer care toll free
Norton customer care toll free number
Norton customer care usa
Norton customer help
Norton customer number
Norton customer portal
Norton customer service
Norton customer service billing
Norton customer service email address
Norton customer service number
Norton customer service phone
Norton customer service phone number
Norton customer service phone number us
Norton customer service phone number usa
Norton customer service reviews
Norton customer service telephone number
Norton customer service usa
Norton customer support
Norton customer support number
Norton customer support phone
Norton customer support phone number
Norton customer service number
Norton customer service number usa
Norton customer service phone number
Norton customer support number
Norton customer support phone number
Norton free phone support
Norton gold support phone number
Norton help desk phone number
Norton help phone number
Norton helpline
Norton helpline phone number
Norton hotline customer service phone number
Norton internet security customer service
Norton antivirus customer service phone number
Norton antivirus customer service phone number
Norton antivirus customer support phone number
Norton antivirus customer support phone number
Norton antivirus technical support number
Norton customer service phone number usa
Norton internet security support phone number
Norton.com customer service
Norton antivirus antispyware 2011
Norton antivirus customer support
Norton antivirus serial key
Norton antivirus serial number
Norton antivirus support
Norton antivirus technical support
Norton business support
Norton contact support
Norton customer care number
Norton customer service 800
Norton customer service number
Norton customer service phone number
>From gcc-bugs-return-534227-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 14:58:14 2016
Return-Path: <gcc-bugs-return-534227-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 24764 invoked by alias); 11 Aug 2016 14:58:13 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 24745 invoked by uid 89); 11 Aug 2016 14:58:13 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,LIKELY_SPAM_BODY,URI_OBFU_WWW autolearn=no version=3.3.2 spammy=uk, CANADA, Care, UD:S.A
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 14:58:02 +0000
From: "Wartn1956 at einrot dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/74001] New: ++canon Printer@@@Tech +++++18007909186++phone@number@@canon@printer@technical@support@number@Uk canon+printer+tech+help+line+number+usa+1.8.0.0.79.091.86+canon+printer+tech+support+support+usa
Date: Thu, 11 Aug 2016 14:58:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: new-ra
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: Wartn1956 at einrot dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-74001-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01563.txt.bz2
Content-length: 12634

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74001

            Bug ID: 74001
           Summary: ++canon Printer@@@Tech
                    +++++18007909186++phone@number@@canon@printer@technica
                    l@support@number@Uk
                    canon+printer+tech+help+line+number+usa+1.8.0.0.79.091
                    .86+canon+printer+tech+support+support+usa
           Product: gcc
           Version: new-ra
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ada
          Assignee: unassigned at gcc dot gnu.org
          Reporter: Wartn1956 at einrot dot com
  Target Milestone: ---

Created attachment 39217
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39217&action=edit
**canon help@!@!!!!!++18~00.790.918.6++@!@!!!!!!+++ =canon printer tech support
phone number canon contact number usa canon
help@!@!!!!!++18~00.790.918.6++@!@!!!!!!+++ =canon printer tech support phon

**canon help@!@!!!!!++18~00.790.918.6++@!@!!!!!!+++ =canon printer tech support
phone number canon contact number usa
canon help@!@!!!!!++18~00.790.918.6++@!@!!!!!!+++ =canon printer tech support
phone number canon contact number usa canon
canon help@!!@!!!!!++1..800.790.918.6++@@!!!!!!+++ =canon printer tech support
phone number canon contact number usa canon =+18~007.90+9186 U.S.A CALL canon
Printer help desk Phone Number, canon Printer help line phone number usa !!Help
Printer@@@Tech
++..+18~00790~9186+.+phone@number@@canon@printer@technical@support@number@Uk
!!canon Printer@@@Tech
++..+18~00790~9186+.+phone@number@@canon@printer@technical@support@number@Uk
!!canon Printer@@@Tech
++.+18007909186+.+phone@number@@canon@printer@technical@support@number@Uk
!!canon Printer@@@Tech
+++18007909186++phone@number@@canon@printer@technical@support@number@Uk canon
Tech (29) canon printer help, canon help line, canon customer support help
desk, canon printers help, canon help desk, canon help, canon printer help
phone number 1-800-790-9186, canon help desk phone number 1-800-790-9186, canon
printer help line, canon printer help number 1-800-790-9186, canon help line
phone number 1-800-790-9186, canon help number 1-800-790-9186, canon printer
help desk, canon technical help, help with canon printer, canon printer help
online, canon help phone number 1-800-790-9186, canon printers help desk, canon
printer number 1-800-790-9186 for help, canon online help… canon Drivers (22)
canon printer drivers, canon support drivers, canon drivers for printers, canon
printers drivers, canon support and drivers, canon drivers and support, drivers
canon printers, canon drivers printers, canon inkjet printer driver, canon
wireless printer driver, printer canon driver, canon printer drivers support,
canon photocopier drivers, canon driver support, canon printer driver support,
canon support & driver, canon drivers support, canon printers support drivers,
www canon com support drivers, canon drivers Uk… Printer Customer (25) canon
printer customer service, canon printers customer service, canon printer
customer service number 1-800-790-9186, canon printer customer support, canon
printer customer service phone number 1-800-790-9186, canon printers customer
service phone number 1-800-790-9186, canon printer customer service phone,
canon printers customer support, phone number 1-800-790-9186 for canon printer
customer service, canon printer customer support phone number 1-800-790-9186,
customer service canon printers, canon printer customer support, canon printer
customer service phone number 1-800-790-9186, canon printer customer service
number 1-800-790-9186, kodak printer customer service number 1-800-790-9186,
canon printer customer support phone number 1-800-790-9186, canon printers
customer support number 1-800-790-9186, canon printer customer service support,
canon printers customer service number 1-800-790-9186, canon printer customer
support number 1-800-790-9186… canon Technical (22) canon technical support,
canon printer technical support, canon technical support phone number
1-800-790-9186, canon technical support number 1-800-790-9186, canon printers
technical support, canon technical support phone, canon printer technical
support phone number 1-800-790-9186, canon printer technical support number
1-800-790-9186, canon technical support hours, technical support for canon
printers, canon printers technical support phone number 1-800-790-9186, contact
canon technical support, canon cameras technical support, canon technical
support phone number 1-800-790-9186 Uk, canon technical support canada, canon
camera technical support, canon technical support Uktralia, canon Uk technical
support, canon Uk technical support phone number 1-800-790-9186, canon Uktralia
technical support… Support number 1-800-790-9186 (17) canon support number
1-800-790-9186, canon printer support number 1-800-790-9186, canon support
phone number 1-800-790-9186, canon printers support number 1-800-790-9186,
canon phone support number 1-800-790-9186, canon cameras support phone number
1-800-790-9186, canon imagerunner support phone number 1-800-790-9186, printer
support number 1-800-790-9186, canon printer support number 1-800-790-9186,
canon camera support number 1-800-790-9186, canon printer tech support number
1-800-790-9186, canon printer technical support number 1-800-790-9186, canon
printer support telephone number 1-800-790-9186, canon printer technical
support telephone number 1-800-790-9186, canon printer support number
1-800-790-9186 us, canon camera support phone number 1-800-790-9186, canon uk
support number 1-800-790-9186 Install canon (86) install canon printer, canon
printer installation, canon printer installer, canon printer install,
installing canon printer, install printer canon, instal canon printer, canon
printers install, canon printers installation, installing a canon printer,
canon install printer, installer canon printer, install driver for canon
printer, canon printer driver install, canon printer installation without cd,
canon driver install, installer printer canon, instal printer canon, install
canon scanner, canon install driver… Customer Service (12) canon customer
service, canon customer service phone, customer service canon, canon customer
services, canon customer service hours, canon Uk customer service, canon
customer service Uk, canon customer service canada, canon customer service
Uktralia, canon uk customer service, canon canada customer service, canon
singapore customer service Troubleshooting canon (16) canon printers
troubleshooting, canon printer troubleshooting, canon troubleshooting printer,
troubleshoot canon printer, troubleshooting canon printers, canon printer
troubleshoot, canon troubleshooting phone number 1-800-790-9186, troubleshoot
canon printer problems, canon printers troubleshooting pixma, troubleshooting
canon printer, canon mp830 troubleshooting, canon mp620 troubleshooting,
troubleshooting for canon printers, canon printer troubleshooter,
troubleshooting printer canon, how to troubleshoot canon printer Center canon
(38) canon service center, canon service centers, canon support center, canon
service center phone number 1-800-790-9186, canon pixma service center, canon
customer support center, canon service center number 1-800-790-9186, canon
repair center, canon call center number 1-800-790-9186, canon customer service
center, canon call center, canon camera service center, canon service center
contact number 1-800-790-9186, canon print center, canon center, canon camera
repair center, canon service center locations, call center canon, canon contact
service center, canon servicing center… canon Helpline (23) canon printer
helpline, canon helpline, canon helpline number 1-800-790-9186, canon printers
helpline number 1-800-790-9186, canon printer helpline phone number
1-800-790-9186, canon printer helpline number 1-800-790-9186, canon printers
helpline, canon pixma helpline, canon helpline no, canon printer helpline no,
canon camera helpline, canon printer helpline uk, canon helpline uk, canon
helpline Uktralia, canon camera helpline number 1-800-790-9186, canon helpline
number 1-800-790-9186 CANADA, canon helpline number 1-800-790-9186 USA, canon
printers helpline number 1-800-790-9186 USA, canon printer helpline number
1-800-790-9186 USA, canon uk helpline… number 1-800-790-9186 Customer (7) canon
customer service number 1-800-790-9186, canon customer service phone number
1-800-790-9186, canon customer support number 1-800-790-9186, canon pixma
customer service phone number 1-800-790-9186, canon customer support phone
number 1-800-790-9186, phone number 1-800-790-9186 canon customer service,
canon fax machine customer support number 1-800-790-9186 Printer Phone (15)
canon printer support phone number 1-800-790-9186, canon printer support phone,
canon printer tech support phone number 1-800-790-9186, canon printer phone
support, canon printers phone number 1-800-790-9186, canon printers tech
support phone number 1-800-790-9186, canon printer phone number 1-800-790-9186,
canon printers support phone number 1-800-790-9186, phone number 1-800-790-9186
for canon printer support, phone number 1-800-790-9186 for canon printers,
canon printer support phone number 1-800-790-9186, canon printer tech support
phone number 1-800-790-9186, canon printer technical support phone number
1-800-790-9186, canon printer tech support phone, canon printer phone support
number 1-800-790-9186 Center Printer (19) canon printer service center, canon
printers service center, canon printer service center phone number
1-800-790-9186, canon printer service center number 1-800-790-9186, canon
printers service center number 1-800-790-9186, canon printer repair center,
canon printer service centers, service center printer canon, service center for
canon printer, canon printers repair center, service center canon printer,
canon printer call center number 1-800-790-9186, canon printer service center
locations, canon printer service center mumbai, authorized canon printer repair
centers, canon printer repair center locations, canon printer repair centers,
canon printer service center singapore, canon printer call center number
1-800-790-9186 USA canon Care (38) canon customer care number 1-800-790-9186,
canon customer care, canon printer customer care, canon printers customer care
number 1-800-790-9186, canon printer customer care number 1-800-790-9186, canon
customer care no, canon printers customer care, canon customer care center,
canon printers customer care no, canon customer care center contact number
1-800-790-9186, canon printer customer care no, canon care center, customer
care number 1-800-790-9186 of canon printer, canon customer care phone number
1-800-790-9186, canon care, canon customer care CANADA, canon USA customer
care, canon customer care number 1-800-790-9186 USA, canon printers USA
customer care, canon printer customer care CANADA… Contact canon (25) canon
contact number 1-800-790-9186, canon contact, contact canon, contact canon
customer support, canon support contact, contact canon support, contact canon
support phone number 1-800-790-9186, canon contact support, canon support
contact number 1-800-790-9186, contact canon customer service, canon contact
phone number 1-800-790-9186, contact canon by phone, canon contacts, canon
contact details, canon Uk contact number 1-800-790-9186, canon camera contact
number 1-800-790-9186, canon contact info, how to contact canon customer
service, canon contact number 1-800-790-9186 Uk, canon camera contact… canon
Toll (21) canon toll free number 1-800-790-9186, canon toll free no, canon toll
free, canon toll free tech support, canon customer care number 1-800-790-9186
toll free, canon service toll free number 1-800-790-9186, canon toll free
number 1-800-790-9186 USA, canon customer care toll free number 1-800-790-9186,
canon toll free number 1-800-790-9186 in CANADA, canon USA toll free, canon
toll free number 1-800-790-9186 in USA, canon service center toll free number
1-800-790-9186, canon scanner toll free number 1-800-790-9186, canon USA toll
free number 1-800-790-9186, canon USA toll free no, canon camera toll free
number 1-800-790-9186, canon toll free number 1-800-790-9186 CANADA, canon
customer care toll free number 1-800-790-9186 USA, canon toll free USA, canon
toll free no USA.....
>From gcc-bugs-return-534229-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 14:59:45 2016
Return-Path: <gcc-bugs-return-534229-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 28333 invoked by alias); 11 Aug 2016 14:59:45 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 28311 invoked by uid 89); 11 Aug 2016 14:59:44 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:3099, 7128, poll, 7016
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 14:59:42 +0000
From: "tulipawn at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/69004] Building t-engine on ARM fails during -fprofile-use stage
Date: Thu, 11 Aug 2016 14:59:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 5.3.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: tulipawn at gmail dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-69004-4-vFGVN6xcmz@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69004-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69004-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01565.txt.bz2
Content-length: 3222

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69004

--- Comment #30 from PeteVine <tulipawn at gmail dot com> ---
Breakpoint 2, 0x00224a54 in lj_mem_realloc ()
(gdb) bt
#0  0x00224a54 in lj_mem_realloc ()
#1  0x00185d68 in cpluaopen ()
#2  0x002173ac in lj_vm_cpcall ()
#3  0x00185c3c in lua_newstate ()
#4  0x001aa274 in luaL_newstate ()
#5  0x00111848 in boot_lua ()
#6  0x0003883c in main ()

(gdb) info threads
  Id   Target Id         Frame 
  7    Thread 0xb022c450 (LWP 7019) "t-engine" 0xb6c62e44 in ioctl () at
../sysdeps/unix/syscall-template.S:81
  6    Thread 0xb0a2c450 (LWP 7018) "t-engine" __libc_do_syscall ()
    at ../ports/sysdeps/unix/sysv/linux/arm/libc-do-syscall.S:43
  5    Thread 0xb12ff450 (LWP 7016) "SDLTimer" __libc_do_syscall ()
    at ../ports/sysdeps/unix/sysv/linux/arm/libc-do-syscall.S:43
  4    Thread 0xb1cff450 (LWP 7015) "t-engine" 0xb6cdfd8e in nanosleep ()
    at ../sysdeps/unix/syscall-template.S:81
  3    Thread 0xb6634450 (LWP 7014) "threaded-ml" 0xb6c5efc0 in poll () at
../sysdeps/unix/syscall-template.S:81
* 1    Thread 0xb693a000 (LWP 7009) "t-engine" 0x00224a54 in lj_mem_realloc ()

The former is only called on program exit:

Breakpoint 1, gcov_exit () at ../../../libgcc/libgcov-driver.c:877
877     {
(gdb) bt
#0  gcov_exit () at ../../../libgcc/libgcov-driver.c:877
#1  0xb6bfe6ce in __run_exit_handlers (status=0, listp=0xb6caf4b8
<__exit_funcs>, 
    run_list_atexit=run_list_atexit@entry=true) at exit.c:82
#2  0xb6bfe6f4 in __GI_exit (status=<optimized out>) at exit.c:104
#3  0xb6bec674 in __libc_start_main (main=0x37bf8 <main>, argc=2,
argv=0xbeffefa4, init=<optimized out>, 
    fini=0x3a6f8d <__libc_csu_fini>, rtld_fini=0xb6fea455 <_dl_fini>,
stack_end=0xbeffefa4) at libc-start.c:321
#4  0x0003a168 in _start ()

(gdb) info threads
  Id   Target Id         Frame 
  12   Thread 0xad1c9450 (LWP 7130) "profile" 0xb6cdfd8e in nanosleep () at
../sysdeps/unix/syscall-template.S:81
  11   Thread 0xae22c450 (LWP 7129) "particles" __libc_do_syscall ()
    at ../ports/sysdeps/unix/sysv/linux/arm/libc-do-syscall.S:43
  10   Thread 0xaea2c450 (LWP 7128) "particles" __libc_do_syscall ()
    at ../ports/sysdeps/unix/sysv/linux/arm/libc-do-syscall.S:43
  9    Thread 0xaf22c450 (LWP 7127) "particles" __libc_do_syscall ()
    at ../ports/sysdeps/unix/sysv/linux/arm/libc-do-syscall.S:43
  8    Thread 0xafa2c450 (LWP 7126) "save" __libc_do_syscall ()
    at ../ports/sysdeps/unix/sysv/linux/arm/libc-do-syscall.S:43
  7    Thread 0xb022c450 (LWP 7125) "t-engine" 0xb6c62e44 in ioctl () at
../sysdeps/unix/syscall-template.S:81
  6    Thread 0xb0a2c450 (LWP 7124) "t-engine" __libc_do_syscall ()
    at ../ports/sysdeps/unix/sysv/linux/arm/libc-do-syscall.S:43
  5    Thread 0xb12ff450 (LWP 7123) "SDLTimer" __libc_do_syscall ()
    at ../ports/sysdeps/unix/sysv/linux/arm/libc-do-syscall.S:43
  4    Thread 0xb1cff450 (LWP 7122) "t-engine" 0xb6cdfd8e in nanosleep ()
    at ../sysdeps/unix/syscall-template.S:81
  3    Thread 0xb6634450 (LWP 7121) "threaded-ml" 0xb6c5efc0 in poll () at
../sysdeps/unix/syscall-template.S:81
* 1    Thread 0xb693a000 (LWP 7116) "t-engine" gcov_exit () at
../../../libgcc/libgcov-driver.c:877
>From gcc-bugs-return-534231-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 15:01:59 2016
Return-Path: <gcc-bugs-return-534231-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 36055 invoked by alias); 11 Aug 2016 15:01:59 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 36035 invoked by uid 89); 11 Aug 2016 15:01:58 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_80,BODY_8BITS,GARBLED_BODY,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=number, CANADA, Care, uninstall
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 15:01:51 +0000
From: "kumar1245raju at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/74016] New: Kaspersky 1-844-443-4666  Antivirus technical support number for not updating antivirus
Date: Thu, 11 Aug 2016 15:01:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 4.6.3
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: kumar1245raju at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-74016-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01567.txt.bz2
Content-length: 39873

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74016

            Bug ID: 74016
           Summary: Kaspersky 1-844-443-4666  Antivirus technical support
                    number for not updating antivirus
           Product: gcc
           Version: 4.6.3
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: kumar1245raju at gmail dot com
  Target Milestone: ---

Describe(HJHJKHKasperskyAntivirus) $$Antivirus Problem$$1.844-443.4666
!Kaspersky  Antivirus Desk USa@ Kaspersky  Antivirus Tech Support Number USA
here.Describe $$Antivirus Problem$$!. 1-844-443-4666!Kaspersky  Antivirus Desk
USa@ Kaspersky  Antivirus Tech Support Number USA here.Kaspersky  Antivirus
customer service support phone number usa, here.jodjpm Kaspersky  Antivirus
technical support phone number,Kaspersky  Antivirus customer service support
phone number usa,googotys support at 1-844-443-4666 Kaspersky  Antivirus tech
support number Kaspersky  Antivirus helpdesk number

Best Service for 1-844-443-4666 Kaspersky  Antivirus  toll free technical
support helpline desk customer number

Describe Best Service for 1-844-443-4666 Kaspersky  Antivirus  toll free
technical support helpline desk customer number !!CALL..@ 1-844-443-4666 USA,
Kaspersky  Antivirus customer service number .(.)Kaspersky  Antivirus customer
service phone number

Kaspersky  Antivirus support number, australia, Kaspersky  Antivirus support
number for login problem, Kaspersky  Antivirus support number 24/7, Kaspersky 
Antivirus support number uk, Kaspersky  Antivirus support number in Canada,
Kaspersky  Antivirus support number south africa, Kaspersky  Antivirus support
contact number Canada, Kaspersky  Antivirus support phone number canada,
Kaspersky  Antivirus customer service support number, Kaspersky  Antivirus
support phone number ireland, Kaspersky  Antivirus support contact number
australia, Kaspersky  Antivirus customer service phone number australia,
Kaspersky  Antivirus customer service phone number australia, Kaspersky 
Antivirus  support number, Kaspersky  Antivirus customer service contact number
australia, Kaspersky  Antivirus  support phone number in Canada, Kaspersky 
Antivirus customer care number bangalore, Kaspersky  Antivirus helpline number
bangalore, Kaspersky  Antivirus business support phone number, Kaspersky 
Antivirus support number canada, Kaspersky  Antivirus customer care number
chennai, Kaspersky  Antivirus support contact number uk, Kaspersky  Antivirus
customer care number chandigarh, Kaspersky  Antivirus customer care contact
number Canada, Kaspersky  Antivirus customer support number Canada, Kaspersky 
Antivirus customer care number delhi, Kaspersky  Antivirus customer service
phone number delhi, Kaspersky  Antivirus Antivirus support number, Kaspersky 
Antivirus support number for customers, Kaspersky  Antivirus support number for
australia, Kaspersky  Antivirus customer care number for Canada, Kaspersky 
Antivirus customer care number toll free, Kaspersky  Antivirus support toll
free number, Kaspersky  Antivirus customer care number toll free in Canada,
Kaspersky  Antivirus support toll free number Canada, google Kaspersky 
Antivirus support number, Kaspersky  Antivirus customer care number hyderabad,
Kaspersky  Antivirus helpline number hyderabad, Kaspersky  Antivirus helpline
phone number hyderabad, Kaspersky  Antivirus help support number, Kaspersky 
Antivirus help support phone number, Kaspersky  Antivirus support number
ireland, Kaspersky  Antivirus support phone number Canada, Kaspersky  Antivirus
customer service number Canada, Kaspersky  Antivirus customer service phone
number Canada, Kaspersky  Antivirus it support number, Kaspersky  Antivirus
customer care number kolkata, Kaspersky  Antivirus live support number,
Kaspersky  Antivirus customer care number mumbai

Kaspersky  Antivirus customer service phone number 1-844-443-4666 USA,
Kaspersky  Antivirus customer service number 1-844-443-4666

Urgent Mailer Kaspersky  Antivirus customer service phone number 1-844-443-4666
USA, Kaspersky  Antivirus customer service number 1-844-443-4666 canada

Helpline Kaspersky  Antivirus - customer service phone number @1-844-443-4666@
USA, Kaspersky  Antivirus customer service number 1-844-443-4666 canada ,
Kaspersky  Antivirus @@1-844-443-4666 support phone number TALK: Kaspersky 
Antivirus customer service phone number @@ 1-844-443-4666 @@…USA/Canada ,
USA/CANADA...1-844-443-4666 Kaspersky  Antivirus customer service number
1-844-443-4666 .usa/canada…………. CALL USA (((1-844-443-4666))))= Kaspersky 
Antivirus customer service number 1-844-443-4666/ Kaspersky  Antivirus CUSTOMER
SUPPORT PHONE number 1-844-443-4666/ Kaspersky  Antivirus customer service
PHONE number 1-844-443-4666 Describe CALL USA 1-844-443-4666= Kaspersky 
Antivirus customer service number 1-844-443-4666/ Kaspersky  Antivirus CUSTOMER
SUPPORT PHONE number 1-844-443-4666/ Kaspersky  Antivirus customer service
PHONE number 1-844-443-4666
here.#############1-844-443-4666@@@@@@@@@@@@@@@@#########################

1-844-443-4666 Kaspersky Antivirus customer service number 1-844-443-4666:
Kaspersky  Antivirus is a free Antivirus service which is provided by Google.
Google provides many services to the people across the world and Kaspersky 
Antivirus is one among its services. The Kaspersky  Antivirus is launched in
2004 by Paul Buchheit. The Kaspersky  Antivirus is also an advertising
supported Antivirus service. 1-844-443-4666 Kaspersky  Antivirus customer
service Phone number 1-844-443-4666 | Kaspersky  Antivirus toll free number
1-844-443-4666 Kaspersky  Antivirus toll free number 1-844-443-4666
1-844-443-4666, Kaspersky  Antivirus customer service Phone number
1-844-443-4666, Kaspersky  Antivirus customer service number 1-844-443-4666,
Kaspersky  Antivirus customer service , Kaspersky  Antivirus customer service
number 1-844-443-4666 Kaspersky  Antivirus customer service Phone number
1-844-443-4666 1-844-443-4666toll free. If you wants to change your Netgear
Wifi Password on Windows or Mac than you are on right place. Call on our toll
free number 1-844-443-4666 and get all details any problem related to Netgear.
Here we will teach you that how to change Wifi passport or security key
password of netgear router on Windows or Mac. Step by Step process to change
/\/\/\/\/\/\/\/\/\/\12:08, 6 January 2016 (EST)12:08, 6 January 2016
(EST)~!!!!!!!!!!!!! Kaspersky  Antivirus Password: Step 1: firstly log in to
your Kaspersky  Antivirus 1-844-443-4666  and type in your username and
password. Step 2: Now click on the gear; this button looks like a small cog and
is located near the top right corner of PC screen. Step 3: Now select
"Settings." It will open up the Settings menu. Step 4: Select s and Import.
It's the fourth item from left of the top of the Settings tool bar. Step 5: You
need to type in your current password. Step 9: Type in a new password. As you
type it, you will see the strength of the password to the left of the new
password. Pick a new password with a high strength for own security. Step 7:
Now you can type in a new password. As you type
!!!@####$$%%&&*(()))(&&%%$#$##%%@#$%&%$# (!!)#$%&%$# (!)#$%it, you will see the
strength of the password to the left of the new password. Pick new password
with a high strength for your own security. Step 8: You need to confirm new
password. For asking any query regarding Kaspersky  Antivirus  simply dials our
toll free number 1-844-443-4666 (1-844-443-4666) and short out your problem.
Kaspersky  Antivirus customer service phone number 1-844-443-4666, Kaspersky 
Antivirus customer service number 1-844-443-4666 usa, Kaspersky  Antivirus
customer service phone canada, (1-844-443-4666) Kaspersky  Antivirus customer
service phone number 1-844-443-4666 canada, Kaspersky  Antivirus customer
service , Kaspersky  Antivirus customer service , Kaspersky  Antivirus customer
service phone number 1-844-443-4666, Kaspersky  Antivirus customer service
number 1-844-443-4666, (1-844-443-4666) Kaspersky  Antivirus customer service
phone, Kaspersky  Antivirus customer service number 1-844-443-4666 usa,
Kaspersky  Antivirus customer service phone number 1-844-443-4666 usa,
Kaspersky  Antivirus customer service canada, (1-844-443-4666) Kaspersky 
Antivirus customer support, Kaspersky  Antivirus customer service , avast
antivirus customer service phone number 1-844-443-4666, Kaspersky  Antivirus
customer service phone number 1-844-443-4666, (1-844-443-4666) Kaspersky 
Antivirus customer service number 1-844-443-4666, Kaspersky  Antivirus customer
service , Kaspersky  Antivirus customer support phone number 1-844-443-4666
Kaspersky  Antivirus customer service phone number 1-844-443-4666, Kaspersky 
Antivirus customer service phone number 1-844-443-4666, Kaspersky  Antivirus
customer service phone number 1-844-443-4666, Kaspersky  Antivirus phone number
1-844-443-4666, Kaspersky  Antivirus support number 1-844-443-4666, Kaspersky 
Antivirus helpline number 1-844-443-4666, Kaspersky  Antivirus tollfree number
1-844-443-4666, Kaspersky  Antivirus support phone number 1-844-443-4666,
Kaspersky  Antivirus customer service number 1-844-443-4666, (1-844-443-4666)
Kaspersky  Antivirus customer service number 1-844-443-4666, Kaspersky 
Antivirus customer service , Kaspersky  Antivirus password reset, Kaspersky 
Antivirus password reset phone number 1-844-443-4666, Kaspersky  Antivirus
password recovery phone number 1-844-443-4666, Kaspersky  Antivirus customer
service phone number 1-844-443-4666, Kaspersky  Antivirus contact number
1-844-443-4666, Kaspersky  Antivirus phone number 1-844-443-4666, Kaspersky 
Antivirus support number 1-844-443-4666, Kaspersky  Antivirus helpline number
1-844-443-4666, Kaspersky  Antivirus tollfree number 1-844-443-4666, Kaspersky 
Antivirus support phone number 1-844-443-4666, Kaspersky  Antivirus password
recovery phone number 1-844-443-4666, Kaspersky  Antivirus customer service
phone number 1-844-443-4666, Kaspersky  Antivirus customer service number
1-844-443-4666, Kaspersky  Antivirus customer service number 1-844-443-4666
usa, Kaspersky  Antivirus customer service , Kaspersky  Antivirus password
reset, Kaspersky  Antivirus contact number 1-844-443-4666, (1-844-443-4666)
Kaspersky  Antivirus customer service number 1-844-443-4666 canada Kaspersky 
Antivirus customer service phone number 1-844-443-4666, Kaspersky  Antivirus
customer service , Kaspersky  Antivirus customer support number 1-844-443-4666,
Kaspersky  Antivirus customer service number 1-844-443-4666, Kaspersky 
Antivirus customer service number 1-844-443-4666, Kaspersky  Antivirus password
reset number 1-844-443-4666, Kaspersky  Antivirus password recovery number
1-844-443-4666, Kaspersky  Antivirus customer service phone number
1-844-443-4666, Kaspersky  Antivirus customer service phone number
1-844-443-4666, (1-844-443-4666) Kaspersky  Antivirus customer service phone
number 1-844-443-4666, Kaspersky  Antivirus password reset phone number
1-844-443-4666, Kaspersky  Antivirus customer service phone number
1-844-443-4666, Kaspersky  Antivirus customer service , Kaspersky  Antivirus
customer service phone number 1-844-443-4666, Kaspersky  Antivirus customer
service number 1-844-443-4666, Kaspersky  Antivirus customer service number
1-844-443-4666 usa, Kaspersky  Antivirus customer service number 1-844-443-4666
canada, Kaspersky  Antivirus customer service number 1-844-443-4666, Kaspersky 
Antivirus customer service number 1-844-443-4666, Kaspersky  Antivirus customer
support number 1-844-443-4666, Kaspersky  Antivirus customer service number
1-844-443-4666, Kaspersky  Antivirus customer service number 1-844-443-4666,
Kaspersky  Antivirus password reset number 1-844-443-4666, Kaspersky  Antivirus
password recovery number 1-844-443-4666, Kaspersky  Antivirus customer service
phone number 1-844-443-4666 usa, Kaspersky  Antivirus customer service phone
number 1-844-443-4666, Kaspersky  Antivirus customer service number
1-844-443-4666 usa, Kaspersky  Antivirus customer service phone canada,
Kaspersky  Antivirus customer service phone number 1-844-443-4666 canada,
Kaspersky  Antivirus customer service , (1-844-443-4666) Kaspersky  Antivirus
customer service , Kaspersky  Antivirus customer service phone, Kaspersky 
Antivirus customer service number 1-844-443-4666 usa, Kaspersky  Antivirus
customer service phone number 1-844-443-4666 usa, Kaspersky  Antivirus customer
service canada, Kaspersky  Antivirus customer support Kaspersky  Antivirus
customer service phone number 1-844-443-4666 Kaspersky  Antivirus customer
service google customer service google customer service phone number
1-844-443-4666 google customer support phone number 1-844-443-4666 Kaspersky 
Antivirus customer service chat Kaspersky  Antivirus support phone number
1-844-443-4666 Kaspersky  Antivirus support number 1-844-443-4666

Kaspersky  Antivirus Toll Free, @((1-844-443-4666))@-: Kaspersky  Antivirus
customer service Number, Kaspersky  Antivirus help desk phone number vides
online solution for all USA/CANADA clients. For any help of query call
1-844-443-4666 to get all Kaspersky  Antivirus  solution.

For any help of query call 1-844-443-4666 to get all Kaspersky  Antivirus 
solution.

@@Call, 1'844=443-4666 for all type help by Kaspersky  Antivirus support
telephone number,Kaspersky  Antivirus support phone number,Kaspersky  Antivirus
support phone number,Kaspersky  Antivirus help phone number, Kaspersky 
Antivirus customer service number.Kaspersky  Antivirus support number,
Kaspersky  Antivirus phone number, Kaspersky  Antivirus customer service
number, Kaspersky  Antivirus customer support number, Kaspersky  Antivirus
customer support phone number, Kaspersky  Antivirus customer service phone
number, Kaspersky  Antivirus payroll customer service phone number, Kaspersky 
Antivirus support phone number

Kaspersky  Antivirus help number-Kaspersky  Antivirus Helpline Number;
Kaspersky  Antivirus help phone number-Kaspersky  Antivirus Helpline Number,
Kaspersky  Antivirus customer service Toll free Number, Kaspersky  Antivirus
Support Telephone Number, Kaspersky  Antivirus customer service Telephone
number, Kaspersky  Antivirus customer service contact number, Kaspersky 
Antivirus support contact number, Kaspersky  Antivirus customer service contact
number, Kaspersky  Antivirus help desk phone number.Kaspersky  Antivirus
password recovery support phone number.

Call, @(1-844-443-4666)@-: Kaspersky  Antivirus password recovery support phone
number.

It is very popular toll free number which vide by Kaspersky  Antivirus customer
service , Kaspersky  Antivirus customer service Phone Number, Kaspersky 
Antivirus customer service Number, Kaspersky  Antivirus Customer Support Phone
Number, Kaspersky  Antivirus Customer Support Number, Kaspersky  Antivirus
customer service Helpline Number, Kaspersky  Antivirus Customer Care Number,
Kaspersky  Antivirus support team phone number. Kaspersky  Antivirus password
recovery support phone number.

Call,@(1-844-443-4666)@-: Kaspersky  Antivirus help number-Kaspersky  Antivirus
Helpline Number; Kaspersky  Antivirus help phone number, Kaspersky  Antivirus
Helpline Number, Kaspersky  Antivirus customer service Toll free Number,
Kaspersky  Antivirus Support Telephone Number, Kaspersky  Antivirus customer
service Telephone number, Kaspersky  Antivirus customer service contact number,
Kaspersky  Antivirus support contact number, Kaspersky  Antivirus customer
service contact number, Kaspersky  Antivirus support phone number, Kaspersky 
Antivirus payroll support phone number. Kaspersky  Antivirus payroll customer
support phone number.. Kaspersky  Antivirus password reset support phone
number.

for all type help by Kaspersky  Antivirus support telephone number, Kaspersky 
Antivirus help phone number, Kaspersky  Antivirus customer service
number.Kaspersky  Antivirus support number, Kaspersky  Antivirus phone number,
Kaspersky  Antivirus customer service number, Kaspersky  Antivirus customer
support number, Kaspersky  Antivirus customer support phone number, Kaspersky 
Antivirus customer service phone number, Kaspersky  Antivirus payroll customer
service phone number

Kaspersky  Antivirus Toll Free, @(1-844-443-4666)@-: Kaspersky  Antivirus
customer service Number, Kaspersky  Antivirus help desk phone number vides
online solution for all USA/CANADA clients. For any help of query call
1-844-443-4666 to get all Kaspersky  Antivirus  solution.

For any help of query call 1-844-443-4666 to get all Kaspersky  Antivirus 
solution.

@@Call, 1-844-443-4666 for all type help by Kaspersky  Antivirus support
telephone number,Kaspersky  Antivirus support phone number,Kaspersky  Antivirus
support phone number,Kaspersky  Antivirus help phone number, Kaspersky 
Antivirus customer service number.Kaspersky  Antivirus support number,
Kaspersky  Antivirus phone number, Kaspersky  Antivirus customer service
number, Kaspersky  Antivirus customer support number, Kaspersky  Antivirus
customer support phone number, Kaspersky  Antivirus customer service phone
number, Kaspersky  Antivirus payroll customer service phone number, Kaspersky 
Antivirus support phone number

Kaspersky  Antivirus help number-Kaspersky  Antivirus Helpline Number;
Kaspersky  Antivirus help phone number-Kaspersky  Antivirus Helpline Number,
Kaspersky  Antivirus customer service Toll free Number, Kaspersky 
Antivirus1-844-443-4666, Kaspersky  Antivirus customer service number
1-844-443-4666, Kaspersky  Antivirus customer service number 1-844-443-4666,
Kaspersky  Antivirus password reset number 1-844-443-4666  Support Telephone
Number, Kaspersky  Antivirus customer service Telephone number, Kaspersky 
Antivirus customer service contact number, Kaspersky  Antivirus support contact
number, Kaspersky  Antivirus customer service contact number, Kaspersky 
Antivirus help desk phone number.Kaspersky  Antivirus password recovery support
phone number.

Call, @(1-844-443-4666)@-: Kaspersky  Antivirus password recovery support phone
number.

It is very popular toll free number which vide by Kaspersky  Antivirus customer
service , Kaspersky  Antivirus customer service Phone Number, Kaspersky 
Antivirus customer service Number, Kaspersky  Antivirus Customer Support Phone
Number, Kaspersky  Antivirus Customer Support Number, Kaspersky  Antivirus
customer service Helpline Number, Kaspersky  Antivirus Customer Care Number,
Kaspersky  Antivirus support team phone number. Kaspersky  Antivirus password
recovery support phone number.

Call,@(1-844-443-4666)@-: Kaspersky  Antivirus help number-Kaspersky  Antivirus
Helpline Number; Kaspersky  Antivirus help phone number, Kaspersky  Antivirus
Helpline Number, Kaspersky  Antivirus customer service Toll free Number,
Kaspersky  Antivirus Support Telephone Number, Kaspersky  Antivirus customer
service Telephone number, Kaspersky  Antivirus customer service contact number,
Kaspersky  Antivirus support contact number, Kaspersky  Antivirus customer
service contact number, Kaspersky  Antivirus support phone number, Kaspersky 
Antivirus payroll support phone number. Kaspersky  Antivirus payroll customer
support phone number.. Kaspersky  Antivirus password reset support phone
number.

for all type help by Kaspersky  Antivirus support telephone number, Kaspersky 
Antivirus help phone number, Kaspersky  Antivirus customer service
number.Kaspersky  Antivirus support number, Kaspersky  Antivirus phone number,
Kaspersky  Antivirus customer service number, Kaspersky  Antivirus customer
support number, Kaspersky  Antivirus customer support phone number, Kaspersky 
Antivirus customer service phone number, Kaspersky  Antivirus payroll customer
service phone number

Kaspersky  Antivirus Toll Free, @(1-844-443-4666)@-: Kaspersky  Antivirus
customer service Number, Kaspersky  Antivirus help desk phone number vides
online solution for all USA/CANADA clients. For any help of query call
1-844-443-4666 to get all Kaspersky  Antivirus  solution.

For any help of query call 1-844-443-4666 to get all Kaspersky  Antivirus 
solution.

@@Call, 1-844-443-4666 for all type help by Kaspersky  Antivirus support
telephone number,Kaspersky  Antivirus support phone number,Kaspersky  Antivirus
support phone number,Kaspersky  Antivirus help phone number, Kaspersky 
Antivirus customer service number.Kaspersky  Antivirus support number,
Kaspersky  Antivirus phone number, Kaspersky  Antivirus customer service
number, Kaspersky  Antivirus customer support number, Kaspersky  Antivirus
customer support phone number, Kaspersky  Antivirus customer service phone
number, Kaspersky  Antivirus payroll customer service phone number, Kaspersky 
Antivirus support phone number

Kaspersky  Antivirus help number-Kaspersky  Antivirus Helpline Number;
Kaspersky  Antivirus help phone number-Kaspersky  Antivirus Helpline Number,
Kaspersky  Antivirus customer service Toll free Number, Kaspersky  Antivirus
Support Telephone Number, Kaspersky  Antivirus customer service Telephone
number, Kaspersky  Antivirus customer service contact number, Kaspersky 
Antivirus support contact number, Kaspersky  Antivirus customer service contact
number, Kaspersky  Antivirus help desk phone number.Kaspersky  Antivirus
password recovery support phone number.

Call, @(1-844-443-4666)@-: Kaspersky  Antivirus password recovery support phone
number.

It is very popular toll free number which vide by Kaspersky  Antivirus customer
service , Kaspersky  Antivirus customer service Phone Number, Kaspersky 
Antivirus customer service Number, Kaspersky  Antivirus Customer Support Phone
Number, Kaspersky  Antivirus Customer Support Number, Kaspersky  Antivirus
customer service Helpline Number, Kaspersky  Antivirus Customer Care Number,
Kaspersky  Antivirus support team phone number. Kaspersky  Antivirus password
recovery support phone number.

Call,@(1-844-443-4666)@-: Kaspersky  Antivirus help number-Kaspersky  Antivirus
Helpline Number; Kaspersky  Antivirus help phone number, Kaspersky  Antivirus
Helpline Number, Kaspersky  Antivirus customer service Toll free Number,
Kaspersky  Antivirus Support Telephone Number, Kaspersky  Antivirus customer
service Telephone number, Kaspersky  Antivirus customer service contact number,
Kaspersky  Antivirus support contact number, Kaspersky  Antivirus customer
service contact number, Kaspersky  Antivirus support phone number, Kaspersky 
Antivirus payroll support phone number. Kaspersky  Antivirus payroll customer
support phone number.. Kaspersky  Antivirus password reset support phone
number.

for all type help by Kaspersky  Antivirus support telephone number, Kaspersky 
Antivirus help phone number, Kaspersky  Antivirus customer service
number.Kaspersky  Antivirus support number, Kaspersky  Antivirus phone number,
Kaspersky  Antivirus customer service number, Kaspersky  Antivirus customer
support number, Kaspersky  Antivirus customer support phone number, Kaspersky 
Antivirus customer service phone number, Kaspersky  Antivirus payroll customer
service phone number

Kaspersky  Antivirus Toll Free, @(1-844-443-4666)@-: Kaspersky  Antivirus
customer service Number, Kaspersky  Antivirus help desk phone number vides
online solution for all USA/CANADA clients. For any help of query call
1-844-443-4666 to get all Kaspersky  Antivirus  solution.

For any help of query call 1-844-443-4666 to get all Kaspersky  Antivirus 
solution.

@@Call, 1-844-443-4666 for all type help by Kaspersky  Antivirus support
telephone number,Kaspersky  Antivirus support phone number,Kaspersky  Antivirus
support phone number,Kaspersky  Antivirus help phone number, Kaspersky 
Antivirus customer service number.Kaspersky  Antivirus support number,
Kaspersky  Antivirus phone number, Kaspersky  Antivirus customer service
number, Kaspersky  Antivirus customer support number, Kaspersky  Antivirus
customer support phone number, Kaspersky  Antivirus customer service phone
number, Kaspersky  Antivirus payroll customer service phone number, Kaspersky 
Antivirus support phone number

Kaspersky  Antivirus help number-Kaspersky  Antivirus Helpline Number;
Kaspersky  Antivirus help phone number-Kaspersky  Antivirus Helpline Number,
Kaspersky  Antivirus customer service Toll free Number, Kaspersky  Antivirus
Support Telephone Number, Kaspersky  Antivirus customer service Telephone
number, Kaspersky  Antivirus customer service contact number, Kaspersky 
Antivirus support contact number, Kaspersky  Antivirus customer service contact
number, Kaspersky  Antivirus help desk phone number.Kaspersky  Antivirus
password recovery support phone number.

Call, @(1-844-443-4666)@-: Kaspersky  Antivirus password recovery support phone
number.

It is very popular toll free number which vide by Kaspersky  Antivirus customer
service , Kaspersky  Antivirus customer service Phone Number, Kaspersky 
Antivirus customer service Number, Kaspersky  Antivirus Customer Support Phone
Number, Kaspersky  Antivirus Customer Support Number, Kaspersky  Antivirus
customer service Helpline Number, Kaspersky  Antivirus Customer Care Number,
Kaspersky  Antivirus support team phone number. Kaspersky  Antivirus password
recovery support phone number.

Call,@(1-844-443-4666)@-: Kaspersky  Antivirus help number-Kaspersky  Antivirus
Helpline Number; Kaspersky  Antivirus help phone number, Kaspersky  Antivirus
Helpline Number, Kaspersky  Antivirus ":":1-844-443-4666"
customer service Toll free Number, Kaspersky  Antivirus Support Telephone
Number, Kaspersky  Antivirus customer service Telephone number, Kaspersky 
Antivirus customer service contact number, Kaspersky  Antivirus support contact
number, Kaspersky  Antivirus customer service contact number, Kaspersky 
Antivirus support phone number, Kaspersky  Antivirus payroll support phone
number. Kaspersky  Antivirus payroll customer support phone number.. Kaspersky 
Antivirus password reset support phone number.

for all type help by Kaspersky  Antivirus support telephone number, Kaspersky 
Antivirus help phone number, Kaspersky  Antivirus customer service
number.Kaspersky  Antivirus support number, Kaspersky  Antivirus phone number,
Kaspersky  Antivirus customer service number, Kaspersky  Antivirus customer
support number, Kaspersky  Antivirus customer support phone number, Kaspersky 
Antivirus customer service phone number, Kaspersky  Antivirus payroll customer
service phone number

Kaspersky  Antivirus Toll Free, @(1-844-443-4666)@-: Kaspersky  Antivirus
customer service Number, Kaspersky  Antivirus help desk phone number vides
online solution for all USA/CANADA clients. For any help of query call
1-844-443-4666 to get all Kaspersky  Antivirus  solution.

For any help of query call 1-844-443-4666 to get all Kaspersky  Antivirus 
solution.

@@Call, 1-844-443-4666 for all type help by Kaspersky  Antivirus support
telephone 1-844-443-4666 number,Kaspersky  Antivirus support phone
number,Kaspersky  Antivirus support phone number,Kaspersky  Antivirus help
phone number, Kaspersky  Antivirus customer service number.Kaspersky  Antivirus
support number, Kaspersky  Antivirus phone number, Kaspersky  Antivirus
customer service number, Kaspersky  Antivirus customer support number,
Kaspersky  Antivirus customer support phone number, Kaspersky  Antivirus
customer service phone number, Kaspersky  Antivirus payroll customer service
phone number, Kaspersky  Antivirus support phone number

Kaspersky  Antivirus help number-Kaspersky  Antivirus Helpline Number;
Kaspersky  Antivirus help phone number-Kaspersky  Antivirus Helpline Number,
Kaspersky  Antivirus customer service Toll free Number, Kaspersky  Antivirus
Support Telephone Number, Kaspersky  Antivirus customer service Telephone
number, Kaspersky  Antivirus customer service contact number, Kaspersky 
Antivirus support contact number, Kaspersky  Antivirus customer service contact
number, Kaspersky  Antivirus help desk phone number.Kaspersky  Antivirus
password recovery support phone number.

Call, @(1-844-443-4666)@-: Kaspersky  Antivirus password recovery support phone
number.

It is very popular toll free number which vide by Kaspersky  Antivirus customer
service , Kaspersky  Antivirus customer service Phone Number, Kaspersky 
Antivirus customer service Number, Kaspersky  Antivirus Customer Support Phone
Number, Kaspersky  Antivirus Customer Support Number, Kaspersky  Antivirus
customer service Helpline Number, Kaspersky  Antivirus Customer Care Number,
Kaspersky  Antivirus support team phone number. Kaspersky  Antivirus password
recovery support phone number.

Call,@(1-844-443-4666)@-: Kaspersky  Antivirus help number-Kaspersky  Antivirus
Helpline Number; Kaspersky  Antivirus help phone number, Kaspersky  Antivirus
Helpline Number, Kaspersky  Antivirus customer service Toll free Number,
Kaspersky  Antivirus Support Telephone Number, Kaspersky  Antivirus customer
service Telephone number, Kaspersky  Antivirus customer service contact number,
Kaspersky  Antivirus support contact number, Kaspersky  Antivirus customer
service contact number, Kaspersky  Antivirus support phone number, Kaspersky 
Antivirus payroll support phone number. Kaspersky  Antivirus payroll customer
support phone number.. Kaspersky  Antivirus password reset support phone
number.

for all type help by Kaspersky  Antivirus support telephone number, Kaspersky 
Antivirus help phone number, Kaspersky  Antivirus customer service
number.Kaspersky  Antivirus support number, Kaspersky  Antivirus phone number,
Kaspersky  Antivirus customer service number, Kaspersky  Antivirus customer
support number, Kaspersky  Antivirus customer support phone number, Kaspersky 
Antivirus customer service phone number, Kaspersky  Antivirus payroll customer
service phone number (((++1-844-443-4666++)))Kaspersky  Antivirus help center
phone number

(((++1-844-443-4666++)))Kaspersky Antivirus help center phone number

(((++1-844-443-4666++)))Kaspersky Antivirus help center phone number

Kaspersky  Antivirus Customer Service 1-844-443-4666 Kaspersky  Antivirus
CUSTOMER CARE number 1-844-443-4666 Kaspersky  
Antivirus tech support

number USA Canada

Kaspersky Antivirus Scan Stopped Working before reaching 100 percent scan?
to Keep your Computer data safe, its necessary to scan your computer at least
in a week, So if you have Kaspersky in your
 computer but 
while you are going to do scan you found nothing happen then it better to you
uninstall Kaspersky and re install once again 
and update your subscription, but again you are getting problem like Kaspersky
not responding or got stuck before reaching 100 percent complete scan, then you
can consult with Kaspersky antivirus customer service experts online on above
number, Kaspersky technical support experts analysis your problem and after few
minutes you will get exact solution for that Kaspersky issues, so call skilled
and professionals Kaspersky technical support experts 24/7 and keep your
computer data safe and secure by malware

Customer service 1-844-443-4666  Antivirus TECHNICAL support number
1-844-443-4666 Kaspersky  Antivirus tech support number

USA Canada Kaspersky Antivirus PRO TECHNICAL support number ))1-844-443-4666((
Kaspersky  Antivirus customer support phone number 1-844-443-4666

USA Canada @(1-844-443-4666)Kaspersky  Antivirus Tech Support Phone Number
provides online solution for all USA/CANADA clients. For any help of query call
1-844-443-4666 to get all Kaspersky  Antivirus  solution. @@Call,
1-844-443-4666 for all type help by Kaspersky  Antivirus tech support phone
number, Intuit Kaspersky  Antivirus Tech Support Phone Number, Kaspersky 
Antivirus Help Desk Phone Number, Kaspersky  Antivirus tech support number,
Kaspersky  Antivirus technical support phone number,@@@ Kaspersky  Antivirus
phone number, Kaspersky  Antivirus technical support number, Kaspersky 
Antivirus support phone number, Kaspersky  Antivirus technical support,
Kaspersky  Antivirus Customer Service Phone Number, Kaspersky  Antivirus
Customer Service Number, Kaspersky  Antivirus Customer Support Phone Number,
Kaspersky  Antivirus Customer Support Number,@@@@ Kaspersky  Antivirus Customer
Service Helpline Number, Kaspersky  Antivirus Customer Care Number, Kaspersky 
Antivirus support team phone number, @@@@@ Kaspersky  Antivirus help
number-Kaspersky  Antivirus Helpline Number; Kaspersky  Antivirus help phone
number-Kaspersky  Antivirus Helpline Number, Kaspersky  Antivirus Tech Support
Toll free Number,  1-844-443-4666 Kaspersky  Antivirus Support Telephone
Number, Kaspersky  Antivirus Tech Support Telephone number, Kaspersky 
Antivirus Tech Support contact number, Kaspersky  Antivirus support contact
number, Kaspersky  Antivirus technical support contact number. Call, Kaspersky 
Antivirus tech support phone number, Intuit Kaspersky  Antivirus Tech Support
Phone Number, Kaspersky  Antivirus Help Desk Phone Number, Kaspersky  Antivirus
tech support number, Kaspersky  Antivirus technical support phone number,
Kaspersky  Antivirus phone number, Kaspersky  Antivirus technical support
number, Kaspersky  Antivirus support phone number. It is very popular toll free
number which provide by Kaspersky  1-844-443-4666 Antivirus technical support,
Kaspersky  Antivirus Customer Service Phone Number, Kaspersky  Antivirus
Customer Service Number, Kaspersky  Antivirus Customer Support Phone Number,
Kaspersky  Antivirus Customer Support Number, Kaspersky  Antivirus Customer
Service Helpline Number, Kaspersky  Antivirus Customer Care Number, Kaspersky 
Antivirus support team phone number. Call, Kaspersky  Antivirus tech support
phone number, Intuit Kaspersky  Antivirus Tech Support Phone Number, Kaspersky 
Antivirus Help Desk Phone Number, Kaspersky  Antivirus tech support number,
Kaspersky  Antivirus technical support phone number, Kaspersky  Antivirus phone
number, Kaspersky  Antivirus technical support number, Kaspersky  Antivirus
support phone number, Kaspersky  Antivirus technical support, Kaspersky 
Antivirus Customer Service Phone Number, Kaspersky  Antivirus Customer Service
Number, Kaspersky  Antivirus Customer Support Phone Number, Kaspersky 
Antivirus Customer Support Number, Kaspersky  Antivirus Customer Service
Helpline Number, Kaspersky  Antivirus Customer Care Number, Kaspersky 
Antivirus support team phone number, Kaspersky  Antivirus help number-
Kaspersky  Antivirus Helpline Number; Kaspersky  Antivirus help phone number,
Kaspersky  Antivirus Helpline Number, Kaspersky  Antivirus Tech Support Toll
free Number, Kaspersky  Antivirus Support Telephone Number, Kaspersky 
Antivirus Tech Support Telephone number, Kaspersky  Antivirus Tech Support
contact number, Kaspersky  Antivirus support contact number, Kaspersky 
Antivirus technical support contact number, Kaspersky  Antivirus pro support
phone number, Kaspersky  Antivirus payroll support phone number. Kaspersky 
1-844-443-4666 Antivirus payroll customer support phone number Kaspersky 
Antivirus Support Helpline Number, Kaspersky  Antivirus contact number
Kaspersky  Antivirus tech support phone number Kaspersky  Antivirus support
team phone number Intuit@(1-844-443-4666)Kaspersky  Antivirus Tech Support
Phone Number provides online solution for all USA/CANADA clients. For any help
of query call 1-844-443-4666 to get all Kaspersky  Antivirus  solution. @@Call,
1-844-443-4666 for all type help by Kaspersky  Antivirus tech support phone
number, Intuit Kaspersky  Antivirus Tech Support Phone Number, Kaspersky 
Antivirus Help Desk Phone Number, Kaspersky  Antivirus tech support number,
Kaspersky  Antivirus technical support phone number,@@@ Kaspersky  Antivirus
phone number, Kaspersky  Antivirus technical support number, Kaspersky 
Antivirus support phone number, Kaspersky  Antivirus technical support,
Kaspersky  Antivirus Customer Service Phone Number, Kaspersky  Antivirus
Customer Service Number, Kaspersky  Antivirus Customer Support Phone Number,
Kaspersky  Antivirus Customer Support Number,@@@@ Kaspersky  Antivirus Customer
Service Helpline Number, Kaspersky  Antivirus Customer Care Number, Kaspersky 
Antivirus support team phone number, @@@@@ Kaspersky  Antivirus help
number-Kaspersky  Antivirus Helpline Number; Kaspersky  Antivirus help phone
number-Kaspersky  Antivirus Helpline Number, Kaspersky  Antivirus Tech Support
Toll free Number, Kaspersky  Antivirus Support Telephone Number, Kaspersky 
Antivirus Tech Support Telephone number, Kaspersky  Antivirus Tech Support
contact number, Kaspersky  Antivirus support contact number, Kaspersky 
Antivirus technical support contact number. Call, Kaspersky  Antivirus tech
support phone number, Intuit Kaspersky  Antivirus Tech Support Phone Number,
1-844-443-4666 Kaspersky  Antivirus Help Desk Phone Number, Kaspersky 
Antivirus tech support number, Kaspersky  Antivirus technical support phone
number, Kaspersky  1-844-443-4666 Antivirus phone number, Kaspersky  Antivirus
technical support number, Kaspersky  Antivirus support phone number. It is very
popular toll free number which provide by Kaspersky  Antivirus technical
support, Kaspersky  Antivirus Customer Service Phone Number, Kaspersky 
Antivirus Customer Service Number, Kaspersky  Antivirus Customer Support Phone
Number, Kaspersky  Antivirus Customer Support Number, Kaspersky  Antivirus
Customer Service Helpline  1-844-443-4666 Number, Kaspersky  Antivirus Customer
Care Number, Avir 1-844-443-4666a  Antivirus support team phone number. Call,
Kaspersky  Antivirus tech support phone number, Intuit Kaspersky  Antivirus
Tech Support Phone Number, Kaspersky  Antivirus Help Desk Phone Number,
Kaspersky  Antivirus tech support number, Kaspersky  Antivirus technical
support phone number, Kaspersky  Antivirus phone number, Kaspersky
1-844-443-4666  Antivirus technical support number, Kaspersky  Antivirus
support phone number, Kaspersky  Antivirus technical support, Kaspersky 
Antivirus Customer Service Phone Number, Kaspersky  Antivirus Customer Service
Number, Kaspersky  Antivirus Customer Support Phone Number, Kaspersky 
Antivirus Customer Support Number, Kaspersky  Antivirus Customer Service
Helpline Number, Kaspersky  Antivirus Customer Care Number, Kaspersky 
Antivirus support team phone number, Kaspersky  Antivirus help number-
Kaspersky  Antivirus Helpline Number; Kaspersky  Antivirus help phone number,
Kaspersky  Antivirus Helpline Number, Kaspersky  Antivirus Tech Support Toll
free Number, Kaspersky  Antivirus Support Telephone Number, Kaspersky 
Antivirus Tech Support Telephone number, Kaspersky  Antivirus Tech Support
contact number, Kaspersky  Antivirus support co 1-844-443-4666ntact number,
Kaspersky  Antivirus technical support contact number, Kaspersky  Antivirus pro
support phone number, Kaspersky  Antivirus payroll support phone number.
Kaspersky  Antivirus payroll customer support phone number Kaspersky  Antivirus
Support Helpline Number, Kaspersky  Antivirus contact number Kaspersky 
Antivirus tech support phone number Kaspersky  Antivirus support team phone
number Customer service 1-844-443-4666 Kaspersky  Antivirus TECHNICAL support
number 1-844-443-4666 Kaspersky  Antivirus tech support number USA Canada
1-844-443-4666.
>From gcc-bugs-return-534230-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 15:01:10 2016
Return-Path: <gcc-bugs-return-534230-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 33470 invoked by alias); 11 Aug 2016 15:01:09 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 33454 invoked by uid 89); 11 Aug 2016 15:01:09 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=3.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=number, CANADA, 1800, aus
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 15:01:05 +0000
From: "Wartn1956 at einrot dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/74012] New: C.a.n.o.n P.r.i.n.t.e.r S.u.p.p.o.r.t 1.8.0.0.790.9.1.8.6 P.h.o.n.e N.u.m.b.e.r U.S.A.pdf File File history File usage
Date: Thu, 11 Aug 2016 15:01:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: lno
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: Wartn1956 at einrot dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-74012-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01566.txt.bz2
Content-length: 9389

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74012

            Bug ID: 74012
           Summary: C.a.n.o.n P.r.i.n.t.e.r S.u.p.p.o.r.t
                    1.8.0.0.790.9.1.8.6 P.h.o.n.e N.u.m.b.e.r U.S.A.pdf
                    File File history File usage
           Product: gcc
           Version: lno
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: Wartn1956 at einrot dot com
  Target Milestone: ---

Created attachment 39218
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39218&action=edit
!CANADA+++++-----GGGGGYDasbnd Canon printer customer suppOrt number usaasdaa
UCanaDa..@1800-790-9186(USA), 800-810-1018(UK), 1800-059-007(AUS)@Canon
telephone support@))))!@ $$@$$$ Canon computer supp

!CANADA+++++-----GGGGGYDasbnd Canon printer customer suppOrt number usaasdaa
UCanaDa..@1800-790-9186(USA), 800-810-1018(UK), 1800-059-007(AUS)@Canon
telephone support@))))!@ $$@$$$ Canon computer support number
+@$$$@$$$@$@))))!@1800-790-9186(USA), 1800-790-9186(UK), 1800-790-9186(AUS)@USA
CALL Canon Printer Tech Support Phone Number, Canon Printer Customer service
number... +@$$$@$$$@$@))@1-800-790-9186@USA CALL Canon Printer Tech Support
Phone Number, Canon Printer Customer service number..
++@@@helpline@@USA_CALL_1-800-790-9186_Canon_PRINTER_TECHNICAL_SUPPORT_PHONE_NUMBER,CUSTOMER_SERVICE_NUMBER_USA
? $CALL %%USA((1-800-790-9186))_!!Canon Printer tech Support Number
@1-800-790-9186@ Canon Printer Tech Support Phone Number Call wireless
1-800-790-9186 1-800-790-9186 Canon Tech Support Phone Number Canada Canon
printer customer service number1-800-790-9186 Canon support number, Canon
support, Canon printer support, Canon tech support, Canon technical support,
Canon customer service number, Canon customer service, Canon tech support
number, ##Canon support center##, Canon printer support number, hewlett packard
support, Canon contact number, Canon phone number, Canon help and support,
Canon customer support, Canon printer help, Canon technical support number,
Canon support phone number, hewlett packard customer service, Canon printers
support, Canon customer service phone number, Canon number, Canon customer
care, Canon contact, Canon tech support phone number, Canon support chat, Canon
customer support number, Canon customer care number, contact Canon support,
Canon help, Canon phone, Canon printer support phone number, Canon customer
support phone number, Canon printer tech support, Canon phone support, Canon
technical support phone number, Canon laptop support number, hewlett packard
printer support, Canon helpline, Canon telephone support, Canon online support,
Canon support contact, Canon chat support, hewlett packard phone number, Canon
printer customer service, Canon printer tech support number, Canon product
support, hewlett packard customer service phone number, Canon computer support
number, Canon support contact number, Canon support printer, Canon computer
support, Canon tech support chat, Canon helpline number, Canon laptop support,
hewlett packard tech support, Canon online chat, hewlett packard technical
support, Canon printer help line, phone number for Canon support, hewlett
packard support phone number, Canon printer technical support, hewlett packard
customer service number, Canon service number, hewlett packard helpline, Canon
customer care no, Canon printer customer service number, Canon help number,
Canon printer customer service phone number, Canon 1800 number, Canon support
phone, Canon support line, hewlett packard contact number, Canon printer tech
support phone number, Canon printer customer support phone number, Canon
printers help, call Canon support, ##Canon printer support## chat, hewlett
packard support number, hewlett packard tech support number, Canon support
telephone number, hewlett packard tech support phone number, call Canon, Canon
contact support, hewlett packard technical support phone number, Canon support
centre, hewlett packard customer support, Canon desktop support, Canon laptop
customer service, contact Canon printer support, Canon pc support, Canon laptop
customer care number, Canon support for printers, Canon printer customer care,
Canon customer care phone number, hewlett packard help, phone number for Canon,
Canon online help, Canon laptop customer care, Canon helpline phone number,
Canon printer customer support, Canon technical support chat, Canon computer
help, Canon support numbers, Canon technical support contact number, Canon
telephone number, Canon printer technical support phone number, Canon printer
helpline, Canon support printers, Canon support online, Canon printer contact
number, Canon help phone number, Canon printer customer care number, contact
hewlett packard by phone, Canon printer phone support, hewlett packard printers
support, Canon tech support phone, Canon technical help, Canon laptop tech
support number, contact Canon by phone, Canon support call, Canon computers
support, hewlett packard customer service telephone number, phone number for
hewlett packard, Canon online support chat, Canon laptop customer service
number, Canon online chat support, Canon printers customer service, hewlett
packard customer service phone, Canon laptop tech support, Canon service phone
number, hewlett packard printer help, phone number for Canon printers, Canon
troubleshooting phone number, Canon 800 number, hewlett packard technical
support number, contact Canon support phone, phone number for Canon printer
support, Canon customer support chat, Canon help and support number, contact
hewlett packard, Canon laptop support phone number, Canon printers customer
service phone number, Canon laptop customer service phone number, Canon
computer support phone number, Canon pavilion support, Canon computer customer
service, Canon customer services, hewlett packard telephone number, Canon
helpline no, Canon help desk number, contact Canon support phone number,
hewlett packard contact, Canon phone numbers, Canon printers customer care
number, Canon printer help and support, contact Canon technical support, Canon
contact numbers, contact Canon support chat, call Canon tech support, Canon
customer service phone, Canon help support, Canon computer tech support, Canon
assistance phone number, Canon customer service telephone number, hewlett
packard printer support phone number, Canon contact support number, Canon
support center phone number, Canon support phone numbers, tech support for
Canon, Canon it support, Canon laptop helpline, Canon technical, Canon laptop
technical support number, Canon printers tech support phone number, Canon
printers support phone number, hewlett packard help desk phone number, Canon
computer tech support phone number, Canon customer service number for laptop,
Canon printer helpline number, contact Canon support by phone, hewlett packard
support center, Canon laptop customer care no, Canon printer support telephone
number, Canon support services, Canon customer service number for printers,
Canon product support number, Canon laptop tech support phone number, Canon
printer helpline phone number, contact Canon customer support, hewlett packard
customer support phone number, Canon printers technical support, Canon customer
care center, support for Canon printers, Canon printer support center, phone
number for Canon tech support, Canon desktop customer care number, Canon
laptops support, Canon printer online support, Canon printer phone number,
hewlett packard printers support phone number, technical support for Canon
printers phone number, Canon help center phone number, contact Canon tech
support, call Canon printer support, Canon printers customer support, Canon
computer customer service number, Canon printers helpline, Canon customer care
contact number, Canon laptop help, Canon computer customer service phone
number, phone number for hewlett packard customer service, hewlett packard 800
number, Canon printer help phone number, Canon printers help phone number,
Canon printer phone number for customer service, Canon computer technical
support phone number, customer service Canon, Canon support technical support
number, contact number for Canon, Canon computers support phone number, Canon
printers support number, Canon printer technical support number, contact Canon
tech support by phone, Canon computer customer care number, Canon printer 800
number, call Canon customer service, Canon printer help center, Canon computers
customer service, Canon printer help desk, hewlett packard computer support,
Canon printers technical support number, Canon help desk phone number, Canon
printer support phone, Canon contact help, contact Canon laptop support, Canon
customer service contact number, support for Canon printer, Canon printer
customer care no, Canon computer phone number, Canon tech help, Canon pc
support number, Canon laptop customer support, Canon desktop support number,
support Canon printer, Canon support hours, number for Canon support, Canon
support customer service number, Canon contact phone number, customer service
number for Canon printers, Canon computers help, Canon tech support contact
number, Canon phone support number..
File usage
>From gcc-bugs-return-534232-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 15:05:33 2016
Return-Path: <gcc-bugs-return-534232-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 83300 invoked by alias); 11 Aug 2016 15:05:33 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 83291 invoked by uid 89); 11 Aug 2016 15:05:32 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,LIKELY_SPAM_BODY,TECH_SUPPORT_PHONE autolearn=no version=3.3.2 spammy=billing, number, hotline, technologies
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 15:05:21 +0000
From: "Wilty1952 at cuvox dot de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/74027] New: @Vg 73956 -+1-888-527-3401 AVG Support Phone USA Number!!+1-888-527-3401 AVG Tech Support Number usa
Date: Thu, 11 Aug 2016 15:05:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 3.4.2
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: Wilty1952 at cuvox dot de
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-74027-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01568.txt.bz2
Content-length: 25835

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74027

            Bug ID: 74027
           Summary: @Vg 73956 -+1-888-527-3401 AVG Support Phone USA
                    Number!!+1-888-527-3401 AVG Tech Support Number usa
           Product: gcc
           Version: 3.4.2
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: Wilty1952 at cuvox dot de
  Target Milestone: ---

+1-888-527-3401 AVG helpline phone number@~1-888-527-3401 AVG tech Support
Number AVG antivirus customer service phone number

AVG helpline phone number@~1-888-527-3401 AVG tech Support Number AVG antivirus
customer service phone number
AVG HelpLiNe @+1-888-527-3401 AVG support phone number

AVG helpline phone number@~1-888-527-3401 AVG tech Support Number AVG antivirus
customer service phone number

+1-888-527-3401) Technical support number
+1-888-527-3401 AVG Antivirus Technical Support
+1-888-527-3401 contact AVG antivirus customer service phone number
+1-888-527-3401 phone number for AVG customer service
+1-888-527-3401 phone number for AVG antivirus technical support
+1-888-527-3401 phone number for AVG antivirus customer service
phone number for AVG antivirus technical support
phone number for AVG security
AVG antivirus customer care phone number
AVG antivirus customer service billing
AVG antivirus customer service email address
AVG antivirus customer service live chat
AVG antivirus customer service telephone number
AVG antivirus customer support usa phone number
AVG antivirus help desk support phone number free in usa
AVG antivirus phone number customer service us
AVG antivirus phone number support
AVG antivirus support phone number
AVG antivirus tech support phone number free in usa
AVG antivirus tech support phone number
AVG antivirus technical support customer service
AVG antivirus technical support number
AVG antivirus telephone number
AVG antivirus toll free customer care number
AVG antivirus toll free number in usa
AVG antivirus contact phone number in usa
AVG antivirus customer service number
AVG antivirus customer service phone number
AVG antivirus customer service telephone number
AVG antivirus customer support number
AVG antivirus customer support phone number
AVG antivirus customer support phone number
AVG antivirus help desk phone number in usa
AVG antivirus phone number
AVG antivirus phone number support for technical issue in usa
AVG antivirus support phone number
AVG antivirus technical support help desk phone number
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG customer service number
AVG customer service telephone number
AVG customer services email
AVG customer support email address
AVG customer support number
AVG customer support phone number
AVG customer service phone number
AVG internet security contact phone number
AVG internet security customer service phone number
AVG internet security phone number
AVG internet security help phone number
AVG internet security phone number in usa
AVG internet security support phone number
AVG internet security technical support
AVG phone number customer service
AVG phone numbers customer support
AVG phone support number
AVG security contact phone number
AVG security phone number customer service
AVG security support phone number
AVG support contact number
AVG support email address
AVG support phone number
AVG support telephone number
AVG support telephone number usa
AVG support telephone number
AVG tech support number
AVG tech support phone number
AVG tech support phone number free
AVG technical support phone number
AVG technical support cutomer phone number
AVG technical support phone number
AVG technical support number free in usa
AVG technical support number toll free number
AVG technical support phone number
AVG technologies phone number
AVG telephone support number
AVG antivirus customer support phone number
AVG antivirus customer service phone number
AVG customer support phone number
AVG phone number customer service
AVG technical support telephone number
contact AVG antivirus customer service phone number
customer service number for AVG antivirus
phone number for AVG antivirus
phone number for AVG antivirus customer service
phone number for AVG antivirus support
phone number for AVG customer service
phone number for AVG customer service
phone number for AVG customer support
phone number for AVG tech support
phone number AVG antivirus customer service
AVG antivirus customer service number
AVG antivirus customer service phone
AVG antivirus customer service phone number
AVG antivirus customer service phone number us
AVG antivirus customer service telephone number
AVG antivirus customer support
AVG antivirus customer support number
AVG antivirus phone number customer service us
AVG antivirus phone number support
AVG antivirus phone support
AVG antivirus phone support number
AVG antivirus support phone number
AVG antivirus tech support phone number
AVG antivirus technical support
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG customer service phone number
AVG customer support phone number
AVG helpline phone number
AVG internet security customer service
AVG internet security customer service phone number
AVG internet security help phone number
AVG internet security phone number customer service
AVG phone number customer service
AVG phone number customer support
AVG security customer service phone number
AVG security phone number customer service
AVG support phone number
AVG support telephone number
AVG tech support number
AVG tech support phone number
AVG technical support
AVG technical support number
AVG technical support phone number
AVG antivirus customer support phone number
AVG antivirus phone number customer service
AVG antivirus tech support number
AVG customer service phone number
AVG customer service phone numbers
AVG internet security technical support
AVG tech support phone number us
AVG technical support telephone number
contact AVG antivirus
contact AVG by phone
contact AVG customer service
contact AVG antivirus customer service phone number
contactAVG antivirus tech support usa
customer service AVG phone number
download AVG titanium
dri AVG customer service number
dri AVG customer service phone number
dri AVG phone number
how to contact AVG by email
how to delete AVG from mac
micro trend customer service
norton antivirus customer service number
phone number for AVG customer service
phone number forAVG customer service
phone number forAVG customer support
phone number forAVG tech support
phone number forAVG technical support
phone number for AVG antivirus technical support
phone number for AVG security
phone number for AVG support
phone number for AVG technical support
phone number for AVG antivirus customer service
phone number for AVG customer service
remove AVG from mac
technical support for antivirus AVG
telephone number forAVG technical support
telephone AVG antivirus
AVG antivirus contact number
AVG antivirus customer care
AVG antivirus customer care number
AVG antivirus customer care number usa
AVG antivirus customer service
AVG antivirus customer service number :idea: :evil: :D :) :lol: :( :o :shock:
AVG antivirus customer service phone number
AVG antivirus customer service phone number usa
AVG antivirus customer service telephone number
AVG antivirus customer support
AVG antivirus customer support in usa
AVG antivirus customer support number
AVG antivirus customer support phone number
AVG antivirus for phone
AVG antivirus free antivirus support
AVG antivirus help phone number
AVG antivirus helpline number
AVG antivirus online support
AVG antivirus phone
AVG antivirus phone number
AVG antivirus phone number in usa
AVG antivirus phone number usa
AVG antivirus phone support
AVG antivirus plus tech support
AVG antivirus protection
AVG antivirus support
AVG antivirus support number
AVG antivirus support phone number
AVG antivirus support services
AVG antivirus support telephone number
AVG antivirus tech support
AVG antivirus tech support phone number free in usa
AVG antivirus tech support number
AVG antivirus tech support phone number
AVG antivirus technical support
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG antivirus toll free customer care number
AVG antivirus toll free number
AVG antivirus contact phone number in usa
AVG antivirus help desk phone number in usa
AVG antivirus phone number support for technical issue in usa
AVG antivirus support phone number
AVG antivirus technical support help desk phone number
AVG antivirus technical support phone number
AVG contact number
AVG contact number usa
AVG contact phone number
AVG contact support
AVG contact number usa
AVG contact phone number
AVG contact phone number usa
AVG customer & technical support
AVG customer care
AVG customer care center
AVG customer care email
AVG customer care number
AVG customer care number
AVG customer care number usa
AVG customer care number usa toll free
AVG customer care phone number usa
AVG customer care tchnical support
AVG customer care toll free
AVG customer care toll free number
AVG customer care usa
AVG customer help
AVG customer number
AVG customer portal*********
AVG customer service
AVG customer service billing
AVG customer service email address
AVG customer service number
AVG customer service phone
AVG customer service phone number
AVG customer service phone number us
AVG customer service phone number usa
AVG customer service reviews
AVG customer service telephone number
AVG customer service usa
AVG customer support
AVG customer support number
AVG customer support phone
AVG customer support phone number
AVG customer service number
AVG customer service number usa
AVG customer service phone number
AVG customer support number
AVG customer support phone number
AVG free phone support
AVG gold support phone number
AVG help desk phone number
AVG help phone number
AVG helpline
AVG helpline phone number
AVG hotline customer service phone number
AVG internet security customer service
AVG internet security phone number
AVG internet security phone number in usa
AVG lab usa customer service
AVG labs usa customer serviceAVG
AVG phone number
AVG phone number customer service
AVG phone number support
AVG phone number tech support
AVG phone number technical support
AVG phone numbers customer support
AVG phone support
AVG phone support number
AVG phone number customer service
AVG phone number support
AVG phone number tech support
AVG phone number usa
AVG security contact phone number
AVG security phone number
AVG security support phone number
AVG software customer service
AVG software customer service number
AVG support center###########
AVG support contact number
AVG support email address
AVG support phone number
AVG support telephone number
AVG support number usa
AVG support phone number
AVG support phone number usa
AVG tech support
AVG tech support center
AVG tech support contact
AVG tech support number
AVG tech support number usa
AVG tech support phone
AVG tech support phone number
AVG tech support phone number free
AVG tech support number
AVG tech support number usa
AVG tech support phone number
AVG technical support
AVG technical support number
AVG technical support phone number
AVG technical support phone number usa
AVG technical support reviews
AVG technical support usa
AVG technical support phone number
AVG technical support number
AVG technical support number toll free number
AVG technical support number usa
AVG technical support phone number
AVG technical support phone number usa
AVG technologies phone number
AVG telephone number
AVG telephone support number
AVG toll free number
AVG toll free number usa
AVG usa customer care for tech support
AVG usa customer service
AVG usa phone number/////////////
AVG antivirus customer service phone number
AVG antivirus customer service phone number
AVG antivirus customer support phone number
AVG antivirus customer support phone number
AVG antivirus technical support number
AVG customer service phone number usa
AVG internet security support phone number
AVG.com customer service
AVG antivirus antispyware 2011
AVG antivirus customer support
AVG antivirus serial key
AVG antivirus serial number
AVG antivirus support
AVG antivirus technical support
AVG business support*************
AVG contact support
AVG customer care number
AVG customer service 844
AVG customer service number
AVG customer service phone number
AVG customer service telephone number
AVG customer support

phone number for Norton antivirus technical support
phone number for Norton security
Norton customer service telephone number
Norton customer support
Norton grentry non payment
Norton helpline support number
Norton internet security customer service
Norton internet security technical support
Norton oem customer service
Norton pc cillin technical support
Norton phone support
Norton removal tool download
Norton subscription renewal
Norton support contact
Norton support hotline
Norton support phone number
Norton tech support phone number
Norton technical support
Norton technical support chat
Norton technical support phone number
Norton technical support phone number usa
Norton telephone number
Norton titanium antivirus
Norton titanium internet security
Norton titanium maximum
Norton titanium maximum security
Norton titanium problems
Norton titanium removal tool
Norton titanium reviews
Norton titanium support
Norton virus removal service
uninstall Norton smart surfing for mac
usa customer care number for Norton antivirus
Norton antivirus phone number support for technical issue in usa
Norton antivirus support phone number
Norton antivirus technical support help desk phone number
Norton antivirus technical support number
Norton antivirus technical support phone number
Norton customer service number
Norton customer service telephone number
Norton customer services email
Norton customer support email address
Norton customer support number
Norton customer support phone number
Norton customer service phone number
Norton internet security contact phone number
Norton internet security customer service phone number
Norton internet security phone number
Norton internet security help phone number
Norton internet security phone number in usa
Norton internet security support phone number
Norton internet security technical support
Norton phone number customer service
Norton phone numbers customer support
Norton phone support number
Norton security contact phone number
Norton security phone number customer service
Norton security support phone number
Norton support contact number
Norton support email address
Norton support phone number
Norton support telephone number
Norton support telephone number usa
Norton support telephone number
Norton tech support number

Norton antivirus customer care phone number
Norton antivirus customer service billing
Norton antivirus customer service email address
Norton antivirus customer service live chat
Norton antivirus customer service telephone number
Norton antivirus customer support usa phone number
Norton antivirus help desk support phone number free in usa
Norton antivirus phone number customer service us
Norton antivirus phone number support
Norton antivirus support phone number
Norton antivirus tech support phone number free in usa
Norton antivirus tech support phone number
Norton antivirus technical support customer service
Norton antivirus technical support number
Norton antivirus telephone number
Norton antivirus toll free customer care number
Norton antivirus toll free number in usa
Norton antivirus contact phone number in usa
Norton antivirus customer service number
Norton antivirus customer service phone number
Norton antivirus customer service telephone number
Norton antivirus customer support number
Norton antivirus customer support phone number
Norton antivirus customer support phone number
Norton antivirus help desk phone number in usa
Norton antivirus phone number
Norton tech support phone number
Norton tech support phone number free
Norton technical support phone number
Norton technical support cutomer phone number
Norton technical support phone number
Norton technical support number free in usa
Norton technical support number toll free number
Norton technical support phone number
Norton technologies phone number
Norton telephone support number
Norton antivirus customer support phone number
Norton antivirus customer service phone number
Norton customer support phone number
Norton phone number customer service
Norton technical support telephone number
contact Norton antivirus customer service phone number
customer service number for Norton antivirus
phone number for Norton antivirus
phone number for Norton antivirus customer service
phone number for Norton antivirus support
phone number for Norton customer service
phone number for Norton customer service
phone number for Norton customer support
phone number for Norton tech support
phone number Norton antivirus customer service
Norton antivirus customer service number
Norton antivirus customer service phone
Norton antivirus customer service phone number
Norton antivirus customer service phone number us
Norton antivirus customer service telephone number
Norton antivirus customer support
Norton antivirus customer support number
Norton antivirus phone number customer service us
Norton antivirus phone number support
Norton antivirus phone support
Norton antivirus phone support number
Norton antivirus support phone number
Norton antivirus tech support phone number
Norton antivirus technical support
Norton antivirus technical support number
Norton antivirus technical support phone number
Norton customer service phone number
Norton customer support phone number
Norton helpline phone number
Norton internet security customer service
Norton internet security customer service phone number
Norton internet security help phone number
Norton internet security phone number customer service
Norton phone number customer service
Norton phone number customer support
Norton security customer service phone number

Norton internet security phone number
Norton internet security phone number in usa
Norton lab usa customer service
Norton labs usa customer serviceNorton
Norton phone number
Norton phone number customer service
Norton phone number support
Norton phone number tech support
Norton phone number technical support
Norton phone numbers customer support
Norton phone support
Norton phone support number
Norton phone number customer service
Norton phone number support
Norton phone number tech support
Norton phone number usa
Norton security contact phone number
Norton security phone number
Norton security support phone number
Norton software customer service
Norton software customer service number
Norton support center
Norton support contact number
Norton support email address
Norton support phone number
Norton support telephone number
Norton support number usa
Norton support phone number
Norton support phone number usa
Norton tech support
Norton tech support center
Norton tech support contact
Norton tech support number
Norton tech support number usa
Norton tech support phone
Norton tech support phone number
Norton tech support phone number free
Norton tech support number
Norton tech support number usa
Norton tech support phone number
Norton technical support
Norton technical support number
Norton technical support phone number
Norton technical support phone number usa
Norton technical support reviews
Norton technical support usa
Norton technical support phone number
Norton technical support number
Norton technical support number toll free number
Norton technical support number usa
Norton technical support phone number
Norton technical support phone number usa
Norton technologies phone number
Norton telephone number
Norton telephone support number
Norton toll free number
Norton toll free number usa
Norton usa customer care for tech support
Norton usa customer service
Norton usa phone number

Norton security phone number customer service
Norton support phone number
Norton support telephone number
Norton tech support number
Norton tech support phone number
Norton technical support
Norton technical support number
Norton technical support phone number
Norton antivirus customer support phone number
Norton antivirus phone number customer service
Norton antivirus tech support number
Norton customer service phone number
Norton customer service phone numbers
Norton internet security technical support
Norton tech support phone number us
Norton technical support telephone number
contact Norton antivirus
contact Norton by phone
contact Norton customer service
contact Norton antivirus customer service phone number
contactNorton antivirus tech support usa
customer service Norton phone number
download Norton titanium
dri Norton customer service number
dri Norton customer service phone number
dri Norton phone number
how to contact Norton by email
how to delete Norton from mac
micro trend customer service
norton antivirus customer service number
phone number for Norton customer service
phone number forNorton customer service
phone number forNorton customer support
phone number forNorton tech support
phone number forNorton technical support
phone number for Norton antivirus technical support
phone number for Norton security
phone number for Norton support
phone number for Norton technical support
phone number for Norton antivirus customer service
phone number for Norton customer service
remove Norton from mac
technical support for antivirus Norton
telephone number forNorton technical support
telephone Norton antivirus
Norton antivirus contact number
Norton antivirus customer care
Norton antivirus customer care number
Norton antivirus customer care number usa
Norton antivirus customer service
Norton antivirus customer service number :idea: :evil: :D :) :lol: :( :o
:shock:
Norton antivirus customer service phone number
Norton antivirus customer service phone number usa
Norton antivirus customer service telephone number
Norton antivirus customer support
Norton antivirus customer support in usa
Norton antivirus customer support number
Norton antivirus customer support phone number
Norton antivirus for phone
Norton antivirus free antivirus support
Norton antivirus help phone number
Norton antivirus helpline number
Norton antivirus online support
Norton antivirus phone
Norton antivirus phone number
Norton antivirus phone number in usa
Norton antivirus phone number usa
Norton antivirus phone support
Norton antivirus plus tech support
Norton antivirus protection
Norton antivirus support
Norton antivirus support number
Norton antivirus support phone number
Norton antivirus support services
Norton antivirus support telephone number
Norton antivirus tech support
Norton antivirus tech support phone number free in usa
Norton antivirus tech support number
Norton antivirus tech support phone number
Norton antivirus technical support
Norton antivirus technical support number
Norton antivirus technical support phone number
Norton antivirus toll free customer care number
Norton antivirus toll free number
Norton antivirus contact phone number in usa
Norton antivirus help desk phone number in usa
Norton antivirus phone number support for technical issue in usa
Norton antivirus support phone number
Norton antivirus technical support help desk phone number
Norton antivirus technical support phone number
Norton contact number
Norton contact number usa
Norton contact phone number
Norton contact support
Norton contact number usa
Norton contact phone number
Norton contact phone number usa
Norton customer & technical support
Norton customer care
Norton customer care center
Norton customer care email
Norton customer care number
Norton customer care number
Norton customer care number usa
Norton customer care number usa toll free
Norton customer care phone number usa
Norton customer care tchnical support
Norton customer care toll free
Norton customer care toll free number
Norton customer care usa
Norton customer help
Norton customer number
Norton customer portal
Norton customer service
Norton customer service billing
Norton customer service email address
Norton customer service number
Norton customer service phone
Norton customer service phone number
Norton customer service phone number us
Norton customer service phone number usa
Norton customer service reviews
Norton customer service telephone number
Norton customer service usa
Norton customer support
Norton customer support number
Norton customer support phone
Norton customer support phone number
Norton customer service number
Norton customer service number usa
Norton customer service phone number
Norton customer support number
Norton customer support phone number
Norton free phone support
Norton gold support phone number
Norton help desk phone number
Norton help phone number
Norton helpline
Norton helpline phone number
Norton hotline customer service phone number
Norton internet security customer service
Norton antivirus customer service phone number
Norton antivirus customer service phone number
Norton antivirus customer support phone number
Norton antivirus customer support phone number
Norton antivirus technical support number
Norton customer service phone number usa
Norton internet security support phone number
Norton.com customer service
Norton antivirus antispyware 2011
Norton antivirus customer support
Norton antivirus serial key
Norton antivirus serial number
Norton antivirus support
Norton antivirus technical support
Norton business support
Norton contact support
Norton customer care number
Norton customer service 800
Norton customer service number
Norton customer service phone number
>From gcc-bugs-return-534233-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 15:07:11 2016
Return-Path: <gcc-bugs-return-534233-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 98007 invoked by alias); 11 Aug 2016 15:07:11 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 97327 invoked by uid 89); 11 Aug 2016 15:07:10 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=2.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 15:07:00 +0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/69004] Building t-engine on ARM fails during -fprofile-use stage
Date: Thu, 11 Aug 2016 15:07:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 5.3.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-69004-4-JUoyaLvrsk@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69004-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69004-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01569.txt.bz2
Content-length: 306

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69004

--- Comment #31 from Martin Liška <marxin at gcc dot gnu.org> ---
> 
> The former is only called on program exit:
> 

Yep, and I'm interested if there another call of lj_mem_realloc after the
gcov_exit is called?
Please try it multiple times.
>From gcc-bugs-return-534234-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 15:12:10 2016
Return-Path: <gcc-bugs-return-534234-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 5158 invoked by alias); 11 Aug 2016 15:12:10 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 5145 invoked by uid 89); 11 Aug 2016 15:12:09 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,LIKELY_SPAM_BODY,TECH_SUPPORT_PHONE autolearn=no version=3.3.2 spammy=billing, number, hotline, technologies
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 15:11:59 +0000
From: "jamesbro123q at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/74049] New: NORTON Support Phone Number!!1 877.288.2779 NORTON tecH Support Phone Number usa
Date: Thu, 11 Aug 2016 15:12:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jamesbro123q at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-74049-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01570.txt.bz2
Content-length: 8874

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74049

            Bug ID: 74049
           Summary: NORTON Support Phone Number!!1 877.288.2779 NORTON
                    tecH Support Phone Number usa
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: jamesbro123q at gmail dot com
  Target Milestone: ---

NORTON Support Phone Number!!1 877.288.2779 NORTON support phone number NORTON
Support Phone Number!!1 877.288.2779 NORTON support phone number
Norton helpline phone number@~1877-288-2779 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1877-2882779**Norton antivirus support phone
number
usa+1-877-288-2779) Technical support number
CANADA+1877-288-2779 Norton Antivirus Technical Support
USA-1877-288-1288contact Norton antivirus customer service phone number
AUS-1-877-288-2779 phone number for Norton customer service
UK-1877-288-2779 phone number for Norton antivirus technical support
1-877-288-2779 phone number for Norton antivirus customer service
phone number for Norton antivirus technical support
phone number for Norton security
Norton customer service telephone number
Norton customer support
Norton grentry non payment
Norton helpline support number
http://www.gmail-techsupport.com/
Norton internet security customer service
Norton internet security technical support
Norton oem customer service
Norton pc cillin technical support
Norton phone support
Norton removal tool download
Norton subscription renewal
Norton support contact
Norton support hotline
Norton support phone number
Norton tech support phone number
Norton technical support
Norton technical support chat
Norton technical support phone number
Norton technical support phone number usa
Norton telephone number
Norton titanium antivirus
Norton titanium internet security
Norton titanium maximum
Norton titanium maximum security
Norton titanium problems
NORTON Support Phone Number!!1 877.288.2779 NORTON support phone number NORTON
Support Phone Number!!1 877.288.2779 NORTON support phone number
Norton helpline phone number@~1877-288-2779 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1877-2882779**Norton antivirus support phone
number
usa+1-877-288-2779) Technical support number
CANADA+1877-288-2779 Norton Antivirus Technical Support
USA-1877-288-1288contact Norton antivirus customer service phone number
AUS-1-877-288-2779 phone number for Norton customer service
UK-1877-288-2779 phone number for Norton antivirus technical support
1-877-288-2779 phone number for Norton antivirus customer service
Norton titanium removal tool
Norton titanium reviews
Norton titanium support
Norton virus removal service
uninstall Norton smart surfing for mac
usa customer care number for Norton antivirus
Norton phone number customer service
Norton phone numbers customer support
Norton phone support number
Norton security contact phone number
Norton security phone number customer service
Norton security support phone number
Norton support contact number
Norton support email address
Norton support phone number
Norton support telephone number
Norton support telephone number usa
Norton support telephone number
Norton tech support number
NORTON Support Phone Number!!1 877.288.2779 NORTON support phone number NORTON
Support Phone Number!!1 877.288.2779 NORTON support phone number
Norton helpline phone number@~1877-288-2779 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1877-2882779**Norton antivirus support phone
number
usa+1-877-288-2779) Technical support number
CANADA+1877-288-2779 Norton Antivirus Technical Support
USA-1877-288-1288contact Norton antivirus customer service phone number
AUS-1-877-288-2779 phone number for Norton customer service
UK-1877-288-2779 phone number for Norton antivirus technical support
1-877-288-2779 phone number for Norton antivirus customer serviceNorton
antivirus customer care phone number
Norton antivirus customer service billing
Norton antivirus customer service email address
Norton antivirus customer service live chat
Norton antivirus customer service telephone number
Norton antivirus customer support usa phone number
Norton antivirus help desk support phone number free in usa
Norton antivirus phone number customer service us
Norton antivirus phone number support
Norton antivirus support phone number
Norton antivirus tech support phone number free in usa
Norton antivirus tech support phone number
Norton antivirus technical support customer service
Norton antivirus technical support number
Norton antivirus telephone number
Norton antivirus toll free customer care number
Norton antivirus toll free number in usa
Norton antivirus contact phone number in usa
Norton antivirus customer service number
Norton antivirus customer service phone number
Norton antivirus customer service telephone number
Norton antivirus customer support number
Norton antivirus customer support phone number
NORTON Support Phone Number!!1 877.288.2779 NORTON support phone number NORTON
Support Phone Number!!1 877.288.2779 NORTON support phone number
Norton helpline phone number@~1877-288-2779 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1877-2882779**Norton antivirus support phone
number
usa+1-877-288-2779) Technical support number
CANADA+1877-288-2779 Norton Antivirus Technical Support
USA-1877-288-1288contact Norton antivirus customer service phone number
AUS-1-877-288-2779 phone number for Norton customer service
UK-1877-288-2779 phone number for Norton antivirus technical support
1-877-288-2779 phone number for Norton antivirus customer service
Norton antivirus customer support phone number
Norton antivirus help desk phone number in usa
Norton antivirus phone number
Norton tech support phone number
Norton tech support phone number free
Norton technical support phone number
Norton technical support cutomer phone number
Norton technical support phone number
Norton technical support number free in usa
Norton technical support number toll free number
Norton technical support phone number
Norton technologies phone number
Norton telephone support number
Norton antivirus customer support phone number
Norton antivirus customer service phone number
Norton customer support phone number
Norton phone number customer service
Norton technical support telephone number
contact Norton antivirus customer service phone number
customer service number for Norton antivirus
phone number for Norton antivirus
phone number for Norton antivirus customer service
phone number for Norton antivirus support
phone number for Norton customer service
phone number for Norton customer service
phone number for Norton customer support
NORTON Support Phone Number!!1 877.288.2779 NORTON support phone number NORTON
Support Phone Number!!1 877.288.2779 NORTON support phone number
Norton helpline phone number@~1877-288-2779 Norton tech Support Number Norton
antivirus customer service phone number
Norton Security contact Number +1877-2882779**Norton antivirus support phone
number
usa+1-877-288-2779) Technical support number
CANADA+1877-288-2779 Norton Antivirus Technical Support
USA-1877-288-1288contact Norton antivirus customer service phone number
AUS-1-877-288-2779 phone number for Norton customer service
UK-1877-288-2779 phone number for Norton antivirus technical support
1-877-288-2779 phone number for Norton antivirus customer service
phone number for Norton tech support
phone number Norton antivirus customer service
Norton antivirus customer service number
Norton antivirus customer service phone
Norton antivirus customer service phone number
Norton antivirus customer service phone number us
Norton antivirus customer service telephone number
Norton antivirus customer support
Norton antivirus customer support number
Norton antivirus phone number customer service us
Norton antivirus phone number support
Norton antivirus phone support
Norton antivirus phone support number
Norton antivirus support phone number
Norton antivirus tech support phone number
Norton antivirus technical support
Norton antivirus technical support number
Norton antivirus technical support phone number
Norton customer service phone number
Norton customer support phone number
Norton helpline phone number
Norton internet security customer service
Norton internet security customer service phone number
Norton internet security help phone number
Norton internet security phone number customer service
Norton phone number customer service
Norton phone number customer support
Norton security customer service phone number
>From gcc-bugs-return-534235-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 15:15:24 2016
Return-Path: <gcc-bugs-return-534235-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 13362 invoked by alias); 11 Aug 2016 15:15:21 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 13119 invoked by uid 89); 11 Aug 2016 15:15:02 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=1.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 15:14:52 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: =?UTF-8?B?W0J1ZyBjLzcyODE2XSBbNS82IFJlZ3Jlc3Npb25dIElDRSBvbiB4ODZfNjQt?= =?UTF-8?B?bGludXgtZ251ICh0cmVlIGNoZWNrOiBleHBlY3RlZCB0cmVlIHRoYXQgY29u?= =?UTF-8?B?dGFpbnMg4oCYZGVjbCB3aXRoIFJUTOKAmSBzdHJ1Y3R1cmUsIGhhdmUg4oCY?= =?UTF-8?B?ZmllbGRfZGVjbOKAmSBpbiBzZXRfZGVjbF9ydGwsIGF0IGVtaXQtcnRsLmM6?= =?UTF-8?B?MTI4Mik=?Date: Thu, 11 Aug 2016 15:15:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72816-4-ZreDw7S8Pz@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72816-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72816-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01571.txt.bz2
Content-length: 907

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72816

--- Comment #6 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Author: jakub
Date: Thu Aug 11 15:14:17 2016
New Revision: 239374

URL: https://gcc.gnu.org/viewcvs?rev=239374&root=gcc&view=rev
Log:
        Backported from mainline
        2016-08-11  Jakub Jelinek  <jakub@redhat.com>

        PR c/72816
        * c-decl.c (grokdeclarator): When adding TYPE_DOMAIN for flexible
        array member through typedef, for orig_qual_indirect == 0 clear
        orig_qual_type.

        * gcc.dg/pr72816.c: Remove dg-error.

        2016-08-07  Jakub Jelinek  <jakub@redhat.com>

        PR c/72816
        * gcc.dg/pr72816.c: New test.

Added:
    branches/gcc-6-branch/gcc/testsuite/gcc.dg/pr72816.c
Modified:
    branches/gcc-6-branch/gcc/c/ChangeLog
    branches/gcc-6-branch/gcc/c/c-decl.c
    branches/gcc-6-branch/gcc/testsuite/ChangeLog
>From gcc-bugs-return-534236-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 15:15:47 2016
Return-Path: <gcc-bugs-return-534236-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 14853 invoked by alias); 11 Aug 2016 15:15:46 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 14829 invoked by uid 89); 11 Aug 2016 15:15:46 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=0.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:1636
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 15:15:37 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: =?UTF-8?B?W0J1ZyBjLzcyODE2XSBbNSBSZWdyZXNzaW9uXSBJQ0Ugb24geDg2XzY0LWxp?= =?UTF-8?B?bnV4LWdudSAodHJlZSBjaGVjazogZXhwZWN0ZWQgdHJlZSB0aGF0IGNvbnRh?= =?UTF-8?B?aW5zIOKAmGRlY2wgd2l0aCBSVEzigJkgc3RydWN0dXJlLCBoYXZlIOKAmGZp?= =?UTF-8?B?ZWxkX2RlY2zigJkgaW4gc2V0X2RlY2xfcnRsLCBhdCBlbWl0LXJ0bC5jOjEy?= =?UTF-8?B?ODIp?Date: Thu, 11 Aug 2016 15:15:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords short_desc
Message-ID: <bug-72816-4-G2FxoX8mkH@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72816-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72816-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01572.txt.bz2
Content-length: 1869

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72816

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|ice-on-invalid-code         |ice-on-valid-code
            Summary|[5/6 Regression] ICE on     |[5 Regression] ICE on
                   |x86_64-linux-gnu (tree      |x86_64-linux-gnu (tree
                   |check: expected tree that   |check: expected tree that
                   |contains ‘decl with RTL’    |contains ‘decl with RTL’
                   |structure, have             |structure, have
                   |‘field_decl’ in             |‘field_decl’ in
                   |set_decl_rtl, at            |set_decl_rtl, at
                   |emit-rtl.c:1282)            |emit-rtl.c:1282)

--- Comment #6 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Author: jakub
Date: Thu Aug 11 15:14:17 2016
New Revision: 239374

URL: https://gcc.gnu.org/viewcvs?rev=239374&root=gcc&view=rev
Log:
        Backported from mainline
        2016-08-11  Jakub Jelinek  <jakub@redhat.com>

        PR c/72816
        * c-decl.c (grokdeclarator): When adding TYPE_DOMAIN for flexible
        array member through typedef, for orig_qual_indirect == 0 clear
        orig_qual_type.

        * gcc.dg/pr72816.c: Remove dg-error.

        2016-08-07  Jakub Jelinek  <jakub@redhat.com>

        PR c/72816
        * gcc.dg/pr72816.c: New test.

Added:
    branches/gcc-6-branch/gcc/testsuite/gcc.dg/pr72816.c
Modified:
    branches/gcc-6-branch/gcc/c/ChangeLog
    branches/gcc-6-branch/gcc/c/c-decl.c
    branches/gcc-6-branch/gcc/testsuite/ChangeLog

--- Comment #7 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Fixed for 6.2+ so far.
>From gcc-bugs-return-534237-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 15:16:08 2016
Return-Path: <gcc-bugs-return-534237-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 17445 invoked by alias); 11 Aug 2016 15:16:07 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 17328 invoked by uid 89); 11 Aug 2016 15:16:06 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-0.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:888
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 15:15:56 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: =?UTF-8?B?W0J1ZyBjLzcyODE2XSBbNSBSZWdyZXNzaW9uXSBJQ0Ugb24geDg2XzY0LWxp?= =?UTF-8?B?bnV4LWdudSAodHJlZSBjaGVjazogZXhwZWN0ZWQgdHJlZSB0aGF0IGNvbnRh?= =?UTF-8?B?aW5zIOKAmGRlY2wgd2l0aCBSVEzigJkgc3RydWN0dXJlLCBoYXZlIOKAmGZp?= =?UTF-8?B?ZWxkX2RlY2zigJkgaW4gc2V0X2RlY2xfcnRsLCBhdCBlbWl0LXJ0bC5jOjEy?= =?UTF-8?B?ODIp?Date: Thu, 11 Aug 2016 15:16:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords short_desc
Message-ID: <bug-72816-4-1vfYMhpddR@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72816-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72816-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01573.txt.bz2
Content-length: 1015

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72816

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|ice-on-invalid-code         |ice-on-valid-code
            Summary|[5/6 Regression] ICE on     |[5 Regression] ICE on
                   |x86_64-linux-gnu (tree      |x86_64-linux-gnu (tree
                   |check: expected tree that   |check: expected tree that
                   |contains ‘decl with RTL’    |contains ‘decl with RTL’
                   |structure, have             |structure, have
                   |‘field_decl’ in             |‘field_decl’ in
                   |set_decl_rtl, at            |set_decl_rtl, at
                   |emit-rtl.c:1282)            |emit-rtl.c:1282)

--- Comment #7 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Fixed for 6.2+ so far.
>From gcc-bugs-return-534239-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 15:16:55 2016
Return-Path: <gcc-bugs-return-534239-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 20186 invoked by alias); 11 Aug 2016 15:16:55 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 20171 invoked by uid 89); 11 Aug 2016 15:16:54 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,LIKELY_SPAM_BODY,TECH_SUPPORT_PHONE autolearn=no version=3.3.2 spammy=billing, number, hotline, technologies
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 15:16:44 +0000
From: "Wilty1952 at cuvox dot de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/74062] New: 73956 Rohit : - AVG Support Phone Number!!+1-888-527-3401 AVG Tech Support Number usa
Date: Thu, 11 Aug 2016 15:16:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 3.3.5
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: Wilty1952 at cuvox dot de
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-74062-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01575.txt.bz2
Content-length: 25820

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74062

            Bug ID: 74062
           Summary: 73956 Rohit : - AVG Support Phone
                    Number!!+1-888-527-3401 AVG Tech Support Number usa
           Product: gcc
           Version: 3.3.5
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: Wilty1952 at cuvox dot de
  Target Milestone: ---

+1-888-527-3401 AVG helpline phone number@~1-888-527-3401 AVG tech Support
Number AVG antivirus customer service phone number

AVG helpline phone number@~1-888-527-3401 AVG tech Support Number AVG antivirus
customer service phone number
AVG HelpLiNe @+1-888-527-3401 AVG support phone number

AVG helpline phone number@~1-888-527-3401 AVG tech Support Number AVG antivirus
customer service phone number

+1-888-527-3401) Technical support number
+1-888-527-3401 AVG Antivirus Technical Support
+1-888-527-3401 contact AVG antivirus customer service phone number
+1-888-527-3401 phone number for AVG customer service
+1-888-527-3401 phone number for AVG antivirus technical support
+1-888-527-3401 phone number for AVG antivirus customer service
phone number for AVG antivirus technical support
phone number for AVG security
AVG antivirus customer care phone number
AVG antivirus customer service billing
AVG antivirus customer service email address
AVG antivirus customer service live chat
AVG antivirus customer service telephone number
AVG antivirus customer support usa phone number
AVG antivirus help desk support phone number free in usa
AVG antivirus phone number customer service us
AVG antivirus phone number support
AVG antivirus support phone number
AVG antivirus tech support phone number free in usa
AVG antivirus tech support phone number
AVG antivirus technical support customer service
AVG antivirus technical support number
AVG antivirus telephone number
AVG antivirus toll free customer care number
AVG antivirus toll free number in usa
AVG antivirus contact phone number in usa
AVG antivirus customer service number
AVG antivirus customer service phone number
AVG antivirus customer service telephone number
AVG antivirus customer support number
AVG antivirus customer support phone number
AVG antivirus customer support phone number
AVG antivirus help desk phone number in usa
AVG antivirus phone number
AVG antivirus phone number support for technical issue in usa
AVG antivirus support phone number
AVG antivirus technical support help desk phone number
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG customer service number
AVG customer service telephone number
AVG customer services email
AVG customer support email address
AVG customer support number
AVG customer support phone number
AVG customer service phone number
AVG internet security contact phone number
AVG internet security customer service phone number
AVG internet security phone number
AVG internet security help phone number
AVG internet security phone number in usa
AVG internet security support phone number
AVG internet security technical support
AVG phone number customer service
AVG phone numbers customer support
AVG phone support number
AVG security contact phone number
AVG security phone number customer service
AVG security support phone number
AVG support contact number
AVG support email address
AVG support phone number
AVG support telephone number
AVG support telephone number usa
AVG support telephone number
AVG tech support number
AVG tech support phone number
AVG tech support phone number free
AVG technical support phone number
AVG technical support cutomer phone number
AVG technical support phone number
AVG technical support number free in usa
AVG technical support number toll free number
AVG technical support phone number
AVG technologies phone number
AVG telephone support number
AVG antivirus customer support phone number
AVG antivirus customer service phone number
AVG customer support phone number
AVG phone number customer service
AVG technical support telephone number
contact AVG antivirus customer service phone number
customer service number for AVG antivirus
phone number for AVG antivirus
phone number for AVG antivirus customer service
phone number for AVG antivirus support
phone number for AVG customer service
phone number for AVG customer service
phone number for AVG customer support
phone number for AVG tech support
phone number AVG antivirus customer service
AVG antivirus customer service number
AVG antivirus customer service phone
AVG antivirus customer service phone number
AVG antivirus customer service phone number us
AVG antivirus customer service telephone number
AVG antivirus customer support
AVG antivirus customer support number
AVG antivirus phone number customer service us
AVG antivirus phone number support
AVG antivirus phone support
AVG antivirus phone support number
AVG antivirus support phone number
AVG antivirus tech support phone number
AVG antivirus technical support
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG customer service phone number
AVG customer support phone number
AVG helpline phone number
AVG internet security customer service
AVG internet security customer service phone number
AVG internet security help phone number
AVG internet security phone number customer service
AVG phone number customer service
AVG phone number customer support
AVG security customer service phone number
AVG security phone number customer service
AVG support phone number
AVG support telephone number
AVG tech support number
AVG tech support phone number
AVG technical support
AVG technical support number
AVG technical support phone number
AVG antivirus customer support phone number
AVG antivirus phone number customer service
AVG antivirus tech support number
AVG customer service phone number
AVG customer service phone numbers
AVG internet security technical support
AVG tech support phone number us
AVG technical support telephone number
contact AVG antivirus
contact AVG by phone
contact AVG customer service
contact AVG antivirus customer service phone number
contactAVG antivirus tech support usa
customer service AVG phone number
download AVG titanium
dri AVG customer service number
dri AVG customer service phone number
dri AVG phone number
how to contact AVG by email
how to delete AVG from mac
micro trend customer service
norton antivirus customer service number
phone number for AVG customer service
phone number forAVG customer service
phone number forAVG customer support
phone number forAVG tech support
phone number forAVG technical support
phone number for AVG antivirus technical support
phone number for AVG security
phone number for AVG support
phone number for AVG technical support
phone number for AVG antivirus customer service
phone number for AVG customer service
remove AVG from mac
technical support for antivirus AVG
telephone number forAVG technical support
telephone AVG antivirus
AVG antivirus contact number
AVG antivirus customer care
AVG antivirus customer care number
AVG antivirus customer care number usa
AVG antivirus customer service
AVG antivirus customer service number :idea: :evil: :D :) :lol: :( :o :shock:
AVG antivirus customer service phone number
AVG antivirus customer service phone number usa
AVG antivirus customer service telephone number
AVG antivirus customer support
AVG antivirus customer support in usa
AVG antivirus customer support number
AVG antivirus customer support phone number
AVG antivirus for phone
AVG antivirus free antivirus support
AVG antivirus help phone number
AVG antivirus helpline number
AVG antivirus online support
AVG antivirus phone
AVG antivirus phone number
AVG antivirus phone number in usa
AVG antivirus phone number usa
AVG antivirus phone support
AVG antivirus plus tech support
AVG antivirus protection
AVG antivirus support
AVG antivirus support number
AVG antivirus support phone number
AVG antivirus support services
AVG antivirus support telephone number
AVG antivirus tech support
AVG antivirus tech support phone number free in usa
AVG antivirus tech support number
AVG antivirus tech support phone number
AVG antivirus technical support
AVG antivirus technical support number
AVG antivirus technical support phone number
AVG antivirus toll free customer care number
AVG antivirus toll free number
AVG antivirus contact phone number in usa
AVG antivirus help desk phone number in usa
AVG antivirus phone number support for technical issue in usa
AVG antivirus support phone number
AVG antivirus technical support help desk phone number
AVG antivirus technical support phone number
AVG contact number
AVG contact number usa
AVG contact phone number
AVG contact support
AVG contact number usa
AVG contact phone number
AVG contact phone number usa
AVG customer & technical support
AVG customer care
AVG customer care center
AVG customer care email
AVG customer care number
AVG customer care number
AVG customer care number usa
AVG customer care number usa toll free
AVG customer care phone number usa
AVG customer care tchnical support
AVG customer care toll free
AVG customer care toll free number
AVG customer care usa
AVG customer help
AVG customer number
AVG customer portal*********
AVG customer service
AVG customer service billing
AVG customer service email address
AVG customer service number
AVG customer service phone
AVG customer service phone number
AVG customer service phone number us
AVG customer service phone number usa
AVG customer service reviews
AVG customer service telephone number
AVG customer service usa
AVG customer support
AVG customer support number
AVG customer support phone
AVG customer support phone number
AVG customer service number
AVG customer service number usa
AVG customer service phone number
AVG customer support number
AVG customer support phone number
AVG free phone support
AVG gold support phone number
AVG help desk phone number
AVG help phone number
AVG helpline
AVG helpline phone number
AVG hotline customer service phone number
AVG internet security customer service
AVG internet security phone number
AVG internet security phone number in usa
AVG lab usa customer service
AVG labs usa customer serviceAVG
AVG phone number
AVG phone number customer service
AVG phone number support
AVG phone number tech support
AVG phone number technical support
AVG phone numbers customer support
AVG phone support
AVG phone support number
AVG phone number customer service
AVG phone number support
AVG phone number tech support
AVG phone number usa
AVG security contact phone number
AVG security phone number
AVG security support phone number
AVG software customer service
AVG software customer service number
AVG support center###########
AVG support contact number
AVG support email address
AVG support phone number
AVG support telephone number
AVG support number usa
AVG support phone number
AVG support phone number usa
AVG tech support
AVG tech support center
AVG tech support contact
AVG tech support number
AVG tech support number usa
AVG tech support phone
AVG tech support phone number
AVG tech support phone number free
AVG tech support number
AVG tech support number usa
AVG tech support phone number
AVG technical support
AVG technical support number
AVG technical support phone number
AVG technical support phone number usa
AVG technical support reviews
AVG technical support usa
AVG technical support phone number
AVG technical support number
AVG technical support number toll free number
AVG technical support number usa
AVG technical support phone number
AVG technical support phone number usa
AVG technologies phone number
AVG telephone number
AVG telephone support number
AVG toll free number
AVG toll free number usa
AVG usa customer care for tech support
AVG usa customer service
AVG usa phone number/////////////
AVG antivirus customer service phone number
AVG antivirus customer service phone number
AVG antivirus customer support phone number
AVG antivirus customer support phone number
AVG antivirus technical support number
AVG customer service phone number usa
AVG internet security support phone number
AVG.com customer service
AVG antivirus antispyware 2011
AVG antivirus customer support
AVG antivirus serial key
AVG antivirus serial number
AVG antivirus support
AVG antivirus technical support
AVG business support*************
AVG contact support
AVG customer care number
AVG customer service 844
AVG customer service number
AVG customer service phone number
AVG customer service telephone number
AVG customer support

phone number for Norton antivirus technical support
phone number for Norton security
Norton customer service telephone number
Norton customer support
Norton grentry non payment
Norton helpline support number
Norton internet security customer service
Norton internet security technical support
Norton oem customer service
Norton pc cillin technical support
Norton phone support
Norton removal tool download
Norton subscription renewal
Norton support contact
Norton support hotline
Norton support phone number
Norton tech support phone number
Norton technical support
Norton technical support chat
Norton technical support phone number
Norton technical support phone number usa
Norton telephone number
Norton titanium antivirus
Norton titanium internet security
Norton titanium maximum
Norton titanium maximum security
Norton titanium problems
Norton titanium removal tool
Norton titanium reviews
Norton titanium support
Norton virus removal service
uninstall Norton smart surfing for mac
usa customer care number for Norton antivirus
Norton antivirus phone number support for technical issue in usa
Norton antivirus support phone number
Norton antivirus technical support help desk phone number
Norton antivirus technical support number
Norton antivirus technical support phone number
Norton customer service number
Norton customer service telephone number
Norton customer services email
Norton customer support email address
Norton customer support number
Norton customer support phone number
Norton customer service phone number
Norton internet security contact phone number
Norton internet security customer service phone number
Norton internet security phone number
Norton internet security help phone number
Norton internet security phone number in usa
Norton internet security support phone number
Norton internet security technical support
Norton phone number customer service
Norton phone numbers customer support
Norton phone support number
Norton security contact phone number
Norton security phone number customer service
Norton security support phone number
Norton support contact number
Norton support email address
Norton support phone number
Norton support telephone number
Norton support telephone number usa
Norton support telephone number
Norton tech support number

Norton antivirus customer care phone number
Norton antivirus customer service billing
Norton antivirus customer service email address
Norton antivirus customer service live chat
Norton antivirus customer service telephone number
Norton antivirus customer support usa phone number
Norton antivirus help desk support phone number free in usa
Norton antivirus phone number customer service us
Norton antivirus phone number support
Norton antivirus support phone number
Norton antivirus tech support phone number free in usa
Norton antivirus tech support phone number
Norton antivirus technical support customer service
Norton antivirus technical support number
Norton antivirus telephone number
Norton antivirus toll free customer care number
Norton antivirus toll free number in usa
Norton antivirus contact phone number in usa
Norton antivirus customer service number
Norton antivirus customer service phone number
Norton antivirus customer service telephone number
Norton antivirus customer support number
Norton antivirus customer support phone number
Norton antivirus customer support phone number
Norton antivirus help desk phone number in usa
Norton antivirus phone number
Norton tech support phone number
Norton tech support phone number free
Norton technical support phone number
Norton technical support cutomer phone number
Norton technical support phone number
Norton technical support number free in usa
Norton technical support number toll free number
Norton technical support phone number
Norton technologies phone number
Norton telephone support number
Norton antivirus customer support phone number
Norton antivirus customer service phone number
Norton customer support phone number
Norton phone number customer service
Norton technical support telephone number
contact Norton antivirus customer service phone number
customer service number for Norton antivirus
phone number for Norton antivirus
phone number for Norton antivirus customer service
phone number for Norton antivirus support
phone number for Norton customer service
phone number for Norton customer service
phone number for Norton customer support
phone number for Norton tech support
phone number Norton antivirus customer service
Norton antivirus customer service number
Norton antivirus customer service phone
Norton antivirus customer service phone number
Norton antivirus customer service phone number us
Norton antivirus customer service telephone number
Norton antivirus customer support
Norton antivirus customer support number
Norton antivirus phone number customer service us
Norton antivirus phone number support
Norton antivirus phone support
Norton antivirus phone support number
Norton antivirus support phone number
Norton antivirus tech support phone number
Norton antivirus technical support
Norton antivirus technical support number
Norton antivirus technical support phone number
Norton customer service phone number
Norton customer support phone number
Norton helpline phone number
Norton internet security customer service
Norton internet security customer service phone number
Norton internet security help phone number
Norton internet security phone number customer service
Norton phone number customer service
Norton phone number customer support
Norton security customer service phone number

Norton internet security phone number
Norton internet security phone number in usa
Norton lab usa customer service
Norton labs usa customer serviceNorton
Norton phone number
Norton phone number customer service
Norton phone number support
Norton phone number tech support
Norton phone number technical support
Norton phone numbers customer support
Norton phone support
Norton phone support number
Norton phone number customer service
Norton phone number support
Norton phone number tech support
Norton phone number usa
Norton security contact phone number
Norton security phone number
Norton security support phone number
Norton software customer service
Norton software customer service number
Norton support center
Norton support contact number
Norton support email address
Norton support phone number
Norton support telephone number
Norton support number usa
Norton support phone number
Norton support phone number usa
Norton tech support
Norton tech support center
Norton tech support contact
Norton tech support number
Norton tech support number usa
Norton tech support phone
Norton tech support phone number
Norton tech support phone number free
Norton tech support number
Norton tech support number usa
Norton tech support phone number
Norton technical support
Norton technical support number
Norton technical support phone number
Norton technical support phone number usa
Norton technical support reviews
Norton technical support usa
Norton technical support phone number
Norton technical support number
Norton technical support number toll free number
Norton technical support number usa
Norton technical support phone number
Norton technical support phone number usa
Norton technologies phone number
Norton telephone number
Norton telephone support number
Norton toll free number
Norton toll free number usa
Norton usa customer care for tech support
Norton usa customer service
Norton usa phone number

Norton security phone number customer service
Norton support phone number
Norton support telephone number
Norton tech support number
Norton tech support phone number
Norton technical support
Norton technical support number
Norton technical support phone number
Norton antivirus customer support phone number
Norton antivirus phone number customer service
Norton antivirus tech support number
Norton customer service phone number
Norton customer service phone numbers
Norton internet security technical support
Norton tech support phone number us
Norton technical support telephone number
contact Norton antivirus
contact Norton by phone
contact Norton customer service
contact Norton antivirus customer service phone number
contactNorton antivirus tech support usa
customer service Norton phone number
download Norton titanium
dri Norton customer service number
dri Norton customer service phone number
dri Norton phone number
how to contact Norton by email
how to delete Norton from mac
micro trend customer service
norton antivirus customer service number
phone number for Norton customer service
phone number forNorton customer service
phone number forNorton customer support
phone number forNorton tech support
phone number forNorton technical support
phone number for Norton antivirus technical support
phone number for Norton security
phone number for Norton support
phone number for Norton technical support
phone number for Norton antivirus customer service
phone number for Norton customer service
remove Norton from mac
technical support for antivirus Norton
telephone number forNorton technical support
telephone Norton antivirus
Norton antivirus contact number
Norton antivirus customer care
Norton antivirus customer care number
Norton antivirus customer care number usa
Norton antivirus customer service
Norton antivirus customer service number :idea: :evil: :D :) :lol: :( :o
:shock:
Norton antivirus customer service phone number
Norton antivirus customer service phone number usa
Norton antivirus customer service telephone number
Norton antivirus customer support
Norton antivirus customer support in usa
Norton antivirus customer support number
Norton antivirus customer support phone number
Norton antivirus for phone
Norton antivirus free antivirus support
Norton antivirus help phone number
Norton antivirus helpline number
Norton antivirus online support
Norton antivirus phone
Norton antivirus phone number
Norton antivirus phone number in usa
Norton antivirus phone number usa
Norton antivirus phone support
Norton antivirus plus tech support
Norton antivirus protection
Norton antivirus support
Norton antivirus support number
Norton antivirus support phone number
Norton antivirus support services
Norton antivirus support telephone number
Norton antivirus tech support
Norton antivirus tech support phone number free in usa
Norton antivirus tech support number
Norton antivirus tech support phone number
Norton antivirus technical support
Norton antivirus technical support number
Norton antivirus technical support phone number
Norton antivirus toll free customer care number
Norton antivirus toll free number
Norton antivirus contact phone number in usa
Norton antivirus help desk phone number in usa
Norton antivirus phone number support for technical issue in usa
Norton antivirus support phone number
Norton antivirus technical support help desk phone number
Norton antivirus technical support phone number
Norton contact number
Norton contact number usa
Norton contact phone number
Norton contact support
Norton contact number usa
Norton contact phone number
Norton contact phone number usa
Norton customer & technical support
Norton customer care
Norton customer care center
Norton customer care email
Norton customer care number
Norton customer care number
Norton customer care number usa
Norton customer care number usa toll free
Norton customer care phone number usa
Norton customer care tchnical support
Norton customer care toll free
Norton customer care toll free number
Norton customer care usa
Norton customer help
Norton customer number
Norton customer portal
Norton customer service
Norton customer service billing
Norton customer service email address
Norton customer service number
Norton customer service phone
Norton customer service phone number
Norton customer service phone number us
Norton customer service phone number usa
Norton customer service reviews
Norton customer service telephone number
Norton customer service usa
Norton customer support
Norton customer support number
Norton customer support phone
Norton customer support phone number
Norton customer service number
Norton customer service number usa
Norton customer service phone number
Norton customer support number
Norton customer support phone number
Norton free phone support
Norton gold support phone number
Norton help desk phone number
Norton help phone number
Norton helpline
Norton helpline phone number
Norton hotline customer service phone number
Norton internet security customer service
Norton antivirus customer service phone number
Norton antivirus customer service phone number
Norton antivirus customer support phone number
Norton antivirus customer support phone number
Norton antivirus technical support number
Norton customer service phone number usa
Norton internet security support phone number
Norton.com customer service
Norton antivirus antispyware 2011
Norton antivirus customer support
Norton antivirus serial key
Norton antivirus serial number
Norton antivirus support
Norton antivirus technical support
Norton business support
Norton contact support
Norton customer care number
Norton customer service 800
Norton customer service number
Norton customer service phone number
>From gcc-bugs-return-534238-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 15:16:29 2016
Return-Path: <gcc-bugs-return-534238-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 18958 invoked by alias); 11 Aug 2016 15:16:28 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 18936 invoked by uid 89); 11 Aug 2016 15:16:27 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=1.8 required=5.0 tests=ALL_TRUSTED,BAYES_50,FILL_THIS_FORM,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=yahoo, billing, number, hotline
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 15:16:22 +0000
From: "braydenjames2525 at yahoo dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/74060] New: KASPERSKY Support Phone Number! 1 844.569.1583 KASPERSKY Technical Support Help Line Phone Number.
Date: Thu, 11 Aug 2016 15:16:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: new-ra
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: braydenjames2525 at yahoo dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-74060-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01574.txt.bz2
Content-length: 9481

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74060

            Bug ID: 74060
           Summary: KASPERSKY Support Phone Number! 1 844.569.1583
                    KASPERSKY Technical Support Help Line Phone Number.
           Product: gcc
           Version: new-ra
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: braydenjames2525 at yahoo dot com
  Target Milestone: ---

KASPERSKY Support Phone Number! 1 844.569.1583 KASPERSKY Technical Support Help
Line Phone Number.
KASPERSKY Support Phone Number!!1 844.569.1583 KASPERSKY support phone number
KASPERSKY Support Phone Number!!1 844.569.1583 KASPERSKY support phone number
Kaspersky helpline phone number@~1844-569-1583 Kaspersky tech Support Number
Kaspersky antivirus customer service phone number
Kaspersky Security contact Number +1844-5691583**Kaspersky antivirus support
phone number
usa+1-844-569-1583) Technical support number
CANADA+1844-569-1583 Kaspersky Antivirus Technical Support
USA-1844-569-1569contact Kaspersky antivirus customer service phone number
AUS-1-844-569-1583 phone number for Kaspersky customer service
UK-1844-569-1583 phone number for Kaspersky antivirus technical support
1-844-569-1583 phone number for Kaspersky antivirus customer service
phone number for Kaspersky antivirus technical support
phone number for Kaspersky security
Kaspersky customer service telephone number
Kaspersky customer support
Kaspersky helpline support number
Kaspersky internet security customer service
Kaspersky internet security technical support
Kaspersky pc call in technical support
Kaspersky phone support
Kaspersky removal tool download
Kaspersky subscription renewal
Kaspersky support contact
Kaspersky support hotline
Kaspersky support phone number
Kaspersky tech support phone number
Kaspersky technical support
Kaspersky technical support chat
Kaspersky technical support phone number
Kaspersky technical support phone number usa
Kaspersky telephone number
Kaspersky titanium antivirus
Kaspersky titanium internet security
Kaspersky titanium maximum
Kaspersky titanium maximum security
Kaspersky titanium problems
KASPERSKY Support Phone Number!!1 844.569.1583 KASPERSKY support phone number
KASPERSKY Support Phone Number!!1 844.569.1583 KASPERSKY support phone number
Kaspersky helpline phone number@~1844-569-1583 Kaspersky tech Support Number
Kaspersky antivirus customer service phone number
Kaspersky Security contact Number +1844-5691583**Kaspersky antivirus support
phone number
usa+1-844-569-1583) Technical support number
CANADA+1844-569-1583 Kaspersky Antivirus Technical Support
USA-1844-569-1569contact Kaspersky antivirus customer service phone number
AUS-1-844-569-1583 phone number for Kaspersky customer service
UK-1844-569-1583 phone number for Kaspersky antivirus technical support
1-844-569-1583 phone number for Kaspersky antivirus customer service
Kaspersky titanium removal tool
Kaspersky titanium reviews
Kaspersky titanium support
Kaspersky virus removal service
uninstall Kaspersky smart surfing for mac
usa customer care number for Kaspersky antivirus
Kaspersky phone number customer service
Kaspersky phone numbers customer support
Kaspersky phone support number
Kaspersky security contact phone number
Kaspersky security phone number customer service
Kaspersky security support phone number
Kaspersky support contact number
Kaspersky support email address
Kaspersky support phone number
Kaspersky support telephone number
Kaspersky support telephone number usa
Kaspersky support telephone number
Kaspersky tech support number
KASPERSKY Support Phone Number!!1 844.569.1583 KASPERSKY support phone number
KASPERSKY Support Phone Number!!1 844.569.1583 KASPERSKY support phone number
Kaspersky helpline phone number@~1844-569-1583 Kaspersky tech Support Number
Kaspersky antivirus customer service phone number
Kaspersky Security contact Number +1844-5691583**Kaspersky antivirus support
phone number
usa+1-844-569-1583) Technical support number
CANADA+1844-569-1583 Kaspersky Antivirus Technical Support
USA-1844-569-1569contact Kaspersky antivirus customer service phone number
AUS-1-844-569-1583 phone number for Kaspersky customer service
UK-1844-569-1583 phone number for Kaspersky antivirus technical support
1-844-569-1583 phone number for Kaspersky antivirus customer serviceKaspersky
antivirus customer care phone number
Kaspersky antivirus customer service billing
Kaspersky antivirus customer service email address
Kaspersky antivirus customer service live chat
Kaspersky antivirus customer service telephone number
Kaspersky antivirus customer support usa phone number
Kaspersky antivirus help desk support phone number free in usa
Kaspersky antivirus phone number customer service us
Kaspersky antivirus phone number support
Kaspersky antivirus support phone number
Kaspersky antivirus tech support phone number free in usa
Kaspersky antivirus tech support phone number
Kaspersky antivirus technical support customer service
Kaspersky antivirus technical support number
Kaspersky antivirus telephone number
Kaspersky antivirus toll free customer care number
Kaspersky antivirus toll free number in usa
Kaspersky antivirus contact phone number in usa
Kaspersky antivirus customer service number
Kaspersky antivirus customer service phone number
Kaspersky antivirus customer service telephone number
Kaspersky antivirus customer support number
Kaspersky antivirus customer support phone number
KASPERSKY Support Phone Number!!1 844.569.1583 KASPERSKY support phone number
KASPERSKY Support Phone Number!!1 844.569.1583 KASPERSKY support phone number
Kaspersky helpline phone number@~1844-569-1583 Kaspersky tech Support Number
Kaspersky antivirus customer service phone number
Kaspersky Security contact Number +1844-5691583**Kaspersky antivirus support
phone number
usa+1-844-569-1583) Technical support number
CANADA+1844-569-1583 Kaspersky Antivirus Technical Support
USA-1844-569-1569contact Kaspersky antivirus customer service phone number
AUS-1-844-569-1583 phone number for Kaspersky customer service
UK-1844-569-1583 phone number for Kaspersky antivirus technical support
1-844-569-1583 phone number for Kaspersky antivirus customer service
Kaspersky antivirus customer support phone number
Kaspersky antivirus help desk phone number in usa
Kaspersky antivirus phone number
Kaspersky tech support phone number
Kaspersky tech support phone number free
Kaspersky technical support phone number
Kaspersky technical support cutomer phone number
Kaspersky technical support phone number
Kaspersky technical support number free in usa
Kaspersky technical support number toll free number
Kaspersky technical support phone number
Kaspersky technologies phone number
Kaspersky telephone support number
Kaspersky antivirus customer support phone number
Kaspersky antivirus customer service phone number
Kaspersky customer support phone number
Kaspersky phone number customer service
Kaspersky technical support telephone number
contact Kaspersky antivirus customer service phone number
customer service number for Kaspersky antivirus
phone number for Kaspersky antivirus
phone number for Kaspersky antivirus customer service
phone number for Kaspersky antivirus support
phone number for Kaspersky customer service
phone number for Kaspersky customer service
phone number for Kaspersky customer support
KASPERSKY Support Phone Number!!1 844.569.1583 KASPERSKY support phone number
KASPERSKY Support Phone Number!!1 844.569.1583 KASPERSKY support phone number
Kaspersky helpline phone number@~1844-569-1583 Kaspersky tech Support Number
Kaspersky antivirus customer service phone number
Kaspersky Security contact Number +1844-5691583**Kaspersky antivirus support
phone number
usa+1-844-569-1583) Technical support number
CANADA+1844-569-1583 Kaspersky Antivirus Technical Support
USA-1844-569-1569contact Kaspersky antivirus customer service phone number
AUS-1-844-569-1583 phone number for Kaspersky customer service
UK-1844-569-1583 phone number for Kaspersky antivirus technical support
1-844-569-1583 phone number for Kaspersky antivirus customer service
phone number for Kaspersky tech support
phone number Kaspersky antivirus customer service
Kaspersky antivirus customer service number
Kaspersky antivirus customer service phone
Kaspersky antivirus customer service phone number
Kaspersky antivirus customer service phone number us
Kaspersky antivirus customer service telephone number
Kaspersky antivirus customer support
Kaspersky antivirus customer support number
Kaspersky antivirus phone number customer service us
Kaspersky antivirus phone number support
Kaspersky antivirus phone support
Kaspersky antivirus phone support number
Kaspersky antivirus support phone number
Kaspersky antivirus tech support phone number
Kaspersky antivirus technical support
Kaspersky antivirus technical support number
Kaspersky antivirus technical support phone number
Kaspersky customer service phone number
Kaspersky customer support phone number
Kaspersky helpline phone number
Kaspersky internet security customer service
Kaspersky internet security customer service phone number
Kaspersky internet security help phone number
Kaspersky internet security phone number customer service
Kaspersky phone number customer service
Kaspersky phone number customer support
Kaspersky security customer service phone number
>From gcc-bugs-return-534240-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 15:17:09 2016
Return-Path: <gcc-bugs-return-534240-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 21101 invoked by alias); 11 Aug 2016 15:17:08 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 21077 invoked by uid 89); 11 Aug 2016 15:17:06 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_60,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=billing, number, hotline, portal
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 15:16:56 +0000
From: "hk0003311 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/74063] New: @^@^@^@1~8.5.5.7.0.9~2847^^^^ Epson P.r.i.n.t.e.r  T.e.h S.u.p.p.O.r.T P.h.o.n.e n.u.m.b.e.r Epson p.h.o.n.e N.u.m.b.e.r.
Date: Thu, 11 Aug 2016 15:17:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: 4.0.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: hk0003311 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-74063-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01576.txt.bz2
Content-length: 7328

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74063

            Bug ID: 74063
           Summary: @^@^@^@1~8.5.5.7.0.9~2847^^^^ Epson P.r.i.n.t.e.r
                    T.e.h S.u.p.p.O.r.T P.h.o.n.e n.u.m.b.e.r Epson
                    p.h.o.n.e N.u.m.b.e.r.
           Product: gcc
           Version: 4.0.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ada
          Assignee: unassigned at gcc dot gnu.org
          Reporter: hk0003311 at gmail dot com
  Target Milestone: ---

Created attachment 39223
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39223&action=edit
((moti))Call @@@++ USA I8557O92847 EPSON p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l EPSON h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a EPSON s.u.p.p.o.r.t p.h.o.n.

((moti))Call @@@++ USA I8557O92847 EPSON p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l EPSON h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a EPSON s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa USA 1
I8557O92847 EPSON p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r
u.s.a. C.a.l.l EPSON h.e.l.p d.e.s.k n.u.m.b.e.r n.u.m.b.e.r C.a.n.a.d.a EPSON
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa canada 1-1855-709-2847 USA, EPSON printer
Tech Support phone number,EPSON technical support phone number 1 I8557O92847
.EPSON Tech Support Number EPSON Tech EPSON tech support, EPSON tech support
number, EPSON tech support phone number, EPSON technical support, EPSON
technical support number, EPSON technical support phone number, EPSON tech
support number, EPSON support number, EPSON Tech support phone number, EPSON
support phone number, EPSON technical support phone number, EPSON technical
support number,Support Phone Number for EPSON printer Phone Number for EPSON
CustomerService Technical Support Telephone Number EPSON printer support number
EPSON EPSON printer tech support number EPSON EPSON printer technical support
number EPSON EPSON printer technical support phone number EPSON EPSON printer
customer service number EPSON EPSON internet security technical support EPSON
technical support phone number EPSON EPSON tech support phone number EPSON
EPSON customer support phone number I-855-709-2847 EPSON EPSON printer support
phone number EPSON EPSON support phone EPSON tech support EPSON customer
support EPSON phone support EPSON support number EPSON EPSON technical support
EPSON printer customer support phone number EPSON EPSON printer tech support
phone number EPSON contact EPSON support EPSON printer technical support phone
number ~!~I8557092847++ EPSON EPSON phone number EPSON tech support EPSON
support ticket EPSON customer support number EPSON EPSON tech support number
EPSON EPSON technical support number EPSON EPSON support center EPSON telephone
support call EPSON support EPSON printer support support EPSON EPSON billing
support EPSON printer technical support number EPSON support EPSON printer
EPSON online support EPSON contact support EPSON printer support number EPSON
EPSON printer customer support number EPSON EPSON printer tech support number
EPSON support for EPSON EPSON phone number EPSON EPSON customer service phone
number EPSON EPSON contact phone number EPSON EPSON printer phone number EPSON
EPSON printer customer service phone number EPSON phone number EPSON for EPSON
customer service EPSON software phone number EPSON phone number EPSON for EPSON
EPSON customer service telephone number EPSON EPSON helpline phone number EPSON
EPSON contact number EPSON EPSON customer service number EPSON EPSON customer
service phone number ~!~I8557092847++ EPSON us EPSON customer service phone
number EPSON usa EPSON telephone number EPSON EPSON phone number EPSON usa
EPSON printer contact number EPSON EPSON number EPSON EPSON contact number
EPSON usa EPSON printer helpline number EPSON EPSON helpline number EPSON EPSON
customer number EPSON EPSON printer customer service number EPSON EPSON contact
telephone number EPSON contact number EPSON for EPSON EPSON software contact
number EPSON EPSON toll free number EPSON EPSON telephone number EPSON uk EPSON
registration number EPSON EPSON toll free number EPSON usa EPSON customer
service EPSON software customer service contact EPSON customer service EPSON
customer service phone EPSON printer customer service EPSON service EPSON
printer technical support EPSON printer customer support EPSON technical
support reviews telephone EPSON printer EPSON tech support phone number EPSON
EPSON printer tech support phone number EPSON EPSON printer customer service
EPSON technical support phone number EPSON EPSON printer free printer support
EPSON customer service billing EPSON customer service email address EPSON
customer service reviews contact EPSON customer service EPSON tech support
number EPSON usa EPSON printer support number EPSON EPSON printer contact
number EPSON EPSON customer service phone number EPSON EPSON technical support
usa EPSON technical support number EPSON EPSON tech support phone EPSON tech
support number EPSON EPSON customer service telephone number EPSON EPSON
printer customer support number EPSON EPSON printer phone number EPSON EPSON
printer online support EPSON customer service number EPSON EPSON tech support
center EPSON customer service EPSON software customer service EPSON customer
care number EPSON usa EPSON customer number EPSON EPSON customer support number
EPSON EPSON customer care number EPSON EPSON customer care toll free number
EPSON EPSON tech support EPSON technical support EPSON printer support EPSON
printer tech support EPSON support center EPSON.com customer service EPSON
printer customer care number EPSON EPSON customer care EPSON phone number EPSON
phone number EPSON for EPSON customer service EPSON phone support EPSON phone
number EPSON tech support EPSON support phone number EPSON contact EPSON by
phone EPSON contact phone number EPSON EPSON helpline phone number EPSON EPSON
printer phone EPSON printer for phone EPSON contact number EPSON EPSON contact
support contact EPSON printer EPSON contact number EPSON usa EPSON toll free
number EPSON EPSON telephone number EPSON EPSON toll free number EPSON usa
EPSON printer support services technical support for printer EPSON EPSON
customer service phone number EPSON usa EPSON printer customer care number
EPSON usa EPSON customer care number EPSON EPSON customer care center EPSON
customer support EPSON customer support phone EPSON customer help EPSON
customer & technical support EPSON customer portal EPSON customer care phone
number EPSON usa EPSON customer care email EPSON helpline EPSON tech support
contact EPSON customer care toll free EPSON printer customer service number
EPSON EPSON printer protection norton printer customer service number EPSON
EPSON software customer service number EPSON EPSON hotline customer service
phone number EPSON EPSON customer service phone number EPSON us how to contact
EPSON by email EPSON free phone support EPSON printer technical support number
EPSON EPSON printer technical support help desk phone number EPSON EPSON
technical support number EPSON toll free number EPSON EPSON printer customer
support phone number EPSON EPSON printer customer
>From gcc-bugs-return-534241-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 15:21:39 2016
Return-Path: <gcc-bugs-return-534241-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 31463 invoked by alias); 11 Aug 2016 15:21:38 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 31363 invoked by uid 89); 11 Aug 2016 15:21:38 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=3.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,LIKELY_SPAM_BODY,LONGWORDS autolearn=no version=3.3.2 spammyÊNADA, Care, @@call, @@Call
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 15:21:33 +0000
From: "davidrao258 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/74092] New: @24 hours MS office number+++1800-626-4703 @@ Office 365 Helpline Phone Number
Date: Thu, 11 Aug 2016 15:21:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: davidrao258 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-74092-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01577.txt.bz2
Content-length: 33259

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74092

            Bug ID: 74092
           Summary: @24 hours MS office number+++1800-626-4703 @@ Office
                    365 Helpline Phone Number
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ada
          Assignee: unassigned at gcc dot gnu.org
          Reporter: davidrao258 at gmail dot com
  Target Milestone: ---

@techsupport number +++1800-626-4703 @@ Tech Support Number
@Help Desk Number+++ 1800-626-4703 sevices by Microsoft office
number microsoft office live phone number Microsoft office 2010 update
microsoft outlook customer service telephone number microsoft office number to
call Microsoft office 2010 upgrade microsoft outlook customer support microsoft
office online help microsoft office 2011 mac microsoft outlook customer support
number microsoft office online support microsoft office 2011 mac product key
microsoft outlook customer support phone microsoft office phone number
microsoft office 2013 microsoft outlook customer support phone number microsoft
office phone number customer service microsoft office 25 character product key
microsoft outlook email customer service microsoft office phone number support
microsoft office activation help microsoft outlook email customer service
number microsoft office phone support microsoft office activation key microsoft
outlook email help phone number microsoft office phone support number microsoft
office activation phone number microsoft outlook email support microsoft office
product support microsoft office and excel microsoft outlook email support
number Microsoft office phone number,((((1800-626-4703-1800-626-4703)))) )//
Microsoft office customer care number..... Microsoft office Toll Free,
Intuit@(1800-626-4703)@-: Microsoft office Technical Support Number, Microsoft
office help desk phone number provides online solution for all USA/CANADA
clients. For any help of query call (((1800-626-4703)))) to get all Microsoft
office account solution. For any help of query call (((1800-626-4703)))) to get
all Microsoft office account solution. @@Call,(((1800-626-4703)))) for All type
help 1800-626-4703 by Microsoft office support telephone number,Microsoft
office support phone number,Microsoft office support phone number,Microsoft
office help phone number, Microsoft office technical support number.Microsoft
office support number, Microsoft office phone number, Microsoft office tech
support number, Microsoft office customer support number, Microsoft office
customer support phone number, Microsoft office customer service phone number,
Microsoft office payroll customer service phone number, Microsoft office
support phone number Microsoft office help number-Microsoft office Helpline
Number; Microsoft office help phone number-Microsoft office Helpline Number,
Microsoft office Tech Support Toll free Number, Microsoft office Support
Telephone Number, Microsoft office Tech Support Telephone number, Microsoft
office Tech Support contact number, Microsoft office support contact number,
Microsoft office technical support contact number, Microsoft office help desk
phone number. Call, @((((1800-626-4703)))))@-: It is very popular toll free
number which provide by Microsoft office technical support, Microsoft office
Customer Service Phone Number, Microsoft office Customer Service Number,
Microsoft office Customer Support Phone Number, Microsoft office Customer
Support Number, Microsoft office Customer Service Helpline Number, Microsoft
office Customer Care Number, Microsoft office support team phone number.
Call,@((((1800-626-4703)))))@-: Microsoft office help number-Microsoft office
Helpline Number; Microsoft office help phone number, Microsoft office Helpline
Number, Microsoft office Tech Support Toll free Number, Microsoft office
Support Telephone Number, Microsoft office Tech Support Telephone number,
Microsoft office Tech Support contact number, Microsoft office support contact
number, Microsoft office technical support contact number, Microsoft office pro
support phone number, Microsoft office payroll support phone number. Microsoft
office payroll customer 1800-626-4703 support phone number for all type help by
Microsoft office support telephone number, Microsoft office help phone number,
Microsoft office technical support number.Microsoft office support number,
Microsoft office phone number, Microsoft office tech support number, Microsoft
office customer support number, Microsoft office customer support phone number,
Microsoft office customer service phone number, Microsoft number microsoft
office live phone number Microsoft office 2010 update microsoft outlook
customer service telephone number microsoft office number to call Microsoft
office 2010 upgrade microsoft outlook customer support microsoft office online
help microsoft office 2011 mac microsoft outlook customer support number
microsoft office online support microsoft office 2011 mac product key microsoft
outlook customer support phone microsoft office phone number microsoft office
2013 microsoft outlook customer support phone number microsoft office phone
number customer service microsoft office 25 character product key microsoft
outlook email customer service microsoft office phone number support microsoft
office activation help microsoft outlook email customer service number
microsoft office phone support microsoft office activation key microsoft
outlook email help phone number microsoft office phone support number microsoft
office activation phone number microsoft outlook email support microsoft office
product support microsoft office and excel microsoft outlook email support
number Microsoft office phone number,((((1800-626-4703)))) )// Microsoft office
customer care number..... Microsoft office Toll Free, Intuit@(1800-626-4703)@-:
Microsoft office Technical Support Number, Microsoft office help desk phone
number provides online solution for all USA/CANADA clients. For any help of
query call (((1800-626-4703)))) to get all Microsoft office account solution.
For any help of query call (((1800-626-4703)))) to get all Microsoft office
account solution. @@Call,(((1800-626-4703)))) for All type help 1800-626-4703
by Microsoft office support telephone number,Microsoft office support phone
number,Microsoft office support phone number,Microsoft office help phone
number, Microsoft office technical support number.Microsoft office support
number, Microsoft office phone number, Microsoft office tech support number,
Microsoft office customer support number, Microsoft office customer support
phone number, Microsoft office customer service phone number, Microsoft office
payroll customer service phone number, Microsoft office support phone number
Microsoft office help number-Microsoft office Helpline Number; Microsoft office
help phone number-Microsoft office Helpline Number, Microsoft office Tech
Support Toll free Number, Microsoft office Support Telephone Number, Microsoft
office Tech Support Telephone number, Microsoft office Tech Support contact
number, Microsoft office support contact number, Microsoft office technical
support contact number, Microsoft office help desk phone number. Call,
@((((1800-626-4703)))))@-: It is very popular toll free number which provide by
Microsoft office technical support, Microsoft office Customer Service Phone
Number, Microsoft office Customer Service Number, Microsoft office Customer
Support Phone Number, Microsoft office Customer Support Number, Microsoft
office Customer Service Helpline Number, Microsoft office Customer Care Number,
Microsoft office support team phone number. Call,@((((1800-626-4703)))))@-:
Microsoft office help number-Microsoft office Helpline Number; Microsoft office
help phone number, Microsoft office Helpline Number, Microsoft office Tech
Support Toll free Number, Microsoft office Support Telephone Number, Microsoft
office Tech Support Telephone number, Microsoft office Tech Support contact
number, Microsoft office support contact number, Microsoft office technical
support contact number, Microsoft office pro support phone number, Microsoft
office payroll support phone number. Microsoft office payroll customer
1800-626-4703 support phone number for all type help by Microsoft office
support telephone number, Microsoft office help phone number, Microsoft office
technical support number.Microsoft office support number, Microsoft office
phone number, Microsoft office tech support number, Microsoft office customer
support number, Microsoft office customer support phone number, Microsoft
office customer service phone number, Microsoft number microsoft office live
phone number Microsoft office 2010 update microsoft outlook customer service
telephone number microsoft office number to call Microsoft office 2010 upgrade
microsoft outlook customer support microsoft office online help microsoft
office 2011 mac microsoft outlook customer support number microsoft office
online support microsoft office 2011 mac product key microsoft outlook customer
support phone microsoft office phone number microsoft office 2013 microsoft
outlook customer support phone number microsoft office phone number customer
service microsoft office 25 character product key microsoft outlook email
customer service microsoft office phone number support microsoft office
activation help microsoft outlook email customer service number microsoft
office phone support microsoft office activation key microsoft outlook email
help phone number microsoft office phone support number microsoft office
activation phone number microsoft outlook email support microsoft office
product support microsoft office and excel microsoft outlook email support
number Microsoft office phone number,((((1800-626-4703)))) )// Microsoft office
customer care number..... Microsoft office Toll Free, Intuit@(1800-626-4703)@-:
Microsoft office Technical Support Number, Microsoft office help desk phone
number provides online solution for all USA/CANADA clients. For any help of
query call (((1800-626-4703)))) to get all Microsoft office account solution.
For any help of query call (((1800-626-4703)))) to get all Microsoft office
account solution. @@Call,(((1800-626-4703)))) for All type help 1800-626-4703
by Microsoft office support telephone number,Microsoft office support phone
number,Microsoft office support phone number,Microsoft office help phone
number, Microsoft office technical support number.Microsoft office support
number, Microsoft office phone number, Microsoft office tech support number,
Microsoft office customer support number, Microsoft office customer support
phone number, Microsoft office customer service phone number, Microsoft office
payroll customer service phone number, Microsoft office support phone number
Microsoft office help number-Microsoft office Helpline Number; Microsoft office
help phone number-Microsoft office Helpline Number, Microsoft office Tech
Support Toll free Number, Microsoft office Support Telephone Number, Microsoft
office Tech Support Telephone number, Microsoft office Tech Support contact
number, Microsoft office support contact number, Microsoft office technical
support contact number, Microsoft office help desk phone number. Call,
@((((1800-626-4703)))))@-: It is very popular toll free number which provide by
Microsoft office technical support, Microsoft office Customer Service Phone
Number, Microsoft office Customer Service Number, Microsoft office Customer
Support Phone Number, Microsoft office Customer Support Number, Microsoft
office Customer Service Helpline Number, Microsoft office Customer Care Number,
Microsoft office support team phone number. Call,@((((1800-626-4703)))))@-:
Microsoft office help number-Microsoft office Helpline Number; Microsoft office
help phone number, Microsoft office Helpline Number, Microsoft office Tech
Support Toll free Number, Microsoft office Support Telephone Number, Microsoft
office Tech Support Telephone number, Microsoft office Tech Support contact
number, Microsoft office support contact number, Microsoft office technical
support contact number, Microsoft office pro support phone number, Microsoft
office payroll support phone number. Microsoft office payroll customer
1800-626-4703 support phone number for all type help by Microsoft office
support telephone number, Microsoft office help phone number, Microsoft office
technical support number.Microsoft office support number, Microsoft office
phone number, Microsoft office tech support number, Microsoft office customer
support number, Microsoft office customer support phone number, Microsoft
office customer service phone number, Microsoft number microsoft office live
phone number Microsoft office 2010 update microsoft outlook customer service
telephone number microsoft office number to call Microsoft office 2010 upgrade
microsoft outlook customer support microsoft office online help microsoft
office 2011 mac microsoft outlook customer support number microsoft office
online support microsoft office 2011 mac product key microsoft outlook customer
support phone microsoft office phone number microsoft office 2013 microsoft
outlook customer support phone number microsoft office phone number customer
service microsoft office 25 character product key microsoft outlook email
customer service microsoft office phone number support microsoft office
activation help microsoft outlook email customer service number microsoft
office phone support microsoft office activation key microsoft outlook email
help phone number microsoft office phone support number microsoft office
activation phone number microsoft outlook email support microsoft office
product support microsoft office and excel microsoft outlook email support
number Microsoft office phone number,((((1800-626-4703)))) )// Microsoft office
customer care number..... Microsoft office Toll Free, Intuit@(1800-626-4703)@-:
Microsoft office Technical Support Number, Microsoft office help desk phone
number provides online solution for all USA/CANADA clients. For any help of
query call (((1800-626-4703)))) to get all Microsoft office account solution.
For any help of query call (((1800-626-4703)))) to get all Microsoft office
account solution. @@Call,(((1800-626-4703)))) for All type help 1800-626-4703
by Microsoft office support telephone number,Microsoft office support phone
number,Microsoft office support phone number,Microsoft office help phone
number, Microsoft office technical support number.Microsoft office support
number, Microsoft office phone number, Microsoft office tech support number,
Microsoft office customer support number, Microsoft office customer support
phone number, Microsoft office customer service phone number, Microsoft office
payroll customer service phone number, Microsoft office support phone number
Microsoft office help number-Microsoft office Helpline Number; Microsoft office
help phone number-Microsoft office Helpline Number, Microsoft office Tech
Support Toll free Number, Microsoft office Support Telephone Number, Microsoft
office Tech Support Telephone number, Microsoft office Tech Support contact
number, Microsoft office support contact number, Microsoft office technical
support contact number, Microsoft office help desk phone number. Call,
@((((1800-626-4703)))))@-: It is very popular toll free number which provide by
Microsoft office technical support, Microsoft office Customer Service Phone
Number, Microsoft office Customer Service Number, Microsoft office Customer
Support Phone Number, Microsoft office Customer Support Number, Microsoft
office Customer Service Helpline Number, Microsoft office Customer Care Number,
Microsoft office support team phone number. Call,@((((1800-626-4703)))))@-:
Microsoft office help number-Microsoft office Helpline Number; Microsoft office
help phone number, Microsoft office Helpline Number, Microsoft office Tech
Support Toll free Number, Microsoft office Support Telephone Number, Microsoft
office Tech Support Telephone number, Microsoft office Tech Support contact
number, Microsoft office support contact number, Microsoft office technical
support contact number, Microsoft office pro support phone number, Microsoft
office payroll support phone number. Microsoft office payroll customer
1800-626-4703 support phone number for all type help by Microsoft office
support telephone number, Microsoft office help phone number, Microsoft office
technical support number.Microsoft office support number, Microsoft office
phone number, Microsoft office tech support number, Microsoft office customer
support number, Microsoft office customer support phone number, Microsoft
office customer service phone number, Microsoft.e
number microsoft office live phone number Microsoft office 2010 update
microsoft outlook customer service telephone number microsoft office number to
call Microsoft office 2010 upgrade microsoft outlook customer support microsoft
office online help microsoft office 2011 mac microsoft outlook customer support
number microsoft office online support microsoft office 2011 mac product key
microsoft outlook customer support phone microsoft office phone number
microsoft office 2013 microsoft outlook customer support phone number microsoft
office phone number customer service microsoft office 25 character product key
microsoft outlook email customer service microsoft office phone number support
microsoft office activation help microsoft outlook email customer service
number microsoft office phone support microsoft office activation key microsoft
outlook email help phone number microsoft office phone support number microsoft
office activation phone number microsoft outlook email support microsoft office
product support microsoft office and excel microsoft outlook email support
number Microsoft office phone number,((((1800-626-4703-1800-626-4703)))) )//
Microsoft office customer care number..... Microsoft office Toll Free,
Intuit@(1800-626-4703)@-: Microsoft office Technical Support Number, Microsoft
office help desk phone number provides online solution for all USA/CANADA
clients. For any help of query call (((1800-626-4703)))) to get all Microsoft
office account solution. For any help of query call (((1800-626-4703)))) to get
all Microsoft office account solution. @@Call,(((1800-626-4703)))) for All type
help 1800-626-4703 by Microsoft office support telephone number,Microsoft
office support phone number,Microsoft office support phone number,Microsoft
office help phone number, Microsoft office technical support number.Microsoft
office support number, Microsoft office phone number, Microsoft office tech
support number, Microsoft office customer support number, Microsoft office
customer support phone number, Microsoft office customer service phone number,
Microsoft office payroll customer service phone number, Microsoft office
support phone number Microsoft office help number-Microsoft office Helpline
Number; Microsoft office help phone number-Microsoft office Helpline Number,
Microsoft office Tech Support Toll free Number, Microsoft office Support
Telephone Number, Microsoft office Tech Support Telephone number, Microsoft
office Tech Support contact number, Microsoft office support contact number,
Microsoft office technical support contact number, Microsoft office help desk
phone number. Call, @((((1800-626-4703)))))@-: It is very popular toll free
number which provide by Microsoft office technical support, Microsoft office
Customer Service Phone Number, Microsoft office Customer Service Number,
Microsoft office Customer Support Phone Number, Microsoft office Customer
Support Number, Microsoft office Customer Service Helpline Number, Microsoft
office Customer Care Number, Microsoft office support team phone number.
Call,@((((1800-626-4703)))))@-: Microsoft office help number-Microsoft office
Helpline Number; Microsoft office help phone number, Microsoft office Helpline
Number, Microsoft office Tech Support Toll free Number, Microsoft office
Support Telephone Number, Microsoft office Tech Support Telephone number,
Microsoft office Tech Support contact number, Microsoft office support contact
number, Microsoft office technical support contact number, Microsoft office pro
support phone number, Microsoft office payroll support phone number. Microsoft
office payroll customer 1800-626-4703 support phone number for all type help by
Microsoft office support telephone number, Microsoft office help phone number,
Microsoft office technical support number.Microsoft office support number,
Microsoft office phone number, Microsoft office tech support number, Microsoft
office customer support number, Microsoft office customer support phone number,
Microsoft office customer service phone number, Microsoft number microsoft
office live phone number Microsoft office 2010 update microsoft outlook
customer service telephone number microsoft office number to call Microsoft
office 2010 upgrade microsoft outlook customer support microsoft office online
help microsoft office 2011 mac microsoft outlook customer support number
microsoft office online support microsoft office 2011 mac product key microsoft
outlook customer support phone microsoft office phone number microsoft office
2013 microsoft outlook customer support phone number microsoft office phone
number customer service microsoft office 25 character product key microsoft
outlook email customer service microsoft office phone number support microsoft
office activation help microsoft outlook email customer service number
microsoft office phone support microsoft office activation key microsoft
outlook email help phone number microsoft office phone support number microsoft
office activation phone number microsoft outlook email support microsoft office
product support microsoft office and excel microsoft outlook email support
number Microsoft office phone number,((((1800-626-4703)))) )// Microsoft office
customer care number..... Microsoft office Toll Free, Intuit@(1800-626-4703)@-:
Microsoft office Technical Support Number, Microsoft office help desk phone
number provides online solution for all USA/CANADA clients. For any help of
query call (((1800-626-4703)))) to get all Microsoft office account solution.
For any help of query call (((1800-626-4703)))) to get all Microsoft office
account solution. @@Call,(((1800-626-4703)))) for All type help 1800-626-4703
by Microsoft office support telephone number,Microsoft office support phone
number,Microsoft office support phone number,Microsoft office help phone
number, Microsoft office technical support number.Microsoft office support
number, Microsoft office phone number, Microsoft office tech support number,
Microsoft office customer support number, Microsoft office customer support
phone number, Microsoft office customer service phone number, Microsoft office
payroll customer service phone number, Microsoft office support phone number
Microsoft office help number-Microsoft office Helpline Number; Microsoft office
help phone number-Microsoft office Helpline Number, Microsoft office Tech
Support Toll free Number, Microsoft office Support Telephone Number, Microsoft
office Tech Support Telephone number, Microsoft office Tech Support contact
number, Microsoft office support contact number, Microsoft office technical
support contact number, Microsoft office help desk phone number. Call,
@((((1800-626-4703)))))@-: It is very popular toll free number which provide by
Microsoft office technical support, Microsoft office Customer Service Phone
Number, Microsoft office Customer Service Number, Microsoft office Customer
Support Phone Number, Microsoft office Customer Support Number, Microsoft
office Customer Service Helpline Number, Microsoft office Customer Care Number,
Microsoft office support team phone number. Call,@((((1800-626-4703)))))@-:
Microsoft office help number-Microsoft office Helpline Number; Microsoft office
help phone number, Microsoft office Helpline Number, Microsoft office Tech
Support Toll free Number, Microsoft office Support Telephone Number, Microsoft
office Tech Support Telephone number, Microsoft office Tech Support contact
number, Microsoft office support contact number, Microsoft office technical
support contact number, Microsoft office pro support phone number, Microsoft
office payroll support phone number. Microsoft office payroll customer
1800-626-4703 support phone number for all type help by Microsoft office
support telephone number, Microsoft office help phone number, Microsoft office
technical support number.Microsoft office support number, Microsoft office
phone number, Microsoft office tech support number, Microsoft office customer
support number, Microsoft office customer support phone number, Microsoft
office customer service phone number, Microsoft number microsoft office live
phone number Microsoft office 2010 update microsoft outlook customer service
telephone number microsoft office number to call Microsoft office 2010 upgrade
microsoft outlook customer support microsoft office online help microsoft
office 2011 mac microsoft outlook customer support number microsoft office
online support microsoft office 2011 mac product key microsoft outlook customer
support phone microsoft office phone number microsoft office 2013 microsoft
outlook customer support phone number microsoft office phone number customer
service microsoft office 25 character product key microsoft outlook email
customer service microsoft office phone number support microsoft office
activation help microsoft outlook email customer service number microsoft
office phone support microsoft office activation key microsoft outlook email
help phone number microsoft office phone support number microsoft office
activation phone number microsoft outlook email support microsoft office
product support microsoft office and excel microsoft outlook email support
number Microsoft office phone number,((((1800-626-4703)))) )// Microsoft office
customer care number..... Microsoft office Toll Free, Intuit@(1800-626-4703)@-:
Microsoft office Technical Support Number, Microsoft office help desk phone
number provides online solution for all USA/CANADA clients. For any help of
query call (((1800-626-4703)))) to get all Microsoft office account solution.
For any help of query call (((1800-626-4703)))) to get all Microsoft office
account solution. @@Call,(((1800-626-4703)))) for All type help 1800-626-4703
by Microsoft office support telephone number,Microsoft office support phone
number,Microsoft office support phone number,Microsoft office help phone
number, Microsoft office technical support number.Microsoft office support
number, Microsoft office phone number, Microsoft office tech support number,
Microsoft office customer support number, Microsoft office customer support
phone number, Microsoft office customer service phone number, Microsoft office
payroll customer service phone number, Microsoft office support phone number
Microsoft office help number-Microsoft office Helpline Number; Microsoft office
help phone number-Microsoft office Helpline Number, Microsoft office Tech
Support Toll free Number, Microsoft office Support Telephone Number, Microsoft
office Tech Support Telephone number, Microsoft office Tech Support contact
number, Microsoft office support contact number, Microsoft office technical
support contact number, Microsoft office help desk phone number. Call,
@((((1800-626-4703)))))@-: It is very popular toll free number which provide by
Microsoft office technical support, Microsoft office Customer Service Phone
Number, Microsoft office Customer Service Number, Microsoft office Customer
Support Phone Number, Microsoft office Customer Support Number, Microsoft
office Customer Service Helpline Number, Microsoft office Customer Care Number,
Microsoft office support team phone number. Call,@((((1800-626-4703)))))@-:
Microsoft office help number-Microsoft office Helpline Number; Microsoft office
help phone number, Microsoft office Helpline Number, Microsoft office Tech
Support Toll free Number, Microsoft office Support Telephone Number, Microsoft
office Tech Support Telephone number, Microsoft office Tech Support contact
number, Microsoft office support contact number, Microsoft office technical
support contact number, Microsoft office pro support phone number, Microsoft
office payroll support phone number. Microsoft office payroll customer
1800-626-4703 support phone number for all type help by Microsoft office
support telephone number, Microsoft office help phone number, Microsoft office
technical support number.Microsoft office support number, Microsoft office
phone number, Microsoft office tech support number, Microsoft office customer
support number, Microsoft office customer support phone number, Microsoft
office customer service phone number, Microsoft number microsoft office live
phone number Microsoft office 2010 update microsoft outlook customer service
telephone number microsoft office number to call Microsoft office 2010 upgrade
microsoft outlook customer support microsoft office online help microsoft
office 2011 mac microsoft outlook customer support number microsoft office
online support microsoft office 2011 mac product key microsoft outlook customer
support phone microsoft office phone number microsoft office 2013 microsoft
outlook customer support phone number microsoft office phone number customer
service microsoft office 25 character product key microsoft outlook email
customer service microsoft office phone number support microsoft office
activation help microsoft outlook email customer service number microsoft
office phone support microsoft office activation key microsoft outlook email
help phone number microsoft office phone support number microsoft office
activation phone number microsoft outlook email support microsoft office
product support microsoft office and excel microsoft outlook email support
number Microsoft office phone number,((((1800-626-4703)))) )// Microsoft office
customer care number..... Microsoft office Toll Free, Intuit@(1800-626-4703)@-:
Microsoft office Technical Support Number, Microsoft office help desk phone
number provides online solution for all USA/CANADA clients. For any help of
query call (((1800-626-4703)))) to get all Microsoft office account solution.
For any help of query call (((1800-626-4703)))) to get all Microsoft office
account solution. @@Call,(((1800-626-4703)))) for All type help 1800-626-4703
by Microsoft office support telephone number,Microsoft office support phone
number,Microsoft office support phone number,Microsoft office help phone
number, Microsoft office technical support number.Microsoft office support
number, Microsoft office phone number, Microsoft office tech support number,
Microsoft office customer support number, Microsoft office customer support
phone number, Microsoft office customer service phone number, Microsoft office
payroll customer service phone number, Microsoft office support phone number
Microsoft office help number-Microsoft office Helpline Number; Microsoft office
help phone number-Microsoft office Helpline Number, Microsoft office Tech
Support Toll free Number, Microsoft office Support Telephone Number, Microsoft
office Tech Support Telephone number, Microsoft office Tech Support contact
number, Microsoft office support contact number, Microsoft office technical
support contact number, Microsoft office help desk phone number. Call,
@((((1800-626-4703)))))@-: It is very popular toll free number which provide by
Microsoft office technical support, Microsoft office Customer Service Phone
Number, Microsoft office Customer Service Number, Microsoft office Customer
Support Phone Number, Microsoft office Customer Support Number, Microsoft
office Customer Service Helpline Number, Microsoft office Customer Care Number,
Microsoft office support team phone number. Call,@((((1800-626-4703)))))@-:
Microsoft office help number-Microsoft office Helpline Number; Microsoft office
help phone number, Microsoft office Helpline Number, Microsoft office Tech
Support Toll free Number, Microsoft office Support Telephone Number, Microsoft
office Tech Support Telephone number, Microsoft office Tech Support contact
number, Microsoft office support contact number, Microsoft office technical
support contact number, Microsoft office pro support phone number, Microsoft
office payroll support phone number. Microsoft office payroll customer
1800-626-4703 support phone number for all type help by Microsoft office
support telephone number, Microsoft office help phone number, Microsoft office
technical support number.Microsoft office support number, Microsoft office
phone number, Microsoft office tech support number, Microsoft office customer
support number, Microsoft office customer support phone number, Microsoft
office customer service phone number, Microsoft.
>From gcc-bugs-return-534242-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 15:22:19 2016
Return-Path: <gcc-bugs-return-534242-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 32975 invoked by alias); 11 Aug 2016 15:22:19 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 32961 invoked by uid 89); 11 Aug 2016 15:22:19 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=1.8 required=5.0 tests=ALL_TRUSTED,BAYES_50,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=yopmail, numberphone, wireless, printers
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 15:22:09 +0000
From: "paulthompson at yopmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug boehm-gc/74100] New: HP Printer Tech Support Phone Number  1 (888) 990-8801
Date: Thu, 11 Aug 2016 15:22:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: boehm-gc
X-Bugzilla-Version: lno
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: paulthompson at yopmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-74100-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01578.txt.bz2
Content-length: 8130

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74100

            Bug ID: 74100
           Summary: HP Printer Tech Support Phone Number  1 (888) 990-8801
           Product: gcc
           Version: lno
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: boehm-gc
          Assignee: unassigned at gcc dot gnu.org
          Reporter: paulthompson at yopmail dot com
  Target Milestone: ---

Live HP Printer Support                                                        
                            (888) 990-8801                     





Are you facing technical problems with your HP printer and looking for HP
printer support phone number or HP printer support phone number or HP printer
customer service telephone number or HP printer customer service phone number
or HP printer customer service telephone number or HP printer customer service
telephone number, don’t worry you are at the right place. You just need to
connect with our HP printer technology expert through our toll free number
(888) 990-8801.HP printer Support Phone Number 1(888) 990-8801, HP printer
support. HP USA Customer Service Phone Number 1(888) 990-8801.

When you dial our HP printer support telephone number you’ll be connected with
one of our printer technology experts and s/he will help you to get rid of your
technical problem with Hewlett Packard Printer. In case they’re unable to fix
it they’ll be sharing a new HP printer support phone number of their senior
level technicians. hp printer troubleshooting , hp help and support , contact
hp printer support , hp support for printers , hp printer contact number , hp
printer phone support , install hp printer , hp laptop support number , hp
printer tech support phone number. We are provide best support for HP OfficeJet
Pro 8600 support. We have expert technician and they can resolve your issue and
we are providing hp tech support telephone number. Our more services are tech
support for hp, hp phone number for printer support, hp wireless printer
support phone number, hp printer fix ,hp printer setup , hp computer support
number , hp printer support phone number usa , hp wireless printer support
technical support for Hewlett Packard Printer. HP printer support,  They’ll
help you with HP printer support phone number or HP printer  support phone
number, HP printer  support phone number, HP printer customer service number,
HP printer  support phone number, HP printer support phone number. HP USA
Customer Service Phone Number 1(888) 990-8801

We are provide best support for HP OfficeJet Pro 8600 support. We have expert
technician and they can resolve your issue and we are providing hp tech support
telephone number. Our more services are tech support for hp, hp phone number
for printer support, hp wireless printer support phone number, hp printer fix.
Our printer technology experts are good enough to assist you if you are
searching on Google for HP printer support, hp printer help phone number, HP
printer help, HP printer helpline, HP printer helpdesk, HP printer tech
support, HP printer technical support number, support for Hewlett Packard
Printer, hp printer tech support number , hp printer technical support number ,
hp printer technical support phone number , hp printer troubleshooting , hp
help and support , contact hp printer support , hp support for printers , hp
printer contact number , hp printer phone support , install hp printer , hp
laptop support number , hp printer tech support phone number , hp printer setup
, hp computer support number , hp printer support phone number usa , hp
wireless printer support technical support for hp Printer. HP printer support,
HP printer help, hp printer help phone number,  HP printer helpline, HP printer
helpdesk, support for Hewlett Packard Printer, HP printer problem, HP printer
problems, HP printer problem, HP printer problems, HP printer issues, HP
printer issues, HP printer number, HP printer number, HP technical support
number. You don’t need to go and search on Google every time you need
assistance. 
HP USA Customer Service Phone Number 1(888) 990-8801, phone number for hp
support,hp 800 number,phone number for hp printer support,hp support telephone
number,hp help desk number,hp printers tech support phone number,hp printers
support phone number,hp printer helpline phone number,hp laptop technical
support number,hp phone number for tech support,hp troubleshooting phone
number,hp help and support phone number,call hp tech support,hp printer service
phone number
We are basically provided a technical support for the hp and the phone number
of the hp is 1(888) 990-8801. phone number for hp support,hp 800 number,phone
number for hp printer support,hp support telephone number,hp help desk
number,hp printers tech support phone number,hp printers support phone
number,hp printer helpline phone number,hp laptop technical support number,hp
phone number for tech support,hp troubleshooting phone number,hp help and
support phone number,call hp tech support,hp printer service phone number, hp
printer tech support number | hp printer technical support number | hp printer
technical support phone number | hp printer troubleshooting | hp help and
support | contact hp printer support | hp support for printers | hp printer
contact number | hp printer phone support | install hp printer | hp laptop
support number | hp printer tech support phone number | hp printer setup | hp
computer support number | hp printer support phone number usa | hp wireless
printer support
We are provide best support for HP OfficeJet Pro 8600 support. We have expert
technician and they can resolve your issue and we are providing hp tech support
telephone number. Our more services are tech support for hp, hp phone number
for printer support, hp wireless printer support phone number, hp printer fix.
hp printer tech support number | hp printer technical support number | hp
printer technical support phone number | hp printer troubleshooting | hp help
and support | contact hp printer support | hp support for printers | hp printer
contact number | hp printer phone support | install hp printer | hp laptop
support number | hp printer tech support phone number | hp printer setup | hp
computer support number | hp printer support phone number usa | hp wireless
printer support
HP printer setup, HP printer service with technical support number 1(888)
990-8801, HP printer Support, HP printer help, how to fix HP printer problem,
HP printer not working, HP printer configuration, HP printer Support Number 
1(888) 990-8801, HP printer support, HP printer support, HP printer support, HP
printer support, HP printer support, HP printer support, HP printer support, HP
printer support, HP printer support 1(888) 990-8801, Contact on HP printer tech
support phone number for HP printer technical help and HP printer suppor phone
number 1(888) 990-8801.
hp printer tech support number | hp printer technical support number | hp
printer technical support phone number | hp printer troubleshooting | hp help
and support | contact hp printer support | hp support for printers | hp printer
contact number | hp printer phone support | install hp printer | hp laptop
support number | hp printer tech support phone number | hp printer setup | hp
computer support number | hp printer support phone number usa | hp wireless
printer support |hp phone number for hp support,hp 800 number,phone number for
hp printer support,hp support telephone number,hp help desk number,hp printers
tech support phone number,hp printers support phone number,hp printer helpline
phone number,hp laptop technical support number,hp phone number for tech
support,hp troubleshooting phone number,hp help and support phone number,call
hp tech support,hp printer service phone number.
>From gcc-bugs-return-534243-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 15:23:41 2016
Return-Path: <gcc-bugs-return-534243-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 36826 invoked by alias); 11 Aug 2016 15:23:41 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 36811 invoked by uid 89); 11 Aug 2016 15:23:40 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:1944
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 15:23:30 +0000
From: "tschwinge at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/72741] Fortran OpenACC routine directive doesn't properly handle clauses specifying the level of parallelism
Date: Thu, 11 Aug 2016 15:23:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: openacc
X-Bugzilla-Severity: normal
X-Bugzilla-Who: tschwinge at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: tschwinge at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: assigned_to
Message-ID: <bug-72741-4-eAgPLeKkJF@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72741-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72741-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01579.txt.bz2
Content-length: 1893

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72741

Thomas Schwinge <tschwinge at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Assignee|cesar at gcc dot gnu.org           |tschwinge at gcc dot gnu.org

--- Comment #7 from Thomas Schwinge <tschwinge at gcc dot gnu.org> ---
<https://gcc.gnu.org/ml/gcc-patches/2016-08/msg00932.html>.

(In reply to cesar from comment #6)
> a) The fortran pretty printer doesn't know about generic tree notes.
> Consequently, I don't think build_oacc_routine_dims would be able to report
> any errors unless we add support for tree notes in that pretty printer.

I've not (yet?) into any such problems.  Phew.  ;-)

> b) The fortran FE handle errors slightly differently from the c FE. Instead
> of catching the error early and aborting immediately, you're method will
> defer the error handling to after the FE has parsed everything. I'm not sure
> if this is a problem or not.

It seems to work fine, and, as discussed, something like that will be needed
anyway, once we get to support the OpenACC device_type clause.

> c) That oacc_function information needs to be captured for fortran module
> .mod files, and those .mod files don't require tree node attributes.
> Postponing that attribute requires separate functions to manipulate the
> routine clauses.

ACK.  Still very much TODO in my WIP patch.

> d) gfc_oacc_routine_dims is already creating an oacc_function attribute for
> routines. This attribute is a single enum instead of the individual clauses.
> I like that because its more self contained.

As discussed, it actually seems easier conceptually (maybe not in terms of
"boilerplate code") to handle these separately, and we need to do that for
being able to generate the desired compile-time diagnostics.
>From gcc-bugs-return-534244-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 15:24:31 2016
Return-Path: <gcc-bugs-return-534244-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 38107 invoked by alias); 11 Aug 2016 15:24:31 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 38067 invoked by uid 89); 11 Aug 2016 15:24:30 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 15:24:22 +0000
From: "hjl.tools at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/74113] New: by_pieces_ninsns doesn't support TImode/OImode/XImode
Date: Thu, 11 Aug 2016 15:24:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: hjl.tools at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter cc target_milestone
Message-ID: <bug-74113-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01580.txt.bz2
Content-length: 971

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74113

            Bug ID: 74113
           Summary: by_pieces_ninsns doesn't support TImode/OImode/XImode
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: middle-end
          Assignee: unassigned at gcc dot gnu.org
          Reporter: hjl.tools at gmail dot com
                CC: bernds at gcc dot gnu.org, rdsandiford at googlemail dot com
  Target Milestone: ---

TImode/OImode/XImode support load and store with vector registers.  But
by_pieces_ninsns determines the widest mode with MAX_FIXED_MODE_SIZE
which is limited by integer registers.  There is a patch to update
alignment_for_piecewise_move to remove the MAX_FIXED_MODE_SIZE restriction:

https://gcc.gnu.org/ml/gcc-patches/2016-04/msg01506.html

But there is a concern for simplify_immed_subreg:

https://gcc.gnu.org/ml/gcc-patches/2016-04/msg01527.html
>From gcc-bugs-return-534245-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 15:28:04 2016
Return-Path: <gcc-bugs-return-534245-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 43888 invoked by alias); 11 Aug 2016 15:28:04 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 43878 invoked by uid 89); 11 Aug 2016 15:28:03 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=2.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 15:27:53 +0000
From: "jason at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73456] [6/7 regression][concepts] ICE in non_atomic_constraint_p, at cp/logic.cc:315
Date: Thu, 11 Aug 2016 15:28:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jason at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P1
X-Bugzilla-Assigned-To: jason at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cc assigned_to
Message-ID: <bug-73456-4-QOWdpftuL5@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73456-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73456-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01581.txt.bz2
Content-length: 462

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73456

Jason Merrill <jason at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED
                 CC|                            |andrew.n.sutton at gmail dot com
           Assignee|unassigned at gcc dot gnu.org      |jason at gcc dot gnu.org
>From gcc-bugs-return-534246-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 15:34:33 2016
Return-Path: <gcc-bugs-return-534246-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 69482 invoked by alias); 11 Aug 2016 15:34:33 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 69464 invoked by uid 89); 11 Aug 2016 15:34:32 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=3.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 15:34:22 +0000
From: "tulipawn at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/69004] Building t-engine on ARM fails during -fprofile-use stage
Date: Thu, 11 Aug 2016 15:34:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 5.3.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: tulipawn at gmail dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-69004-4-K5YDQcH384@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69004-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69004-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01582.txt.bz2
Content-length: 191

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69004

--- Comment #32 from PeteVine <tulipawn at gmail dot com> ---
Could you give me a quick gdb conditional expression to achieve just that?
>From gcc-bugs-return-534247-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 15:39:52 2016
Return-Path: <gcc-bugs-return-534247-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 84963 invoked by alias); 11 Aug 2016 15:39:51 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 84951 invoked by uid 89); 11 Aug 2016 15:39:51 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=3.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=AVG, yopmail, phone, Tech
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 15:39:41 +0000
From: "mahendrajavas at yopmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/74216] New: AVG Support Phone Number!!1 844.8SS.1955 AVG Tech Support Number usa
Date: Thu, 11 Aug 2016 15:39:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mahendrajavas at yopmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-74216-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01583.txt.bz2
Content-length: 470

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74216

            Bug ID: 74216
           Summary: AVG Support Phone Number!!1 844.8SS.1955 AVG Tech
                    Support Number usa
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: mahendrajavas at yopmail dot com
  Target Milestone: ---
>From gcc-bugs-return-534248-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 15:41:06 2016
Return-Path: <gcc-bugs-return-534248-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 88760 invoked by alias); 11 Aug 2016 15:41:05 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 88740 invoked by uid 89); 11 Aug 2016 15:41:04 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=3.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy42, 8143, UD:0, switching
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 15:41:03 +0000
From: "tulipawn at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/69004] Building t-engine on ARM fails during -fprofile-use stage
Date: Thu, 11 Aug 2016 15:41:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 5.3.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: tulipawn at gmail dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-69004-4-koQYKHSHTC@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69004-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69004-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01584.txt.bz2
Content-length: 2300

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69004

--- Comment #33 from PeteVine <tulipawn at gmail dot com> ---
NVM, doing that manually:

Breakpoint 1, gcov_exit () at ../../../libgcc/libgcov-driver.c:877
877     {
(gdb) b lj_mem_realloc
Breakpoint 2 at 0x224a54
(gdb) c
Continuing.
[Switching to Thread 0xad1c9450 (LWP 8145)]

Breakpoint 2, 0x00224a54 in lj_mem_realloc ()
(gdb) bt
#0  0x00224a54 in lj_mem_realloc ()
#1  0x0021337c in resizetab ()
#2  0x00212644 in lj_tab_newkey ()
#3  0x001fd898 in lj_meta_tset ()
#4  0x00217544 in lj_vmeta_tsetv ()
#5  0x00198c04 in lua_pcall ()
#6  0x001112b8 in docall ()
#7  0x000ec3d0 in thread_profile ()
#8  0xb6f085da in ?? () from /home/odroid/SDL2_gl/libSDL2-2.0.so.0

(gdb) info threads
  Id   Target Id         Frame 
* 12   Thread 0xad1c9450 (LWP 8145) "profile" 0x00224a54 in lj_mem_realloc ()
  11   Thread 0xae0ff450 (LWP 8143) "particles" __libc_do_syscall ()
    at ../ports/sysdeps/unix/sysv/linux/arm/libc-do-syscall.S:43
  10   Thread 0xae8ff450 (LWP 8142) "particles" __libc_do_syscall ()
    at ../ports/sysdeps/unix/sysv/linux/arm/libc-do-syscall.S:43
  9    Thread 0xaf22c450 (LWP 8141) "particles" __libc_do_syscall ()
    at ../ports/sysdeps/unix/sysv/linux/arm/libc-do-syscall.S:43
  8    Thread 0xafa2c450 (LWP 8140) "save" __libc_do_syscall ()
    at ../ports/sysdeps/unix/sysv/linux/arm/libc-do-syscall.S:43
  7    Thread 0xb022c450 (LWP 8139) "t-engine" 0xb6c62e44 in ioctl () at
../sysdeps/unix/syscall-template.S:81
  6    Thread 0xb0a2c450 (LWP 8138) "t-engine" __libc_do_syscall ()
    at ../ports/sysdeps/unix/sysv/linux/arm/libc-do-syscall.S:43
  5    Thread 0xb12ff450 (LWP 8137) "SDLTimer" __libc_do_syscall ()
    at ../ports/sysdeps/unix/sysv/linux/arm/libc-do-syscall.S:43
  4    Thread 0xb1cff450 (LWP 8136) "t-engine" 0xb6cdfd90 in nanosleep ()
    at ../sysdeps/unix/syscall-template.S:81
  3    Thread 0xb6634450 (LWP 8135) "threaded-ml" 0xb68b1c00 in pa_queue_pop ()
   from /usr/lib/arm-linux-gnueabihf/pulseaudio/libpulsecommon-4.0.so
  1    Thread 0xb693a000 (LWP 8130) "t-engine" 0x00135738 in compute_summary
(list=0x3f9a14, 
    list@entry=0x3ff2f4, this_prg=this_prg@entry=0xbeffd648,
max_length=0x2e616572, max_length@entry=0xbeffd634)
    at ../../../libgcc/libgcov-driver.c:313
>From gcc-bugs-return-534249-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 15:43:12 2016
Return-Path: <gcc-bugs-return-534249-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 130624 invoked by alias); 11 Aug 2016 15:43:12 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 129511 invoked by uid 89); 11 Aug 2016 15:43:10 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=3.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=confirms, simultaneously
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 15:43:09 +0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/69004] Building t-engine on ARM fails during -fprofile-use stage
Date: Thu, 11 Aug 2016 15:43:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 5.3.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-69004-4-CnGejLtEDA@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69004-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69004-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01585.txt.bz2
Content-length: 667

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69004

--- Comment #34 from Martin Liška <marxin at gcc dot gnu.org> ---
> 
> Breakpoint 2, 0x00224a54 in lj_mem_realloc ()
> (gdb) bt
> #0  0x00224a54 in lj_mem_realloc ()
> #1  0x0021337c in resizetab ()
> #2  0x00212644 in lj_tab_newkey ()
> #3  0x001fd898 in lj_meta_tset ()
> #4  0x00217544 in lj_vmeta_tsetv ()
> #5  0x00198c04 in lua_pcall ()
> #6  0x001112b8 in docall ()
> #7  0x000ec3d0 in thread_profile ()
> #8  0xb6f085da in ?? () from /home/odroid/SDL2_gl/libSDL2-2.0.so.0
> 

That confirms my hypothesis, lj_mem_realloc is writing to a profile that is
simultaneously dumped by gcov_exit routine.
>From gcc-bugs-return-534250-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 15:43:56 2016
Return-Path: <gcc-bugs-return-534250-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 5841 invoked by alias); 11 Aug 2016 15:43:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 5826 invoked by uid 89); 11 Aug 2016 15:43:55 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=3.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 15:43:45 +0000
From: "jason at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73456] [6/7 regression][concepts] ICE in non_atomic_constraint_p, at cp/logic.cc:315
Date: Thu, 11 Aug 2016 15:43:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jason at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P1
X-Bugzilla-Assigned-To: jason at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-73456-4-fRsKOls1mC@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73456-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73456-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01586.txt.bz2
Content-length: 517

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73456

--- Comment #3 from Jason Merrill <jason at gcc dot gnu.org> ---
Author: jason
Date: Thu Aug 11 15:43:12 2016
New Revision: 239376

URL: https://gcc.gnu.org/viewcvs?rev=239376&root=gcc&view=rev
Log:
        PR c++/73456 - ICE with constrained parameter pack.

        * logic.cc (non_atomic_constraint_p): Handle EXPR_PACK_EXPANSION.

Added:
    trunk/gcc/testsuite/g++.dg/concepts/variadic4.C
Modified:
    trunk/gcc/cp/ChangeLog
    trunk/gcc/cp/logic.cc
>From gcc-bugs-return-534251-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 15:44:03 2016
Return-Path: <gcc-bugs-return-534251-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 6552 invoked by alias); 11 Aug 2016 15:44:03 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 6492 invoked by uid 89); 11 Aug 2016 15:44:02 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=3.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:1055
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 15:43:53 +0000
From: "jason at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73456] [6/7 regression][concepts] ICE in non_atomic_constraint_p, at cp/logic.cc:315
Date: Thu, 11 Aug 2016 15:44:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jason at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P1
X-Bugzilla-Assigned-To: jason at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-73456-4-kHJIPdQpgO@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73456-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73456-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01587.txt.bz2
Content-length: 1029

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73456

--- Comment #3 from Jason Merrill <jason at gcc dot gnu.org> ---
Author: jason
Date: Thu Aug 11 15:43:12 2016
New Revision: 239376

URL: https://gcc.gnu.org/viewcvs?rev=239376&root=gcc&view=rev
Log:
        PR c++/73456 - ICE with constrained parameter pack.

        * logic.cc (non_atomic_constraint_p): Handle EXPR_PACK_EXPANSION.

Added:
    trunk/gcc/testsuite/g++.dg/concepts/variadic4.C
Modified:
    trunk/gcc/cp/ChangeLog
    trunk/gcc/cp/logic.cc

--- Comment #4 from Jason Merrill <jason at gcc dot gnu.org> ---
Author: jason
Date: Thu Aug 11 15:43:21 2016
New Revision: 239377

URL: https://gcc.gnu.org/viewcvs?rev=239377&root=gcc&view=rev
Log:
        PR c++/73456 - ICE with constrained parameter pack.

        * logic.cc (non_atomic_constraint_p): Handle EXPR_PACK_EXPANSION.

Added:
    branches/gcc-6-branch/gcc/testsuite/g++.dg/concepts/variadic4.C
Modified:
    branches/gcc-6-branch/gcc/cp/ChangeLog
    branches/gcc-6-branch/gcc/cp/logic.cc
>From gcc-bugs-return-534254-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 15:44:55 2016
Return-Path: <gcc-bugs-return-534254-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 9021 invoked by alias); 11 Aug 2016 15:44:55 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 8953 invoked by uid 89); 11 Aug 2016 15:44:54 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 15:44:44 +0000
From: "jason at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73456] [6/7 regression][concepts] ICE in non_atomic_constraint_p, at cp/logic.cc:315
Date: Thu, 11 Aug 2016 15:44:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jason at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P1
X-Bugzilla-Assigned-To: jason at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-73456-4-XnAcKk7xPD@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73456-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73456-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01590.txt.bz2
Content-length: 423

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73456

Jason Merrill <jason at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #5 from Jason Merrill <jason at gcc dot gnu.org> ---
Fixed.
>From gcc-bugs-return-534253-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 15:44:48 2016
Return-Path: <gcc-bugs-return-534253-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 8376 invoked by alias); 11 Aug 2016 15:44:48 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 8362 invoked by uid 89); 11 Aug 2016 15:44:47 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 15:44:37 +0000
From: "jason at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73456] [6/7 regression][concepts] ICE in non_atomic_constraint_p, at cp/logic.cc:315
Date: Thu, 11 Aug 2016 15:44:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jason at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P1
X-Bugzilla-Assigned-To: jason at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-73456-4-IRxcqjjjxC@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73456-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73456-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01589.txt.bz2
Content-length: 935

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73456

Jason Merrill <jason at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #4 from Jason Merrill <jason at gcc dot gnu.org> ---
Author: jason
Date: Thu Aug 11 15:43:21 2016
New Revision: 239377

URL: https://gcc.gnu.org/viewcvs?rev=239377&root=gcc&view=rev
Log:
        PR c++/73456 - ICE with constrained parameter pack.

        * logic.cc (non_atomic_constraint_p): Handle EXPR_PACK_EXPANSION.

Added:
    branches/gcc-6-branch/gcc/testsuite/g++.dg/concepts/variadic4.C
Modified:
    branches/gcc-6-branch/gcc/cp/ChangeLog
    branches/gcc-6-branch/gcc/cp/logic.cc

--- Comment #5 from Jason Merrill <jason at gcc dot gnu.org> ---
Fixed.
>From gcc-bugs-return-534252-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 15:44:14 2016
Return-Path: <gcc-bugs-return-534252-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 7334 invoked by alias); 11 Aug 2016 15:44:13 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 7304 invoked by uid 89); 11 Aug 2016 15:44:12 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=3.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 15:44:00 +0000
From: "jason at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/73456] [6/7 regression][concepts] ICE in non_atomic_constraint_p, at cp/logic.cc:315
Date: Thu, 11 Aug 2016 15:44:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jason at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P1
X-Bugzilla-Assigned-To: jason at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-73456-4-gPn0BQRXwF@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73456-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73456-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01588.txt.bz2
Content-length: 1399

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73456

Jason Merrill <jason at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #3 from Jason Merrill <jason at gcc dot gnu.org> ---
Author: jason
Date: Thu Aug 11 15:43:12 2016
New Revision: 239376

URL: https://gcc.gnu.org/viewcvs?rev=239376&root=gcc&view=rev
Log:
        PR c++/73456 - ICE with constrained parameter pack.

        * logic.cc (non_atomic_constraint_p): Handle EXPR_PACK_EXPANSION.

Added:
    trunk/gcc/testsuite/g++.dg/concepts/variadic4.C
Modified:
    trunk/gcc/cp/ChangeLog
    trunk/gcc/cp/logic.cc

--- Comment #4 from Jason Merrill <jason at gcc dot gnu.org> ---
Author: jason
Date: Thu Aug 11 15:43:21 2016
New Revision: 239377

URL: https://gcc.gnu.org/viewcvs?rev=239377&root=gcc&view=rev
Log:
        PR c++/73456 - ICE with constrained parameter pack.

        * logic.cc (non_atomic_constraint_p): Handle EXPR_PACK_EXPANSION.

Added:
    branches/gcc-6-branch/gcc/testsuite/g++.dg/concepts/variadic4.C
Modified:
    branches/gcc-6-branch/gcc/cp/ChangeLog
    branches/gcc-6-branch/gcc/cp/logic.cc

--- Comment #5 from Jason Merrill <jason at gcc dot gnu.org> ---
Fixed.
>From gcc-bugs-return-534255-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 15:56:45 2016
Return-Path: <gcc-bugs-return-534255-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 89796 invoked by alias); 11 Aug 2016 15:56:45 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 89737 invoked by uid 89); 11 Aug 2016 15:56:44 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.3.2 spammy=contacts
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 15:56:34 +0000
From: "dominiq at lps dot ens.fr" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/67419] gfortran.dg/large_real_kind_2.F90 FAILs
Date: Thu, 11 Aug 2016 15:56:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dominiq at lps dot ens.fr
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status
Message-ID: <bug-67419-4-hoqEAIjepr@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67419-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67419-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01591.txt.bz2
Content-length: 423

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67419

Dominique d'Humieres <dominiq at lps dot ens.fr> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |WAITING

--- Comment #12 from Dominique d'Humieres <dominiq at lps dot ens.fr> ---
> I'll check with my contacts.

Any progress?
>From gcc-bugs-return-534256-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 16:00:42 2016
Return-Path: <gcc-bugs-return-534256-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 95785 invoked by alias); 11 Aug 2016 16:00:42 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 95759 invoked by uid 89); 11 Aug 2016 16:00:40 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=UD:constexpr.c, constexpr.c, constexprc, UD:constexpr-switch4.C
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 16:00:30 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72868] Constexpr expressions mistreat case ranges
Date: Thu, 11 Aug 2016 16:00:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72868-4-sKWMPbDLXc@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72868-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72868-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01592.txt.bz2
Content-length: 570

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72868

--- Comment #7 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Author: jakub
Date: Thu Aug 11 15:59:53 2016
New Revision: 239379

URL: https://gcc.gnu.org/viewcvs?rev=239379&root=gcc&view=rev
Log:
        PR c++/72868
        * constexpr.c (label_matches): Handle case range expressions.

        * g++.dg/cpp1y/constexpr-switch4.C: New test.

Added:
    trunk/gcc/testsuite/g++.dg/cpp1y/constexpr-switch4.C
Modified:
    trunk/gcc/cp/ChangeLog
    trunk/gcc/cp/constexpr.c
    trunk/gcc/testsuite/ChangeLog
>From gcc-bugs-return-534257-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 16:02:23 2016
Return-Path: <gcc-bugs-return-534257-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 100096 invoked by alias); 11 Aug 2016 16:02:22 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 100078 invoked by uid 89); 11 Aug 2016 16:02:21 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:350
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 16:02:20 +0000
From: "zeccav at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/74265] address sanitizer detects stack-buffer-overflow in set_nonincremental_init_from_string in c-typeck.c
Date: Thu, 11 Aug 2016 16:02:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: zeccav at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-74265-4-vkncrP8xVR@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-74265-4@http.gcc.gnu.org/bugzilla/>
References: <bug-74265-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01593.txt.bz2
Content-length: 243

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74265

--- Comment #1 from Vittorio Zecca <zeccav at gmail dot com> ---
The following is a shorter reproducer:

struct B {
  __CHAR32_TYPE__ S[6];
} d[] = { { { U"foo" } }, [0].S[2] = U'x' };
>From gcc-bugs-return-534258-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 16:04:17 2016
Return-Path: <gcc-bugs-return-534258-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 102558 invoked by alias); 11 Aug 2016 16:04:17 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 102537 invoked by uid 89); 11 Aug 2016 16:04:15 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 16:04:06 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72868] Constexpr expressions mistreat case ranges
Date: Thu, 11 Aug 2016 16:04:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72868-4-KtVX0WH8dQ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72868-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72868-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01594.txt.bz2
Content-length: 634

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72868

--- Comment #8 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Author: jakub
Date: Thu Aug 11 16:03:32 2016
New Revision: 239380

URL: https://gcc.gnu.org/viewcvs?rev=239380&root=gcc&view=rev
Log:
        PR c++/72868
        * constexpr.c (label_matches): Handle case range expressions.

        * g++.dg/cpp1y/constexpr-switch4.C: New test.

Added:
    branches/gcc-6-branch/gcc/testsuite/g++.dg/cpp1y/constexpr-switch4.C
Modified:
    branches/gcc-6-branch/gcc/cp/ChangeLog
    branches/gcc-6-branch/gcc/cp/constexpr.c
    branches/gcc-6-branch/gcc/testsuite/ChangeLog
>From gcc-bugs-return-534259-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 16:06:25 2016
Return-Path: <gcc-bugs-return-534259-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 18287 invoked by alias); 11 Aug 2016 16:06:25 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 17870 invoked by uid 89); 11 Aug 2016 16:06:24 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: =?ISO-8859-1?Q?Yes, score=6.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_20,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=phoneÂ, numberÂ, UD:t.o.m.e.r, UD:m.e.r?X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 16:06:14 +0000
From: "ginjuilinhj at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug boehm-gc/74331] New: Helping People 800 Microsoft 2.1.3-2.1.7.1 O.u.t..l.o..ok C.u.s.t.o.m.e.r Support Number
Date: Thu, 11 Aug 2016 16:06:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: boehm-gc
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ginjuilinhj at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-74331-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01595.txt.bz2
Content-length: 2476

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74331

            Bug ID: 74331
           Summary: Helping People 800 Microsoft 2.1.3-2.1.7.1
                    O.u.t..l.o..ok C.u.s.t.o.m.e.r Support Number
           Product: gcc
           Version: 6.2.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: boehm-gc
          Assignee: unassigned at gcc dot gnu.org
          Reporter: ginjuilinhj at gmail dot com
  Target Milestone: ---

microsoft outlook customer support phone number
microsoft outlook customer support phone number
microsoft outlook customer support phone number
microsoft outlook customer support phone number
microsoft outlook customer support phone number
microsoft outlook customer support phone number
Microsoft outlook customer support phone number 
microsoft outlook customer support phone  number
microsoft outlook email contact number
microsoft outlook email customer service
microsoft outlook email customer service
microsoft outlook email customer service
microsoft outlook email customer service number
microsoft outlook email customer service number
microsoft outlook email customer service number
microsoft outlook email help
microsoft outlook email help
microsoft outlook email help and support number
microsoft outlook email help phone number
microsoft outlook email help phone number
microsoft outlook email help phone number
microsoft outlook email sign in support number
microsoft outlook email sign in support number
microsoft outlook email sign in support number
microsoft outlook email signature support number
microsoft outlook email signature support number
microsoft outlook email signature support number
microsoft outlook email support
microsoft outlook email support
microsoft outlook email support number
microsoft outlook email support number
microsoft outlook email support number
microsoft outlook email support number
microsoft outlook email support number
microsoft outlook email support phone number
microsoft outlook email support phone number
microsoft outlook email support phone number
microsoft outlook email support phone number
microsoft outlook email support phone number
microsoft outlook email support phone number
microsoft outlook email technical support number
microsoft outlook email technical support number
microsoft outlook email technical support number
microsoft outlook express email
microsoft outlook express tech support phone number
>From gcc-bugs-return-534260-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 16:08:28 2016
Return-Path: <gcc-bugs-return-534260-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 24784 invoked by alias); 11 Aug 2016 16:08:28 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 24774 invoked by uid 89); 11 Aug 2016 16:08:27 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=1.8 required=5.0 tests=ALL_TRUSTED,BAYES_50,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, @@@, printers
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 16:08:17 +0000
From: "saxenaharsh465 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/74337] New: usa!!+++++**1-855-709-2847**+++ LEXMARK printer tech support phone number usa..PDF
Date: Thu, 11 Aug 2016 16:08:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: 4.0.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: saxenaharsh465 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-74337-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01596.txt.bz2
Content-length: 7994

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74337

            Bug ID: 74337
           Summary: usa!!+++++**1-855-709-2847**+++ LEXMARK printer tech
                    support phone number usa..PDF
           Product: gcc
           Version: 4.0.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ada
          Assignee: unassigned at gcc dot gnu.org
          Reporter: saxenaharsh465 at gmail dot com
  Target Milestone: ---

Created attachment 39249
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39249&action=edit
re <:::: /@!!((I+855+7O9+2847+))!@#&LEXMARK printer suppOrt phOne number
LEXMARK printer technical suppOrt phOne number USA UST<::::
/@!!((I+855+7O9+2847+))!!@LEXMARK printer suppOrt phOne number LEXM

re <:::: /@!!((I+855+7O9+2847+))!@#&LEXMARK printer suppOrt phOne number
LEXMARK printer technical suppOrt phOne number USA UST<::::
/@!!((I+855+7O9+2847+))!!@LEXMARK printer suppOrt phOne number LEXMARK printer
tech suppOrt phOne number USA UST<::: /@!!((I+855+7O9+2847+))!!@LEXMARK printer
suppOrt phOne number LEXMARK printer tech suppOrt phOne number USA LEXMARK
printer custOmer service @@@++@@++I+855+7O9+2847 !!++++@@+++@@@@+LEXMARK
printer suppOrt phOne number LEXMARK printer tech suppOrt phOne number USA
JUST<::: /@!!((I+855+7O9+2847+))!!@LEXMARK printer suppOrt phOne number LEXMARK
printer tech suppOrt phOne number USA LEXMARK printer custOmer
service@@!!((*I+855+7O9+2847+))!!@@LEXMARK printer suppOrt phOne number LEXMARK
printer tech suppOrt phOne number USA, LEXMARK printer technical suppOrt phOne
number LEXMARK printer custOmer suppOrt phOne number LEXMARK printer phOne
number LEXMARK printer custOmer care phOne number brOhter printer custOmer care
number LEXMARK printer tOll free phOne number LEXMARK printer suppOrt LEXMARK
suppOrt LEXMARK printers suppOrt LEXMARK custOmer service LEXMARK printer help
LEXMARK tech suppOrt LEXMARK printer custOmer service LEXMARK printer tech
suppOrt LEXMARK technical suppOrt LEXMARK printer trOubleshOOting LEXMARK
printers trOubleshOOting LEXMARK internatiOnal LEXMARKs printer suppOrt LEXMARK
custOmer suppOrt LEXMARK printer technical suppOrt LEXMARK printer repair
LEXMARK printer helpline LEXMARK printers custOmer service LEXMARK service
center LEXMARKs printers suppOrt LEXMARK helpline LEXMARK custOmer service
phOne number install LEXMARK printer LEXMARK printers tech suppOrt LEXMARK
printer suppOrt number LEXMARK printer custOmer suppOrt LEXMARK printer cOntact
number LEXMARK printer prOblems LEXMARK printers help LEXMARK printer service
LEXMARK printer service center LEXMARK printer cOntact LEXMARK custOmer service
number LEXMARK printers helpline LEXMARK suppOrt number LEXMARK printer repairs
LEXMARK printer scanner LEXMARK printers phOne number LEXMARK printers custOmer
suppOrt LEXMARK suppOrt center LEXMARK tech suppOrt phOne number LEXMARKs
printers custOmer service LEXMARK printer custOmer service number LEXMARK
printers technical suppOrt LEXMARK printer helpline number LEXMARK suppOrt
phOne number LEXMARK suppOrt printer LEXMARK technical suppOrt number LEXMARK
printers cOntact trOubleshOOting LEXMARK printer LEXMARK printer phOne suppOrt
LEXMARK printers suppOrt phOne number trOubleshOOt LEXMARK printer LEXMARK
printers cOntact number LEXMARKs custOmer service LEXMARK printer number
LEXMARK phOne suppOrt LEXMARK trOubleshOOting LEXMARK printer custOmer care
LEXMARK printer help desk drivers fOr LEXMARK printers LEXMARK technical
suppOrt phOne number LEXMARK custOmer service phOne cOntact LEXMARK printers
LEXMARK printer custOmer care number LEXMARK help desk LEXMARK Online suppOrt
LEXMARK custOmer suppOrt phOne number LEXMARKs printer custOmer service LEXMARK
printer mfc LEXMARK printers tech suppOrt phOne number LEXMARK service LEXMARKs
tech suppOrt LEXMARK printers custOmer service phOne number LEXMARK printer
install LEXMARK laser printers LEXMARKs printers suppOrt LEXMARK printer
LEXMARK printer service centre LEXMARK printer updates LEXMARK inkjet printer
cOntact LEXMARK suppOrt LEXMARK tech suppOrt phOne LEXMARK lc61 LEXMARKs
printers tech suppOrt printers Online cOntact LEXMARK printer LEXMARKs printer
LEXMARK label printer LEXMARK custOmer suppOrt phOne LEXMARK printers custOmer
suppOrt number LEXMARK suppOrt centre LEXMARK laser printer LEXMARK printer
custOmer service suppOrt LEXMARK wireless printer setup buy LEXMARK printer
Online LEXMARK printer tech suppOrt number LEXMARK netwOrk printer LEXMARK
printers custOmer service number custOmer service fOr LEXMARK printers LEXMARK
service centre LEXMARK wireless printer LEXMARK printers LEXMARK custOmer care
LEXMARK printer Online suppOrt LEXMARK printer tOll free number phOne number
fOr LEXMARK printers LEXMARK printer installatiOn LEXMARK printers help desk
LEXMARK printer suppOrt phOne service LEXMARK LEXMARK mfc LEXMARK printer
custOmer suppOrt number LEXMARK printers technical suppOrt phOne number LEXMARK
printer hOtline cOntact number fOr LEXMARK printers LEXMARK printer LEXMARK.cOm
suppOrt cOntact LEXMARK printer suppOrt LEXMARK printer trOubleshOOt LEXMARK
telephOne suppOrt LEXMARK printers custOmer suppOrt phOne number LEXMARK
printer help phOne number LEXMARK custOmer service telephOne number LEXMARK
printer tech suppOrt phOne LEXMARK.ca suppOrt LEXMARK printer Online LEXMARK
multifunctiOn printer printer suppOrt LEXMARK printer help LEXMARK mfc printer
technical suppOrt fOr LEXMARK printers LEXMARK tech suppOrt number email
suppOrt LEXMARK printers suppOrt phOne mfc LEXMARK LEXMARK hl227Odw LEXMARK
printers website LEXMARK printer suppOrt LEXMARK printers repair repair LEXMARK
printer LEXMARK printers suppOrt LEXMARK helpline number LEXMARK scanner
printer LEXMARK printers service LEXMARK printers custOmer service telephOne
number LEXMARK printer phOne number custOmer service LEXMARK printers review
www.LEXMARK.cOm suppOrt fOr LEXMARK printer LEXMARK printer repair service
LEXMARK printer phOne number fOr LEXMARK printer suppOrt LEXMARK printer
website LEXMARK printers custOmer service phOne LEXMARK printer prOblems and
sOlutiOns LEXMARKs printers custOmer service phOne number custOmer service
LEXMARK printer sOlutiOn LEXMARK LEXMARK fax suppOrt mfc LEXMARK printer
LEXMARK printer custOmer service phOne LEXMARK printer help number LEXMARK
mfc-846On drivers fOr LEXMARK printers LEXMARK technical suppOrt phOne number
LEXMARK custOmer service phOne cOntact LEXMARK printers LEXMARK printer
custOmer care number LEXMARK help desk LEXMARK Online suppOrt LEXMARK custOmer
suppOrt phOne number LEXMARKs printer custOmer service LEXMARK printer mfc
LEXMARK printers tech suppOrt phOne number LEXMARK service LEXMARKs tech
suppOrt LEXMARK printers custOmer service phOne number LEXMARK printer install
LEXMARK laser printers LEXMARKs printers suppOrt LEXMARK printer LEXMARK
printer service centre LEXMARK printer updates LEXMARK inkjet printer cOntact
LEXMARK suppOrt LEXMARK tech suppOrt phOne LEXMARK lc61 LEXMARKs printers tech
suppOrt printers Online cOntact LEXMARK printer LEXMARKs printer LEXMARK label
printer LEXMARK custOmer suppOrt phOne LEXMARK printers custOmer suppOrt number
LEXMARK suppOrt centre LEXMARK laser printer LEXMARK printer custOmer service
suppOrt LEXMARK wireless printer setup buy LEXMARK printer Online LEXMARK
printer tech suppOrt number LEXMARK netwOrk printer LEXMARK printers custOmer
service number custOmer service fOr LEXMARK printers LEXMARK service centre
LEXMARK wireless printer LEXMARK printers LEXMARK custOmer care LEXMARK printer
Online suppOrt LEXMARK printer tOll free number phOne number fOr LEXMARK
printers LEXMARK printer installatiOn LEXMARK printers help desk LEXMARK
printer suppOrt phOne service LEXMARK LEXMARK LEXMARK printer custOmer
service/@!!((I+855+7O9+2847+))!!@LEXMARK printer suppOrt phOne number LEXMARK
printer tech suppOrt phOne number USA
>From gcc-bugs-return-534261-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 16:14:18 2016
Return-Path: <gcc-bugs-return-534261-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 32363 invoked by alias); 11 Aug 2016 16:14:18 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 32352 invoked by uid 89); 11 Aug 2016 16:14:17 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=1.8 required=5.0 tests=ALL_TRUSTED,BAYES_50,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, @@@, printers
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 16:14:07 +0000
From: "saxenaharsh465 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/74362] New: $@$!!@!@@!@^^18557092847@$$@$$^^*** LEXMARK printer technical support number
Date: Thu, 11 Aug 2016 16:14:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: 4.0.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: saxenaharsh465 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-74362-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01597.txt.bz2
Content-length: 7988

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74362

            Bug ID: 74362
           Summary: $@$!!@!@@!@^^18557092847@$$@$$^^*** LEXMARK printer
                    technical support number
           Product: gcc
           Version: 4.0.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ada
          Assignee: unassigned at gcc dot gnu.org
          Reporter: saxenaharsh465 at gmail dot com
  Target Milestone: ---

Created attachment 39251
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39251&action=edit
re <:::: /@!!((I+855+7O9+2847+))!@#&LEXMARK printer suppOrt phOne number
LEXMARK printer technical suppOrt phOne number USA UST<::::
/@!!((I+855+7O9+2847+))!!@LEXMARK printer suppOrt phOne number LEXM

re <:::: /@!!((I+855+7O9+2847+))!@#&LEXMARK printer suppOrt phOne number
LEXMARK printer technical suppOrt phOne number USA UST<::::
/@!!((I+855+7O9+2847+))!!@LEXMARK printer suppOrt phOne number LEXMARK printer
tech suppOrt phOne number USA UST<::: /@!!((I+855+7O9+2847+))!!@LEXMARK printer
suppOrt phOne number LEXMARK printer tech suppOrt phOne number USA LEXMARK
printer custOmer service @@@++@@++I+855+7O9+2847 !!++++@@+++@@@@+LEXMARK
printer suppOrt phOne number LEXMARK printer tech suppOrt phOne number USA
JUST<::: /@!!((I+855+7O9+2847+))!!@LEXMARK printer suppOrt phOne number LEXMARK
printer tech suppOrt phOne number USA LEXMARK printer custOmer
service@@!!((*I+855+7O9+2847+))!!@@LEXMARK printer suppOrt phOne number LEXMARK
printer tech suppOrt phOne number USA, LEXMARK printer technical suppOrt phOne
number LEXMARK printer custOmer suppOrt phOne number LEXMARK printer phOne
number LEXMARK printer custOmer care phOne number brOhter printer custOmer care
number LEXMARK printer tOll free phOne number LEXMARK printer suppOrt LEXMARK
suppOrt LEXMARK printers suppOrt LEXMARK custOmer service LEXMARK printer help
LEXMARK tech suppOrt LEXMARK printer custOmer service LEXMARK printer tech
suppOrt LEXMARK technical suppOrt LEXMARK printer trOubleshOOting LEXMARK
printers trOubleshOOting LEXMARK internatiOnal LEXMARKs printer suppOrt LEXMARK
custOmer suppOrt LEXMARK printer technical suppOrt LEXMARK printer repair
LEXMARK printer helpline LEXMARK printers custOmer service LEXMARK service
center LEXMARKs printers suppOrt LEXMARK helpline LEXMARK custOmer service
phOne number install LEXMARK printer LEXMARK printers tech suppOrt LEXMARK
printer suppOrt number LEXMARK printer custOmer suppOrt LEXMARK printer cOntact
number LEXMARK printer prOblems LEXMARK printers help LEXMARK printer service
LEXMARK printer service center LEXMARK printer cOntact LEXMARK custOmer service
number LEXMARK printers helpline LEXMARK suppOrt number LEXMARK printer repairs
LEXMARK printer scanner LEXMARK printers phOne number LEXMARK printers custOmer
suppOrt LEXMARK suppOrt center LEXMARK tech suppOrt phOne number LEXMARKs
printers custOmer service LEXMARK printer custOmer service number LEXMARK
printers technical suppOrt LEXMARK printer helpline number LEXMARK suppOrt
phOne number LEXMARK suppOrt printer LEXMARK technical suppOrt number LEXMARK
printers cOntact trOubleshOOting LEXMARK printer LEXMARK printer phOne suppOrt
LEXMARK printers suppOrt phOne number trOubleshOOt LEXMARK printer LEXMARK
printers cOntact number LEXMARKs custOmer service LEXMARK printer number
LEXMARK phOne suppOrt LEXMARK trOubleshOOting LEXMARK printer custOmer care
LEXMARK printer help desk drivers fOr LEXMARK printers LEXMARK technical
suppOrt phOne number LEXMARK custOmer service phOne cOntact LEXMARK printers
LEXMARK printer custOmer care number LEXMARK help desk LEXMARK Online suppOrt
LEXMARK custOmer suppOrt phOne number LEXMARKs printer custOmer service LEXMARK
printer mfc LEXMARK printers tech suppOrt phOne number LEXMARK service LEXMARKs
tech suppOrt LEXMARK printers custOmer service phOne number LEXMARK printer
install LEXMARK laser printers LEXMARKs printers suppOrt LEXMARK printer
LEXMARK printer service centre LEXMARK printer updates LEXMARK inkjet printer
cOntact LEXMARK suppOrt LEXMARK tech suppOrt phOne LEXMARK lc61 LEXMARKs
printers tech suppOrt printers Online cOntact LEXMARK printer LEXMARKs printer
LEXMARK label printer LEXMARK custOmer suppOrt phOne LEXMARK printers custOmer
suppOrt number LEXMARK suppOrt centre LEXMARK laser printer LEXMARK printer
custOmer service suppOrt LEXMARK wireless printer setup buy LEXMARK printer
Online LEXMARK printer tech suppOrt number LEXMARK netwOrk printer LEXMARK
printers custOmer service number custOmer service fOr LEXMARK printers LEXMARK
service centre LEXMARK wireless printer LEXMARK printers LEXMARK custOmer care
LEXMARK printer Online suppOrt LEXMARK printer tOll free number phOne number
fOr LEXMARK printers LEXMARK printer installatiOn LEXMARK printers help desk
LEXMARK printer suppOrt phOne service LEXMARK LEXMARK mfc LEXMARK printer
custOmer suppOrt number LEXMARK printers technical suppOrt phOne number LEXMARK
printer hOtline cOntact number fOr LEXMARK printers LEXMARK printer LEXMARK.cOm
suppOrt cOntact LEXMARK printer suppOrt LEXMARK printer trOubleshOOt LEXMARK
telephOne suppOrt LEXMARK printers custOmer suppOrt phOne number LEXMARK
printer help phOne number LEXMARK custOmer service telephOne number LEXMARK
printer tech suppOrt phOne LEXMARK.ca suppOrt LEXMARK printer Online LEXMARK
multifunctiOn printer printer suppOrt LEXMARK printer help LEXMARK mfc printer
technical suppOrt fOr LEXMARK printers LEXMARK tech suppOrt number email
suppOrt LEXMARK printers suppOrt phOne mfc LEXMARK LEXMARK hl227Odw LEXMARK
printers website LEXMARK printer suppOrt LEXMARK printers repair repair LEXMARK
printer LEXMARK printers suppOrt LEXMARK helpline number LEXMARK scanner
printer LEXMARK printers service LEXMARK printers custOmer service telephOne
number LEXMARK printer phOne number custOmer service LEXMARK printers review
www.LEXMARK.cOm suppOrt fOr LEXMARK printer LEXMARK printer repair service
LEXMARK printer phOne number fOr LEXMARK printer suppOrt LEXMARK printer
website LEXMARK printers custOmer service phOne LEXMARK printer prOblems and
sOlutiOns LEXMARKs printers custOmer service phOne number custOmer service
LEXMARK printer sOlutiOn LEXMARK LEXMARK fax suppOrt mfc LEXMARK printer
LEXMARK printer custOmer service phOne LEXMARK printer help number LEXMARK
mfc-846On drivers fOr LEXMARK printers LEXMARK technical suppOrt phOne number
LEXMARK custOmer service phOne cOntact LEXMARK printers LEXMARK printer
custOmer care number LEXMARK help desk LEXMARK Online suppOrt LEXMARK custOmer
suppOrt phOne number LEXMARKs printer custOmer service LEXMARK printer mfc
LEXMARK printers tech suppOrt phOne number LEXMARK service LEXMARKs tech
suppOrt LEXMARK printers custOmer service phOne number LEXMARK printer install
LEXMARK laser printers LEXMARKs printers suppOrt LEXMARK printer LEXMARK
printer service centre LEXMARK printer updates LEXMARK inkjet printer cOntact
LEXMARK suppOrt LEXMARK tech suppOrt phOne LEXMARK lc61 LEXMARKs printers tech
suppOrt printers Online cOntact LEXMARK printer LEXMARKs printer LEXMARK label
printer LEXMARK custOmer suppOrt phOne LEXMARK printers custOmer suppOrt number
LEXMARK suppOrt centre LEXMARK laser printer LEXMARK printer custOmer service
suppOrt LEXMARK wireless printer setup buy LEXMARK printer Online LEXMARK
printer tech suppOrt number LEXMARK netwOrk printer LEXMARK printers custOmer
service number custOmer service fOr LEXMARK printers LEXMARK service centre
LEXMARK wireless printer LEXMARK printers LEXMARK custOmer care LEXMARK printer
Online suppOrt LEXMARK printer tOll free number phOne number fOr LEXMARK
printers LEXMARK printer installatiOn LEXMARK printers help desk LEXMARK
printer suppOrt phOne service LEXMARK LEXMARK LEXMARK printer custOmer
service/@!!((I+855+7O9+2847+))!!@LEXMARK printer suppOrt phOne number LEXMARK
printer tech suppOrt phOne number USA
>From gcc-bugs-return-534264-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 16:17:57 2016
Return-Path: <gcc-bugs-return-534264-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 38176 invoked by alias); 11 Aug 2016 16:17:57 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 38150 invoked by uid 89); 11 Aug 2016 16:17:56 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy\x18444434666, 1-844-443-4666, sk:, U*@@@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 16:17:51 +0000
From: "khalid1234rashid at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/74376] New: smart problem sloution help@1844*443*4666 icloud tech support
Date: Thu, 11 Aug 2016 16:17:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: 2.95.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: khalid1234rashid at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-74376-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01600.txt.bz2
Content-length: 1441

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74376

            Bug ID: 74376
           Summary: smart problem sloution help@1844*443*4666 icloud tech
                    support
           Product: gcc
           Version: 2.95.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ada
          Assignee: unassigned at gcc dot gnu.org
          Reporter: khalid1234rashid at gmail dot com
  Target Milestone: ---

all***1844.443.4666***Apple icloud tech support phone number ,apple technical
support USA@@@@@@@ http  :// 
CALL : USA ((1844.443.4666))Apple icloud tech support phone number  ,Hp
technical support USA@@@@@@@
@USA....*@@*....cTALK((1844.443.4666))Apple icloud tech support phone number
,Hp technical support USA@@@@ @@@@@@@USA@@@@Apple icloud 1-844-443-4666 Support
Phone Number !CAll @@@@@@@ 1 844 443 4666 Apple icloud Support Phone Number
Canada Apple icloud customer care phone number Call @@@@@@@@@@@@@@@ 1 844 443
4666 Apple icloud Support Phone Number Canada Apple icloud customer care phone
number Call @@@@@$$$$$$$$((((((((((Apple icloud 1-844-443-4666 Hp Tech Support
Phone Number Canada Apple icloud customer service number $$$$$$$@@@@@@Apple
icloud 1-844-443-4666 Hp Tech Support Phone Number Canada Apple icloud customer
service number $Apple icloud 1-844-443-4666 Hp Tech Support Phone Number Canada
Apple icloud customer service number Apple
>From gcc-bugs-return-534262-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 16:17:00 2016
Return-Path: <gcc-bugs-return-534262-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 35740 invoked by alias); 11 Aug 2016 16:17:00 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 35708 invoked by uid 89); 11 Aug 2016 16:16:59 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT autolearn=no version=3.3.2 spammy=@@@, u.s.a, UD:s.u.p.p.o.r.t, UD:t.e.c.h
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 16:16:56 +0000
From: "jtz69180 at zasod dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/74371] New: dial A-V-G h-e-l-p-l-i-n-e p-h-o-n-e n-u-m-b-e-r@~18559905999 A-V-G t-e-c-h S-u-p-p-o-r-t N-u-m-b-e-r A-V-G a-n-t-i-v-i-r-u-s- c-u-s-t-o-m-e-r s-e-rv-i-c-e- p-h-o-n-e n-u-m-b-e-r
Date: Thu, 11 Aug 2016 16:17:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: 4.0.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jtz69180 at zasod dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-74371-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01598.txt.bz2
Content-length: 4485

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74371

            Bug ID: 74371
           Summary: dial A-V-G h-e-l-p-l-i-n-e p-h-o-n-e
                    n-u-m-b-e-r@~18559905999 A-V-G t-e-c-h S-u-p-p-o-r-t
                    N-u-m-b-e-r A-V-G a-n-t-i-v-i-r-u-s- c-u-s-t-o-m-e-r
                    s-e-rv-i-c-e- p-h-o-n-e n-u-m-b-e-r
           Product: gcc
           Version: 4.0.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ada
          Assignee: unassigned at gcc dot gnu.org
          Reporter: jtz69180 at zasod dot com
  Target Milestone: ---

((moti))Call @@@++ USA I8559905999 Avg A.n.t.i.v.i.r.u.s t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l Avg h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a Avg s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa USA 1
I8559905999 Avg A.n.t.i.v.i.r.u.s t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r
u.s.a. C.a.l.l Avg h.e.l.p d.e.s.k n.u.m.b.e.r 
((moti))Call @@@++ USA I8559905999 Avg A.n.t.i.v.i.r.u.s t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l Avg h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a Avg s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa USA 1
I8559905999 Avg A.n.t.i.v.i.r.u.s t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r
u.s.a. C.a.l.l Avg h.e.l.p d.e.s.k n.u.m.b.e.r 
((moti))Call @@@++ USA I8559905999 Avg A.n.t.i.v.i.r.u.s t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l Avg h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a Avg s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa USA 1
I8559905999 Avg A.n.t.i.v.i.r.u.s t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r
u.s.a. C.a.l.l Avg h.e.l.p d.e.s.k n.u.m.b.e.r 
((moti))Call @@@++ USA I8559905999 Avg A.n.t.i.v.i.r.u.s t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l Avg h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a Avg s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa USA 1
I8559905999 Avg A.n.t.i.v.i.r.u.s t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r
u.s.a. C.a.l.l Avg h.e.l.p d.e.s.k n.u.m.b.e.r 
((moti))Call @@@++ USA I8559905999 Avg A.n.t.i.v.i.r.u.s t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l Avg h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a Avg s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa USA 1
I8559905999 Avg A.n.t.i.v.i.r.u.s t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r
u.s.a. C.a.l.l Avg h.e.l.p d.e.s.k n.u.m.b.e.r 
((moti))Call @@@++ USA I8559905999 Avg A.n.t.i.v.i.r.u.s t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l Avg h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a Avg s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa USA 1
I8559905999 Avg A.n.t.i.v.i.r.u.s t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r
u.s.a. C.a.l.l Avg h.e.l.p d.e.s.k n.u.m.b.e.r 
((moti))Call @@@++ USA I8559905999 Avg A.n.t.i.v.i.r.u.s t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l Avg h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a Avg s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa USA 1
I8559905999 Avg A.n.t.i.v.i.r.u.s t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r
u.s.a. C.a.l.l Avg h.e.l.p d.e.s.k n.u.m.b.e.r 
((moti))Call @@@++ USA I8559905999 Avg A.n.t.i.v.i.r.u.s t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l Avg h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a Avg s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa USA 1
I8559905999 Avg A.n.t.i.v.i.r.u.s t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r
u.s.a. C.a.l.l Avg h.e.l.p d.e.s.k n.u.m.b.e.r 
((moti))Call @@@++ USA I8559905999 Avg A.n.t.i.v.i.r.u.s t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l Avg h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a Avg s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa USA 1
I8559905999 Avg A.n.t.i.v.i.r.u.s t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r
u.s.a. C.a.l.l Avg h.e.l.p d.e.s.k n.u.m.b.e.r 
((moti))Call @@@++ USA I8559905999 Avg A.n.t.i.v.i.r.u.s t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l Avg h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a Avg s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa USA 1
I8559905999 Avg A.n.t.i.v.i.r.u.s t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r
u.s.a. C.a.l.l Avg h.e.l.p d.e.s.k n.u.m.b.e.r 
((moti))Call @@@++ USA I8559905999 Avg A.n.t.i.v.i.r.u.s t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l Avg h.e.l.p d.e.s.k n.u.m.b.e.r
n.u.m.b.e.r C.a.n.a.d.a Avg s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r usa USA 1
I8559905999 Avg A.n.t.i.v.i.r.u.s t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r
u.s.a. C.a.l.l Avg h.e.l.p d.e.s.k n.u.m.b.e.r
>From gcc-bugs-return-534263-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 16:17:26 2016
Return-Path: <gcc-bugs-return-534263-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 36791 invoked by alias); 11 Aug 2016 16:17:25 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 36775 invoked by uid 89); 11 Aug 2016 16:17:25 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, printers, 4.0.1
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 16:17:15 +0000
From: "saxenaharsh465 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/74373] New: $@^^1…5p9(47^^@@%@%@$$ XEROX Printer tech support phone number
Date: Thu, 11 Aug 2016 16:17:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: 4.0.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: saxenaharsh465 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-74373-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01599.txt.bz2
Content-length: 6553

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74373

            Bug ID: 74373
           Summary: $@^^1=855=709=2847^^@@%@%@$$ XEROX Printer tech
                    support phone number
           Product: gcc
           Version: 4.0.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ada
          Assignee: unassigned at gcc dot gnu.org
          Reporter: saxenaharsh465 at gmail dot com
  Target Milestone: ---

@@!!((*I+855+7O9+2847+))!!@@XEROX printer suppOrt phOne number XEROX printer
tech suppOrt phOne number USA, XEROX printer technical suppOrt phOne number
XEROX printer custOmer suppOrt phOne number XEROX printer phOne number XEROX
printer custOmer care phOne number brOhter printer custOmer care number XEROX
printer tOll free phOne number XEROX printer suppOrt XEROX suppOrt XEROX
printers suppOrt XEROX custOmer service XEROX printer help XEROX tech suppOrt
XEROX printer custOmer service XEROX printer tech suppOrt XEROX technical
suppOrt XEROX printer trOubleshOOting XEROX printers trOubleshOOting XEROX
internatiOnal XEROXs printer suppOrt XEROX custOmer suppOrt XEROX printer
technical suppOrt XEROX printer repair XEROX printer helpline XEROX printers
custOmer service XEROX service center XEROXs printers suppOrt XEROX helpline
XEROX custOmer service phOne number install XEROX printer XEROX printers tech
suppOrt XEROX printer suppOrt number XEROX printer custOmer suppOrt XEROX
printer cOntact number XEROX printer prOblems XEROX printers help XEROX printer
service XEROX printer service center XEROX printer cOntact XEROX custOmer
service number XEROX printers helpline XEROX suppOrt number XEROX printer
repairs XEROX printer scanner XEROX printers phOne number XEROX printers
custOmer suppOrt XEROX suppOrt center XEROX tech suppOrt phOne number XEROXs
printers custOmer service XEROX printer custOmer service number XEROX printers
technical suppOrt XEROX printer helpline number XEROX suppOrt phOne number
XEROX suppOrt printer XEROX technical suppOrt number XEROX printers cOntact
trOubleshOOting XEROX printer XEROX printer phOne suppOrt XEROX printers
suppOrt phOne number trOubleshOOt XEROX printer XEROX printers cOntact number
XEROXs custOmer service XEROX printer number XEROX phOne suppOrt XEROX
trOubleshOOting XEROX printer custOmer care XEROX printer help desk drivers fOr
XEROX printers XEROX technical suppOrt phOne number XEROX custOmer service
phOne cOntact XEROX printers XEROX printer custOmer care number XEROX help desk
XEROX Online suppOrt XEROX custOmer suppOrt phOne number XEROXs printer
custOmer service XEROX printer mfc XEROX printers tech suppOrt phOne number
XEROX service XEROXs tech suppOrt XEROX printers custOmer service phOne number
XEROX printer install XEROX laser printers XEROXs printers suppOrt XEROX
printer XEROX printer service centre XEROX printer updates XEROX inkjet printer
cOntact XEROX suppOrt XEROX tech suppOrt phOne XEROX lc61 XEROXs printers tech
suppOrt printers Online cOntact XEROX printer XEROXs printer XEROX label
printer XEROX custOmer suppOrt phOne XEROX printers custOmer suppOrt number
XEROX suppOrt centre XEROX laser printer XEROX printer custOmer service suppOrt
XEROX wireless printer setup buy XEROX printer Online XEROX printer tech
suppOrt number XEROX netwOrk printer XEROX printers custOmer service number
custOmer service fOr XEROX printers XEROX service centre XEROX wireless printer
XEROX printers XEROX custOmer care XEROX printer Online suppOrt XEROX printer
tOll free number phOne number fOr XEROX printers XEROX printer installatiOn
XEROX printers help desk XEROX printer suppOrt phOne service XEROX XEROX mfc
XEROX printer custOmer suppOrt number XEROX printers technical suppOrt phOne
number XEROX printer hOtline cOntact number fOr XEROX printers XEROX printer
XEROX.cOm suppOrt cOntact XEROX printer suppOrt XEROX printer trOubleshOOt
XEROX telephOne suppOrt XEROX printers custOmer suppOrt phOne number XEROX
printer help phOne number XEROX custOmer service telephOne number XEROX printer
tech suppOrt phOne XEROX.ca suppOrt XEROX printer Online XEROX multifunctiOn
printer printer suppOrt XEROX printer help XEROX mfc printer technical suppOrt
fOr XEROX printers XEROX tech suppOrt number email suppOrt XEROX printers
suppOrt phOne mfc XEROX XEROX hl227Odw XEROX printers website XEROX printer
suppOrt XEROX printers repair repair XEROX printer XEROX printers suppOrt XEROX
helpline number XEROX scanner printer XEROX printers service XEROX printers
custOmer service telephOne number XEROX printer phOne number custOmer service
XEROX printers review www.XEROX.cOm suppOrt fOr XEROX printer XEROX printer
repair service XEROX printer phOne number fOr XEROX printer suppOrt XEROX
printer website XEROX printers custOmer service phOne XEROX printer prOblems
and sOlutiOns XEROXs printers custOmer service phOne number custOmer service
XEROX printer sOlutiOn XEROX XEROX fax suppOrt mfc XEROX printer XEROX printer
custOmer service phOne XEROX printer help number XEROX mfc-846On drivers fOr
XEROX printers XEROX technical suppOrt phOne number XEROX custOmer service
phOne cOntact XEROX printers XEROX printer custOmer care number XEROX help desk
XEROX Online suppOrt XEROX custOmer suppOrt phOne number XEROXs printer
custOmer service XEROX printer mfc XEROX printers tech suppOrt phOne number
XEROX service XEROXs tech suppOrt XEROX printers custOmer service phOne number
XEROX printer install XEROX laser printers XEROXs printers suppOrt XEROX
printer XEROX printer service centre XEROX printer updates XEROX inkjet printer
cOntact XEROX suppOrt XEROX tech suppOrt phOne XEROX lc61 XEROXs printers tech
suppOrt printers Online cOntact XEROX printer XEROXs printer XEROX label
printer XEROX custOmer suppOrt phOne XEROX printers custOmer suppOrt number
XEROX suppOrt centre XEROX laser printer XEROX printer custOmer service suppOrt
XEROX wireless printer setup buy XEROX printer Online XEROX printer tech
suppOrt number XEROX netwOrk printer XEROX printers custOmer service number
custOmer service fOr XEROX printers XEROX service centre XEROX wireless printer
XEROX printers XEROX custOmer care XEROX printer Online suppOrt XEROX printer
tOll free number phOne number fOr XEROX printers XEROX printer installatiOn
XEROX printers help desk XEROX printer suppOrt phOne service XEROX XEROX XEROX
printer custOmer service/@!!((I+855+7O9+2847+))!!@XEROX printer suppOrt phOne
number XEROX printer tech suppOrt phOne number USA
>From gcc-bugs-return-534265-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 16:18:25 2016
Return-Path: <gcc-bugs-return-534265-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 39488 invoked by alias); 11 Aug 2016 16:18:24 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 39479 invoked by uid 89); 11 Aug 2016 16:18:24 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: =?ISO-8859-1?Q?Yes, score=5.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,LIKELY_SPAM_BODY,TECH_SUPPORT_PHONE autolearn=no version=3.3.2 spammy=headquarters, epson, sk:number1, helpâ?X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 16:18:12 +0000
From: "mustofa11shakeel at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug boehm-gc/74378] New: H00mooO@ 18444434666 norton ANTIVIRUS tech support NUMBER USA 18444434666 18444434666 18444434666 18444434666 18444434666 18444434666 18444434666 18444434666 18444434666
Date: Thu, 11 Aug 2016 16:18:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: boehm-gc
X-Bugzilla-Version: 4.7.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mustofa11shakeel at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-74378-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01601.txt.bz2
Content-length: 8741

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74378

            Bug ID: 74378
           Summary: H00mooO@ 18444434666 norton ANTIVIRUS tech support
                    NUMBER USA 18444434666 18444434666 18444434666
                    18444434666 18444434666 18444434666 18444434666
                    18444434666 18444434666
           Product: gcc
           Version: 4.7.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: boehm-gc
          Assignee: unassigned at gcc dot gnu.org
          Reporter: mustofa11shakeel at gmail dot com
  Target Milestone: ---

USA..1 844-443-4666++ Norton 360 support phone number om Norton tech support
phone number Norton 360 Tech Support Number
USA..1 844-443-4666++ Norton 360 support phone number om Norton tech support
phone number Norton 360 Tech Support Number
USAtralia>>>> USA-1 844-443-4666++ Norton 360 support phone number Norton tech
support phone number  Norton 360 Tech Support Number

USA  >>>> USA-1 844-443-4666++ Norton 360 support phone number USA-1
844-443-4666USA/canada Norton 360 Tech Support Number
@@!1-844-443-4666;!!Norton 360 Support Number

Norton Live Support and Help‎ 18(00-443-4666 @@ Norton tech support phone
number
Norton Live Support and Help‎ 18(00-443-4666 @@ Norton tech support phone
number
Norton Live Support and Help‎ 18(00-443-4666 Norton 360 support phone number
USA
USA Canada>>>> USA-1 844-443-4666++ Norton 360 support phone number USA-1
844-443-4666USA/canada Norton 360 Tech Support Number
@@!1-844-443-4666;!!Norton 360 Support Number
WikiGenes- @+++1844-443-4666++000Norton 360 support phone
number18444434666USA/canada
Norton antivirus technical support phone number 1.844-443-4666
hdfc toll free customer care number(((!1.844-443-4666)) Norton 360 Tech Support
Number @@!1-844-443-4666!! Norton 360 Support Number
Norton toll free customer care number 1.844-443-4666
Norton toll free customer care number 1.844-443-4666
Norton toll free customer care number 1.844-443-4666
Norton toll free customer care number 1.844-443-4666>>>>>
Norton technical support phone number ((1.844-443-4666))
Norton technical support number 1.844-443-4666
Norton technical support number 1.844-443-4666
symantec technical support number 1.844-443-4666
Norton antivirus technical support number 1.844-443-4666
Norton support phone number 1.844-443-4666
Norton locations Norton 360 Tech Support Number @@!1-844-443-4666!! Norton 360
Support Number Norton 360 Tech Support Number @@!1-844-443-4666!! Norton 360
Support Number
Norton customer service
Norton antivirus customer care__Norton Support phone number 1.844-443-4666
Norton customer support phone number 1.844-443-4666
Norton customer support phone number 1.844-443-4666
Norton antivirus customer support phone number 1.844-443-4666Norton antivirus
customer service phone number 1.844-443-4666
Norton antivirus technical support phone number 1.844-443-4666
Norton antivirus tech support phone number 1.844-443-4666
Norton antivirus phone number 1.844-443-4666 Norton 360 Tech Support Number
@@!1-844-443-4666!! Norton 360 Support Number
Norton security center phone number 1.844-443-4666
Norton support telephone number 1.844-443-4666
Norton 360 technical support phone number 1.844-443-4666
symantec technical support phone number 1.844-443-4666
Norton tech support phone number 1.844-443-4666 Norton 360 Tech Support Number
@@!1-844-443-4666!! Norton 360 Support Number
apple technical support phone number 1.844-443-4666 USA
microsoft technical support phone number 1.844-443-4666 USA
gmail technical support phone number 1.844-443-4666 USA
kaspersky technical support phone number 1.844-443-4666 USA
lenovo technical support phone number 1.844-443-4666 USA
epson technical support phone number 1.844-443-4666 USA
Norton technical support phone number 1.844-443-4666 Norton 360 Tech Support
Number @@!1-844-443-4666!! Norton 360 Support Number
Norton AntiVirus Customer Service Phone Number #1: 844-443-4666
Norton Phone number 1-844-443-4666 Norton 360 phone number Norton 360 support
phone number
Free~* C@ll 1.844-443-4666 Norton 360 technical support phone number USA
1.844-443-4666 Norton 360 technical support phone number Norton free call
~* C@ll 1.844-443-4666 Norton 360 technical support phone number USA
1.844-443-4666 Norton 360 technical support phone number Norton free call
Norton 360 Tech Support Number @@!1-844-443-4666!! Norton 360 Support Number
PHONE support USA @1.844-443-4666 Norton antivirus technical support phone
number
Norton locations
Norton online support
Norton Support phone number 1.844-443-4666
Norton customer care Norton tech support phone number 1.844-443-4666
Norton tech support phone number 1.844-443-4666
Norton antivirus tech support phone number 1.844-443-4666
Norton locations Norton 360 Tech Support Number @@!1-844-443-4666!! Norton 360
Support Number
Norton Support phone number 1.844-443-4666
service Norton com
Norton login
Norton technical support phone number 1.844-443-4666
Norton customer service
Norton Support phone number 1.844-443-4666
Norton support telephone number 1.844-443-4666
Norton support phone number 1.844-443-4666
Norton antivirus support phone number 1.844-443-4666 Norton 360 Tech Support
Number @@!1-844-443-4666!! Norton 360 Support Number
Norton antivirus tech support phone number 1.844-443-4666
Norton antivirus customer service phone number 1.844-443-4666
Norton 360 technical support phone number 1.844-443-4666
symantec technical support phone number 1.844-443-4666
Norton technical support phone number 1.844-443-4666
Norton customer service telephone number 1.844-443-4666
Norton antivirus phone number 1.844-443-4666
Norton antivirus customer service phone number 1.844-443-4666
Norton antivirus customer service Support Norton 360 Tech Support Number
@@!1-844-443-4666!! Norton 360 Support Number
Norton antivirus phone number 1.844-443-4666
Norton phone number 1.844-443-4666 cancel subscription
Norton technical support phone number 1.844-443-4666
Norton 844 phone number 1.844-443-4666
snapdeal toll free customer care number 1.844-443-4666
sbi toll free customer care number 1.844-443-4666
airtel toll free customer care number 1.844-443-4666
Norton customer service number 1.844-443-4666
Norton call center Norton 360 Tech Support Number @@!1-844-443-4666!! Norton
360 Support Number
Norton customer service email address
Norton customer care no Norton 360 Tech Support Number @@!1-844-443-4666!!
Norton 360 Support Number
call Norton support
chat with Norton support
Norton customer support
Norton antivirus customer service number 1.844-443-4666
Norton Norton 360 Tech Support Number @@!1-844-443-4666!! Norton 360 Support
Number
Norton call center
Norton hq
Norton office locations
Norton support site
Norton telephone number 1.844-443-4666 for customer support
Norton customer service contact number 1.844-443-4666
Norton customer care
Norton toll free number 1.844-443-4666
Norton security contact number 1.844-443-4666
contact Vipre
Norton headquarters Norton 360 Tech Support Number @@!1-844-443-4666!! Norton
360 Support Number
Norton customer service chat
Norton customer service telephone number 1.844-443-4666
Norton Support phone number 1.844-443-4666
Norton customer support
Norton customer service refund
Norton login
Norton locations
Norton customer service number 1.844-443-4666 USA
Norton locations
Norton customer service email address
Norton support site Norton 360 Tech Support Number @@!1-844-443-4666!! Norton
360 Support Number
Norton technical support phone number 1.844-443-4666
Norton technical support live chat
Norton technical support email address
Norton technical support number 1.844-443-4666
Norton technical support number 1.844-443-4666 Norton 360 Tech Support Number
@@!1-844-443-4666!! Norton 360 Support Number
symantec technical support number 1.844-443-4666
Norton antivirus technical support number 1.844-443-4666
Norton customer support phone number 1.844-443-4666
Norton customer support number 1.844-443-4666
Norton customer support number 1.844-443-4666 Norton 360 Tech Support Number
@@!1-844-443-4666!! Norton 360 Support Number
Norton antivirus customer support number 1.844-443-4666
Norton locations Norton 360 Techac Support Number @@!1-844-443-4666!! Norton
360 Support Number
Norton Support phone number 1.844-443-4666
Norton corporate phone number 1.844-443-4666 Norton 360 Tech Support Number
@@!1-844-443-4666!! Norton 360 Support Number
Norton customer service Support
Norton technical support phone number 1.844-443-4666
Norton tech support phone number 1.844-443-4666
Norton tech support number 1.844-443-4666
Norton tech support number 1.844-443-4666 FREE
>From gcc-bugs-return-534267-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 16:22:31 2016
Return-Path: <gcc-bugs-return-534267-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 52208 invoked by alias); 11 Aug 2016 16:22:30 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 52189 invoked by uid 89); 11 Aug 2016 16:22:30 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=2.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammyÊre, sk:number1, sbi, airtel
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 16:22:20 +0000
From: "Kild1991 at superrito dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/74394] New: TExasss $$$$$((**1.866.316.6909)))$$$$$Netgear Router Phone Number Netgear Phone Number
Date: Thu, 11 Aug 2016 16:22:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: Kild1991 at superrito dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-74394-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01603.txt.bz2
Content-length: 5181

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74394

            Bug ID: 74394
           Summary: TExasss $$$$$((**1.866.316.6909)))$$$$$Netgear Router
                    Phone Number Netgear Phone Number
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: Kild1991 at superrito dot com
  Target Milestone: ---

TExasss $$$$$((**1.866.316.6909)))$$$$$Netgear Router Phone Number Netgear
Phone Number


TExas $$$$$((**1.866.316.6909)))$$$$$Netgear Router Phone Number Netgear Phone
Number

Help Desk Wifi 1-866-316-6909 Netgear Router Tech Support Number1.866.316.6909
Netgear Router Customer Service Number USA

MISSOURI Describe Wireless wifi Netgear Tech support Number MINNESOTA
@1-866-316-6909@ Netgear router tech support number, Netgear router customer
service number,Netgear wireless router tech support number USA Canada UK
Australia,Netgear Router Technical Support number, Netgear Router support phone
number @@@rv 18663166909++++ Netgear Router Support Phone number Netgear tech
support number +++18663166909+++ Netgear Router customer service phone number
Netgear technical support number 18663166909++ Netgear Router customer Care
phone number Netgear tech support number 18663166909++++ Netgear helpdesk
support phone number Netgear Customer support phone number 18663166909 Netgear
tech support number , Netgear tech support phone number , Netgear customer
support phone number here $$$##@@ Netgear tech support number 18663166909
Netgear Technical support number @@ Netgear support phone number 18663166909
Netgear customer service phone number Netgear customer c.a.r.e number Netgear
helpdesk phone number Netgear helpline phone number 1866+316+6909 Netgear
contact phone number 18663166909 Netgear tech support number , Netgear tech
support phone number , Netgear customer support phone number here $$$##@@
Netgear tech support number 18663166909 Netgear Technical support number @@
Netgear support phone number 18663166909 Netgear customer service phone number
Netgear customer c.a.r.e number Netgear helpdesk phone number Netgear helpline
phone number 1866+316+6909 Netgear contact phone number Netgear help number -
Netgear helpline number ; Netgear help phone number , Netgear helpline number ,
Netgear tech support tollfree number , Netgear support Tele phone number ,
Netgear tech support Tele phone number , Netgear tech support contact number ,
Netgear support contact number , Netgear Technical support contact number ,
Netgear support phone number , Netgear Router support phone number . Netgear
Router customer support phone number Netgear customer service number
18663166909 Netgear call center Netgear customer service Routeraddress Netgear
customer c.a.r.e no Netgear Router Technical support phone number 18663166909
Netgear Router tech support phone number 18663166909 Netgear Router customer
service phone number 18663166909 Netgear Technical support phone number
18663166909 symantec Technical support phone number 18663166909 Netgear
Technical support phone number 18663166909 Netgear customer service tele phone
number 18663166909 Netgear Router phone number 18663166909 Netgear Router
customer service phone number 18663166909 Netgear Router customer service
helpdesk Netgear Router phone number 18663166909 Netgear phone number
18663166909cancel subscription Netgear Technical support phone number
18663166909 Netgear 866 phone number 18663166909 snapdeal tollfree customer
c.a.r.e number 18663166909 sbi tollfree customer c.a.r.e number 18663166909
airtel tollfree customer c.a.r.e number 18663166909 hdfc tollfree customer
c.a.r.e number 18663166909 bsnl tollfree customer c.a.r.e number 18663166909
icici tollfree customer c.a.r.e number 18663166909 flipkart tollfree customer
c.a.r.e number 18663166909 vodafone tollfree customer c.a.r.e number
18663166909 Netgear Technical support phone number 18663166909 Netgear
Technical support number 18663166909 Netgear Technical support number
18663166909 symantec Technical support number 18663166909 Netgear Router
Technical support number 18663166909 Netgear locations Netgear online support
Netgear helpdesk phone number 18663166909 Netgear customer c.a.r.e Netgear tech
support phone number 18663166909 Netgear tech support phone number 18663166909
Netgear Router tech support phone number 18663166909 Netgear locations Netgear
helpdesk phone number 18663166909 service Netgear com Netgear login Netgear
Technical support phone number 18663166909 Netgear customer service Netgear
helpdesk phone number 18663166909 Netgear support tele phone number 18663166909
Netgear support phone number 18663166909 Netgear Router support phone number
18663166909 Netgear support phone number 18663166909 Netgear locations Netgear
customer service Netgear customer c.a.r.e Netgear helpdesk phone number
18663166909 Netgear customer support phone number 18663166909 Netgear customer
support phone number 18663166909 Netgear Router customer support phone number
18663166909
>From gcc-bugs-return-534266-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 16:22:11 2016
Return-Path: <gcc-bugs-return-534266-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 51317 invoked by alias); 11 Aug 2016 16:22:11 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 51306 invoked by uid 89); 11 Aug 2016 16:22:10 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: =?ISO-8859-1?Q?Yes, score=9.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,LIKELY_SPAM_BODY,TECH_SUPPORT_PHONE autolearn=no version=3.3.2 spammy=headquarters, sk:number1, helpâ, kaspersky?X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 16:22:08 +0000
From: "mustofa11shakeel at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/74393] New: (((((o0o0o0o0o)))))@ 18444434666 norton ANTIVIRUS tech support NUMBER USA 18444434666 18444434666 18444434666 18444434666 18444434666 18444434666 18444434666 18444434666 18444434666 (edit)
Date: Thu, 11 Aug 2016 16:22:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 4.6.4
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mustofa11shakeel at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-74393-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01602.txt.bz2
Content-length: 8761

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74393

            Bug ID: 74393
           Summary: (((((o0o0o0o0o)))))@ 18444434666 norton ANTIVIRUS tech
                    support NUMBER USA 18444434666 18444434666 18444434666
                    18444434666 18444434666 18444434666 18444434666
                    18444434666 18444434666 (edit)
           Product: gcc
           Version: 4.6.4
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: mustofa11shakeel at gmail dot com
  Target Milestone: ---

USA..1 844-443-4666++ Norton 360 support phone number om Norton tech support
phone number Norton 360 Tech Support Number
USA..1 844-443-4666++ Norton 360 support phone number om Norton tech support
phone number Norton 360 Tech Support Number
USAtralia>>>> USA-1 844-443-4666++ Norton 360 support phone number Norton tech
support phone number  Norton 360 Tech Support Number

USA  >>>> USA-1 844-443-4666++ Norton 360 support phone number USA-1
844-443-4666USA/canada Norton 360 Tech Support Number
@@!1-844-443-4666;!!Norton 360 Support Number

Norton Live Support and Help‎ 18(00-443-4666 @@ Norton tech support phone
number
Norton Live Support and Help‎ 18(00-443-4666 @@ Norton tech support phone
number
Norton Live Support and Help‎ 18(00-443-4666 Norton 360 support phone number
USA
USA Canada>>>> USA-1 844-443-4666++ Norton 360 support phone number USA-1
844-443-4666USA/canada Norton 360 Tech Support Number
@@!1-844-443-4666;!!Norton 360 Support Number
WikiGenes- @+++1844-443-4666++000Norton 360 support phone
number18444434666USA/canada
Norton antivirus technical support phone number 1.844-443-4666
hdfc toll free customer care number(((!1.844-443-4666)) Norton 360 Tech Support
Number @@!1-844-443-4666!! Norton 360 Support Number
Norton toll free customer care number 1.844-443-4666
Norton toll free customer care number 1.844-443-4666
Norton toll free customer care number 1.844-443-4666
Norton toll free customer care number 1.844-443-4666>>>>>
Norton technical support phone number ((1.844-443-4666))
Norton technical support number 1.844-443-4666
Norton technical support number 1.844-443-4666
symantec technical support number 1.844-443-4666
Norton antivirus technical support number 1.844-443-4666
Norton support phone number 1.844-443-4666
Norton locations Norton 360 Tech Support Number @@!1-844-443-4666!! Norton 360
Support Number Norton 360 Tech Support Number @@!1-844-443-4666!! Norton 360
Support Number
Norton customer service
Norton antivirus customer care__Norton Support phone number 1.844-443-4666
Norton customer support phone number 1.844-443-4666
Norton customer support phone number 1.844-443-4666
Norton antivirus customer support phone number 1.844-443-4666Norton antivirus
customer service phone number 1.844-443-4666
Norton antivirus technical support phone number 1.844-443-4666
Norton antivirus tech support phone number 1.844-443-4666
Norton antivirus phone number 1.844-443-4666 Norton 360 Tech Support Number
@@!1-844-443-4666!! Norton 360 Support Number
Norton security center phone number 1.844-443-4666
Norton support telephone number 1.844-443-4666
Norton 360 technical support phone number 1.844-443-4666
symantec technical support phone number 1.844-443-4666
Norton tech support phone number 1.844-443-4666 Norton 360 Tech Support Number
@@!1-844-443-4666!! Norton 360 Support Number
apple technical support phone number 1.844-443-4666 USA
microsoft technical support phone number 1.844-443-4666 USA
gmail technical support phone number 1.844-443-4666 USA
kaspersky technical support phone number 1.844-443-4666 USA
lenovo technical support phone number 1.844-443-4666 USA
epson technical support phone number 1.844-443-4666 USA
Norton technical support phone number 1.844-443-4666 Norton 360 Tech Support
Number @@!1-844-443-4666!! Norton 360 Support Number
Norton AntiVirus Customer Service Phone Number #1: 844-443-4666
Norton Phone number 1-844-443-4666 Norton 360 phone number Norton 360 support
phone number
Free~* C@ll 1.844-443-4666 Norton 360 technical support phone number USA
1.844-443-4666 Norton 360 technical support phone number Norton free call
~* C@ll 1.844-443-4666 Norton 360 technical support phone number USA
1.844-443-4666 Norton 360 technical support phone number Norton free call
Norton 360 Tech Support Number @@!1-844-443-4666!! Norton 360 Support Number
PHONE support USA @1.844-443-4666 Norton antivirus technical support phone
number
Norton locations
Norton online support
Norton Support phone number 1.844-443-4666
Norton customer care Norton tech support phone number 1.844-443-4666
Norton tech support phone number 1.844-443-4666
Norton antivirus tech support phone number 1.844-443-4666
Norton locations Norton 360 Tech Support Number @@!1-844-443-4666!! Norton 360
Support Number
Norton Support phone number 1.844-443-4666
service Norton com
Norton login
Norton technical support phone number 1.844-443-4666
Norton customer service
Norton Support phone number 1.844-443-4666
Norton support telephone number 1.844-443-4666
Norton support phone number 1.844-443-4666
Norton antivirus support phone number 1.844-443-4666 Norton 360 Tech Support
Number @@!1-844-443-4666!! Norton 360 Support Number
Norton antivirus tech support phone number 1.844-443-4666
Norton antivirus customer service phone number 1.844-443-4666
Norton 360 technical support phone number 1.844-443-4666
symantec technical support phone number 1.844-443-4666
Norton technical support phone number 1.844-443-4666
Norton customer service telephone number 1.844-443-4666
Norton antivirus phone number 1.844-443-4666
Norton antivirus customer service phone number 1.844-443-4666
Norton antivirus customer service Support Norton 360 Tech Support Number
@@!1-844-443-4666!! Norton 360 Support Number
Norton antivirus phone number 1.844-443-4666
Norton phone number 1.844-443-4666 cancel subscription
Norton technical support phone number 1.844-443-4666
Norton 844 phone number 1.844-443-4666
snapdeal toll free customer care number 1.844-443-4666
sbi toll free customer care number 1.844-443-4666
airtel toll free customer care number 1.844-443-4666
Norton customer service number 1.844-443-4666
Norton call center Norton 360 Tech Support Number @@!1-844-443-4666!! Norton
360 Support Number
Norton customer service email address
Norton customer care no Norton 360 Tech Support Number @@!1-844-443-4666!!
Norton 360 Support Number
call Norton support
chat with Norton support
Norton customer support
Norton antivirus customer service number 1.844-443-4666
Norton Norton 360 Tech Support Number @@!1-844-443-4666!! Norton 360 Support
Number
Norton call center
Norton hq
Norton office locations
Norton support site
Norton telephone number 1.844-443-4666 for customer support
Norton customer service contact number 1.844-443-4666
Norton customer care
Norton toll free number 1.844-443-4666
Norton security contact number 1.844-443-4666
contact Vipre
Norton headquarters Norton 360 Tech Support Number @@!1-844-443-4666!! Norton
360 Support Number
Norton customer service chat
Norton customer service telephone number 1.844-443-4666
Norton Support phone number 1.844-443-4666
Norton customer support
Norton customer service refund
Norton login
Norton locations
Norton customer service number 1.844-443-4666 USA
Norton locations
Norton customer service email address
Norton support site Norton 360 Tech Support Number @@!1-844-443-4666!! Norton
360 Support Number
Norton technical support phone number 1.844-443-4666
Norton technical support live chat
Norton technical support email address
Norton technical support number 1.844-443-4666
Norton technical support number 1.844-443-4666 Norton 360 Tech Support Number
@@!1-844-443-4666!! Norton 360 Support Number
symantec technical support number 1.844-443-4666
Norton antivirus technical support number 1.844-443-4666
Norton customer support phone number 1.844-443-4666
Norton customer support number 1.844-443-4666
Norton customer support number 1.844-443-4666 Norton 360 Tech Support Number
@@!1-844-443-4666!! Norton 360 Support Number
Norton antivirus customer support number 1.844-443-4666
Norton locations Norton 360 Techac Support Number @@!1-844-443-4666!! Norton
360 Support Number
Norton Support phone number 1.844-443-4666
Norton corporate phone number 1.844-443-4666 Norton 360 Tech Support Number
@@!1-844-443-4666!! Norton 360 Support Number
Norton customer service Support
Norton technical support phone number 1.844-443-4666
Norton tech support phone number 1.844-443-4666
Norton tech support number 1.844-443-4666
Norton tech support number 1.844-443-4666 FREE
>From gcc-bugs-return-534268-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 16:23:13 2016
Return-Path: <gcc-bugs-return-534268-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 54250 invoked by alias); 11 Aug 2016 16:23:13 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 53844 invoked by uid 89); 11 Aug 2016 16:23:12 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=1.8 required=5.0 tests=ALL_TRUSTED,BAYES_50,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, printers, 4.0.1
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 16:23:02 +0000
From: "jiioiooim at codehot dot co.uk" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/74397] New: $@^^1…5p9(47^^@@%@%@$$ Canon Printer tech support phone number
Date: Thu, 11 Aug 2016 16:23:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: 4.0.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jiioiooim at codehot dot co.uk
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-74397-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01604.txt.bz2
Content-length: 6818

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74397

            Bug ID: 74397
           Summary: $@^^1=855=709=2847^^@@%@%@$$ Canon Printer tech
                    support phone number
           Product: gcc
           Version: 4.0.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ada
          Assignee: unassigned at gcc dot gnu.org
          Reporter: jiioiooim at codehot dot co.uk
  Target Milestone: ---

I+855+7O9+2847 !!++++@@+++@@@@+CANON printer suppOrt phOne number CANON printer
tech suppOrt phOne number USA JUST<::: /@!!((I+855+7O9+2847+))!!@CANON printer
suppOrt phOne number CANON printer tech suppOrt phOne number USA CANON printer
custOmer service@@!!((*I+855+7O9+2847+))!!@@CANON printer suppOrt phOne number
CANON printer tech suppOrt phOne number USA, CANON printer technical suppOrt
phOne number CANON printer custOmer suppOrt phOne number CANON printer phOne
number CANON printer custOmer care phOne number brOhter printer custOmer care
number CANON printer tOll free phOne number CANON printer suppOrt CANON suppOrt
CANON printers suppOrt CANON custOmer service CANON printer help CANON tech
suppOrt CANON printer custOmer service CANON printer tech suppOrt CANON
technical suppOrt CANON printer trOubleshOOting CANON printers trOubleshOOting
CANON internatiOnal CANONs printer suppOrt CANON custOmer suppOrt CANON printer
technical suppOrt CANON printer repair CANON printer helpline CANON printers
custOmer service CANON service center CANONs printers suppOrt CANON helpline
CANON custOmer service phOne number install CANON printer CANON printers tech
suppOrt CANON printer suppOrt number CANON printer custOmer suppOrt CANON
printer cOntact number CANON printer prOblems CANON printers help CANON printer
service CANON printer service center CANON printer cOntact CANON custOmer
service number CANON printers helpline CANON suppOrt number CANON printer
repairs CANON printer scanner CANON printers phOne number CANON printers
custOmer suppOrt CANON suppOrt center CANON tech suppOrt phOne number CANONs
printers custOmer service CANON printer custOmer service number CANON printers
technical suppOrt CANON printer helpline number CANON suppOrt phOne number
CANON suppOrt printer CANON technical suppOrt number CANON printers cOntact
trOubleshOOting CANON printer CANON printer phOne suppOrt CANON printers
suppOrt phOne number trOubleshOOt CANON printer CANON printers cOntact number
CANONs custOmer service CANON printer number CANON phOne suppOrt CANON
trOubleshOOting CANON printer custOmer care CANON printer help desk drivers fOr
CANON printers CANON technical suppOrt phOne number CANON custOmer service
phOne cOntact CANON printers CANON printer custOmer care number CANON help desk
CANON Online suppOrt CANON custOmer suppOrt phOne number CANONs printer
custOmer service CANON printer mfc CANON printers tech suppOrt phOne number
CANON service CANONs tech suppOrt CANON printers custOmer service phOne number
CANON printer install CANON laser printers CANONs printers suppOrt CANON
printer CANON printer service centre CANON printer updates CANON inkjet printer
cOntact CANON suppOrt CANON tech suppOrt phOne CANON lc61 CANONs printers tech
suppOrt printers Online cOntact CANON printer CANONs printer CANON label
printer CANON custOmer suppOrt phOne CANON printers custOmer suppOrt number
CANON suppOrt centre CANON laser printer CANON printer custOmer service suppOrt
CANON wireless printer setup buy CANON printer Online CANON printer tech
suppOrt number CANON netwOrk printer CANON printers custOmer service number
custOmer service fOr CANON printers CANON service centre CANON wireless printer
CANON printers CANON custOmer care CANON printer Online suppOrt CANON printer
tOll free number phOne number fOr CANON printers CANON printer installatiOn
CANON printers help desk CANON printer suppOrt phOne service CANON CANON mfc
CANON printer custOmer suppOrt number CANON printers technical suppOrt phOne
number CANON printer hOtline cOntact number fOr CANON printers CANON printer
CANON.cOm suppOrt cOntact CANON printer suppOrt CANON printer trOubleshOOt
CANON telephOne suppOrt CANON printers custOmer suppOrt phOne number CANON
printer help phOne number CANON custOmer service telephOne number CANON printer
tech suppOrt phOne CANON.ca suppOrt CANON printer Online CANON multifunctiOn
printer printer suppOrt CANON printer help CANON mfc printer technical suppOrt
fOr CANON printers CANON tech suppOrt number email suppOrt CANON printers
suppOrt phOne mfc CANON CANON hl227Odw CANON printers website CANON printer
suppOrt CANON printers repair repair CANON printer CANON printers suppOrt CANON
helpline number CANON scanner printer CANON printers service CANON printers
custOmer service telephOne number CANON printer phOne number custOmer service
CANON printers review www.CANON.cOm suppOrt fOr CANON printer CANON printer
repair service CANON printer phOne number fOr CANON printer suppOrt CANON
printer website CANON printers custOmer service phOne CANON printer prOblems
and sOlutiOns CANONs printers custOmer service phOne number custOmer service
CANON printer sOlutiOn CANON CANON fax suppOrt mfc CANON printer CANON printer
custOmer service phOne CANON printer help number CANON mfc-846On drivers fOr
CANON printers CANON technical suppOrt phOne number CANON custOmer service
phOne cOntact CANON printers CANON printer custOmer care number CANON help desk
CANON Online suppOrt CANON custOmer suppOrt phOne number CANONs printer
custOmer service CANON printer mfc CANON printers tech suppOrt phOne number
CANON service CANONs tech suppOrt CANON printers custOmer service phOne number
CANON printer install CANON laser printers CANONs printers suppOrt CANON
printer CANON printer service centre CANON printer updates CANON inkjet printer
cOntact CANON suppOrt CANON tech suppOrt phOne CANON lc61 CANONs printers tech
suppOrt printers Online cOntact CANON printer CANONs printer CANON label
printer CANON custOmer suppOrt phOne CANON printers custOmer suppOrt number
CANON suppOrt centre CANON laser printer CANON printer custOmer service suppOrt
CANON wireless printer setup buy CANON printer Online CANON printer tech
suppOrt number CANON netwOrk printer CANON printers custOmer service number
custOmer service fOr CANON printers CANON service centre CANON wireless printer
CANON printers CANON custOmer care CANON printer Online suppOrt CANON printer
tOll free number phOne number fOr CANON printers CANON printer installatiOn
CANON printers help desk CANON printer suppOrt phOne service CANON CANON CANON
printer custOmer service/@!!((I+855+7O9+2847+))!!@CANON printer suppOrt phOne
number CANON printer tech suppOrt phOne number USA
>From gcc-bugs-return-534269-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 16:34:45 2016
Return-Path: <gcc-bugs-return-534269-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 95070 invoked by alias); 11 Aug 2016 16:34:44 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 94248 invoked by uid 89); 11 Aug 2016 16:34:44 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=visit
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 16:34:34 +0000
From: "dh9226542 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug web/74454] New: how to resolve quickbooks error 6000, 3371
Date: Thu, 11 Aug 2016 16:34:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: web
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dh9226542 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-74454-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01605.txt.bz2
Content-length: 667

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74454

            Bug ID: 74454
           Summary: how to resolve quickbooks error 6000, 3371
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: web
          Assignee: unassigned at gcc dot gnu.org
          Reporter: dh9226542 at gmail dot com
  Target Milestone: ---

I am using quickbooks software last one year. I get this errors 6000, 3371 now.
My fiend suggest me visit here http://www.quickbookssupporthelp.com for solve
my problem.. Please suggest me Quickbooks support number? They solve my
problem..
>From gcc-bugs-return-534270-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 16:57:27 2016
Return-Path: <gcc-bugs-return-534270-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 99448 invoked by alias); 11 Aug 2016 16:57:27 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 99436 invoked by uid 89); 11 Aug 2016 16:57:27 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy[ranch, 5-branch, Hx-languages-length:298
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 16:57:24 +0000
From: "tkoenig at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/68147] Potential incorrect code generation for string self-assignment
Date: Thu, 11 Aug 2016 16:57:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: tkoenig at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: tkoenig at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-68147-4-OwdpM4WteM@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68147-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68147-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01606.txt.bz2
Content-length: 218

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68147

--- Comment #15 from Thomas Koenig <tkoenig at gcc dot gnu.org> ---
This is fixed on trunk and 6-branch (so it will be in the
next release).  5-branch still to do.
>From gcc-bugs-return-534272-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 17:09:30 2016
Return-Path: <gcc-bugs-return-534272-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 123109 invoked by alias); 11 Aug 2016 17:09:30 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 123079 invoked by uid 89); 11 Aug 2016 17:09:29 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyêt
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 17:09:27 +0000
From: "jvdelisle at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/73142] [5/6 Regression] Reading a namelist fails - my code worked until 4.8.2
Date: Thu, 11 Aug 2016 17:09:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jvdelisle at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: jvdelisle at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-73142-4-auuMZWpf02@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73142-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73142-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01608.txt.bz2
Content-length: 754

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73142

--- Comment #10 from Jerry DeLisle <jvdelisle at gcc dot gnu.org> ---
Author: jvdelisle
Date: Thu Aug 11 17:08:54 2016
New Revision: 239381

URL: https://gcc.gnu.org/viewcvs?rev=239381&root=gcc&view=rev
Log:
2016-08-11  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

        Backport from trunk
        PR libgfortran/71123
        PR libgfortran/73142
        * io/list_read (eat_spaces): Eat '\r' as part of spaces.

        * gfortran.dg/namelist_90.f: New test.

Added:
    branches/gcc-6-branch/gcc/testsuite/gfortran.dg/namelist_90.f
Modified:
    branches/gcc-6-branch/gcc/testsuite/ChangeLog
    branches/gcc-6-branch/libgfortran/ChangeLog
    branches/gcc-6-branch/libgfortran/io/list_read.c
>From gcc-bugs-return-534271-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 17:09:30 2016
Return-Path: <gcc-bugs-return-534271-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 123101 invoked by alias); 11 Aug 2016 17:09:30 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 123078 invoked by uid 89); 11 Aug 2016 17:09:29 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyêt
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 17:09:27 +0000
From: "jvdelisle at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libfortran/71123] Namelist read failure on Windows
Date: Thu, 11 Aug 2016 17:09:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libfortran
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jvdelisle at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jvdelisle at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71123-4-K0bBkXa04O@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71123-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71123-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01607.txt.bz2
Content-length: 753

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71123

--- Comment #8 from Jerry DeLisle <jvdelisle at gcc dot gnu.org> ---
Author: jvdelisle
Date: Thu Aug 11 17:08:54 2016
New Revision: 239381

URL: https://gcc.gnu.org/viewcvs?rev=239381&root=gcc&view=rev
Log:
2016-08-11  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

        Backport from trunk
        PR libgfortran/71123
        PR libgfortran/73142
        * io/list_read (eat_spaces): Eat '\r' as part of spaces.

        * gfortran.dg/namelist_90.f: New test.

Added:
    branches/gcc-6-branch/gcc/testsuite/gfortran.dg/namelist_90.f
Modified:
    branches/gcc-6-branch/gcc/testsuite/ChangeLog
    branches/gcc-6-branch/libgfortran/ChangeLog
    branches/gcc-6-branch/libgfortran/io/list_read.c
>From gcc-bugs-return-534273-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 17:17:21 2016
Return-Path: <gcc-bugs-return-534273-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 29210 invoked by alias); 11 Aug 2016 17:17:21 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 29198 invoked by uid 89); 11 Aug 2016 17:17:20 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=2.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT autolearn=no version=3.3.2 spammy=UD:S.A, u.s.a, UD:s.u.p.p.o.r.t, UD:t.e.c.h
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 17:17:09 +0000
From: "dheeru21 at codehot dot co.uk" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/74525] New: C.A.L.L F.a.s.t U.S.A 1.8.5.5.7.0.9.2.8.4.7 E.p.s.o.n p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r ,E.p.s.o.n t.e.c.h.n.i.c.a.l s.u.p.p.o.r.t U.S.A.
Date: Thu, 11 Aug 2016 17:17:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: 4.0.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dheeru21 at codehot dot co.uk
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-74525-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01609.txt.bz2
Content-length: 8066

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74525

            Bug ID: 74525
           Summary: C.A.L.L F.a.s.t U.S.A 1.8.5.5.7.0.9.2.8.4.7 E.p.s.o.n
                    p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e
                    n.u.m.b.e.r ,E.p.s.o.n t.e.c.h.n.i.c.a.l s.u.p.p.o.r.t
                    U.S.A.
           Product: gcc
           Version: 4.0.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ada
          Assignee: unassigned at gcc dot gnu.org
          Reporter: dheeru21 at codehot dot co.uk
  Target Milestone: ---

C.A.L.L F.a.s.t U.S.A 1.8.5.5.7.0.9.2.8.4.7 E.p.s.o.n p.r.i.n.t.e.r t.e.c.h
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r ,E.p.s.o.n t.e.c.h.n.i.c.a.l s.u.p.p.o.r.t
U.S.A.C.A.L.L F.a.s.t U.S.A 1.8.5.5.7.0.9.2.8.4.7 E.p.s.o.n p.r.i.n.t.e.r
t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r ,E.p.s.o.n t.e.c.h.n.i.c.a.l
s.u.p.p.o.r.t U.S.A.C.A.L.L F.a.s.t U.S.A 1.8.5.5.7.0.9.2.8.4.7 E.p.s.o.n
p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r ,E.p.s.o.n
t.e.c.h.n.i.c.a.l s.u.p.p.o.r.t U.S.A.C.A.L.L F.a.s.t U.S.A
1.8.5.5.7.0.9.2.8.4.7 E.p.s.o.n p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e
n.u.m.b.e.r ,E.p.s.o.n t.e.c.h.n.i.c.a.l s.u.p.p.o.r.t U.S.A.C.A.L.L F.a.s.t
U.S.A 1.8.5.5.7.0.9.2.8.4.7 E.p.s.o.n p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r ,E.p.s.o.n t.e.c.h.n.i.c.a.l s.u.p.p.o.r.t U.S.A.C.A.L.L
F.a.s.t U.S.A 1.8.5.5.7.0.9.2.8.4.7 E.p.s.o.n p.r.i.n.t.e.r t.e.c.h
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r ,E.p.s.o.n t.e.c.h.n.i.c.a.l s.u.p.p.o.r.t
U.S.A.C.A.L.L F.a.s.t U.S.A 1.8.5.5.7.0.9.2.8.4.7 E.p.s.o.n p.r.i.n.t.e.r
t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r ,E.p.s.o.n t.e.c.h.n.i.c.a.l
s.u.p.p.o.r.t U.S.A.C.A.L.L F.a.s.t U.S.A 1.8.5.5.7.0.9.2.8.4.7 E.p.s.o.n
p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r ,E.p.s.o.n
t.e.c.h.n.i.c.a.l s.u.p.p.o.r.t U.S.A.C.A.L.L F.a.s.t U.S.A
1.8.5.5.7.0.9.2.8.4.7 E.p.s.o.n p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e
n.u.m.b.e.r ,E.p.s.o.n t.e.c.h.n.i.c.a.l s.u.p.p.o.r.t U.S.A.C.A.L.L F.a.s.t
U.S.A 1.8.5.5.7.0.9.2.8.4.7 E.p.s.o.n p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r ,E.p.s.o.n t.e.c.h.n.i.c.a.l s.u.p.p.o.r.t U.S.A.C.A.L.L
F.a.s.t U.S.A 1.8.5.5.7.0.9.2.8.4.7 E.p.s.o.n p.r.i.n.t.e.r t.e.c.h
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r ,E.p.s.o.n t.e.c.h.n.i.c.a.l s.u.p.p.o.r.t
U.S.A.C.A.L.L F.a.s.t U.S.A 1.8.5.5.7.0.9.2.8.4.7 E.p.s.o.n p.r.i.n.t.e.r
t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r ,E.p.s.o.n t.e.c.h.n.i.c.a.l
s.u.p.p.o.r.t U.S.A.C.A.L.L F.a.s.t U.S.A 1.8.5.5.7.0.9.2.8.4.7 E.p.s.o.n
p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r ,E.p.s.o.n
t.e.c.h.n.i.c.a.l s.u.p.p.o.r.t U.S.A.C.A.L.L F.a.s.t U.S.A
1.8.5.5.7.0.9.2.8.4.7 E.p.s.o.n p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e
n.u.m.b.e.r ,E.p.s.o.n t.e.c.h.n.i.c.a.l s.u.p.p.o.r.t U.S.A.C.A.L.L F.a.s.t
U.S.A 1.8.5.5.7.0.9.2.8.4.7 E.p.s.o.n p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r ,E.p.s.o.n t.e.c.h.n.i.c.a.l s.u.p.p.o.r.t U.S.A.C.A.L.L
F.a.s.t U.S.A 1.8.5.5.7.0.9.2.8.4.7 E.p.s.o.n p.r.i.n.t.e.r t.e.c.h
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r ,E.p.s.o.n t.e.c.h.n.i.c.a.l s.u.p.p.o.r.t
U.S.A.C.A.L.L F.a.s.t U.S.A 1.8.5.5.7.0.9.2.8.4.7 E.p.s.o.n p.r.i.n.t.e.r
t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r ,E.p.s.o.n t.e.c.h.n.i.c.a.l
s.u.p.p.o.r.t U.S.A.C.A.L.L F.a.s.t U.S.A 1.8.5.5.7.0.9.2.8.4.7 E.p.s.o.n
p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r ,E.p.s.o.n
t.e.c.h.n.i.c.a.l s.u.p.p.o.r.t U.S.A.C.A.L.L F.a.s.t U.S.A
1.8.5.5.7.0.9.2.8.4.7 E.p.s.o.n p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e
n.u.m.b.e.r ,E.p.s.o.n t.e.c.h.n.i.c.a.l s.u.p.p.o.r.t U.S.A.C.A.L.L F.a.s.t
U.S.A 1.8.5.5.7.0.9.2.8.4.7 E.p.s.o.n p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r ,E.p.s.o.n t.e.c.h.n.i.c.a.l s.u.p.p.o.r.t U.S.A.C.A.L.L
F.a.s.t U.S.A 1.8.5.5.7.0.9.2.8.4.7 E.p.s.o.n p.r.i.n.t.e.r t.e.c.h
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r ,E.p.s.o.n t.e.c.h.n.i.c.a.l s.u.p.p.o.r.t
U.S.A.C.A.L.L F.a.s.t U.S.A 1.8.5.5.7.0.9.2.8.4.7 E.p.s.o.n p.r.i.n.t.e.r
t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r ,E.p.s.o.n t.e.c.h.n.i.c.a.l
s.u.p.p.o.r.t U.S.A.C.A.L.L F.a.s.t U.S.A 1.8.5.5.7.0.9.2.8.4.7 E.p.s.o.n
p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r ,E.p.s.o.n
t.e.c.h.n.i.c.a.l s.u.p.p.o.r.t U.S.A.C.A.L.L F.a.s.t U.S.A
1.8.5.5.7.0.9.2.8.4.7 E.p.s.o.n p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e
n.u.m.b.e.r ,E.p.s.o.n t.e.c.h.n.i.c.a.l s.u.p.p.o.r.t U.S.A.C.A.L.L F.a.s.t
U.S.A 1.8.5.5.7.0.9.2.8.4.7 E.p.s.o.n p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r ,E.p.s.o.n t.e.c.h.n.i.c.a.l s.u.p.p.o.r.t U.S.A.C.A.L.L
F.a.s.t U.S.A 1.8.5.5.7.0.9.2.8.4.7 E.p.s.o.n p.r.i.n.t.e.r t.e.c.h
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r ,E.p.s.o.n t.e.c.h.n.i.c.a.l s.u.p.p.o.r.t
U.S.A.C.A.L.L F.a.s.t U.S.A 1.8.5.5.7.0.9.2.8.4.7 E.p.s.o.n p.r.i.n.t.e.r
t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r ,E.p.s.o.n t.e.c.h.n.i.c.a.l
s.u.p.p.o.r.t U.S.A.C.A.L.L F.a.s.t U.S.A 1.8.5.5.7.0.9.2.8.4.7 E.p.s.o.n
p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r ,E.p.s.o.n
t.e.c.h.n.i.c.a.l s.u.p.p.o.r.t U.S.A.C.A.L.L F.a.s.t U.S.A
1.8.5.5.7.0.9.2.8.4.7 E.p.s.o.n p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e
n.u.m.b.e.r ,E.p.s.o.n t.e.c.h.n.i.c.a.l s.u.p.p.o.r.t U.S.A.C.A.L.L F.a.s.t
U.S.A 1.8.5.5.7.0.9.2.8.4.7 E.p.s.o.n p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r ,E.p.s.o.n t.e.c.h.n.i.c.a.l s.u.p.p.o.r.t U.S.A.C.A.L.L
F.a.s.t U.S.A 1.8.5.5.7.0.9.2.8.4.7 E.p.s.o.n p.r.i.n.t.e.r t.e.c.h
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r ,E.p.s.o.n t.e.c.h.n.i.c.a.l s.u.p.p.o.r.t
U.S.A.C.A.L.L F.a.s.t U.S.A 1.8.5.5.7.0.9.2.8.4.7 E.p.s.o.n p.r.i.n.t.e.r
t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r ,E.p.s.o.n t.e.c.h.n.i.c.a.l
s.u.p.p.o.r.t U.S.A.C.A.L.L F.a.s.t U.S.A 1.8.5.5.7.0.9.2.8.4.7 E.p.s.o.n
p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r ,E.p.s.o.n
t.e.c.h.n.i.c.a.l s.u.p.p.o.r.t U.S.A.C.A.L.L F.a.s.t U.S.A
1.8.5.5.7.0.9.2.8.4.7 E.p.s.o.n p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e
n.u.m.b.e.r ,E.p.s.o.n t.e.c.h.n.i.c.a.l s.u.p.p.o.r.t U.S.A.C.A.L.L F.a.s.t
U.S.A 1.8.5.5.7.0.9.2.8.4.7 E.p.s.o.n p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r ,E.p.s.o.n t.e.c.h.n.i.c.a.l s.u.p.p.o.r.t U.S.A.C.A.L.L
F.a.s.t U.S.A 1.8.5.5.7.0.9.2.8.4.7 E.p.s.o.n p.r.i.n.t.e.r t.e.c.h
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r ,E.p.s.o.n t.e.c.h.n.i.c.a.l s.u.p.p.o.r.t
U.S.A.C.A.L.L F.a.s.t U.S.A 1.8.5.5.7.0.9.2.8.4.7 E.p.s.o.n p.r.i.n.t.e.r
t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r ,E.p.s.o.n t.e.c.h.n.i.c.a.l
s.u.p.p.o.r.t U.S.A.C.A.L.L F.a.s.t U.S.A 1.8.5.5.7.0.9.2.8.4.7 E.p.s.o.n
p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r ,E.p.s.o.n
t.e.c.h.n.i.c.a.l s.u.p.p.o.r.t U.S.A.C.A.L.L F.a.s.t U.S.A
1.8.5.5.7.0.9.2.8.4.7 E.p.s.o.n p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e
n.u.m.b.e.r ,E.p.s.o.n t.e.c.h.n.i.c.a.l s.u.p.p.o.r.t U.S.A.C.A.L.L F.a.s.t
U.S.A 1.8.5.5.7.0.9.2.8.4.7 E.p.s.o.n p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r ,E.p.s.o.n t.e.c.h.n.i.c.a.l s.u.p.p.o.r.t U.S.A.C.A.L.L
F.a.s.t U.S.A 1.8.5.5.7.0.9.2.8.4.7 E.p.s.o.n p.r.i.n.t.e.r t.e.c.h
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r ,E.p.s.o.n t.e.c.h.n.i.c.a.l s.u.p.p.o.r.t
U.S.A.C.A.L.L F.a.s.t U.S.A 1.8.5.5.7.0.9.2.8.4.7 E.p.s.o.n p.r.i.n.t.e.r
t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r ,E.p.s.o.n t.e.c.h.n.i.c.a.l
s.u.p.p.o.r.t U.S.A.C.A.L.L F.a.s.t U.S.A 1.8.5.5.7.0.9.2.8.4.7 E.p.s.o.n
p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r ,E.p.s.o.n
t.e.c.h.n.i.c.a.l s.u.p.p.o.r.t U.S.A.C.A.L.L F.a.s.t U.S.A
1.8.5.5.7.0.9.2.8.4.7 E.p.s.o.n p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e
n.u.m.b.e.r ,E.p.s.o.n t.e.c.h.n.i.c.a.l s.u.p.p.o.r.t U.S.A.C.A.L.L F.a.s.t
U.S.A 1.8.5.5.7.0.9.2.8.4.7 E.p.s.o.n p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r ,E.p.s.o.n t.e.c.h.n.i.c.a.l s.u.p.p.o.r.t U.S.A.C.A.L.L
F.a.s.t U.S.A 1.8.5.5.7.0.9.2.8.4.7 E.p.s.o.n p.r.i.n.t.e.r t.e.c.h
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r ,E.p.s.o.n t.e.c.h.n.i.c.a.l s.u.p.p.o.r.t
U.S.A.
>From gcc-bugs-return-534274-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 17:26:25 2016
Return-Path: <gcc-bugs-return-534274-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 61271 invoked by alias); 11 Aug 2016 17:26:24 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 61255 invoked by uid 89); 11 Aug 2016 17:26:23 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=late
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 17:26:13 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/73550] Another wrong -Wmaybe-uninitialized warning in switch statement
Date: Thu, 11 Aug 2016 17:26:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords
Message-ID: <bug-73550-4-pUb0KBNpAU@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73550-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73550-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01610.txt.bz2
Content-length: 799

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73550

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |missed-optimization

--- Comment #3 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
(In reply to amker from comment #2)
> (In reply to Andrew Pinski from comment #1)
> > There was a patch to improve jump threading and vrp here just within a few
> > weeks. I wonder why that did not help. Basically this is a missing jump
> > threading.
> 
> It can't help if the uninitialized info is analyzed/given before jump
> threading/vrp?

We don't do maybe unitialized until very late in the optimization passes.
>From gcc-bugs-return-534276-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 17:29:35 2016
Return-Path: <gcc-bugs-return-534276-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 71352 invoked by alias); 11 Aug 2016 17:29:35 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 71328 invoked by uid 89); 11 Aug 2016 17:29:34 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 17:29:24 +0000
From: "jvdelisle at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/73142] [5/6 Regression] Reading a namelist fails - my code worked until 4.8.2
Date: Thu, 11 Aug 2016 17:29:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jvdelisle at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: jvdelisle at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-73142-4-UsxPPq8mdZ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73142-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73142-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01612.txt.bz2
Content-length: 754

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73142

--- Comment #11 from Jerry DeLisle <jvdelisle at gcc dot gnu.org> ---
Author: jvdelisle
Date: Thu Aug 11 17:28:51 2016
New Revision: 239382

URL: https://gcc.gnu.org/viewcvs?rev=239382&root=gcc&view=rev
Log:
2016-08-11  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

        Backport from trunk
        PR libgfortran/71123
        PR libgfortran/73142
        * io/list_read (eat_spaces): Eat '\r' as part of spaces.

        * gfortran.dg/namelist_90.f: New test.

Added:
    branches/gcc-5-branch/gcc/testsuite/gfortran.dg/namelist_90.f
Modified:
    branches/gcc-5-branch/gcc/testsuite/ChangeLog
    branches/gcc-5-branch/libgfortran/ChangeLog
    branches/gcc-5-branch/libgfortran/io/list_read.c
>From gcc-bugs-return-534275-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 17:29:35 2016
Return-Path: <gcc-bugs-return-534275-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 71344 invoked by alias); 11 Aug 2016 17:29:34 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 71327 invoked by uid 89); 11 Aug 2016 17:29:34 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 17:29:24 +0000
From: "jvdelisle at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libfortran/71123] Namelist read failure on Windows
Date: Thu, 11 Aug 2016 17:29:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libfortran
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jvdelisle at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jvdelisle at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71123-4-SnADG4LLfK@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71123-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71123-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01611.txt.bz2
Content-length: 753

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71123

--- Comment #9 from Jerry DeLisle <jvdelisle at gcc dot gnu.org> ---
Author: jvdelisle
Date: Thu Aug 11 17:28:51 2016
New Revision: 239382

URL: https://gcc.gnu.org/viewcvs?rev=239382&root=gcc&view=rev
Log:
2016-08-11  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

        Backport from trunk
        PR libgfortran/71123
        PR libgfortran/73142
        * io/list_read (eat_spaces): Eat '\r' as part of spaces.

        * gfortran.dg/namelist_90.f: New test.

Added:
    branches/gcc-5-branch/gcc/testsuite/gfortran.dg/namelist_90.f
Modified:
    branches/gcc-5-branch/gcc/testsuite/ChangeLog
    branches/gcc-5-branch/libgfortran/ChangeLog
    branches/gcc-5-branch/libgfortran/io/list_read.c
>From gcc-bugs-return-534277-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 17:31:22 2016
Return-Path: <gcc-bugs-return-534277-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 78149 invoked by alias); 11 Aug 2016 17:31:21 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 78139 invoked by uid 89); 11 Aug 2016 17:31:20 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 17:31:10 +0000
From: "jvdelisle at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/73142] [5/6 Regression] Reading a namelist fails - my code worked until 4.8.2
Date: Thu, 11 Aug 2016 17:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jvdelisle at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: jvdelisle at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-73142-4-EaYUUMfEXQ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73142-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73142-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01613.txt.bz2
Content-length: 452

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73142

Jerry DeLisle <jvdelisle at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #12 from Jerry DeLisle <jvdelisle at gcc dot gnu.org> ---
Fixed on 5 and 6. Closing.
>From gcc-bugs-return-534278-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 17:54:33 2016
Return-Path: <gcc-bugs-return-534278-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 32021 invoked by alias); 11 Aug 2016 17:54:33 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 31998 invoked by uid 89); 11 Aug 2016 17:54:32 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 17:54:22 +0000
From: "manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/73550] Another wrong -Wmaybe-uninitialized warning in switch statement
Date: Thu, 11 Aug 2016 17:54:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: manu at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc blocked
Message-ID: <bug-73550-4-UP3IdGoJfx@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73550-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73550-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01614.txt.bz2
Content-length: 671

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73550

Manuel López-Ibáñez <manu at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |manu at gcc dot gnu.org
             Blocks|                            |24639

--- Comment #4 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
Use -fdump-tree-all-all-lineno and look for *uninit dump file.


Referenced Bugs:

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=24639
[Bug 24639] [meta-bug] bug to track all Wuninitialized issues
>From gcc-bugs-return-534279-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 18:41:25 2016
Return-Path: <gcc-bugs-return-534279-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 18659 invoked by alias); 11 Aug 2016 18:41:25 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 18569 invoked by uid 89); 11 Aug 2016 18:41:20 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00,KAM_ASCII_DIVIDERS autolearn=no version=3.3.2 spammy=set_attr, define_insn, vsx, V2DImode
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 18:41:10 +0000
From: "bergner at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72804] Poor code gen with -mvsx-timode
Date: Thu, 11 Aug 2016 18:41:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: bergner at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72804-4-Ysmm08lWkC@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72804-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72804-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01615.txt.bz2
Content-length: 3232

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72804

--- Comment #2 from Peter Bergner <bergner at gcc dot gnu.org> ---
Actually, enabling the movti_ppc64 isn't correct, since we have a
*vsx_mov<mode>_64bit pattern that covers this.  The problem is that
*vsx_mov<mode>_64bit disparages the GPR alternatives with ?? so we don't use
them at expand time.  Removing those fixes the performance issue and talking
with Mike, those ??'s were just added to try and get -mvsx-timode to work with
reload, which it never did.  Now that we've switched to LRA, those shouldn't be
necessary, so I'm bootstrapping the following patch:

Index: gcc/config/rs6000/rs6000.c
===================================================================
--- gcc/config/rs6000/rs6000.c  (revision 239144)
+++ gcc/config/rs6000/rs6000.c  (working copy)
@@ -7747,7 +7747,6 @@ reg_offset_addressing_ok_p (machine_mode
     case V2DFmode:
     case V2DImode:
     case V1TImode:
-    case TImode:
     case TFmode:
     case KFmode:
       /* AltiVec/VSX vector modes.  Only reg+reg addressing was valid until
the
Index: gcc/config/rs6000/vsx.md
===================================================================
--- gcc/config/rs6000/vsx.md    (revision 239144)
+++ gcc/config/rs6000/vsx.md    (working copy)
@@ -851,11 +851,11 @@ (define_insn_and_split "*xxspltib_<mode>
    (set_attr "length" "8")])


-;; Prefer using vector registers over GPRs.  Prefer using ISA 3.0's XXSPLTISB
-;; or Altivec VSPLITW 0/-1 over XXLXOR/XXLORC to set a register to all 0's or
-;; all 1's, since the machine does not have to wait for the previous
-;; instruction using the register being set (such as a store waiting on a slow
-;; instruction). But generate XXLXOR/XXLORC if it will avoid a register move.
+;; Prefer using ISA 3.0's XXSPLTISB or Altivec VSPLITW 0/-1 over XXLXOR/XXLORC
+;; to set a register to all 0's or all 1's, since the machine does not have to
+;; wait for the previous instruction using the register being set (such as a
+;; store waiting on a slow instruction). But generate XXLXOR/XXLORC if it will
+;; avoid a register move.

 ;;              VSX store  VSX load   VSX move  VSX->GPR   GPR->VSX    LQ
(GPR)
 ;;              STQ (GPR)  GPR load   GPR store GPR move   XXSPLTIB   
VSPLTISW
@@ -863,8 +863,8 @@ (define_insn_and_split "*xxspltib_<mode>
 (define_insn "*vsx_mov<mode>_64bit"
   [(set (match_operand:VSX_M 0 "nonimmediate_operand"
                "=ZwO,      <VSa>,     <VSa>,     r,         we,        ?wQ,
-                ?&r,       ??r,       ??Y,       ??r,       wo,        v,
-                ?<VSa>,    *r,        v,         ??r,       wZ,        v")
+                ?&r,       r,         Y,         r,         wo,        v,
+                ?<VSa>,    *r,        v,         r,         wZ,        v")

        (match_operand:VSX_M 1 "input_operand" 
                "<VSa>,     ZwO,       <VSa>,     we,        r,         r,
>From gcc-bugs-return-534280-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 18:48:00 2016
Return-Path: <gcc-bugs-return-534280-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 29214 invoked by alias); 11 Aug 2016 18:48:00 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 29181 invoked by uid 89); 11 Aug 2016 18:47:59 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=classic, nomicromips, legacy, Hx-languages-length:2789
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 18:47:48 +0000
From: "macro@linux-mips.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/74563] New: [5 regression] Classic MIPS16 (non-MIPS16e) function return broken
Date: Thu, 11 Aug 2016 18:48:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: macro@linux-mips.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter cc target_milestone cf_gcctarget
Message-ID: <bug-74563-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01616.txt.bz2
Content-length: 3672

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74563

            Bug ID: 74563
           Summary: [5 regression] Classic MIPS16 (non-MIPS16e) function
                    return broken
           Product: gcc
           Version: 6.1.1
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: target
          Assignee: unassigned at gcc dot gnu.org
          Reporter: macro@linux-mips.org
                CC: matthew.fortune at imgtec dot com
  Target Milestone: ---
            Target: mips-mti-linux-gnu

This is a regression from GCC 5, present in GCC 6 and in current trunk.

Non-leaf classic MIPS16 (non-MIPS16e) function epilogue uses $7 as the
return register, because there is no hardware instruction available to
load $31 directly from the stack.  This used to work up to GCC 5, but
now function epilogue still loads $7 with the return address, however
it then uses JR $31 to attempt a function return.  This obviously
cannot work as in a non-leaf function typically $31 does not hold the
return address anymore.

To reproduce this simple program can be used:

$ cat jal16.c
void f2(void);

void f1(void)
{
        f2();
}
$ gcc -mips1 -mips16 -O2 -S jal16.c
$ cat jal16.s

With GCC 5 I get this correct result:

        .file   1 "jal16.c"
        .section .mdebug.abi32
        .previous
        .nan    legacy
        .module fp=32
        .module nooddspreg
        .abicalls
        .option pic0
        .text
        .align  2
        .globl  f1
        .set    mips16
        .set    nomicromips
        .ent    f1
        .type   f1, @function
f1:
        .frame  $sp,32,$31              # vars= 0, regs= 1/0, args= 16, gp= 8
        .mask   0x80000000,-4
        .fmask  0x00000000,0
        addiu   $sp,-32
        sw      $31,28($sp)
        jal     f2
        lw      $7,28($sp)
        .set    noreorder
        .set    nomacro
        j       $7
        addiu   $sp,32
        .set    macro
        .set    reorder

        .end    f1
        .size   f1, .-f1
        .ident  "GCC: (GNU) 5.4.1 20160810"

With GCC 6 I get this bad one instead:

        .file   1 "jal16.c"
        .section .mdebug.abi32
        .previous
        .nan    legacy
        .module fp=32
        .module nooddspreg
        .abicalls
        .option pic0
        .text
        .align  2
        .globl  f1
        .set    mips16
        .set    nomicromips
        .ent    f1
        .type   f1, @function
f1:
        .frame  $sp,32,$31              # vars= 0, regs= 1/0, args= 16, gp= 8
        .mask   0x80000000,-4
        .fmask  0x00000000,0
        addiu   $sp,-32
        sw      $31,28($sp)
        jal     f2
        lw      $7,28($sp)
        .set    noreorder
        .set    nomacro
        jr      $31
        addiu   $sp,32
        .set    macro
        .set    reorder

        .end    f1
        .size   f1, .-f1
        .ident  "GCC: (GNU) 6.1.1 20160810"

Notice the difference:

--- jal16-gcc5.s        2016-08-11 14:22:24.996749000 +0100
+++ jal16-gcc6.s        2016-08-11 18:59:38.472543000 +0100
@@ -23,11 +23,11 @@
        lw      $7,28($sp)
        .set    noreorder
        .set    nomacro
-       j       $7
+       jr      $31
        addiu   $sp,32
        .set    macro
        .set    reorder

        .end    f1
        .size   f1, .-f1
-       .ident  "GCC: (GNU) 5.4.1 20160810"
+       .ident  "GCC: (GNU) 6.1.1 20160810"

This is a fatal bug making the MIPS16 compiler unusable and therefore
requiring hightened attention, although only affecting an ISA level
which is not as important these days anymore, so setting severity to
major rather than critical/blocker.
>From gcc-bugs-return-534281-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 18:49:58 2016
Return-Path: <gcc-bugs-return-534281-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 31673 invoked by alias); 11 Aug 2016 18:49:58 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 31662 invoked by uid 89); 11 Aug 2016 18:49:57 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 18:49:47 +0000
From: "tad.ashlock at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/69905] Digit separators break literal operators
Date: Thu, 11 Aug 2016 18:49:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: tad.ashlock at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-69905-4-uVCxed8GTK@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69905-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69905-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01617.txt.bz2
Content-length: 2557

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69905

Tad Ashlock <tad.ashlock at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |tad.ashlock at gmail dot com

--- Comment #2 from Tad Ashlock <tad.ashlock at gmail dot com> ---
I can confirm this problem, and add a little more detail.  Here's the code I
used:

#include <chrono>
using namespace std::chrono_literals;
int main ()
{
    auto const test1 = 1100s;
    auto const test2 = 1'000s;
    auto const test3 = 1'100s;
    return 0;
}

The test1 and test2 assignments compile, indicating that 1100 seconds isn't too
large of a number, and 1'000 is accepted.  It turns out that a non-0 digit
following the separator is causing the problem.

But test3 fails with the message:

g++ -std=c++14 test.cc        
In file included from /opt/tools/gcc/6.1.0/include/c++/6.1.0/chrono:42:0,
                 from test.cc:1:
/opt/tools/gcc/6.1.0/include/c++/6.1.0/bits/parse_numbers.h: In instantiation
of ‘struct std::__parse_int::_Number_help<10u, 100ull, '\'', '1', '0', '0'>’:
/opt/tools/gcc/6.1.0/include/c++/6.1.0/bits/parse_numbers.h:195:57:   required
from ‘struct std::__parse_int::_Number_help<10u, 1000ull, '1', '\'', '1', '0',
'0'>’
/opt/tools/gcc/6.1.0/include/c++/6.1.0/bits/parse_numbers.h:208:12:   required
from ‘struct std::__parse_int::_Number<10u, '1', '\'', '1', '0', '0'>’
/opt/tools/gcc/6.1.0/include/c++/6.1.0/bits/parse_numbers.h:248:12:   required
from ‘struct std::__parse_int::_Parse_int<'1', '\'', '1', '0', '0'>’
/opt/tools/gcc/6.1.0/include/c++/6.1.0/chrono:808:67:   required from
‘constexpr _Dur std::literals::chrono_literals::__check_overflow() [with _Dur =
std::chrono::duration<long int>; char ..._Digits = {'1', '\'', '1', '0', '0'}]’
/opt/tools/gcc/6.1.0/include/c++/6.1.0/chrono:837:61:   required from
‘constexpr std::chrono::seconds std::literals::chrono_literals::operator""s()
[with char ..._Digits = {'1', '\'', '1', '0', '0'}; std::chrono::seconds =
std::chrono::duration<long int>]’
test.cc:7:24:   required from here
/opt/tools/gcc/6.1.0/include/c++/6.1.0/bits/parse_numbers.h:196:7: error:
static assertion failed: integer literal does not fit in unsigned long long
       static_assert((type::value / _Pow) == __digit::value,
       ^~~~~~~~~~~~~
>From gcc-bugs-return-534282-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 19:45:53 2016
Return-Path: <gcc-bugs-return-534282-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 45876 invoked by alias); 11 Aug 2016 19:45:53 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 45861 invoked by uid 89); 11 Aug 2016 19:45:52 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=nsmqobtg, emltmp
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 19:45:42 +0000
From: "nsmqobtg at emltmp dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/74579] New: sdfds
Date: Thu, 11 Aug 2016 19:45:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: c++-concepts
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: nsmqobtg at emltmp dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-74579-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01618.txt.bz2
Content-length: 402

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74579

            Bug ID: 74579
           Summary: sdfds
           Product: gcc
           Version: c++-concepts
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: nsmqobtg at emltmp dot com
  Target Milestone: ---

fdsf
>From gcc-bugs-return-534283-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 19:50:02 2016
Return-Path: <gcc-bugs-return-534283-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 65094 invoked by alias); 11 Aug 2016 19:50:01 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 65068 invoked by uid 89); 11 Aug 2016 19:50:00 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 19:49:50 +0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/73714] [Regression 7] Incorrect unsigned long long arithmetic optimization
Date: Thu, 11 Aug 2016 19:50:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc target_milestone everconfirmed
Message-ID: <bug-73714-4-2NObn8ohCh@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73714-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73714-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01619.txt.bz2
Content-length: 775

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73714

Martin Liška <marxin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-11
                 CC|                            |glisse at gcc dot gnu.org,
                   |                            |marxin at gcc dot gnu.org
   Target Milestone|---                         |7.0
     Ever confirmed|0                           |1

--- Comment #1 from Martin Liška <marxin at gcc dot gnu.org> ---
Confirmed, started with r236601. Both clang++ and ICC behave the same as GCC 6
(result: 0).
>From gcc-bugs-return-534284-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 20:21:14 2016
Return-Path: <gcc-bugs-return-534284-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 7000 invoked by alias); 11 Aug 2016 20:21:13 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 6920 invoked by uid 89); 11 Aug 2016 20:21:13 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:1267, blame
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 20:21:03 +0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/74265] address sanitizer detects stack-buffer-overflow in set_nonincremental_init_from_string in c-typeck.c
Date: Thu, 11 Aug 2016 20:21:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc assigned_to everconfirmed
Message-ID: <bug-74265-4-LnN87WSLVo@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-74265-4@http.gcc.gnu.org/bugzilla/>
References: <bug-74265-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01620.txt.bz2
Content-length: 1486

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74265

Martin Liška <marxin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-11
                 CC|                            |marxin at gcc dot gnu.org
           Assignee|unassigned at gcc dot gnu.org      |marxin at gcc dot gnu.org
     Ever confirmed|0                           |1

--- Comment #2 from Martin Liška <marxin at gcc dot gnu.org> ---
Confirmed, following patch fixes aforementioned test-cases:

diff --git a/gcc/c/c-typeck.c b/gcc/c/c-typeck.c
index 33c06d40..f5dfcac 100644
--- a/gcc/c/c-typeck.c
+++ b/gcc/c/c-typeck.c
@@ -8583,7 +8583,8 @@ set_nonincremental_init_from_string (tree str,
                bitpos = (wchar_bytes - byte - 1) * charwidth;
              else
                bitpos = byte * charwidth;
-             val[bitpos % HOST_BITS_PER_WIDE_INT]
+             gcc_assert (bitpos / HOST_BITS_PER_WIDE_INT <= 1);
+             val[bitpos / HOST_BITS_PER_WIDE_INT]
                |= ((unsigned HOST_WIDE_INT) ((unsigned char) *p++))
                   << (bitpos % HOST_BITS_PER_WIDE_INT);
            }

Tomorrow, I'm going to test it more deeply and identify which active branches
are affected (I guess all as git blame shows quite old commits).

Martin
>From gcc-bugs-return-534285-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 20:29:21 2016
Return-Path: <gcc-bugs-return-534285-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 26354 invoked by alias); 11 Aug 2016 20:29:21 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 26343 invoked by uid 89); 11 Aug 2016 20:29:19 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=filled, criteria, dword, suffice
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 20:29:09 +0000
From: "wschmidt at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/74585] New: [5/6/7] Tree-sra forces parameters to memory causing awful code generation
Date: Thu, 11 Aug 2016 20:29:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wschmidt at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-74585-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01621.txt.bz2
Content-length: 6014

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74585

            Bug ID: 74585
           Summary: [5/6/7] Tree-sra forces parameters to memory causing
                    awful code generation
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: tree-optimization
          Assignee: unassigned at gcc dot gnu.org
          Reporter: wschmidt at gcc dot gnu.org
  Target Milestone: ---

For the PowerPC64 ELF V2 ABI, homogeneous aggregates of vectors (any
combination of structs and arrays containing only vectors) are passed in the
first eight vector registers.  Tree-sra does not understand this and performs
scalarization on such aggregates, forcing them to memory in the process.  This
causes unnecessary stores/reloads to the stack on function entry and exit,
resulting in terrible performance.

As an example, consider:

--- SNIP ---
#define VEC_DW_H (1)
#define VEC_DW_L (0)

typedef struct
{
  __vector double vx0;
  __vector double vx1;
  __vector double vx2;
  __vector double vx3;
} vdoublex8_t;

vdoublex8_t
test_vecd8_rotate_left (vdoublex8_t a)
{
  __vector double temp;
  vdoublex8_t result;

  temp = a.vx0;

  /* Copy low dword of vx0 and high dword of vx1 to vx0 high / low.  */
  result.vx0[VEC_DW_H] = a.vx0[VEC_DW_L];
  result.vx0[VEC_DW_L] = a.vx1[VEC_DW_H];
  /* Copy low dword of vx1 and high dword of vx2 to vx1 high / low.  */
  result.vx1[VEC_DW_H] = a.vx1[VEC_DW_L];
  result.vx1[VEC_DW_L] = a.vx2[VEC_DW_H];
  /* Copy low dword of vx2 and high dword of vx2 to vx2 high / low.  */
  result.vx2[VEC_DW_H] = a.vx2[VEC_DW_L];
  result.vx2[VEC_DW_L] = a.vx3[VEC_DW_H];
  /* Copy low dword of vx3 and high dword of vx0 to vx3 high / low.  */
  result.vx3[VEC_DW_H] = a.vx3[VEC_DW_L];
  result.vx3[VEC_DW_L] = temp[VEC_DW_H];

  return (result);
}
--- SNIP ---

After 031t.forwprop, we have:


;; Function test_vecd8_rotate_left (test_vecd8_rotate_left, funcdef_no=0,
decl_uid=2364, cgraph_uid=0, symbol_order=0)

test_vecd8_rotate_left (struct vdoublex8_t a)
{
  struct vdoublex8_t result;
  __vector double temp;
  struct vdoublex8_t D.2369;
  __vector double _1;
  double _2;
  double _3;
  double _4;
  double _5;
  double _6;
  double _7;
  double _8;
  double _9;

  <bb 2>:
  _1 = a.vx0;
  temp_23 = _1;
  _2 = BIT_FIELD_REF <a.vx0, 64, 0>;
  BIT_FIELD_REF <result.vx0, 64, 64> = _2;
  _3 = BIT_FIELD_REF <a.vx1, 64, 64>;
  BIT_FIELD_REF <result.vx0, 64, 0> = _3;
  _4 = BIT_FIELD_REF <a.vx1, 64, 0>;
  BIT_FIELD_REF <result.vx1, 64, 64> = _4;
  _5 = BIT_FIELD_REF <a.vx2, 64, 64>;
  BIT_FIELD_REF <result.vx1, 64, 0> = _5;
  _6 = BIT_FIELD_REF <a.vx2, 64, 0>;
  BIT_FIELD_REF <result.vx2, 64, 64> = _6;
  _7 = BIT_FIELD_REF <a.vx3, 64, 64>;
  BIT_FIELD_REF <result.vx2, 64, 0> = _7;
  _8 = BIT_FIELD_REF <a.vx3, 64, 0>;
  BIT_FIELD_REF <result.vx3, 64, 64> = _8;
  _9 = BIT_FIELD_REF <_1, 64, 64>;
  BIT_FIELD_REF <result.vx3, 64, 0> = _9;
  D.2369 = result;
  result ={v} {CLOBBER};
  return D.2369;

}

but after 032t.esra, we have:

test_vecd8_rotate_left (struct vdoublex8_t a)
{
  __vector double result$vx3;
  __vector double result$vx2;
  __vector double result$vx1;
  __vector double result$vx0;
  __vector double a$vx3;
  __vector double a$vx2;
  __vector double a$vx1;
  __vector double a$vx0;
  struct vdoublex8_t result;
  __vector double temp;
  struct vdoublex8_t D.2369;
  __vector double _1;
  double _2;
  double _3;
  double _4;
  double _5;
  double _6;
  double _7;
  double _8;
  double _9;
  __vector double _11;
  __vector double _21;
  __vector double _25;
  __vector double _26;

  <bb 2>:
  a$vx0_27 = MEM[(struct  *)&a];
  a$vx1_28 = MEM[(struct  *)&a + 16B];
  a$vx2_29 = MEM[(struct  *)&a + 32B];
  a$vx3_30 = MEM[(struct  *)&a + 48B];
  _1 = a$vx0_27;
  temp_23 = _1;
  _2 = BIT_FIELD_REF <a$vx0_27, 64, 0>;
  BIT_FIELD_REF <result$vx0, 64, 64> = _2;
  _3 = BIT_FIELD_REF <a$vx1_28, 64, 64>;
  BIT_FIELD_REF <result$vx0, 64, 0> = _3;
  _4 = BIT_FIELD_REF <a$vx1_28, 64, 0>;
  BIT_FIELD_REF <result$vx1, 64, 64> = _4;
  _5 = BIT_FIELD_REF <a$vx2_29, 64, 64>;
  BIT_FIELD_REF <result$vx1, 64, 0> = _5;
  _6 = BIT_FIELD_REF <a$vx2_29, 64, 0>;
  BIT_FIELD_REF <result$vx2, 64, 64> = _6;
  _7 = BIT_FIELD_REF <a$vx3_30, 64, 64>;
  BIT_FIELD_REF <result$vx2, 64, 0> = _7;
  _8 = BIT_FIELD_REF <a$vx3_30, 64, 0>;
  BIT_FIELD_REF <result$vx3, 64, 64> = _8;
  _9 = BIT_FIELD_REF <_1, 64, 64>;
  BIT_FIELD_REF <result$vx3, 64, 0> = _9;
  _21 = result$vx0;
  MEM[(struct  *)&D.2369] = _21;
  _11 = result$vx1;
  MEM[(struct  *)&D.2369 + 16B] = _11;
  _25 = result$vx2;
  MEM[(struct  *)&D.2369 + 32B] = _25;
  _26 = result$vx3;
  MEM[(struct  *)&D.2369 + 48B] = _26;
  result$vx0 ={v} {CLOBBER};
  result$vx1 ={v} {CLOBBER};
  result$vx2 ={v} {CLOBBER};
  result$vx3 ={v} {CLOBBER};
  return D.2369;

}

I will spare you the terrible assembly code that we get as a result, but
suffice it to say it is filled with unnecessary memory accesses when all this
logic can be done efficiently in registers.

I'm not familiar with the tree-sra code, but a quick scan indicates there isn't
any sort of target hook to indicate when pushing parameters to memory is a bad
idea.  I'm guessing we need one.  Or is there another way that this behavior
can be avoided?

There are a number of criteria in find_param_candidates to preclude
scalarization, but nothing seems to obviously fit the condition of "the ABI in
effect requests that you leave this guy alone."  The issue is complicated by
the fact that scalarization would indeed be a reasonable thing to do if we have
run out of protocol registers for a parameter; but I am willing to give that up
if we can avoid lousy code in the common case.

Our ABI has the same issues if we replace vectors by float, double, or long
double.

Any thoughts on how this should be addressed?
>From gcc-bugs-return-534286-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 20:32:18 2016
Return-Path: <gcc-bugs-return-534286-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 32202 invoked by alias); 11 Aug 2016 20:32:17 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 32188 invoked by uid 89); 11 Aug 2016 20:32:17 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00,KAM_ASCII_DIVIDERS autolearn=no version=3.3.2 spammy=gcc6x
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 20:32:06 +0000
From: "sabrinadfs at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/71512] ICE: verify_gimple failed with UBSAN
Date: Thu, 11 Aug 2016 20:32:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: sabrinadfs at gmail dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71512-4-NqbnyDBjYL@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71512-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71512-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01622.txt.bz2
Content-length: 2719

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71512

--- Comment #3 from Sabrina Souto <sabrinadfs at gmail dot com> ---
I had a similar result, but different failure, for another test+configuration
(see below). I would like to know if it is another (different) bug.

GCC-6.1.0
x86_64-pc-linux-gnu and x86_64-apple-darwin15.4.0

Running the following test:
make -s -C gcc check-gcc RUNTESTFLAGS="dg.exp=pr47086.c
--target_board=unix/-fsanitize=undefined"

GCC throw an ICE:
------------------------------------------------------------------------
/Users/sabrinasouto/workspace/gcc-6.x/gcc-6.1.0/gcc/testsuite/gcc.dg/pr47086.c:
In function 'foo':
/Users/sabrinasouto/workspace/gcc-6.x/gcc-6.1.0/gcc/testsuite/gcc.dg/pr47086.c:13:1:
error: dead STMT in EH table
_30 = n_1 + 1;
/Users/sabrinasouto/workspace/gcc-6.x/gcc-6.1.0/gcc/testsuite/gcc.dg/pr47086.c:13:1:
error: dead STMT in EH table
_15 = _14 - 1;
/Users/sabrinasouto/workspace/gcc-6.x/gcc-6.1.0/gcc/testsuite/gcc.dg/pr47086.c:13:1:
internal compiler error: verify_gimple failed
libbacktrace could not find executable to open
Please submit a full bug report,
with preprocessed source if appropriate.
See <http://gcc.gnu.org/bugs.html> for instructions.
compiler exited with status 1
output is:
/Users/sabrinasouto/workspace/gcc-6.x/gcc-6.1.0/gcc/testsuite/gcc.dg/pr47086.c:
In function 'foo':
/Users/sabrinasouto/workspace/gcc-6.x/gcc-6.1.0/gcc/testsuite/gcc.dg/pr47086.c:13:1:
error: dead STMT in EH table
_30 = n_1 + 1;
/Users/sabrinasouto/workspace/gcc-6.x/gcc-6.1.0/gcc/testsuite/gcc.dg/pr47086.c:13:1:
error: dead STMT in EH table
_15 = _14 - 1;
/Users/sabrinasouto/workspace/gcc-6.x/gcc-6.1.0/gcc/testsuite/gcc.dg/pr47086.c:13:1:
internal compiler error: verify_gimple failed
libbacktrace could not find executable to open
Please submit a full bug report,
with preprocessed source if appropriate.
See <http://gcc.gnu.org/bugs.html> for instructions.

FAIL: gcc.dg/pr47086.c (internal compiler error)
FAIL: gcc.dg/pr47086.c (test for excess errors)
Excess errors:
/Users/sabrinasouto/workspace/gcc-6.x/gcc-6.1.0/gcc/testsuite/gcc.dg/pr47086.c:13:1:
error: dead STMT in EH table
_30 = n_1 + 1;
/Users/sabrinasouto/workspace/gcc-6.x/gcc-6.1.0/gcc/testsuite/gcc.dg/pr47086.c:13:1:
error: dead STMT in EH table
_15 = _14 - 1;
/Users/sabrinasouto/workspace/gcc-6.x/gcc-6.1.0/gcc/testsuite/gcc.dg/pr47086.c:13:1:
internal compiler error: verify_gimple failed
libbacktrace could not find executable to open

testcase
/Users/sabrinasouto/workspace/gcc-6.x/gcc-6.1.0/gcc/testsuite/gcc.dg/dg.exp
completed in 2 seconds
------------------------------------------------------------------------


Can anyone confirm this bug?
>From gcc-bugs-return-534287-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 20:33:16 2016
Return-Path: <gcc-bugs-return-534287-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 33809 invoked by alias); 11 Aug 2016 20:33:15 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 33791 invoked by uid 89); 11 Aug 2016 20:33:15 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 20:33:04 +0000
From: "wschmidt at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/74585] [5/6/7] Tree-sra forces parameters to memory causing awful code generation
Date: Thu, 11 Aug 2016 20:33:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wschmidt at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cf_gcctarget cc target_milestone cf_known_to_fail
Message-ID: <bug-74585-4-qfFHawpuol@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-74585-4@http.gcc.gnu.org/bugzilla/>
References: <bug-74585-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01623.txt.bz2
Content-length: 725

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74585

Bill Schmidt <wschmidt at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Target|                            |powerpc64*-*-*
                 CC|                            |dje at gcc dot gnu.org,
                   |                            |munroesj at us dot ibm.com,
                   |                            |rguenth at gcc dot gnu.org,
                   |                            |segher at gcc dot gnu.org
   Target Milestone|---                         |7.0
      Known to fail|                            |5.4.1, 6.1.1, 7.0
>From gcc-bugs-return-534288-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 21:03:20 2016
Return-Path: <gcc-bugs-return-534288-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 77004 invoked by alias); 11 Aug 2016 21:03:19 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 76480 invoked by uid 89); 11 Aug 2016 21:03:19 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:1577
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 21:03:09 +0000
From: "cesar at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/74600] New: [openacc] duplicate data map error
Date: Thu, 11 Aug 2016 21:03:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords: openacc
X-Bugzilla-Severity: normal
X-Bugzilla-Who: cesar at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status keywords bug_severity priority component assigned_to reporter cc target_milestone cf_gcctarget attachments.created
Message-ID: <bug-74600-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01624.txt.bz2
Content-length: 1752

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74600

            Bug ID: 74600
           Summary: [openacc] duplicate data map error
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Keywords: openacc
          Severity: normal
          Priority: P3
         Component: fortran
          Assignee: unassigned at gcc dot gnu.org
          Reporter: cesar at gcc dot gnu.org
                CC: cesar at gcc dot gnu.org, tschwinge at gcc dot gnu.org
  Target Milestone: ---
            Target: x86_64-linux-gnu, nvptx-none

Created attachment 39268
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39268&action=edit
duplicate-map.f90

The attached test case yields the following 'already mapped' error at runtime
when ACC_DEVICE_TYPE=nvidia:

libgomp: Trying to map into device [0x7ffe515d5ee0..0x7ffe515d5ee4) object when
[0x7ffe515d5ee0..0x7ffe515d5ef0) is already mapped

Looking at the omplower tree dump for program test I see 

 FRAME.1.FRAME_BASE.PARENT = 0B;
  try
    {
      D.3446 = 2.0e+0;
      FRAME.1.a = D.3446;
      {
        .omp_data_arr.4.FRAME.1 = &FRAME.1;
        .omp_data_arr.4.a = &FRAME.1.a;
        #pragma omp target oacc_parallel map(tofrom:FRAME.1) map(force_tofrom:a
[len: 4]) [child fn: MAIN__._omp_fn.0 (.omp_data_arr.4, .omp_data_sizes.5,
.omp_data_kinds.6)]
          {

After inspecting the hostaddrs passed to GOACC_parallel_keyed, both variable
'a' and FRAME.1 share the same address, hence the duplicate data mapping error.

This issue is present on at least gomp-4_0-branch with nvptx offloading. I
wasn't able to try trunk because it stopped building on nvptx as of Aug 11, so
I'll retest trunk once that problem has been resolved.
>From gcc-bugs-return-534289-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 21:25:02 2016
Return-Path: <gcc-bugs-return-534289-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 42907 invoked by alias); 11 Aug 2016 21:25:02 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 42597 invoked by uid 89); 11 Aug 2016 21:25:01 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 21:24:51 +0000
From: "ebotcazou at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug java/71917] [7 regression] libjava.jar/ReturnProxyTest.jar etc. FAIL
Date: Thu, 11 Aug 2016 21:25:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: java
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ebotcazou at gcc dot gnu.org
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc everconfirmed
Message-ID: <bug-71917-4-iPFZSiuWko@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71917-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71917-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01625.txt.bz2
Content-length: 823

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71917

Eric Botcazou <ebotcazou at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |WAITING
   Last reconfirmed|                            |2016-08-11
                 CC|                            |ebotcazou at gcc dot gnu.org
     Ever confirmed|0                           |1

--- Comment #3 from Eric Botcazou <ebotcazou at gcc dot gnu.org> ---
Rainer, I'm trying to reproduce the issue but the libjava build fails with:

make[4]: *** No rule to make target `libgcj.ver-sun', needed by `libgcj.la'. 
Stop.
make[4]: *** Waiting for unfinished jobs....

Do you know what's going on or should I investigate?
>From gcc-bugs-return-534290-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 21:28:06 2016
Return-Path: <gcc-bugs-return-534290-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 47347 invoked by alias); 11 Aug 2016 21:28:06 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 47336 invoked by uid 89); 11 Aug 2016 21:28:05 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 21:27:55 +0000
From: "amker at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/72855] Long compile time due to integrity checking during dataflow analysis per loop
Date: Thu, 11 Aug 2016 21:28:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 5.4.1
X-Bugzilla-Keywords: compile-time-hog
X-Bugzilla-Severity: normal
X-Bugzilla-Who: amker at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72855-4-VwM71bbyX6@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72855-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72855-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01626.txt.bz2
Content-length: 796

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72855

--- Comment #13 from amker at gcc dot gnu.org ---
(In reply to Bill Schmidt from comment #10)
> Some experiments on trunk:
> 
> - Using Bin's patch, I see compile time reduced to ~14 minutes.
> - Using Richi's patch, I see compile time reduced to ~9 minutes.
> 
> So both are quite helpful compared to somewhere around 2 hours.
> 
> I'll plan to implement the pre-approved patch, but first I want to try to
> dig into why flag_checking appears to have an unexpected value.

Hi, could you help bootstrap/test the patch please?  I don't have machine with
doloop optimization at hand.  If test is ok, the patch should be helpful in
addition to the other one, because it's in effect moving cheaper checks before
expensive one.  Thanks.
>From gcc-bugs-return-534291-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 21:32:43 2016
Return-Path: <gcc-bugs-return-534291-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 54193 invoked by alias); 11 Aug 2016 21:32:43 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 54179 invoked by uid 89); 11 Aug 2016 21:32:42 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=our, team
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 21:32:32 +0000
From: "bergner at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72804] Poor code gen with -mvsx-timode
Date: Thu, 11 Aug 2016 21:32:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: bergner at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: bergner at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on assigned_to target_milestone everconfirmed
Message-ID: <bug-72804-4-F6fWapgTbK@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72804-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72804-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01627.txt.bz2
Content-length: 924

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72804

Peter Bergner <bergner at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |ASSIGNED
   Last reconfirmed|                            |2016-08-11
           Assignee|unassigned at gcc dot gnu.org      |bergner at gcc dot gnu.org
   Target Milestone|---                         |7.0
     Ever confirmed|0                           |1

--- Comment #3 from Peter Bergner <bergner at gcc dot gnu.org> ---
(In reply to Peter Bergner from comment #2)
> ... so I'm bootstrapping the following patch:

Ok, the patch survived bootstrap and regtesting with no regressions.
Mike stated offline that that we should spec test the patch to
make sure we don't regress there, so I'm waiting for someone on
our team to do that.
>From gcc-bugs-return-534292-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 21:40:43 2016
Return-Path: <gcc-bugs-return-534292-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 76456 invoked by alias); 11 Aug 2016 21:40:39 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 76316 invoked by uid 89); 11 Aug 2016 21:40:32 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=wschmidtlinuxvnetibmcom, wschmidt@linux.vnet.ibm.com
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 21:40:22 +0000
From: "wschmidt at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72863] Powerpc64le: redundant swaps when using vec_vsx_ld/st
Date: Thu, 11 Aug 2016 21:40:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wschmidt at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: wschmidt at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72863-4-DFVqzlv0ef@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72863-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72863-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01628.txt.bz2
Content-length: 777

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72863

--- Comment #6 from Bill Schmidt <wschmidt at gcc dot gnu.org> ---
Author: wschmidt
Date: Thu Aug 11 21:39:49 2016
New Revision: 239394

URL: https://gcc.gnu.org/viewcvs?rev=239394&root=gcc&view=rev
Log:
[gcc]

2016-08-11  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>

        PR target/72863
        * vsx.md (vsx_load_<mode>): For P8LE, emit swaps at expand time.
        (vsx_store_<mode>): Likewise.

[gcc/testsuite]

2016-08-11  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>

        PR target/72863
        * gcc.target/powerpc/pr72863.c: New test.


Added:
    trunk/gcc/testsuite/gcc.target/powerpc/pr72863.c
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/config/rs6000/vsx.md
    trunk/gcc/testsuite/ChangeLog
>From gcc-bugs-return-534293-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 21:49:58 2016
Return-Path: <gcc-bugs-return-534293-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 91868 invoked by alias); 11 Aug 2016 21:49:58 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 91820 invoked by uid 89); 11 Aug 2016 21:49:57 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:933, perfect
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 21:49:47 +0000
From: "daniel.santos at pobox dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/54829] bad optimization: sub followed by cmp w/ zero (x86 & ARM)
Date: Thu, 11 Aug 2016 21:49:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 4.7.1
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: daniel.santos at pobox dot com
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-54829-4-WjQZnPLuAv@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-54829-4@http.gcc.gnu.org/bugzilla/>
References: <bug-54829-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01629.txt.bz2
Content-length: 971

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=54829

Daniel Santos <daniel.santos at pobox dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |INVALID

--- Comment #10 from Daniel Santos <daniel.santos at pobox dot com> ---
(In reply to Richard Earnshaw from comment #8)
> Unfortunately, computers don't to infinite precision arithmetic by default. 
> That would perform a different comparison in that it checks that r0 > r1,
> not whether r0 - r1 > 0.  The difference, for signed comparisons, is when
> overflow occurs.

Looks like I've forgotten to close this bug after retesting. Thank you again
Richard for clarifying this. When modifying the compare function as described
above, optimization is perfect on all targets I've tested (x86, ARM and MIPS).
>From gcc-bugs-return-534294-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 21:51:52 2016
Return-Path: <gcc-bugs-return-534294-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 107611 invoked by alias); 11 Aug 2016 21:51:52 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 107554 invoked by uid 89); 11 Aug 2016 21:51:51 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:316
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 21:51:41 +0000
From: "wschmidt at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/72855] Long compile time due to integrity checking during dataflow analysis per loop
Date: Thu, 11 Aug 2016 21:51:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 5.4.1
X-Bugzilla-Keywords: compile-time-hog
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wschmidt at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72855-4-2RJkw4JYML@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72855-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72855-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01630.txt.bz2
Content-length: 211

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72855

--- Comment #14 from Bill Schmidt <wschmidt at gcc dot gnu.org> ---
Oh, I should have mentioned, it passed bootstrap with no regressions, so the
patch LGTM.
>From gcc-bugs-return-534295-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 21:54:30 2016
Return-Path: <gcc-bugs-return-534295-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 110911 invoked by alias); 11 Aug 2016 21:54:29 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 110895 invoked by uid 89); 11 Aug 2016 21:54:29 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:309
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 21:54:18 +0000
From: "wschmidt at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/72855] Long compile time due to integrity checking during dataflow analysis per loop
Date: Thu, 11 Aug 2016 21:54:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 5.4.1
X-Bugzilla-Keywords: compile-time-hog
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wschmidt at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72855-4-MSeAE2KE7f@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72855-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72855-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01631.txt.bz2
Content-length: 204

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72855

--- Comment #15 from Bill Schmidt <wschmidt at gcc dot gnu.org> ---
For your patch submission, the testing was done on
powerpc64le-unknown-linux-gnu.
>From gcc-bugs-return-534296-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 22:20:56 2016
Return-Path: <gcc-bugs-return-534296-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 29000 invoked by alias); 11 Aug 2016 22:20:55 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 28987 invoked by uid 89); 11 Aug 2016 22:20:55 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=0.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00,LONGWORDS autolearn=no version=3.3.2 spammy=yopmail
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 22:20:45 +0000
From: "cffdver at yopmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/74663] New: quickbookks error
Date: Thu, 11 Aug 2016 22:20:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: cffdver at yopmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-74663-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01632.txt.bz2
Content-length: 1279

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74663

            Bug ID: 74663
           Summary: quickbookks error
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: cffdver at yopmail dot com
  Target Milestone: ---

quickbookks errorquickbookks errorquickbookks errorquickbookks errorquickbookks
errorquickbookks errorquickbookks errorquickbookks errorquickbookks
errorquickbookks errorquickbookks errorquickbookks errorquickbookks
errorquickbookks errorquickbookks errorquickbookks errorquickbookks
errorquickbookks errorquickbookks errorquickbookks errorquickbookks
errorquickbookks errorquickbookks errorquickbookks errorquickbookks
errorquickbookks errorquickbookks errorquickbookks errorquickbookks
errorquickbookks errorquickbookks errorquickbookks errorquickbookks
errorquickbookks errorquickbookks errorquickbookks errorquickbookks
errorquickbookks errorquickbookks errorquickbookks errorquickbookks
errorquickbookks errorquickbookks errorquickbookks errorquickbookks
errorquickbookks errorquickbookks errorquickbookks errorquickbookks
errorquickbookks errorquickbookks errorquickbookks error
>From gcc-bugs-return-534297-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 22:22:07 2016
Return-Path: <gcc-bugs-return-534297-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 30550 invoked by alias); 11 Aug 2016 22:22:07 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 30533 invoked by uid 89); 11 Aug 2016 22:22:06 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 22:21:56 +0000
From: "wschmidt at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/72855] Long compile time due to integrity checking during dataflow analysis per loop
Date: Thu, 11 Aug 2016 22:22:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 5.4.1
X-Bugzilla-Keywords: compile-time-hog
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wschmidt at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72855-4-qaOGjYJpkj@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72855-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72855-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01633.txt.bz2
Content-length: 534

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72855

--- Comment #16 from Bill Schmidt <wschmidt at gcc dot gnu.org> ---
Author: wschmidt
Date: Thu Aug 11 22:20:41 2016
New Revision: 239395

URL: https://gcc.gnu.org/viewcvs?rev=239395&root=gcc&view=rev
Log:
2016-08-11  Richard Biener  <rguenther@suse.de>
            Bill Schmidt  <wschmidt@linux.vnet.ibm.com>

        PR rtl-optimization/72855
        * df-core.c (df_verify): Turn off DF_VERIFY_SCHEDULED at end.


Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/df-core.c
>From gcc-bugs-return-534298-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 11 23:44:25 2016
Return-Path: <gcc-bugs-return-534298-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 55214 invoked by alias); 11 Aug 2016 23:44:25 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 55205 invoked by uid 89); 11 Aug 2016 23:44:24 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=huh, Huh
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 11 Aug 2016 23:44:14 +0000
From: "segher at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/73650] powerpc: -mcpuå00mc hits ICE: insn does not satisfy its constraints
Date: Thu, 11 Aug 2016 23:44:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: segher at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-73650-4-jTwLqyVScg@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73650-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73650-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01634.txt.bz2
Content-length: 597

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73650

Segher Boessenkool <segher at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-11
     Ever confirmed|0                           |1

--- Comment #1 from Segher Boessenkool <segher at gcc dot gnu.org> ---
Confirmed.

The reg is assigned ctr by IRA because it is used in a bdnz later.
LRA never looks at this insn 75?  Huh.
>From gcc-bugs-return-534299-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 00:03:53 2016
Return-Path: <gcc-bugs-return-534299-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 79602 invoked by alias); 12 Aug 2016 00:03:53 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 79570 invoked by uid 89); 12 Aug 2016 00:03:52 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 00:03:42 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/73285] perhaps avoid duplication for function of argument order (double, int) or (int, double)
Date: Fri, 12 Aug 2016 00:03:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: short_desc
Message-ID: <bug-73285-4-sACUP29F7M@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73285-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73285-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01635.txt.bz2
Content-length: 1195

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73285

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|perhaps avoid duplication?  |perhaps avoid duplication
                   |                            |for function of argument
                   |                            |order (double, int) or
                   |                            |(int, double)

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Really I can see the following to be done (which does not optimize it fully but
can then be done as aliases at the target level).

Take a more complex example:
int f0(int a, int *b)
{
  return b[a];
}

int f1(int *b, int a)
{
  return b[a];
}

--- CUT ---
An IPA pass could figure out that f0 and f1 are the same function except the
arguments are in a different order.  Then f1 (or f0) calls the other function
with the corrected order (with a sibcalling but marked as almost alias).

At the target level, we see the almost alias had the same argument passing
rules and just create them as an alias.
>From gcc-bugs-return-534300-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 02:48:17 2016
Return-Path: <gcc-bugs-return-534300-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 104417 invoked by alias); 12 Aug 2016 02:48:14 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 104365 invoked by uid 89); 12 Aug 2016 02:48:06 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:280
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 02:47:56 +0000
From: "segher at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/73650] powerpc: -mcpuå00mc hits ICE: insn does not satisfy its constraints
Date: Fri, 12 Aug 2016 02:48:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: segher at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-73650-4-WVMSH3JCwf@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73650-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73650-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01636.txt.bz2
Content-length: 195

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73650

--- Comment #2 from Segher Boessenkool <segher at gcc dot gnu.org> ---
It fails with -mtune={e55,e500mc,e5500,e6500} and works without it.
>From gcc-bugs-return-534301-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 02:53:41 2016
Return-Path: <gcc-bugs-return-534301-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 117403 invoked by alias); 12 Aug 2016 02:53:40 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 117388 invoked by uid 89); 12 Aug 2016 02:53:40 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 02:53:30 +0000
From: "segher at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/73650] powerpc: -mcpuå00mc hits ICE: insn does not satisfy its constraints
Date: Fri, 12 Aug 2016 02:53:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: segher at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-73650-4-ObK0BlFHJO@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73650-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73650-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01637.txt.bz2
Content-length: 147

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73650

--- Comment #3 from Segher Boessenkool <segher at gcc dot gnu.org> ---
it fails with -misel.
>From gcc-bugs-return-534302-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 05:15:26 2016
Return-Path: <gcc-bugs-return-534302-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 85162 invoked by alias); 12 Aug 2016 05:15:25 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 81526 invoked by uid 89); 12 Aug 2016 05:15:22 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=TYPE, 4.7.3
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 05:15:05 +0000
From: "xaxxon at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/74744] New: Fails to select overridden function when determined by template parameter
Date: Fri, 12 Aug 2016 05:15:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: xaxxon at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-74744-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01638.txt.bz2
Content-length: 1196

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74744

            Bug ID: 74744
           Summary: Fails to select overridden function when determined by
                    template parameter
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: xaxxon at gmail dot com
  Target Milestone: ---

clang compiles https://godbolt.org/g/rUizCC, gcc doesn't:
https://godbolt.org/g/d45fkS  (problem seems to be around one having a *const*
pointer)

#include <functional>
#include <vector>
#include <string>
#include <algorithm>
using namespace std;

#define TYPE char * const    <== DOESN'T WORK
//#define TYPE char const *  <== WORKS

class Foo {
public:
  void func(int){}
  void func(TYPE){}
};


template<class R, class T, class... Args>
void gimme(R(T::*funky)(Args...)) {

}

int main() {
  gimme<void, Foo, TYPE>(&Foo::func);
}


The issue seems to be around a const pointer.   Pointer to const doesn't have
any issue.  

This has been a problem since 4.7.3 (according to compilers on gcc.godbolt.org)
>From gcc-bugs-return-534303-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 05:27:51 2016
Return-Path: <gcc-bugs-return-534303-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 76434 invoked by alias); 12 Aug 2016 05:27:50 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 76424 invoked by uid 89); 12 Aug 2016 05:27:50 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 05:27:39 +0000
From: "wbx at openadk dot org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libgcc/74748] New: libgcc_s.so.1 isn't created correctly for Blackfin FDPIC
Date: Fri, 12 Aug 2016 05:27:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libgcc
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: wbx at openadk dot org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-74748-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01639.txt.bz2
Content-length: 1310

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74748

            Bug ID: 74748
           Summary: libgcc_s.so.1 isn't created correctly for Blackfin
                    FDPIC
           Product: gcc
           Version: 6.1.0
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: libgcc
          Assignee: unassigned at gcc dot gnu.org
          Reporter: wbx at openadk dot org
  Target Milestone: ---

When building a cross-compiler for Blackfin with gcc 6.1.0 the resulting
libgcc_s.so.1
isn't exporting the _Unwind* and ___emutls_get_address functions correctly.
All symbols are LOCAL instead of being GLOBAL, so any application (for example
any C++
application) can not be linked as the _Unwind* functions for exception handling
are
missing.

Binutils was fixed to handle the user prefix (_) in Blackfin correctly:
https://sourceware.org/ml/binutils/2010-12/msg00356.html

Unfortunately the required change in GCC was never made.

See here for a longer discussion about the problem on the gcc-help mailinglist:
http://www.spinics.net/lists/gcchelp/msg45573.html

I tried to fix the generation of libgcc.map (the linker version script) but
failed.

I think it might be a simple task for an experienced GCC developer.
I can test any patch if you want.
>From gcc-bugs-return-534304-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 05:32:29 2016
Return-Path: <gcc-bugs-return-534304-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 11400 invoked by alias); 12 Aug 2016 05:32:29 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 11364 invoked by uid 89); 12 Aug 2016 05:32:28 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 05:32:18 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/74748] libgcc_s.so.1 isn't created correctly for Blackfin FDPIC
Date: Fri, 12 Aug 2016 05:32:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cf_gcctarget component bug_severity
Message-ID: <bug-74748-4-PYG9fWBeQb@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-74748-4@http.gcc.gnu.org/bugzilla/>
References: <bug-74748-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01640.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74748

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Target|                            |Blackfin-*-fdpic
          Component|libgcc                      |target
           Severity|major                       |normal
>From gcc-bugs-return-534305-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 06:11:26 2016
Return-Path: <gcc-bugs-return-534305-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 74920 invoked by alias); 12 Aug 2016 06:11:25 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 74848 invoked by uid 89); 12 Aug 2016 06:11:22 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:278
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 06:11:11 +0000
From: "segher at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/73650] powerpc: -mcpuå00mc hits ICE: insn does not satisfy its constraints
Date: Fri, 12 Aug 2016 06:11:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: segher at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-73650-4-JjTHe9CrSs@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73650-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73650-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01641.txt.bz2
Content-length: 194

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73650

--- Comment #4 from Segher Boessenkool <segher at gcc dot gnu.org> ---
First bad revision is r237376.  Fails with -m32 -mcpu=e5500 -mlra.
>From gcc-bugs-return-534306-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 06:24:48 2016
Return-Path: <gcc-bugs-return-534306-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 88706 invoked by alias); 12 Aug 2016 06:24:47 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 88691 invoked by uid 89); 12 Aug 2016 06:24:47 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:384
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 06:24:37 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/58774] tree-switch-conversion doesn't optimize with content in default scase
Date: Fri, 12 Aug 2016 06:24:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 4.8.3
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_status bug_severity
Message-ID: <bug-58774-4-240ahTAZez@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-58774-4@http.gcc.gnu.org/bugzilla/>
References: <bug-58774-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01642.txt.bz2
Content-length: 422

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58774

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |missed-optimization
             Status|WAITING                     |NEW
           Severity|normal                      |enhancement
>From gcc-bugs-return-534307-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 06:27:29 2016
Return-Path: <gcc-bugs-return-534307-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 91285 invoked by alias); 12 Aug 2016 06:27:29 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 91272 invoked by uid 89); 12 Aug 2016 06:27:28 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:396
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 06:27:17 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libitm/63907] libitm/config/posix/rwlock.cc doesn't compile
Date: Fri, 12 Aug 2016 06:27:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libitm
X-Bugzilla-Version: 4.9.2
X-Bugzilla-Keywords: build
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords component
Message-ID: <bug-63907-4-2fqdsvZBCA@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-63907-4@http.gcc.gnu.org/bugzilla/>
References: <bug-63907-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01643.txt.bz2
Content-length: 438

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63907

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |build
          Component|c++                         |libitm

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Does this work now?
>From gcc-bugs-return-534309-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 06:31:57 2016
Return-Path: <gcc-bugs-return-534309-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 96933 invoked by alias); 12 Aug 2016 06:31:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 96918 invoked by uid 89); 12 Aug 2016 06:31:55 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy 16-08-12, 20160812
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 06:31:47 +0000
From: "trippels at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/74744] Fails to select overridden function when determined by template parameter
Date: Fri, 12 Aug 2016 06:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: trippels at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc everconfirmed
Message-ID: <bug-74744-4-mQv3skUj69@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-74744-4@http.gcc.gnu.org/bugzilla/>
References: <bug-74744-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01645.txt.bz2
Content-length: 684

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74744

Markus Trippelsdorf <trippels at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-12
                 CC|                            |trippels at gcc dot gnu.org
     Ever confirmed|0                           |1

--- Comment #1 from Markus Trippelsdorf <trippels at gcc dot gnu.org> ---
struct a {
  void b(char *);
};
template <class c, class... e> void d(void (c::*)(e...)) {
  d<a, char * const>(&a::b);
}
>From gcc-bugs-return-534308-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 06:31:25 2016
Return-Path: <gcc-bugs-return-534308-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 95691 invoked by alias); 12 Aug 2016 06:31:24 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 95669 invoked by uid 89); 12 Aug 2016 06:31:23 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:312
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 06:31:13 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/64537] Aarch64 redundant sxth instruction gets generated
Date: Fri, 12 Aug 2016 06:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 5.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_severity
Message-ID: <bug-64537-4-whDbBI6gTb@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-64537-4@http.gcc.gnu.org/bugzilla/>
References: <bug-64537-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01644.txt.bz2
Content-length: 300

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64537

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|normal                      |enhancement
>From gcc-bugs-return-534310-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 06:40:30 2016
Return-Path: <gcc-bugs-return-534310-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 105922 invoked by alias); 12 Aug 2016 06:40:29 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 105892 invoked by uid 89); 12 Aug 2016 06:40:25 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=lrt, 1tb, shared-libgcc, sk:Address
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 06:40:15 +0000
From: "zeccav at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug java/74750] New: Address sanitizer detects stack-buffer-underflow in GC_push_all_eager in mark.c
Date: Fri, 12 Aug 2016 06:40:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: java
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: zeccav at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-74750-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01646.txt.bz2
Content-length: 6212

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74750

            Bug ID: 74750
           Summary: Address sanitizer detects stack-buffer-underflow in
                    GC_push_all_eager in mark.c
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: java
          Assignee: unassigned at gcc dot gnu.org
          Reporter: zeccav at gmail dot com
  Target Milestone: ---

While generating 7.0 trunk with sanitized java I get the following
in mark.c:1468

"q = *p;"

libtool: link: /home/vitti/1tb/vitti/gcc-7-address/./gcc/gcj
-B/home/vitti/1tb/vitti/gcc-7-address/x86_64-pc-linux-gnu/libjava/
-B/home/vitti/1tb/vitti/gcc-7-address/./gcc/
-B/home/vitti/1tb/vitti/local/gcc-7-address/x86_64-pc-linux-gnu/bin/
-B/home/vitti/1tb/vitti/local/gcc-7-address/x86_64-pc-linux-gnu/lib/ -isystem
/home/vitti/1tb/vitti/local/gcc-7-address/x86_64-pc-linux-gnu/include -isystem
/home/vitti/1tb/vitti/local/gcc-7-address/x86_64-pc-linux-gnu/sys-include
-fomit-frame-pointer -Usun -g -O2 -o .libs/gcj-dbtool
--main=gnu.gcj.tools.gcj_dbtool.Main -shared-libgcc
gnu/gcj/tools/gcj_dbtool/natMain.o gnu/gcj/tools/.libs/gcj_dbtool.o 
-L/home/vitti/1tb/vitti/gcc-7-address/x86_64-pc-linux-gnu/libjava/.libs
-L/home/vitti/1tb/vitti/gcc-7-address/x86_64-pc-linux-gnu/libjava
./.libs/libgcj.so /home/vitti/1tb/vitti/local/gcc-7/lib/../lib64/libasan.so
-ldl -lrt -lpthread /home/vitti/1tb/vitti/local/gcc-7/lib/../lib64/libstdc++.so
-lm -Wl,-rpath -Wl,/home/vitti/1tb/vitti/local/gcc-7-address/lib/../lib64
-Wl,-rpath -Wl,/home/vitti/1tb/vitti/local/gcc-7/lib/../lib64
./gcj-dbtool -n classmap.db || touch classmap.db
=================================================================
==16985==ERROR: AddressSanitizer: stack-buffer-underflow on address
0x7ffd646e1ff0 at pc 0x2b760583a7c1 bp 0x7ffd646e1f90 sp 0x7ffd646e1f88
READ of size 8 at 0x7ffd646e1ff0 thread T0
    #0 0x2b760583a7c0 in GC_push_all_eager
/home/vitti/1tb/vitti/test/gcc-trunk-239276/boehm-gc/mark.c:1468
    #1 0x2b760583c607 in GC_push_current_stack
/home/vitti/1tb/vitti/test/gcc-trunk-239276/boehm-gc/mark_rts.c:497
    #2 0x2b7605849561 in GC_with_callee_saves_pushed
/home/vitti/1tb/vitti/test/gcc-trunk-239276/boehm-gc/mach_dep.c:476
    #3 0x2b76058495f0 in GC_generic_push_regs
/home/vitti/1tb/vitti/test/gcc-trunk-239276/boehm-gc/mach_dep.c:487
    #4 0x2b760583c7c8 in GC_push_roots
/home/vitti/1tb/vitti/test/gcc-trunk-239276/boehm-gc/mark_rts.c:637
    #5 0x2b760583b3cc in GC_mark_some
/home/vitti/1tb/vitti/test/gcc-trunk-239276/boehm-gc/mark.c:326
    #6 0x2b760582c330 in GC_stopped_mark
/home/vitti/1tb/vitti/test/gcc-trunk-239276/boehm-gc/alloc.c:531
    #7 0x2b760582d1cf in GC_try_to_collect_inner
/home/vitti/1tb/vitti/test/gcc-trunk-239276/boehm-gc/alloc.c:378
    #8 0x2b760583ddf2 in GC_init_inner
/home/vitti/1tb/vitti/test/gcc-trunk-239276/boehm-gc/misc.c:789
    #9 0x2b760583df2e in GC_init
/home/vitti/1tb/vitti/test/gcc-trunk-239276/boehm-gc/misc.c:493
    #10 0x2b7605833e60 in GC_init_gcj_malloc
/home/vitti/1tb/vitti/test/gcc-trunk-239276/boehm-gc/gcj_mlc.c:60
    #11 0x2b7605048a6f in _Jv_InitGC()
/home/vitti/1tb/vitti/test/gcc-trunk-239276/libjava/boehm.cc:537
    #12 0x2b7604f7f242 in _Jv_CreateJavaVM
/home/vitti/1tb/vitti/test/gcc-trunk-239276/libjava/prims.cc:1631
    #13 0x2b7604f7f692 in _Jv_RunMain(_Jv_VMInitArgs*, java::lang::Class*, char
const*, int, char const**, bool)
/home/vitti/1tb/vitti/test/gcc-trunk-239276/libjava/prims.cc:1720
    #14 0x2b7604f7fc55 in _Jv_RunMain(java::lang::Class*, char const*, int,
char const**, bool)
/home/vitti/1tb/vitti/test/gcc-trunk-239276/libjava/prims.cc:1815
    #15 0x2b7604f7fc70 in JvRunMain
/home/vitti/1tb/vitti/test/gcc-trunk-239276/libjava/prims.cc:1821
    #16 0x40302f in main /tmp/cccH4paM.i:12
    #17 0x390da1ffdf in __libc_start_main (/lib64/libc.so.6+0x390da1ffdf)
    #18 0x403077 
(/home/vitti/1tb/vitti/gcc-7-address/x86_64-pc-linux-gnu/libjava/.libs/lt-gcj-dbtool+0x403077)

Address 0x7ffd646e1ff0 is located in stack of thread T0 at offset 0 in frame
    #0 0x2b76058494ed in GC_with_callee_saves_pushed
/home/vitti/1tb/vitti/test/gcc-trunk-239276/boehm-gc/mach_dep.c:410

  This frame has 1 object(s):
    [32, 40) 'dummy'
HINT: this may be a false positive if your program uses some custom stack
unwind mechanism or swapcontext
      (longjmp and C++ exceptions *are* supported)
SUMMARY: AddressSanitizer: stack-buffer-underflow
/home/vitti/1tb/vitti/test/gcc-trunk-239276/boehm-gc/mark.c:1468 in
GC_push_all_eager
Shadow bytes around the buggy address:
  0x10002c8d43a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  0x10002c8d43b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  0x10002c8d43c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  0x10002c8d43d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  0x10002c8d43e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
=>0x10002c8d43f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00[f1]f1
  0x10002c8d4400: f1 f1 00 f4 f4 f4 f3 f3 f3 f3 00 00 00 00 00 00
  0x10002c8d4410: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  0x10002c8d4420: f1 f1 f1 f1 04 f4 f4 f4 f3 f3 f3 f3 00 00 00 00
  0x10002c8d4430: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  0x10002c8d4440: 00 00 00 00 00 00 00 00 00 00 f1 f1 f1 f1 00 00
Shadow byte legend (one shadow byte represents 8 application bytes):
  Addressable:           00
  Partially addressable: 01 02 03 04 05 06 07 
  Heap left redzone:       fa
  Heap right redzone:      fb
  Freed heap region:       fd
  Stack left redzone:      f1
  Stack mid redzone:       f2
  Stack right redzone:     f3
  Stack partial redzone:   f4
  Stack after return:      f5
  Stack use after scope:   f8
  Global redzone:          f9
  Global init order:       f6
  Poisoned by user:        f7
  Container overflow:      fc
  Array cookie:            ac
  Intra object redzone:    bb
  ASan internal:           fe
  Left alloca redzone:     ca
  Right alloca redzone:    cb
==16985==ABORTING
>From gcc-bugs-return-534311-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 06:53:44 2016
Return-Path: <gcc-bugs-return-534311-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 45518 invoked by alias); 12 Aug 2016 06:53:44 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 45507 invoked by uid 89); 12 Aug 2016 06:53:43 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy 16-08-12, 20160812
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 06:53:33 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/58681] Missed RTL optimization - same insns before unconditional jump as before the jump target
Date: Fri, 12 Aug 2016 06:53:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 4.8.1
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on component everconfirmed cf_known_to_fail bug_severity
Message-ID: <bug-58681-4-WjVB2piMgI@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-58681-4@http.gcc.gnu.org/bugzilla/>
References: <bug-58681-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01647.txt.bz2
Content-length: 658

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58681

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-12
          Component|rtl-optimization            |middle-end
     Ever confirmed|0                           |1
      Known to fail|                            |5.4.0
           Severity|normal                      |enhancement

--- Comment #4 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Confirmed.
>From gcc-bugs-return-534313-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 07:12:32 2016
Return-Path: <gcc-bugs-return-534313-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 55775 invoked by alias); 12 Aug 2016 07:12:31 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 55756 invoked by uid 89); 12 Aug 2016 07:12:30 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=publicly, Expect, redefine, Redefine
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 07:12:26 +0000
From: "aoliva at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug debug/63240] DWARF does not represent C++ defaulted methods
Date: Fri, 12 Aug 2016 07:12:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: debug
X-Bugzilla-Version: 5.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: aoliva at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: aoliva at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-63240-4-drM3PWEbaD@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-63240-4@http.gcc.gnu.org/bugzilla/>
References: <bug-63240-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01649.txt.bz2
Content-length: 2796

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63240

--- Comment #2 from Alexandre Oliva <aoliva at gcc dot gnu.org> ---
Author: aoliva
Date: Fri Aug 12 07:11:50 2016
New Revision: 239403

URL: https://gcc.gnu.org/viewcvs?rev=239403&root=gcc&view=rev
Log:
[PR63240] generate debug info for defaulted member functions

This implements <http://dwarfstd.org/ShowIssue.php?issue=141215.3>, a
proposal already accepted for inclusion in DWARF-5, but using
DW_AT_GNU_defaulted instead of DW_AT_defaulted as the attribute name,
because the attribute id for DW_AT_defaulted is not yet publicly
available.

for  include/ChangeLog

        PR debug/63240
        * dwarf2.def (DW_AT_deleted, DW_AT_defaulted): New.
        * dwarf2.h (enu dwarf_defaulted_attribute): New.

for  gcc/ChangeLog

        PR debug/63240
        * langhooks-def.h
        (LANG_HOOKS_FUNCTION_DECL_EXPLICIT_P): Const_tree-ify.
        (LANG_HOOKS_FUNCTION_DECL_DELETED_P): Likewise.
        (LANG_HOOKS_FUNCTION_DECL_DEFAULTED): Set default.
        (LANG_HOOKS_DECLS): Add it.
        * langhooks.h (struct lang_hooks_for_decls): Add
        function_decl_defaulted.  Const_tree-ify
        function_decl_explicit_p and function_decl_deleted_p.
        * dwarf2out.c (gen_subprogram_die): Add DW_AT_defaulted
        attribute.  Add DW_AT_deleted instead of DW_AT_GNU_deleted,
        also at strict DWARF v5.

for  gcc/cp/ChangeLog

        PR debug/63240
        * cp-objcp-common.c (cp_function_decl_defaulted): New.
        (cp_function_decl_explicit_p): Const_tree-ify.
        (cp_function_decl_deleted_p): Likewise.
        * cp-objcp-common.h (cp_function_decl_defaulted): Declare.
        (cp_function_decl_explicit_p): Const_tree-ify.
        (cp_function_decl_deleted_p): Likewise.
        (LANG_HOOKS_FUNCTION_DECL_DEFAULTED): Redefine.

for  gcc/testsuite/ChangeLog

        PR debug/63240
        * g++.dg/debug/dwarf2/defaulted-member-function-1.C: New.
        * g++.dg/debug/dwarf2/defaulted-member-function-2.C: New.
        * g++.dg/debug/dwarf2/defaulted-member-function-3.C: New.
        * g++.dg/debug/dwarf2/deleted-member-function.C: Expect
        DW_AT_deleted.

Added:
    trunk/gcc/testsuite/g++.dg/debug/dwarf2/defaulted-member-function-1.C
    trunk/gcc/testsuite/g++.dg/debug/dwarf2/defaulted-member-function-2.C
    trunk/gcc/testsuite/g++.dg/debug/dwarf2/defaulted-member-function-3.C
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/cp/ChangeLog
    trunk/gcc/cp/cp-objcp-common.c
    trunk/gcc/cp/cp-objcp-common.h
    trunk/gcc/dwarf2out.c
    trunk/gcc/langhooks-def.h
    trunk/gcc/langhooks.h
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/testsuite/g++.dg/debug/dwarf2/deleted-member-function.C
    trunk/include/ChangeLog
    trunk/include/dwarf2.def
    trunk/include/dwarf2.h
>From gcc-bugs-return-534312-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 07:12:10 2016
Return-Path: <gcc-bugs-return-534312-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 54742 invoked by alias); 12 Aug 2016 07:12:10 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 54705 invoked by uid 89); 12 Aug 2016 07:12:08 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=viable, Expand, UD:H, Hx-languages-length:2666
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 07:11:58 +0000
From: "aoliva at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug debug/49366] pointer-to-member-function not given value in DW_TAG_template_value_param
Date: Fri, 12 Aug 2016 07:12:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: debug
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: aoliva at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: aoliva at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-49366-4-9zjhEbJtNV@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-49366-4@http.gcc.gnu.org/bugzilla/>
References: <bug-49366-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01648.txt.bz2
Content-length: 2750

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=49366

--- Comment #4 from Alexandre Oliva <aoliva at gcc dot gnu.org> ---
Author: aoliva
Date: Fri Aug 12 07:11:23 2016
New Revision: 239401

URL: https://gcc.gnu.org/viewcvs?rev=239401&root=gcc&view=rev
Log:
[PR49366] emit loc exprs for C++ non-virtual pmf template value parms

We used to emit, in debug information, the values bound to pointer to
member function template parameters only when they were NULL or
virtual member functions, because those can be represented with
DW_AT_const_value.

In order to represent the symbolic pointer to member function
constants for non-virtual member functions, we'd need to be able to
emit relocations for part of DW_AT_const_value, which we don't.  The
more viable alternative is to use DW_AT_location to represent such
values, as slated for inclusion in DWARFv5, according to
<URL:http://www.dwarfstd.org/ShowIssue.php?issue=130412.1>.

With this patch, when we can't emit a DW_AT_const_value, we emit each
"member" of the pointer to member function "record" as a
DW_OP_stack_value DW_OP_piece, as long as the referenced member
function is output in the same translation unit, otherwise we'd get
relocations to external symbols, something to avoid in debug sections.


for  gcc/ChangeLog

        PR debug/49366
        * dwarf2out.c (loc_list_from_tree_1): Expand some CONSTRUCTORs
        in DW_OP_pieces, just enough to handle pointers to member
        functions.
        (gen_remaining_tmpl_value_param_die_attribute): Use a location
        expression on DWARFv5 if a constant value doesn't work.

for  gcc/testsuite/ChangeLog

        PR debug/49366
        * g++.dg/debug/dwarf2/template-params-12.H: New.
        * g++.dg/debug/dwarf2/template-params-12f.C: New.
        * g++.dg/debug/dwarf2/template-params-12g.C: New.
        * g++.dg/debug/dwarf2/template-params-12n.C: New.
        * g++.dg/debug/dwarf2/template-params-12s.C: New.
        * g++.dg/debug/dwarf2/template-params-12u.C: New.
        * g++.dg/debug/dwarf2/template-params-12v.C: New.
        * g++.dg/debug/dwarf2/template-params-12w.C: New.

Added:
    trunk/gcc/testsuite/g++.dg/debug/dwarf2/template-params-12.H
    trunk/gcc/testsuite/g++.dg/debug/dwarf2/template-params-12f.C
    trunk/gcc/testsuite/g++.dg/debug/dwarf2/template-params-12g.C
    trunk/gcc/testsuite/g++.dg/debug/dwarf2/template-params-12n.C
    trunk/gcc/testsuite/g++.dg/debug/dwarf2/template-params-12s.C
    trunk/gcc/testsuite/g++.dg/debug/dwarf2/template-params-12u.C
    trunk/gcc/testsuite/g++.dg/debug/dwarf2/template-params-12v.C
    trunk/gcc/testsuite/g++.dg/debug/dwarf2/template-params-12w.C
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/dwarf2out.c
    trunk/gcc/testsuite/ChangeLog
>From gcc-bugs-return-534314-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 07:13:14 2016
Return-Path: <gcc-bugs-return-534314-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 56874 invoked by alias); 12 Aug 2016 07:13:14 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 56854 invoked by uid 89); 12 Aug 2016 07:13:13 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 07:13:03 +0000
From: "aoliva at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug debug/55641] debug info for the type of a reference declared with a typedef has spurious 'const'
Date: Fri, 12 Aug 2016 07:13:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: debug
X-Bugzilla-Version: 4.7.2
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: aoliva at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: aoliva at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-55641-4-IylxyHrCAu@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-55641-4@http.gcc.gnu.org/bugzilla/>
References: <bug-55641-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01650.txt.bz2
Content-length: 1070

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=55641

--- Comment #12 from Alexandre Oliva <aoliva at gcc dot gnu.org> ---
Author: aoliva
Date: Fri Aug 12 07:11:36 2016
New Revision: 239402

URL: https://gcc.gnu.org/viewcvs?rev=239402&root=gcc&view=rev
Log:
[PR55641] drop spurious const_type from reference_type variables

Although C++ reference types, denoted by DW_TAG_reference_type in
DWARFv2+ debug info, are unchangeable, we output names of reference type
with DW_TAG_const_type, because internally we mark such variables as
TREE_READONLY.  That's an internal implementation detail that shouldn't
leak to debug information.  This patch fixes this.

for  gcc/ChangeLog

        PR debug/55641
        * dwarf2out.c (decl_quals): Don't map TREE_READONLY to
        TYPE_QUAL_CONST in reference-typed decls.

for  gcc/testsuite/ChangeLog

        PR debug/55641
        * g++.dg/debug/dwarf2/ref-1.C: New.

Added:
    trunk/gcc/testsuite/g++.dg/debug/dwarf2/ref-1.C
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/dwarf2out.c
    trunk/gcc/testsuite/ChangeLog
>From gcc-bugs-return-534317-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 07:15:59 2016
Return-Path: <gcc-bugs-return-534317-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 64070 invoked by alias); 12 Aug 2016 07:15:58 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 64042 invoked by uid 89); 12 Aug 2016 07:15:58 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=tracker
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 07:15:48 +0000
From: "aoliva at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug debug/63243] [meta-bug] RH GDB project tracker
Date: Fri, 12 Aug 2016 07:15:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: dep_changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: debug
X-Bugzilla-Version: 5.0
X-Bugzilla-Keywords: meta-bug
X-Bugzilla-Severity: normal
X-Bugzilla-Who: aoliva at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-63243-4-t9cgWAZuso@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-63243-4@http.gcc.gnu.org/bugzilla/>
References: <bug-63243-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01653.txt.bz2
Content-length: 472

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63243
Bug 63243 depends on bug 63240, which changed state.

Bug 63240 Summary: DWARF does not represent C++ defaulted methods
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63240

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED
>From gcc-bugs-return-534316-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 07:15:17 2016
Return-Path: <gcc-bugs-return-534316-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 62920 invoked by alias); 12 Aug 2016 07:15:17 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 62901 invoked by uid 89); 12 Aug 2016 07:15:16 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 07:15:14 +0000
From: "aoliva at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug debug/63240] DWARF does not represent C++ defaulted methods
Date: Fri, 12 Aug 2016 07:15:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: debug
X-Bugzilla-Version: 5.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: aoliva at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: aoliva at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-63240-4-M59GlZRcjN@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-63240-4@http.gcc.gnu.org/bugzilla/>
References: <bug-63240-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01652.txt.bz2
Content-length: 428

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63240

Alexandre Oliva <aoliva at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #3 from Alexandre Oliva <aoliva at gcc dot gnu.org> ---
Fixed
>From gcc-bugs-return-534315-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 07:15:07 2016
Return-Path: <gcc-bugs-return-534315-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 62167 invoked by alias); 12 Aug 2016 07:15:07 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 62134 invoked by uid 89); 12 Aug 2016 07:15:04 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 07:14:54 +0000
From: "aoliva at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug debug/49366] pointer-to-member-function not given value in DW_TAG_template_value_param
Date: Fri, 12 Aug 2016 07:15:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: debug
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: aoliva at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: aoliva at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-49366-4-owyGNvcF9D@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-49366-4@http.gcc.gnu.org/bugzilla/>
References: <bug-49366-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01651.txt.bz2
Content-length: 428

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=49366

Alexandre Oliva <aoliva at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #5 from Alexandre Oliva <aoliva at gcc dot gnu.org> ---
Fixed
>From gcc-bugs-return-534320-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 07:16:41 2016
Return-Path: <gcc-bugs-return-534320-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 66870 invoked by alias); 12 Aug 2016 07:16:41 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 66848 invoked by uid 89); 12 Aug 2016 07:16:40 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 07:16:29 +0000
From: "aoliva at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug debug/55641] debug info for the type of a reference declared with a typedef has spurious 'const'
Date: Fri, 12 Aug 2016 07:16:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: debug
X-Bugzilla-Version: 4.7.2
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: aoliva at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: aoliva at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-55641-4-N5PuySboqJ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-55641-4@http.gcc.gnu.org/bugzilla/>
References: <bug-55641-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01656.txt.bz2
Content-length: 429

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=55641

Alexandre Oliva <aoliva at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #13 from Alexandre Oliva <aoliva at gcc dot gnu.org> ---
Fixed
>From gcc-bugs-return-534318-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 07:16:10 2016
Return-Path: <gcc-bugs-return-534318-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 64819 invoked by alias); 12 Aug 2016 07:16:09 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 64778 invoked by uid 89); 12 Aug 2016 07:16:08 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 07:15:58 +0000
From: "amodra at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/73650] powerpc: -mcpuå00mc hits ICE: insn does not satisfy its constraints
Date: Fri, 12 Aug 2016 07:16:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: amodra at gmail dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: attachments.isobsolete cc attachments.created
Message-ID: <bug-73650-4-m3Y60FDYwF@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73650-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73650-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01654.txt.bz2
Content-length: 585

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73650

Alan Modra <amodra at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
  Attachment #39160|0                           |1
        is obsolete|                            |
                 CC|                            |amodra at gmail dot com

--- Comment #5 from Alan Modra <amodra at gmail dot com> ---
Created attachment 39271
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39271&action=edit
tidier testcase
>From gcc-bugs-return-534319-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 07:16:20 2016
Return-Path: <gcc-bugs-return-534319-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 65595 invoked by alias); 12 Aug 2016 07:16:19 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 65578 invoked by uid 89); 12 Aug 2016 07:16:18 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 07:16:09 +0000
From: "aoliva at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug debug/63243] [meta-bug] RH GDB project tracker
Date: Fri, 12 Aug 2016 07:16:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: dep_changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: debug
X-Bugzilla-Version: 5.0
X-Bugzilla-Keywords: meta-bug
X-Bugzilla-Severity: normal
X-Bugzilla-Who: aoliva at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-63243-4-Nb8RABmyiu@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-63243-4@http.gcc.gnu.org/bugzilla/>
References: <bug-63243-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01655.txt.bz2
Content-length: 501

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63243
Bug 63243 depends on bug 49366, which changed state.

Bug 49366 Summary: pointer-to-member-function not given value in DW_TAG_template_value_param
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=49366

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED
>From gcc-bugs-return-534321-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 07:17:34 2016
Return-Path: <gcc-bugs-return-534321-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 67999 invoked by alias); 12 Aug 2016 07:17:33 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 67961 invoked by uid 89); 12 Aug 2016 07:17:33 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 07:17:23 +0000
From: "aoliva at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug debug/63243] [meta-bug] RH GDB project tracker
Date: Fri, 12 Aug 2016 07:17:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: dep_changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: debug
X-Bugzilla-Version: 5.0
X-Bugzilla-Keywords: meta-bug
X-Bugzilla-Severity: normal
X-Bugzilla-Who: aoliva at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-63243-4-Lujn9e7KMi@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-63243-4@http.gcc.gnu.org/bugzilla/>
References: <bug-63243-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01657.txt.bz2
Content-length: 511

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63243
Bug 63243 depends on bug 55641, which changed state.

Bug 55641 Summary: debug info for the type of a reference declared with a typedef has spurious 'const'
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=55641

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED
>From gcc-bugs-return-534322-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 07:17:56 2016
Return-Path: <gcc-bugs-return-534322-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 70075 invoked by alias); 12 Aug 2016 07:17:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 70061 invoked by uid 89); 12 Aug 2016 07:17:55 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:399, 4.9.2
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 07:17:45 +0000
From: "lts-rudolph at gmx dot de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libitm/63907] libitm/config/posix/rwlock.cc doesn't compile
Date: Fri, 12 Aug 2016 07:17:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libitm
X-Bugzilla-Version: 4.9.2
X-Bugzilla-Keywords: build
X-Bugzilla-Severity: normal
X-Bugzilla-Who: lts-rudolph at gmx dot de
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cf_known_to_fail
Message-ID: <bug-63907-4-GGQLusgpBk@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-63907-4@http.gcc.gnu.org/bugzilla/>
References: <bug-63907-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01658.txt.bz2
Content-length: 402

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63907

Klaus Rudolph <lts-rudolph at gmx dot de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
      Known to fail|                            |4.9.2, 6.1.0

--- Comment #3 from Klaus Rudolph <lts-rudolph at gmx dot de> ---
Still did *NOT* work for gcc 6.1.0
>From gcc-bugs-return-534323-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 07:25:20 2016
Return-Path: <gcc-bugs-return-534323-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 107329 invoked by alias); 12 Aug 2016 07:25:19 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 107295 invoked by uid 89); 12 Aug 2016 07:25:17 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:581
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 07:25:07 +0000
From: "amodra at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/73650] powerpc: -mcpuå00mc hits ICE: insn does not satisfy its constraints
Date: Fri, 12 Aug 2016 07:25:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: amodra at gmail dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-73650-4-wchWeS32RL@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73650-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73650-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01659.txt.bz2
Content-length: 603

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73650

--- Comment #6 from Alan Modra <amodra at gmail dot com> ---
It's a bit interesting that the problem insn (from ira dump):

(insn 70 66 76 3 (parallel [
            (set (reg:CC 198)
                (compare:CC (reg/v:SI 188 [ n ])
                    (const_int 0 [0])))
            (set (reg:SI 197 [ n ])
                (reg/v:SI 188 [ n ]))
        ]) 465 {*movsi_internal2}
     (expr_list:REG_DEAD (reg/v:SI 188 [ n ])
        (expr_list:REG_UNUSED (reg:CC 198)
            (nil))))

could be replaced with (set (reg:SI 197) (reg/v:SI 188)).
>From gcc-bugs-return-534324-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 07:32:53 2016
Return-Path: <gcc-bugs-return-534324-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 39413 invoked by alias); 12 Aug 2016 07:32:52 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 39397 invoked by uid 89); 12 Aug 2016 07:32:51 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=EST, 72, 4.8.5, Wextra
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 07:32:40 +0000
From: "jeanerpp at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/74751] New: gcc can't generate correct code
Date: Fri, 12 Aug 2016 07:32:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 4.8.5
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: jeanerpp at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-74751-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01660.txt.bz2
Content-length: 4407

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74751

            Bug ID: 74751
           Summary: gcc can't generate correct code
           Product: gcc
           Version: 4.8.5
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: jeanerpp at gmail dot com
  Target Milestone: ---

Created attachment 39272
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39272&action=edit
c source code to reproduce this issue.

compile and run the attached code, we got wrong result:
$ /usr/bin/gcc -Wall -Wextra -O2 -g3  -o ttt test.c && ./ttt
smac:1122334455667788
dmac:1020304050607080
result:00 00 00 00 00 00 00 00 00 00 00 00


If run with valgrind, memory error reported:
$ valgrind -v --tool=memcheck --track-origins=yes --leak-check=full
--show-reachable=yes ./ttt
......
==30875== Use of uninitialised value of size 8
==30875==    at 0x4E7C251: _itoa_word (in /usr/lib64/libc-2.17.so)
==30875==    by 0x4E7D325: vfprintf (in /usr/lib64/libc-2.17.so)
==30875==    by 0x4E86C98: printf (in /usr/lib64/libc-2.17.so)
==30875==    by 0x4005D4: pmac.constprop.1 (test.c:36)
==30875==    by 0x400668: IPsecCacheBuildImpl.constprop.0 (test.c:108)
==30875==    by 0x400488: main (test.c:121)
==30875==  Uninitialised value was created by a stack allocation
==30875==    at 0x4005F8: IPsecCacheBuildImpl.constprop.0 (test.c:88)
==30875==
......


In the source code attached, some workaround can be made to solve this issue.
But root cause is expected.

Related information:
$ uname -a
Linux ngnsvr14 3.10.0-327.10.1.el7.x86_64 #1 SMP Sat Jan 23 04:54:55 EST 2016
x86_64 x86_64 x86_64 GNU/Linux

$ cat /etc/redhat-release
Red Hat Enterprise Linux Server release 7.2 (Maipo)

ngnsvr14 []~/tmp/dbg $ /usr/bin/gcc -v
Using built-in specs.
COLLECT_GCC=/usr/bin/gcc
COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/lto-wrapper
Target: x86_64-redhat-linux
Configured with: ../configure --prefix=/usr --mandir=/usr/share/man
--infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla
--enable-bootstrap --enable-shared --enable-threads=posix
--enable-checking=release --with-system-zlib --enable-__cxa_atexit
--disable-libunwind-exceptions --enable-gnu-unique-object
--enable-linker-build-id --with-linker-hash-style=gnu
--enable-languages=c,c++,objc,obj-c++,java,fortran,ada,go,lto --enable-plugin
--enable-initfini-array --disable-libgcj
--with-isl=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/isl-install
--with-cloog=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/cloog-install
--enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64
--build=x86_64-redhat-linux
Thread model: posix
gcc version 4.8.5 20150623 (Red Hat 4.8.5-4) (GCC)

ngnsvr14 []~/tmp/dbg $ /usr/bin/gcc --version
gcc (GCC) 4.8.5 20150623 (Red Hat 4.8.5-4)
Copyright (C) 2015 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

$ cat /proc/cpuinfo
......
processor       : 39
vendor_id       : GenuineIntel
cpu family      : 6
model           : 62
model name      : Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz
stepping        : 4
microcode       : 0x428
cpu MHz         : 2800.000
cache size      : 25600 KB
physical id     : 1
siblings        : 20
core id         : 12
cpu cores       : 10
apicid          : 57
initial apicid  : 57
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov
pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb
rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology
nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est
tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt
tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb pln pts
dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt
bogomips        : 5593.25
clflush size    : 64
cache_alignment : 64
address sizes   : 46 bits physical, 48 bits virtual
power management:
>From gcc-bugs-return-534325-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 07:35:23 2016
Return-Path: <gcc-bugs-return-534325-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 43313 invoked by alias); 12 Aug 2016 07:35:23 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 43303 invoked by uid 89); 12 Aug 2016 07:35:22 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=4.9.4
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 07:35:20 +0000
From: "jeanerpp at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/74751] gcc can't generate correct code
Date: Fri, 12 Aug 2016 07:35:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 4.8.5
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: jeanerpp at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-74751-4-xJ44hRFaHa@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-74751-4@http.gcc.gnu.org/bugzilla/>
References: <bug-74751-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01661.txt.bz2
Content-length: 923

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74751

--- Comment #1 from xujian <jeanerpp at gmail dot com> ---
I'd tried latest gcc 4.9.4, but fail to solve this issue.
ngnsvr14 []/home/xujian/tools $ 4.9.4/bin/gcc --version
gcc (GCC) 4.9.4
Copyright (C) 2015 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

ngnsvr14 []/home/xujian/tools $ 4.9.4/bin/gcc -v
Using built-in specs.
COLLECT_GCC=4.9.4/bin/gcc
COLLECT_LTO_WRAPPER=/home/xujian/tools/4.9.4/libexec/gcc/x86_64-unknown-linux-gnu/4.9.4/lto-wrapper
Target: x86_64-unknown-linux-gnu
Configured with: ../gcc-4.9.4/configure --prefix=/home/xujian/tools/4.9.4
--with-gmp=/net/ngnsvr9/viewstores/jixu/home
--with-mpfr=/net/ngnsvr9/viewstores/jixu/home --enable-languages=c,c++
Thread model: posix
gcc version 4.9.4 (GCC)
>From gcc-bugs-return-534326-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 07:35:26 2016
Return-Path: <gcc-bugs-return-534326-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 43677 invoked by alias); 12 Aug 2016 07:35:25 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 43581 invoked by uid 89); 12 Aug 2016 07:35:25 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-0.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50 autolearn=ham version=3.3.2 spammy=PRE, pr72851c, UD:pr72851.c, pr72851.c
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 07:35:15 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72851] [6/7 Regression] memory hog with -O3 on s390x-linux-gnu
Date: Fri, 12 Aug 2016 07:35:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72851-4-SwTmvOeNlk@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72851-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72851-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01662.txt.bz2
Content-length: 1404

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72851

--- Comment #7 from Richard Biener <rguenth at gcc dot gnu.org> ---
Author: rguenth
Date: Fri Aug 12 07:34:40 2016
New Revision: 239405

URL: https://gcc.gnu.org/viewcvs?rev=239405&root=gcc&view=rev
Log:
2016-08-12  Richard Biener  <rguenther@suse.de>

        PR tree-optimization/72851
        * tree-ssa-propagate.c: Include cfganal.h.  Rewrite block and stmt
        worklists to use bitmaps indexed in execution order.
        (executable_blocks, cfg_blocks_num, cfg_blocks_tail, cfg_blocks_head,
        bb_in_list, interesting_ssa_edges, varying_ssa_edges): Remove.
        (cfg_blocks): Make a bitmap.
        (bb_to_cfg_order, cfg_order_to_bb, ssa_edge_worklist, uid_to_stmt):
        New globals.
        (cfg_blocks_empty_p): Adjust.
        (cfg_blocks_add): Likewise.
        (cfg_blocks_get): Likewise.
        (add_ssa_edge): Likewise.
        (add_control_edge): Likewise.
        (simulate_stmt): Likewise.
        (process_ssa_edge_worklist): Likewise.
        (simulate_block): Likewise.
        (ssa_prop_init): Compute PRE order and stmt UIDs.
        (ssa_prop_fini): Adjust.
        (ssa_propagate): Adjust.

        * gcc.dg/torture/pr72851.c: New testcase.

Added:
    trunk/gcc/testsuite/gcc.dg/torture/pr72851.c
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/tree-ssa-propagate.c
>From gcc-bugs-return-534327-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 07:52:56 2016
Return-Path: <gcc-bugs-return-534327-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 111126 invoked by alias); 12 Aug 2016 07:52:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 110640 invoked by uid 89); 12 Aug 2016 07:52:54 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 07:52:44 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/74751] gcc can't generate correct code
Date: Fri, 12 Aug 2016 07:52:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 4.8.5
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cc resolution
Message-ID: <bug-74751-4-fRFzx6X4jb@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-74751-4@http.gcc.gnu.org/bugzilla/>
References: <bug-74751-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01663.txt.bz2
Content-length: 665

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74751

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
                 CC|                            |jakub at gcc dot gnu.org
         Resolution|---                         |INVALID

--- Comment #2 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
This is invalid, violates C aliasing rules.
If you don't want to change your code, you can use -fno-strict-aliasing,
otherwise e.g. replace the bogus ShortCopy with memcpy?
>From gcc-bugs-return-534328-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 07:52:56 2016
Return-Path: <gcc-bugs-return-534328-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 111445 invoked by alias); 12 Aug 2016 07:52:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 110976 invoked by uid 89); 12 Aug 2016 07:52:55 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:764, sk:microso, sk:softwar, desk
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 07:52:54 +0000
From: "rk140280 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/74753] New: Windows 10 Helpline +1-855-639-4698
Date: Fri, 12 Aug 2016 07:52:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rk140280 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-74753-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01664.txt.bz2
Content-length: 816

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74753

            Bug ID: 74753
           Summary: Windows 10 Helpline +1-855-639-4698
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: rk140280 at gmail dot com
  Target Milestone: ---

Windows 10 Helpline +1-855-639-4698, Windows ten is most for computing machine
and laptop pc to check with of another windows software.Windows ten is created
by MICROSOFT.Windows ten support is play on-line serve any windows
proposition.windows 10 help phone number, windows 10 help chat, windows 10 help
number, windows 10 help desk phone number, help windows 10.Windows 10
help,helpline
>From gcc-bugs-return-534329-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 08:35:50 2016
Return-Path: <gcc-bugs-return-534329-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 91066 invoked by alias); 12 Aug 2016 08:35:50 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 91055 invoked by uid 89); 12 Aug 2016 08:35:48 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 08:35:38 +0000
From: "mpolacek at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/74265] address sanitizer detects stack-buffer-overflow in set_nonincremental_init_from_string in c-typeck.c
Date: Fri, 12 Aug 2016 08:35:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mpolacek at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-74265-4-j0Yu2LEXiM@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-74265-4@http.gcc.gnu.org/bugzilla/>
References: <bug-74265-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01665.txt.bz2
Content-length: 402

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74265

Marek Polacek <mpolacek at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mpolacek at gcc dot gnu.org

--- Comment #3 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
Dup of PR67410?
>From gcc-bugs-return-534330-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 08:54:47 2016
Return-Path: <gcc-bugs-return-534330-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 29753 invoked by alias); 12 Aug 2016 08:54:47 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 29736 invoked by uid 89); 12 Aug 2016 08:54:46 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 08:54:35 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug sanitizer/71042] libtsan requires __pointer_chk_guard@GLIBC_PRIVATE (6)
Date: Fri, 12 Aug 2016 08:54:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: sanitizer
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71042-4-xGhSzHc9Gz@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71042-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71042-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01666.txt.bz2
Content-length: 543

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71042

--- Comment #11 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Author: jakub
Date: Fri Aug 12 08:53:07 2016
New Revision: 239407

URL: https://gcc.gnu.org/viewcvs?rev=239407&root=gcc&view=rev
Log:
        PR sanitizer/71042
        * tsan/tsan_platform_linux.cc: Cherry-pick upstream r278292.
        * tsan/tsan_rtl_aarch64.S: Likewise.

Modified:
    trunk/libsanitizer/ChangeLog
    trunk/libsanitizer/tsan/tsan_platform_linux.cc
    trunk/libsanitizer/tsan/tsan_rtl_aarch64.S
>From gcc-bugs-return-534331-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 08:55:18 2016
Return-Path: <gcc-bugs-return-534331-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 31097 invoked by alias); 12 Aug 2016 08:55:18 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 31076 invoked by uid 89); 12 Aug 2016 08:55:17 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 08:55:07 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug sanitizer/71042] libtsan requires __pointer_chk_guard@GLIBC_PRIVATE (6)
Date: Fri, 12 Aug 2016 08:55:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: sanitizer
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71042-4-kmlAofaE4p@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71042-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71042-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01667.txt.bz2
Content-length: 1081

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71042

--- Comment #11 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Author: jakub
Date: Fri Aug 12 08:53:07 2016
New Revision: 239407

URL: https://gcc.gnu.org/viewcvs?rev=239407&root=gcc&view=rev
Log:
        PR sanitizer/71042
        * tsan/tsan_platform_linux.cc: Cherry-pick upstream r278292.
        * tsan/tsan_rtl_aarch64.S: Likewise.

Modified:
    trunk/libsanitizer/ChangeLog
    trunk/libsanitizer/tsan/tsan_platform_linux.cc
    trunk/libsanitizer/tsan/tsan_rtl_aarch64.S

--- Comment #12 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Author: jakub
Date: Fri Aug 12 08:53:46 2016
New Revision: 239408

URL: https://gcc.gnu.org/viewcvs?rev=239408&root=gcc&view=rev
Log:
        PR sanitizer/71042
        * tsan/tsan_platform_linux.cc: Cherry-pick upstream r278292.
        * tsan/tsan_rtl_aarch64.S: Likewise.

Modified:
    branches/gcc-6-branch/libsanitizer/ChangeLog
    branches/gcc-6-branch/libsanitizer/tsan/tsan_platform_linux.cc
    branches/gcc-6-branch/libsanitizer/tsan/tsan_rtl_aarch64.S
>From gcc-bugs-return-534332-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 08:56:42 2016
Return-Path: <gcc-bugs-return-534332-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 34231 invoked by alias); 12 Aug 2016 08:56:42 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 34203 invoked by uid 89); 12 Aug 2016 08:56:41 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 08:56:31 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug sanitizer/71042] libtsan requires __pointer_chk_guard@GLIBC_PRIVATE (6)
Date: Fri, 12 Aug 2016 08:56:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: sanitizer
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71042-4-q7i1PZkDJp@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71042-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71042-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01668.txt.bz2
Content-length: 591

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71042

--- Comment #12 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Author: jakub
Date: Fri Aug 12 08:53:46 2016
New Revision: 239408

URL: https://gcc.gnu.org/viewcvs?rev=239408&root=gcc&view=rev
Log:
        PR sanitizer/71042
        * tsan/tsan_platform_linux.cc: Cherry-pick upstream r278292.
        * tsan/tsan_rtl_aarch64.S: Likewise.

Modified:
    branches/gcc-6-branch/libsanitizer/ChangeLog
    branches/gcc-6-branch/libsanitizer/tsan/tsan_platform_linux.cc
    branches/gcc-6-branch/libsanitizer/tsan/tsan_rtl_aarch64.S
>From gcc-bugs-return-534333-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 09:06:06 2016
Return-Path: <gcc-bugs-return-534333-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 54229 invoked by alias); 12 Aug 2016 09:06:06 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 54219 invoked by uid 89); 12 Aug 2016 09:06:05 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:410
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 09:05:55 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug sanitizer/71042] libtsan requires __pointer_chk_guard@GLIBC_PRIVATE (6)
Date: Fri, 12 Aug 2016 09:06:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: sanitizer
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-71042-4-RBsKn163Jn@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71042-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71042-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01669.txt.bz2
Content-length: 438

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71042

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--- Comment #13 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Should be fixed now.
>From gcc-bugs-return-534334-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 09:16:05 2016
Return-Path: <gcc-bugs-return-534334-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 100057 invoked by alias); 12 Aug 2016 09:16:04 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 100014 invoked by uid 89); 12 Aug 2016 09:16:02 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00,KAM_ASCII_DIVIDERS autolearn=no version=3.3.2 spammy˜0, vspltisw, xxpermdi, 1169
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 09:15:52 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/74585] SRA forces parameters to memory causing awful code generation
Date: Fri, 12 Aug 2016 09:16:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on target_milestone short_desc everconfirmed
Message-ID: <bug-74585-4-6PS8kUk2I1@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-74585-4@http.gcc.gnu.org/bugzilla/>
References: <bug-74585-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01670.txt.bz2
Content-length: 4106

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74585

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |missed-optimization
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-12
   Target Milestone|7.0                         |---
            Summary|[5/6/7] Tree-sra forces     |SRA forces parameters to
                   |parameters to memory        |memory causing awful code
                   |causing awful code          |generation
                   |generation                  |
     Ever confirmed|0                           |1

--- Comment #1 from Richard Biener <rguenth at gcc dot gnu.org> ---
The issue is not SRA pushing things to memory - it doesn't.  The issue is that
in the GIMPLE IL the parameter appears as "memory" as it is an aggregate type.

The issue is really RTL expansion of the argument (not sure where that's done)
which doesn't take into account that we could happily expand

  a$vx0_27 = MEM[(struct  *)&a];
  a$vx1_28 = MEM[(struct  *)&a + 16B];
  a$vx2_29 = MEM[(struct  *)&a + 32B];
  a$vx3_30 = MEM[(struct  *)&a + 48B];

if a is expanded to registers.

Note comparing assembler with/without -fno-tree-sra doesn't really show me
the obvious badness:

 test_vecd8_rotate_left:
-       addi 6,1,-288
-       li 9,160
+       addi 6,1,-224
+       li 7,96
        xxpermdi 34,34,34,2
        xxpermdi 35,35,35,2
-       li 10,176
+       li 8,112
+       li 10,128
        xxpermdi 36,36,36,2
        xxpermdi 37,37,37,2
+       stxvd2x 34,6,7
+       li 9,144
+       vspltisw 0,0
+       stxvd2x 35,6,8
+       stxvd2x 36,6,10
+       stxvd2x 37,6,9
+       lxvd2x 0,6,7
        li 7,32
-       stxvd2x 34,6,9
+       lxvd2x 7,6,8
        li 8,48
-       stxvd2x 35,6,10
-       li 10,192
-       stxvd2x 36,6,10
-       li 10,208
-       stxvd2x 37,6,10
-       lfd 12,-128(1)
-       lxvd2x 0,6,9
-       li 9,96
+       lxvd2x 9,6,10
        li 10,64
-       stfd 12,-184(1)
-       lfd 12,-104(1)
-       xxpermdi 0,0,0,3
-       stfd 0,-144(1)
-       stfd 12,-192(1)
-       lfd 12,-112(1)
-       stfd 12,-168(1)
-       lfd 12,-88(1)
-       lxvd2x 10,6,9
-       li 9,112
-       stxvd2x 10,6,7
-       stfd 12,-176(1)
-       lfd 12,-96(1)
-       stfd 12,-152(1)
-       lfd 12,-72(1)
        lxvd2x 11,6,9
-       li 9,128
-       lxvd2x 34,6,7
-       stxvd2x 11,6,8
-       stfd 12,-160(1)
-       lfd 12,-80(1)
-       xxpermdi 34,34,34,2
-       stfd 12,-136(1)
-       lxvd2x 12,6,9
-       li 9,144
-       lxvd2x 35,6,8
-       stxvd2x 12,6,10
-       lxvd2x 0,6,9
        li 9,80
-       xxpermdi 35,35,35,2
+       fmr 6,0
+       xxpermdi 0,0,0,3
+       fmr 8,7
+       xxpermdi 7,7,7,3
+       fmr 10,9
+       xxpermdi 9,9,9,3
+       fmr 12,11
+       xxpermdi 11,11,11,3
+       xxpermdi 6,6,32,1
+       xxpermdi 8,8,32,1
+       xxpermdi 10,10,32,1
+       xxpermdi 7,6,7,0
+       xxpermdi 12,12,32,1
+       xxpermdi 9,8,9,0
+       xxpermdi 11,10,11,0
+       xxpermdi 8,7,7,2
+       xxpermdi 0,12,0,0
+       xxpermdi 10,9,9,2
+       stxvd2x 8,6,7
+       xxpermdi 12,11,11,2
+       stxvd2x 10,6,8
+       xxpermdi 0,0,0,2
+       stxvd2x 12,6,10
        stxvd2x 0,6,9
+       lxvd2x 34,6,7
+       lxvd2x 35,6,8
        lxvd2x 36,6,10
        lxvd2x 37,6,9
+       xxpermdi 35,35,35,2
+       xxpermdi 34,34,34,2
        xxpermdi 36,36,36,2
        xxpermdi 37,37,37,2
        blr

 t.s |   80
++++++++++++++++++++++++++++++++++----------------------------------
 1 file changed, 40 insertions(+), 40 deletions(-)


Generally the GIMPLE phase not knowing about calling conventions has issues
but I don't see an easy way out here other than lowering things much much
earlier ... (with its own downside, esp. considering the "cross-target" games
we play for offloading via LTO).

That said, somebody needs to sit down and see where the copy to memory
is generated and why.
>From gcc-bugs-return-534335-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 09:21:46 2016
Return-Path: <gcc-bugs-return-534335-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 114164 invoked by alias); 12 Aug 2016 09:21:45 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 113528 invoked by uid 89); 12 Aug 2016 09:21:45 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:292
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 09:21:34 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/74585] SRA forces parameters to memory causing awful code generation
Date: Fri, 12 Aug 2016 09:21:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-74585-4-aYR4Zamrkx@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-74585-4@http.gcc.gnu.org/bugzilla/>
References: <bug-74585-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01671.txt.bz2
Content-length: 204

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74585

--- Comment #3 from Richard Biener <rguenth at gcc dot gnu.org> ---
That is, compare DECL_RTL for a in the good/bad case and see how it arrives so.
>From gcc-bugs-return-534336-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 09:31:08 2016
Return-Path: <gcc-bugs-return-534336-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 38792 invoked by alias); 12 Aug 2016 09:31:07 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 38769 invoked by uid 89); 12 Aug 2016 09:31:07 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 09:30:56 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/74585] SRA forces parameters to memory causing awful code generation
Date: Fri, 12 Aug 2016 09:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-74585-4-27UhEVdBtK@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-74585-4@http.gcc.gnu.org/bugzilla/>
References: <bug-74585-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01672.txt.bz2
Content-length: 8731

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74585

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
Bad case:

(mem/c:BLK (plus:DI (reg/f:DI 150 virtual-stack-vars)
        (const_int 64 [0x40])) [1 a+0 S64 A128])

#0  set_decl_rtl (t=<parm_decl 0x2aaaac199000 a>, x=0x2aaaac1ae960)
    at /space/rguenther/src/svn/trunk/gcc/emit-rtl.c:1282
#1  0x00000000008ad5ca in set_rtl (t=<parm_decl 0x2aaaac199000 a>, 
    x=0x2aaaac1ae960) at /space/rguenther/src/svn/trunk/gcc/cfgexpand.c:302
#2  0x00000000008b0236 in set_parm_rtl (parm=<parm_decl 0x2aaaac199000 a>, 
    x=0x2aaaac1ae960) at /space/rguenther/src/svn/trunk/gcc/cfgexpand.c:1275
#3  0x0000000000a7477b in assign_parm_setup_block (all=0x7fffffffd5c0, 
    parm=<parm_decl 0x2aaaac199000 a>, data=0x7fffffffd540)
    at /space/rguenther/src/svn/trunk/gcc/function.c:3109
#4  0x0000000000a76f92 in assign_parms (
    fndecl=<function_decl 0x2aaaac171a00 test_vecd8_rotate_left>)
    at /space/rguenther/src/svn/trunk/gcc/function.c:3775
#5  0x0000000000a7afc6 in expand_function_start (
    subr=<function_decl 0x2aaaac171a00 test_vecd8_rotate_left>)
    at /space/rguenther/src/svn/trunk/gcc/function.c:5211

Good case:

(mem/c:BLK (plus:DI (reg/f:DI 150 virtual-stack-vars)
        (const_int 128 [0x80])) [1 a+0 S64 A128])

so no difference.  We have in the good case

;; _1 = a.vx0;

(insn 17 16 18 (set (reg:V2DF 176 [ _1 ])
        (vec_select:V2DF (mem/c:V2DF (plus:DI (reg/f:DI 150 virtual-stack-vars)
                    (const_int 128 [0x80])) [2 a.vx0+0 S16 A128])
            (parallel [
                    (const_int 1 [0x1])
                    (const_int 0 [0])
                ]))) t.c:18 -1
     (nil))

and in the bad case

;; a$vx0_22 = MEM[(struct  *)&a];

(insn 17 16 18 (set (reg:V2DF 191 [ a$vx0 ])
        (vec_select:V2DF (mem/c:V2DF (plus:DI (reg/f:DI 150 virtual-stack-vars)
                    (const_int 64 [0x40])) [1 MEM[(struct  *)&a]+0 S16 A128])
            (parallel [
                    (const_int 1 [0x1])
                    (const_int 0 [0])
                ]))) -1
     (nil))

again almost the same.  Parameter setup in the bad case:

(insn 2 15 3 2 (set (reg:V4SI 183)
        (reg:V4SI 79 2 [ a ])) t.c:14 -1
     (nil))
(insn 3 2 4 2 (set (reg:V4SI 184)
        (reg:V4SI 80 3 [ a+16 ])) t.c:14 -1
     (nil))
(insn 4 3 5 2 (set (reg:V4SI 185)
        (reg:V4SI 81 4 [ a+32 ])) t.c:14 -1
     (nil))
(insn 5 4 6 2 (set (reg:V4SI 186)
        (reg:V4SI 82 5 [ a+48 ])) t.c:14 -1
     (nil))
(insn 6 5 7 2 (set (reg:V4SI 187)
        (vec_select:V4SI (reg:V4SI 183)
            (parallel [
                    (const_int 2 [0x2])
                    (const_int 3 [0x3])
                    (const_int 0 [0])
                    (const_int 1 [0x1])
                ]))) t.c:14 -1
     (nil))
(insn 7 6 8 2 (set (mem/c:V4SI (plus:DI (reg/f:DI 150 virtual-stack-vars)
                (const_int 64 [0x40])) [1 a+0 S16 A128])
        (vec_select:V4SI (reg:V4SI 187)
            (parallel [
                    (const_int 2 [0x2])
                    (const_int 3 [0x3])
                    (const_int 0 [0])
                    (const_int 1 [0x1])
                ]))) t.c:14 -1
     (nil))
(insn 8 7 9 2 (set (reg:V4SI 188)
        (vec_select:V4SI (reg:V4SI 184)
            (parallel [
                    (const_int 2 [0x2])
                    (const_int 3 [0x3])
                    (const_int 0 [0])
                    (const_int 1 [0x1])
                ]))) t.c:14 -1
     (nil))
(insn 9 8 10 2 (set (mem/c:V4SI (plus:DI (reg/f:DI 150 virtual-stack-vars)
                (const_int 80 [0x50])) [1 a+16 S16 A128])
        (vec_select:V4SI (reg:V4SI 188)
            (parallel [
                    (const_int 2 [0x2])
                    (const_int 3 [0x3])
                    (const_int 0 [0])
                    (const_int 1 [0x1])
                ]))) t.c:14 -1
     (nil))
(insn 10 9 11 2 (set (reg:V4SI 189)
        (vec_select:V4SI (reg:V4SI 185)
            (parallel [
                    (const_int 2 [0x2])
                    (const_int 3 [0x3])
                    (const_int 0 [0])
                    (const_int 1 [0x1])
                ]))) t.c:14 -1
     (nil))
(insn 11 10 12 2 (set (mem/c:V4SI (plus:DI (reg/f:DI 150 virtual-stack-vars)
                (const_int 96 [0x60])) [1 a+32 S16 A128])
        (vec_select:V4SI (reg:V4SI 189)
            (parallel [
                    (const_int 2 [0x2])
                    (const_int 3 [0x3])
                    (const_int 0 [0])
                    (const_int 1 [0x1])
                ]))) t.c:14 -1
     (nil))
(insn 12 11 13 2 (set (reg:V4SI 190)
        (vec_select:V4SI (reg:V4SI 186)
            (parallel [
                    (const_int 2 [0x2])
                    (const_int 3 [0x3])
                    (const_int 0 [0])
                    (const_int 1 [0x1])
                ]))) t.c:14 -1
     (nil))
(insn 13 12 14 2 (set (mem/c:V4SI (plus:DI (reg/f:DI 150 virtual-stack-vars)
                (const_int 112 [0x70])) [1 a+48 S16 A128])
        (vec_select:V4SI (reg:V4SI 190)
            (parallel [
                    (const_int 2 [0x2])
                    (const_int 3 [0x3])
                    (const_int 0 [0])
                    (const_int 1 [0x1])
                ]))) t.c:14 -1
     (nil))
(note 14 13 17 2 NOTE_INSN_FUNCTION_BEG)


and in the good case:

(insn 2 15 3 2 (set (reg:V4SI 168)
        (reg:V4SI 79 2 [ a ])) t.c:14 -1
     (nil))
(insn 3 2 4 2 (set (reg:V4SI 169)
        (reg:V4SI 80 3 [ a+16 ])) t.c:14 -1
     (nil))
(insn 4 3 5 2 (set (reg:V4SI 170)
        (reg:V4SI 81 4 [ a+32 ])) t.c:14 -1
     (nil))
(insn 5 4 6 2 (set (reg:V4SI 171)
        (reg:V4SI 82 5 [ a+48 ])) t.c:14 -1
     (nil))
(insn 6 5 7 2 (set (reg:V4SI 172)
        (vec_select:V4SI (reg:V4SI 168)
            (parallel [
                    (const_int 2 [0x2])
                    (const_int 3 [0x3])
                    (const_int 0 [0])
                    (const_int 1 [0x1])
                ]))) t.c:14 -1
     (nil))
(insn 7 6 8 2 (set (mem/c:V4SI (plus:DI (reg/f:DI 150 virtual-stack-vars)
                (const_int 128 [0x80])) [1 a+0 S16 A128])
        (vec_select:V4SI (reg:V4SI 172)
            (parallel [
                    (const_int 2 [0x2])
                    (const_int 3 [0x3])
                    (const_int 0 [0])
                    (const_int 1 [0x1])
                ]))) t.c:14 -1
     (nil))
(insn 8 7 9 2 (set (reg:V4SI 173)
        (vec_select:V4SI (reg:V4SI 169)
            (parallel [
                    (const_int 2 [0x2])
                    (const_int 3 [0x3])
                    (const_int 0 [0])
                    (const_int 1 [0x1])
                ]))) t.c:14 -1
     (nil))
(insn 9 8 10 2 (set (mem/c:V4SI (plus:DI (reg/f:DI 150 virtual-stack-vars)
                (const_int 144 [0x90])) [1 a+16 S16 A128])
        (vec_select:V4SI (reg:V4SI 173)
            (parallel [
                    (const_int 2 [0x2])
                    (const_int 3 [0x3])
                    (const_int 0 [0])
                    (const_int 1 [0x1])
                ]))) t.c:14 -1
     (nil))
(insn 10 9 11 2 (set (reg:V4SI 174)
        (vec_select:V4SI (reg:V4SI 170)
            (parallel [
                    (const_int 2 [0x2])
                    (const_int 3 [0x3])
                    (const_int 0 [0])
                    (const_int 1 [0x1])
                ]))) t.c:14 -1
     (nil))
(insn 11 10 12 2 (set (mem/c:V4SI (plus:DI (reg/f:DI 150 virtual-stack-vars)
                (const_int 160 [0xa0])) [1 a+32 S16 A128])
        (vec_select:V4SI (reg:V4SI 174)
            (parallel [
                    (const_int 2 [0x2])
                    (const_int 3 [0x3])
                    (const_int 0 [0])
                    (const_int 1 [0x1])
                ]))) t.c:14 -1
     (nil))
(insn 12 11 13 2 (set (reg:V4SI 175)
        (vec_select:V4SI (reg:V4SI 171)
            (parallel [
                    (const_int 2 [0x2])
                    (const_int 3 [0x3])
                    (const_int 0 [0])
                    (const_int 1 [0x1])
                ]))) t.c:14 -1
     (nil))
(insn 13 12 14 2 (set (mem/c:V4SI (plus:DI (reg/f:DI 150 virtual-stack-vars)
                (const_int 176 [0xb0])) [1 a+48 S16 A128])
        (vec_select:V4SI (reg:V4SI 175)
            (parallel [
                    (const_int 2 [0x2])
                    (const_int 3 [0x3])
                    (const_int 0 [0])
                    (const_int 1 [0x1])
                ]))) t.c:14 -1
     (nil))
(note 14 13 17 2 NOTE_INSN_FUNCTION_BEG)

again exactly the same.  There must be downstream effects that cause the whole
issue during RTL optimization.
>From gcc-bugs-return-534337-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 09:33:01 2016
Return-Path: <gcc-bugs-return-534337-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 44928 invoked by alias); 12 Aug 2016 09:33:00 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 44898 invoked by uid 89); 12 Aug 2016 09:32:59 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 09:32:49 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/74563] [6/7 regression] Classic MIPS16 (non-MIPS16e) function return broken
Date: Fri, 12 Aug 2016 09:33:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: major
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords cf_known_to_work target_milestone short_desc cf_known_to_fail
Message-ID: <bug-74563-4-fiwCGz2tOk@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-74563-4@http.gcc.gnu.org/bugzilla/>
References: <bug-74563-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01673.txt.bz2
Content-length: 684

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74563

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |wrong-code
      Known to work|                            |5.4.0
   Target Milestone|---                         |6.2
            Summary|[5 regression] Classic      |[6/7 regression] Classic
                   |MIPS16 (non-MIPS16e)        |MIPS16 (non-MIPS16e)
                   |function return broken      |function return broken
      Known to fail|                            |6.1.0, 7.0
>From gcc-bugs-return-534338-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 09:36:06 2016
Return-Path: <gcc-bugs-return-534338-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 54571 invoked by alias); 12 Aug 2016 09:36:05 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 54545 invoked by uid 89); 12 Aug 2016 09:36:04 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 09:35:54 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72851] [6 Regression] memory hog with -O3 on s390x-linux-gnu
Date: Fri, 12 Aug 2016 09:36:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cf_known_to_work target_milestone short_desc cf_known_to_fail
Message-ID: <bug-72851-4-4aqCbLsg8R@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72851-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72851-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01674.txt.bz2
Content-length: 703

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72851

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
      Known to work|                            |7.0
   Target Milestone|6.2                         |6.3
            Summary|[6/7 Regression] memory hog |[6 Regression] memory hog
                   |with -O3 on s390x-linux-gnu |with -O3 on s390x-linux-gnu
      Known to fail|7.0                         |6.2.0

--- Comment #8 from Richard Biener <rguenth at gcc dot gnu.org> ---
Fixed on trunk.  Not sure what to do on the branch - nothing for 6.2 at least.
>From gcc-bugs-return-534339-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 09:49:57 2016
Return-Path: <gcc-bugs-return-534339-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 23699 invoked by alias); 12 Aug 2016 09:49:57 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 23675 invoked by uid 89); 12 Aug 2016 09:49:56 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 09:49:46 +0000
From: "ubizjak at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug testsuite/71008] [7 Regression] FAIL: gcc.target/i386/avx512f-vprord-1.c scan-assembler-times vprord
Date: Fri, 12 Aug 2016 09:49:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: testsuite
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ubizjak at gmail dot com
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: ubizjak at gmail dot com
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status component assigned_to
Message-ID: <bug-71008-4-qlxxVKDUW8@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71008-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71008-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01675.txt.bz2
Content-length: 535

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71008

Uroš Bizjak <ubizjak at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED
          Component|target                      |testsuite
           Assignee|unassigned at gcc dot gnu.org      |ubizjak at gmail dot com

--- Comment #4 from Uroš Bizjak <ubizjak at gmail dot com> ---
I have a testsuite patch.
>From gcc-bugs-return-534340-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 10:01:53 2016
Return-Path: <gcc-bugs-return-534340-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 43056 invoked by alias); 12 Aug 2016 10:01:52 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 43047 invoked by uid 89); 12 Aug 2016 10:01:52 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:2017
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 10:01:42 +0000
From: "tschwinge at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libfortran/74755] New: libgfortran: build breaks if localtime_r prototype is present, but definition is not
Date: Fri, 12 Aug 2016 10:01:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libfortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: tschwinge at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter cc target_milestone cf_gcctarget
Message-ID: <bug-74755-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01676.txt.bz2
Content-length: 2168

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74755

            Bug ID: 74755
           Summary: libgfortran: build breaks if localtime_r prototype is
                    present, but definition is not
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: libfortran
          Assignee: unassigned at gcc dot gnu.org
          Reporter: tschwinge at gcc dot gnu.org
                CC: cesar at gcc dot gnu.org
  Target Milestone: ---
            Target: nvptx

As of GCC trunk r239356 "Replace KISS PRNG with xorshift1024* using per-thread
state", libgfortran/intrinsics/random.c fails to build when using nvptx-newlib,
<https://github.com/MentorEmbedded/nvptx-newlib>:

    In file included from
[...]/source-gcc/libgfortran/intrinsics/random.c:41:0:
    [...]/source-gcc/libgfortran/intrinsics/time_1.h:92:1: error: static
declaration of 'localtime_r' follows non-static declaration
     localtime_r (const time_t * timep, struct tm * result)
     ^~~~~~~~~~~
    In file included from [...]/source-gcc/newlib/libc/include/stdio.h:29:0,
                     from [...]/source-gcc/libgfortran/libgfortran.h:42,
                     from [...]/source-gcc/libgfortran/intrinsics/random.c:27:
    [...]/source-gcc/newlib/libc/include/time.h:69:12: note: previous
declaration of 'localtime_r' was here
     struct tm *_EXFUN(localtime_r, (const time_t *__restrict,
                ^
    make[3]: *** [random.lo] Error 1

libgfortran/configure doesn't "#define HAVE_LOCALTIME_R", because of:

    unresolved symbol localtime_r
    collect2: error: ld returned 1 exit status

..., and thus libgfortran/intrinsics/time_1.h attempts to provide "static
inline" replacement code, but that (unsurprisingly; "static inline" vs.
"extern") has a conflicting signature to the prototype in nvptx-newlib header
files, where a prototype of localtime_r is declared despite not providing a
definition.

I suppose that needs to be fixed in nvptx-newlib, unless this (localtime_r
prototype present, but definition not) is a configuration that needs to be
supported in libgfortran?
>From gcc-bugs-return-534341-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 10:17:49 2016
Return-Path: <gcc-bugs-return-534341-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 107229 invoked by alias); 12 Aug 2016 10:17:48 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 107205 invoked by uid 89); 12 Aug 2016 10:17:47 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 10:17:37 +0000
From: "tschwinge at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/74600] [openacc] duplicate data map error
Date: Fri, 12 Aug 2016 10:17:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords: openacc
X-Bugzilla-Severity: normal
X-Bugzilla-Who: tschwinge at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-74600-4-YQeOkliRkX@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-74600-4@http.gcc.gnu.org/bugzilla/>
References: <bug-74600-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01677.txt.bz2
Content-length: 898

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74600

Thomas Schwinge <tschwinge at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-12
     Ever confirmed|0                           |1

--- Comment #1 from Thomas Schwinge <tschwinge at gcc dot gnu.org> ---
(In reply to cesar from comment #0)
> This issue is present on at least gomp-4_0-branch with nvptx offloading. I
> wasn't able to try trunk because it stopped building on nvptx as of Aug 11,

Yep, PR74755.

> so I'll retest trunk once that problem has been resolved.

So just test a trunk revision a little earlier ;-) -- anyway, confirmed for
trunk, too.  (I have not looked at the Fortran source code file itself.)
>From gcc-bugs-return-534342-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 10:18:40 2016
Return-Path: <gcc-bugs-return-534342-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 108478 invoked by alias); 12 Aug 2016 10:18:40 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 108464 invoked by uid 89); 12 Aug 2016 10:18:39 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 10:18:29 +0000
From: "segher at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/73650] powerpc: -mcpuå00mc hits ICE: insn does not satisfy its constraints
Date: Fri, 12 Aug 2016 10:18:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: segher at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-73650-4-InGPH9HuTc@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73650-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73650-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01678.txt.bz2
Content-length: 372

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73650

--- Comment #7 from Segher Boessenkool <segher at gcc dot gnu.org> ---
[ i have a patch, it is bootstrapping+checking ]
[ the revision in #c4 is a red herring ]

Yeah, single_set holds for that, and LRA then treats it as a reg-reg
move (because that is what the single set is), never looking at the
other constraints.
>From gcc-bugs-return-534343-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 10:20:39 2016
Return-Path: <gcc-bugs-return-534343-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 111452 invoked by alias); 12 Aug 2016 10:20:39 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 111421 invoked by uid 89); 12 Aug 2016 10:20:37 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:452
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 10:20:27 +0000
From: "mpolacek at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/7652] -Wswitch-break : Warn if a switch case falls through
Date: Fri, 12 Aug 2016 10:20:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: mpolacek at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: mpolacek at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-7652-4-rGL0F1JNAO@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-7652-4@http.gcc.gnu.org/bugzilla/>
References: <bug-7652-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01679.txt.bz2
Content-length: 418

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=7652

--- Comment #57 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
Author: mpolacek
Date: Fri Aug 12 10:15:57 2016
New Revision: 239409

URL: https://gcc.gnu.org/viewcvs?rev=239409&root=gcc&view=rev
Log:
        PR c/7652
        * tree-complex.c (expand_complex_division): Add missing break.

Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/tree-complex.c
>From gcc-bugs-return-534344-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 10:35:34 2016
Return-Path: <gcc-bugs-return-534344-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 42088 invoked by alias); 12 Aug 2016 10:35:34 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 41394 invoked by uid 89); 12 Aug 2016 10:35:33 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 10:35:23 +0000
From: "mpolacek at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/7652] -Wswitch-break : Warn if a switch case falls through
Date: Fri, 12 Aug 2016 10:35:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: mpolacek at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: mpolacek at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-7652-4-NNSGxH5hMg@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-7652-4@http.gcc.gnu.org/bugzilla/>
References: <bug-7652-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01680.txt.bz2
Content-length: 10856

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=7652

--- Comment #58 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
Author: mpolacek
Date: Fri Aug 12 10:30:47 2016
New Revision: 239410

URL: https://gcc.gnu.org/viewcvs?rev=239410&root=gcc&view=rev
Log:
        PR c/7652
gcc/
        * alias.c (find_base_value): Adjust fall through comment.
        * cfgexpand.c (expand_debug_expr): Likewise.
        * combine.c (find_split_point): Likewise.
        (expand_compound_operation): Likewise.  Add FALLTHRU.
        (make_compound_operation): Adjust fall through comment.
        (canon_reg_for_combine): Add FALLTHRU.
        (force_to_mode): Adjust fall through comment.
        (simplify_shift_const_1): Likewise.
        (simplify_comparison): Likewise.
        * config/aarch64/aarch64-builtins.c (aarch64_simd_expand_args): Add
        FALLTHRU.
        * config/aarch64/predicates.md: Likewise.
        * config/i386/i386.c (function_arg_advance_32): Likewise.
        (ix86_gimplify_va_arg): Likewise.
        (print_reg): Likewise.
        (ix86_print_operand): Likewise.
        (ix86_build_const_vector): Likewise.
        (ix86_expand_branch): Likewise.
        (ix86_sched_init_global): Adjust fall through comment.
        (ix86_expand_args_builtin): Add FALLTHRU.
        (ix86_expand_builtin): Likewise.
        (ix86_expand_vector_init_one_var): Likewise.
        * config/rs6000/rs6000.c (rs6000_emit_vector_compare_inner): Likewise.
        (rs6000_adjust_cost): Likewise.
        (insn_must_be_first_in_group): Likewise.
        * config/rs6000/rs6000.md: Likewise.  Adjust fall through comment.
        * dbxout.c (dbxout_symbol): Adjust fall through comment.
        * df-scan.c (df_uses_record): Likewise.
        * dojump.c (do_jump): Add FALLTHRU.
        * dwarf2out.c (mem_loc_descriptor): Likewise.  Adjust fall through
        comment.
        (resolve_args_picking_1): Adjust fall through comment.
        (loc_list_from_tree_1): Likewise.
        * expmed.c (make_tree): Likewise.
        * expr.c (expand_expr_real_2): Add FALLTHRU.
        (expand_expr_real_1): Likewise.  Adjust fall through comment.
        * fold-const.c (const_binop): Adjust fall through comment.
        (fold_truth_not_expr): Likewise.
        (fold_cond_expr_with_comparison): Add FALLTHRU.
        (fold_binary_loc): Likewise.
        (contains_label_1): Adjust fall through comment.
        (multiple_of_p): Likewise.
        * gcov-tool.c (process_args): Add FALLTHRU.
        * genattrtab.c (check_attr_test): Likewise.
        (write_test_expr): Likewise.
        * genconfig.c (walk_insn_part): Likewise.
        * genpreds.c (validate_exp): Adjust fall through comment.
        (needs_variable): Likewise.
        * gensupport.c (get_alternatives_number): Add FALLTHRU.
        (subst_dup): Likewise.
        * gimple-pretty-print.c (dump_gimple_assign): Likewise.
        * gimplify.c (gimplify_addr_expr): Adjust fall through comment.
        (gimplify_scan_omp_clauses): Add FALLTHRU.
        (goa_stabilize_expr): Likewise.
        * graphite-isl-ast-to-gimple.c (substitute_ssa_name): Adjust fall
        through comment.
        * hsa-gen.c (get_address_from_value): Likewise.
        * ipa-icf.c (sem_function::hash_stmt): Likewise.
        * ira.c (ira_setup_alts): Add FALLTHRU.
        * lra-eliminations.c (lra_eliminate_regs_1): Adjust fall through
        comment.
        * lto-streamer-out.c (lto_output_tree_ref): Add FALLTHRU.
        * opts.c (common_handle_option): Likewise.
        * read-rtl.c (read_rtx_code): Likewise.
        * real.c (round_for_format): Likewise.
        * recog.c (asm_operand_ok): Likewise.
        * reginfo.c (reg_scan_mark_refs): Adjust fall through comment.
        * reload1.c (set_label_offsets): Likewise.
        (eliminate_regs_1): Likewise.
        (reload_reg_reaches_end_p): Likewise.
        * rtlanal.c (commutative_operand_precedence): Add FALLTHRU.
        (rtx_cost): Likewise.
        * sched-rgn.c (is_exception_free): Likewise.
        * simplify-rtx.c (simplify_rtx): Adjust fall through comment.
        * stor-layout.c (int_mode_for_mode): Likewise.
        * toplev.c (print_to_asm_out_file): Likewise.
        (print_to_stderr): Likewise.
        * tree-cfg.c (gimple_verify_flow_info): Likewise.
        * tree-chrec.c (chrec_fold_plus_1): Add FALLTHRU.
        (chrec_fold_multiply): Likewise.
        (evolution_function_is_invariant_rec_p): Likewise.
        (for_each_scev_op): Likewise.
        * tree-data-ref.c (siv_subscript_p): Likewise.
        (get_references_in_stmt): Likewise.
        * tree.c (find_placeholder_in_expr): Adjust fall through comment.
        (substitute_in_expr): Likewise.
        (type_cache_hasher::equal): Likewise.
        (walk_type_fields): Likewise.
        * var-tracking.c (adjust_mems): Add FALLTHRU.
        (set_dv_changed): Adjust fall through comment.
        * varasm.c (default_function_section): Add FALLTHRU.
gcc/c-family/
        * c-common.c (scalar_to_vector): Adjust fall through comment.
        * c-opts.c (c_common_handle_option): Likewise.
        * c-pragma.c (handle_pragma_pack): Add FALLTHRU.
        * c-pretty-print.c (c_pretty_printer::postfix_expression): Adjust
        fall through comment.
        * cilk.c (extract_free_variables): Add FALLTHRU.
gcc/c/
        * c-parser.c (c_parser_external_declaration): Add FALLTHRU.
        (c_parser_postfix_expression): Likewise.
        * c-typeck.c (build_unary_op): Adjust fall through comment.
        (c_mark_addressable): Likewise.
gcc/cp/
        * call.c (add_builtin_candidate): Add FALLTHRU.
        (build_integral_nontype_arg_conv): Adjust fall through comment.
        (build_new_op_1): Add FALLTHRU.
        (convert_like_real): Adjust fall through comment.
        * class.c (fixed_type_or_null): Likewise.
        * constexpr.c (cxx_eval_constant_expression): Likewise.
        (potential_constant_expression_1): Likewise.  Add FALLTHRU.
        * cp-gimplify.c (cp_gimplify_expr): Adjust fall through comment.
        (cp_fold): Add FALLTHRU.
        * cvt.c (build_expr_type_conversion): Adjust fall through comment.
        * cxx-pretty-print.c (pp_cxx_unqualified_id): Add FALLTHRU.
        (pp_cxx_qualified_id): Likewise.
        (cxx_pretty_printer::constant): Adjust fall through comment.
        (cxx_pretty_printer::primary_expression): Add FALLTHRU.
        (pp_cxx_pm_expression): Adjust fall through comment.
        (cxx_pretty_printer::expression): Add FALLTHRU.
        (cxx_pretty_printer::declaration_specifiers): Reformat code.
        (pp_cxx_type_specifier_seq): Adjust fall through comment.
        (pp_cxx_ptr_operator): Likewise.  Add FALLTHRU.
        * error.c (dump_type): Adjust fall through comment.
        (dump_decl): Likewise.
        * mangle.c (write_type): Likewise.
        * method.c (synthesized_method_walk): Add FALLTHRU.
        * name-lookup.c (arg_assoc_type): Likewise.
        * parser.c (cp_lexer_print_token): Adjust fall through comment.
        (cp_parser_primary_expression): Add FALLTHRU.
        (cp_parser_operator): Likewise.
        * pt.c (find_parameter_packs_r): Likewise.
        (tsubst_aggr_type): Adjust fall through comment.
        * semantics.c (finish_omp_clauses): Add FALLTHRU.
        * tree.c (lvalue_kind): Likewise.
gcc/fortran/
        * decl.c (match_attr_spec): Add FALLTHRU.
        * primary.c (match_arg_list_function): Likewise.
        * resolve.c (resolve_operator): Adjust fall through comment.
        (fixup_charlen): Add FALLTHRU.
        (resolve_allocate_expr): Adjust fall through comment.
        * trans-array.c (gfc_conv_ss_startstride): Add FALLTHRU.
        * trans-intrinsic.c (gfc_conv_intrinsic_len): Adjust fall through
        comment.
gcc/java/
        * expr.c (java_truthvalue_conversion): Adjust fall through comment.
        * jcf-io.c (verify_constant_pool): Likewise.
        * typeck.c (promote_type): Likewise.
gcc/objc/
        * objc-encoding.c (encode_type): Add FALLTHRU.
libcpp/
        * lex.c (search_line_fast): Add FALLTHRU.
        (_cpp_lex_direct): Likewise.
        (cpp_token_val_index): Adjust fall through comment.
        * macro.c (parse_params): Add FALLTHRU.
        * pch.c (count_defs): Adjust fall through comment.
        (write_defs): Likewise.
libiberty/
        * cp-demangle.c (d_print_mod): Add FALLTHRU.

Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/alias.c
    trunk/gcc/c-family/ChangeLog
    trunk/gcc/c-family/c-common.c
    trunk/gcc/c-family/c-opts.c
    trunk/gcc/c-family/c-pragma.c
    trunk/gcc/c-family/c-pretty-print.c
    trunk/gcc/c-family/cilk.c
    trunk/gcc/c/ChangeLog
    trunk/gcc/c/c-parser.c
    trunk/gcc/c/c-typeck.c
    trunk/gcc/cfgexpand.c
    trunk/gcc/combine.c
    trunk/gcc/config/aarch64/aarch64-builtins.c
    trunk/gcc/config/aarch64/predicates.md
    trunk/gcc/config/i386/i386.c
    trunk/gcc/config/rs6000/rs6000.c
    trunk/gcc/config/rs6000/rs6000.md
    trunk/gcc/cp/ChangeLog
    trunk/gcc/cp/call.c
    trunk/gcc/cp/class.c
    trunk/gcc/cp/constexpr.c
    trunk/gcc/cp/cp-gimplify.c
    trunk/gcc/cp/cvt.c
    trunk/gcc/cp/cxx-pretty-print.c
    trunk/gcc/cp/error.c
    trunk/gcc/cp/mangle.c
    trunk/gcc/cp/method.c
    trunk/gcc/cp/name-lookup.c
    trunk/gcc/cp/parser.c
    trunk/gcc/cp/pt.c
    trunk/gcc/cp/semantics.c
    trunk/gcc/cp/tree.c
    trunk/gcc/dbxout.c
    trunk/gcc/df-scan.c
    trunk/gcc/dojump.c
    trunk/gcc/dwarf2out.c
    trunk/gcc/expmed.c
    trunk/gcc/expr.c
    trunk/gcc/fold-const.c
    trunk/gcc/fortran/ChangeLog
    trunk/gcc/fortran/decl.c
    trunk/gcc/fortran/primary.c
    trunk/gcc/fortran/resolve.c
    trunk/gcc/fortran/trans-array.c
    trunk/gcc/fortran/trans-intrinsic.c
    trunk/gcc/gcov-tool.c
    trunk/gcc/genattrtab.c
    trunk/gcc/genconfig.c
    trunk/gcc/genpreds.c
    trunk/gcc/gensupport.c
    trunk/gcc/gimple-pretty-print.c
    trunk/gcc/gimplify.c
    trunk/gcc/graphite-isl-ast-to-gimple.c
    trunk/gcc/hsa-gen.c
    trunk/gcc/ipa-icf.c
    trunk/gcc/ira.c
    trunk/gcc/java/ChangeLog
    trunk/gcc/java/expr.c
    trunk/gcc/java/jcf-io.c
    trunk/gcc/java/typeck.c
    trunk/gcc/lra-eliminations.c
    trunk/gcc/lto-streamer-out.c
    trunk/gcc/objc/ChangeLog
    trunk/gcc/objc/objc-encoding.c
    trunk/gcc/opts.c
    trunk/gcc/read-rtl.c
    trunk/gcc/real.c
    trunk/gcc/recog.c
    trunk/gcc/reginfo.c
    trunk/gcc/reload1.c
    trunk/gcc/rtlanal.c
    trunk/gcc/sched-rgn.c
    trunk/gcc/simplify-rtx.c
    trunk/gcc/stor-layout.c
    trunk/gcc/toplev.c
    trunk/gcc/tree-cfg.c
    trunk/gcc/tree-chrec.c
    trunk/gcc/tree-data-ref.c
    trunk/gcc/tree.c
    trunk/gcc/var-tracking.c
    trunk/gcc/varasm.c
    trunk/libcpp/ChangeLog
    trunk/libcpp/lex.c
    trunk/libcpp/macro.c
    trunk/libcpp/pch.c
    trunk/libiberty/ChangeLog
    trunk/libiberty/cp-demangle.c
>From gcc-bugs-return-534345-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 11:08:42 2016
Return-Path: <gcc-bugs-return-534345-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 54699 invoked by alias); 12 Aug 2016 11:08:42 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 54680 invoked by uid 89); 12 Aug 2016 11:08:41 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 11:08:31 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72865] Adding __may_alias__ attribute triggers a compilation error
Date: Fri, 12 Aug 2016 11:08:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.2.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-72865-4-rXfSWDF8W5@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72865-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72865-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01681.txt.bz2
Content-length: 506

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72865

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jakub at gcc dot gnu.org

--- Comment #4 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
This used to be rejected until r222419 (PR50800) which started to ICE on this,
r223613 (PR65936) fixed the ICE and accepts it.
>From gcc-bugs-return-534346-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 11:26:51 2016
Return-Path: <gcc-bugs-return-534346-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 1175 invoked by alias); 12 Aug 2016 11:26:50 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 1160 invoked by uid 89); 12 Aug 2016 11:26:49 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=props, aapcs64, propchange
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 11:26:39 +0000
From: "jgreenhalgh at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72819] [AArch64] ABI error: HFA structs of __fp16 incorrectly passed to functions
Date: Fri, 12 Aug 2016 11:26:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords: ABI, wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jgreenhalgh at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jgreenhalgh at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72819-4-wtnQL1QBkj@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72819-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72819-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01682.txt.bz2
Content-length: 3658

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72819

--- Comment #2 from James Greenhalgh <jgreenhalgh at gcc dot gnu.org> ---
Author: jgreenhalgh
Date: Fri Aug 12 11:26:06 2016
New Revision: 239411

URL: https://gcc.gnu.org/viewcvs?rev=239411&root=gcc&view=rev
Log:
[AArch64] Handle HFAs of float16 types properly

Backport from mainline r239173.

Fix PR Target/72819.

gcc/

        PR Target/72819
        * config/aarch64/aarch64.h (aarch64_fp16_type_node): Declare.
        (aarch64_fp16_ptr_type_node): Likewise.
        * config/aarch64/aarch64-simd-builtins.c
        (aarch64_fp16_ptr_type_node): Define.
        (aarch64_init_fp16_types): New, refactored out of...
        (aarch64_init_builtins): ...here, update to call
        aarch64_init_fp16_types.
        * config/aarch64/aarch64.c (aarch64_gimplify_va_arg_expr): Handle
        HFmode.
        (aapcs_vfp_sub_candidate): Likewise.

gcc/testsuite/

        PR Target/72819
        * gcc.target/aarch64/aapcs64/abitest-common.h: Define half-precision
        registers.
        * gcc.target/aarch64/aapcs64/abitest.S (dumpregs): Add assembly for
        saving the half-precision registers.
        * gcc.target/aarch64/aapcs64/func-ret-1.c: Test that an __fp16
        value is returned in h0.
        * gcc.target/aarch64/aapcs64/test_2.c: Check that __FP16 arguments
        are passed in FP/SIMD registers.
        * gcc.target/aarch64/aapcs64/test_27.c: New, test that __fp16 HFA
        passing works corrcetly.
        * gcc.target/aarch64/aapcs64/type-def.h (hfa_f16x1_t): New.
        (hfa_f16x2_t): Likewise.
        (hfa_f16x3_t): Likewise.
        * gcc.target/aarch64/aapcs64/va_arg-1.c: Check that __fp16 values
        are promoted to double and passed in a double register.
        * gcc.target/aarch64/aapcs64/va_arg-2.c: Check that __fp16 values
        are promoted to double and stacked.
        * gcc.target/aarch64/aapcs64/va_arg-4.c: Check stacking of HFA of
        __fp16 data types.
        * gcc.target/aarch64/aapcs64/va_arg-5.c: Likewise.
        * gcc.target/aarch64/aapcs64/va_arg-16.c: New, check HFAs of
        __fp16 first get passed in FP/SIMD registers, then stacked.


Added:
    branches/gcc-6-branch/gcc/testsuite/gcc.target/aarch64/aapcs64/test_27.c
      - copied unchanged from r239173,
trunk/gcc/testsuite/gcc.target/aarch64/aapcs64/test_27.c
    branches/gcc-6-branch/gcc/testsuite/gcc.target/aarch64/aapcs64/va_arg-16.c
      - copied unchanged from r239173,
trunk/gcc/testsuite/gcc.target/aarch64/aapcs64/va_arg-16.c
Modified:
    branches/gcc-6-branch/   (props changed)
    branches/gcc-6-branch/gcc/ChangeLog
    branches/gcc-6-branch/gcc/config/aarch64/aarch64-builtins.c
    branches/gcc-6-branch/gcc/config/aarch64/aarch64.c
    branches/gcc-6-branch/gcc/config/aarch64/aarch64.h
    branches/gcc-6-branch/gcc/testsuite/ChangeLog
   
branches/gcc-6-branch/gcc/testsuite/gcc.target/aarch64/aapcs64/abitest-common.h
    branches/gcc-6-branch/gcc/testsuite/gcc.target/aarch64/aapcs64/abitest.S
    branches/gcc-6-branch/gcc/testsuite/gcc.target/aarch64/aapcs64/func-ret-1.c
    branches/gcc-6-branch/gcc/testsuite/gcc.target/aarch64/aapcs64/test_2.c
    branches/gcc-6-branch/gcc/testsuite/gcc.target/aarch64/aapcs64/type-def.h
    branches/gcc-6-branch/gcc/testsuite/gcc.target/aarch64/aapcs64/va_arg-1.c
    branches/gcc-6-branch/gcc/testsuite/gcc.target/aarch64/aapcs64/va_arg-2.c
    branches/gcc-6-branch/gcc/testsuite/gcc.target/aarch64/aapcs64/va_arg-4.c
    branches/gcc-6-branch/gcc/testsuite/gcc.target/aarch64/aapcs64/va_arg-5.c

Propchange: branches/gcc-6-branch/
            ('svn:mergeinfo' added)
>From gcc-bugs-return-534347-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 11:28:26 2016
Return-Path: <gcc-bugs-return-534347-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 4590 invoked by alias); 12 Aug 2016 11:28:25 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 4571 invoked by uid 89); 12 Aug 2016 11:28:24 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=objs, messes, versus, sk:indirec
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 11:28:14 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/73434] [6/7 Regression] Wrong code with casting, branches and aliasing
Date: Fri, 12 Aug 2016 11:28:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-73434-4-cIh12x63g0@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73434-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73434-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01683.txt.bz2
Content-length: 2647

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73434

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
So it happens because we forward &objs[idx] into the dereference in the SCCVN
representation which messes up base_alias_set when re-constructing an ao_ref
from that.  We get 3 vs. 4 here.  And then in indirect_ref_may_alias_decl_p
we have:

  /* When we are trying to disambiguate an access with a pointer dereference
     as base versus one with a decl as base we can use both the size
     of the decl and its dynamic type for extra disambiguation.
     ???  We do not know anything about the dynamic type of the decl
     other than that its alias-set contains base2_alias_set as a subset
     which does not help us here.  */
  /* As we know nothing useful about the dynamic type of the decl just
     use the usual conflict check rather than a subset test.
     ???  We could introduce -fvery-strict-aliasing when the language
     does not allow decls to have a dynamic type that differs from their
     static type.  Then we can check
     !alias_set_subset_of (base1_alias_set, base2_alias_set) instead.  */
  if (base1_alias_set != base2_alias_set
      && !alias_sets_conflict_p (base1_alias_set, base2_alias_set))
    return false;

thus this issue was likely introduced with vn_reference_maybe_forwprop_address
handling non-constant references.  On the GCC 5 branch we have

      addr_base = get_addr_base_and_unit_offset (TREE_OPERAND (addr, 0),
                                                 &addr_offset);
      if (!addr_base
          || TREE_CODE (addr_base) != MEM_REF)
        return;

      off += addr_offset;
      off += mem_ref_offset (addr_base);
      op->op0 = TREE_OPERAND (addr_base, 0);

so it preserves the original MEM_REF.  But now:

      /* If that didn't work because the address isn't invariant propagate
         the reference tree from the address operation in case the current
         dereference isn't offsetted.  */
      if (!addr_base
          && *i_p == ops->length () - 1
          && off == 0
          /* This makes us disable this transform for PRE where the
             reference ops might be also used for code insertion which
             is invalid.  */
          && default_vn_walk_kind == VN_WALKREWRITE)
        {
          auto_vec<vn_reference_op_s, 32> tem;
          copy_reference_ops_from_ref (TREE_OPERAND (addr, 0), &tem);
          ops->pop ();
          ops->pop ();
          ops->safe_splice (tem);
          --*i_p;
          return true;

so we replace it and lost alias info from the original MEM_REF.

I have a patch.
>From gcc-bugs-return-534348-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 11:30:19 2016
Return-Path: <gcc-bugs-return-534348-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 36137 invoked by alias); 12 Aug 2016 11:30:19 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 35946 invoked by uid 89); 12 Aug 2016 11:30:12 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=era, silence
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 11:29:57 +0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/74762] New: Uncaught Wuninitialized case
Date: Fri, 12 Aug 2016 11:30:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-74762-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01684.txt.bz2
Content-length: 1199

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74762

            Bug ID: 74762
           Summary: Uncaught Wuninitialized case
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: middle-end
          Assignee: unassigned at gcc dot gnu.org
          Reporter: marxin at gcc dot gnu.org
  Target Milestone: ---

$ cat tc2.c
struct tree2;
struct tree_vector2
{
  tree2 *elts[1];
};
struct tree2
{
  struct
  {
    tree_vector2 vector;
  } u;
};
int
const_with_all_bytes_same (tree2 *val)
{
  int i;
  const_with_all_bytes_same ((val->u.vector.elts[i]));

  return 1;
}

$ g++ tc2.c -Wuninitialized -c
(empty)

$ clang++ tc2.c -Wuninitialized -c
clang-3.8: warning: treating 'c' input as 'c++' when in C++ mode, this behavior
is deprecated
tc2.c:17:50: warning: variable 'i' is uninitialized when used here
[-Wuninitialized]
  const_with_all_bytes_same ((val->u.vector.elts[i]));
                                                 ^
tc2.c:16:8: note: initialize the variable 'i' to silence this warning
  int i;
       ^
        = 0
1 warning generated.

The test-case used to be catch in 4.6.x era.
>From gcc-bugs-return-534349-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 11:34:57 2016
Return-Path: <gcc-bugs-return-534349-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 54734 invoked by alias); 12 Aug 2016 11:34:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 54724 invoked by uid 89); 12 Aug 2016 11:34:55 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:300
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 11:34:45 +0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/74762] [5/6/7 Regression] Uncaught Wuninitialized case
Date: Fri, 12 Aug 2016 11:34:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-74762-4-pQA62LbM1c@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-74762-4@http.gcc.gnu.org/bugzilla/>
References: <bug-74762-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01685.txt.bz2
Content-length: 295

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74762

Martin Liška <marxin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |5.5
>From gcc-bugs-return-534350-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 11:38:00 2016
Return-Path: <gcc-bugs-return-534350-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 60559 invoked by alias); 12 Aug 2016 11:37:59 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 60549 invoked by uid 89); 12 Aug 2016 11:37:59 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=arranged, qualifiers
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 11:37:49 +0000
From: "aoliva at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug debug/56974] c++ ref qualifiers not represented in DWARF
Date: Fri, 12 Aug 2016 11:37:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: debug
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: aoliva at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: aoliva at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cc assigned_to attachments.created
Message-ID: <bug-56974-4-Kw7SHASJK1@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-56974-4@http.gcc.gnu.org/bugzilla/>
References: <bug-56974-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01686.txt.bz2
Content-length: 1005

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=56974

Alexandre Oliva <aoliva at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED
                 CC|                            |aoliva at gcc dot gnu.org
           Assignee|unassigned at gcc dot gnu.org      |aoliva at gcc dot gnu.org

--- Comment #9 from Alexandre Oliva <aoliva at gcc dot gnu.org> ---
Created attachment 39274
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39274&action=edit
Patch I'm testing

Mine.  I'm testing a patch that implements DW_AT_reference and
DW_AT_rvalue_reference in declarations and in subroutine types, modifying
pointer to member types to be output in a DWARF-2-compliant way (a
DW_TAG_ptr_to_member_type, rather than as a record type).  While at that, I've
arranged for us to output DW_AT_use_location for pointers to data members.
>From gcc-bugs-return-534351-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 11:41:37 2016
Return-Path: <gcc-bugs-return-534351-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 83993 invoked by alias); 12 Aug 2016 11:41:37 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 83956 invoked by uid 89); 12 Aug 2016 11:41:36 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 11:41:26 +0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/74265] address sanitizer detects stack-buffer-overflow in set_nonincremental_init_from_string in c-typeck.c
Date: Fri, 12 Aug 2016 11:41:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: DUPLICATE
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-74265-4-LepjYTl8yl@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-74265-4@http.gcc.gnu.org/bugzilla/>
References: <bug-74265-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01687.txt.bz2
Content-length: 497

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74265

Martin Liška <marxin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |DUPLICATE

--- Comment #4 from Martin Liška <marxin at gcc dot gnu.org> ---
Dup.

*** This bug has been marked as a duplicate of bug 67410 ***
>From gcc-bugs-return-534352-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 11:42:10 2016
Return-Path: <gcc-bugs-return-534352-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 85090 invoked by alias); 12 Aug 2016 11:42:10 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 85075 invoked by uid 89); 12 Aug 2016 11:42:09 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 11:41:59 +0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/67410] c/c-typeck.c references out of bounds array
Date: Fri, 12 Aug 2016 11:42:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 5.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-67410-4-5XStepl53l@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67410-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67410-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01688.txt.bz2
Content-length: 186

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67410

--- Comment #2 from Martin Liška <marxin at gcc dot gnu.org> ---
*** Bug 74265 has been marked as a duplicate of this bug. ***
>From gcc-bugs-return-534353-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 11:55:21 2016
Return-Path: <gcc-bugs-return-534353-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 105927 invoked by alias); 12 Aug 2016 11:55:21 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 105911 invoked by uid 89); 12 Aug 2016 11:55:20 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 11:55:10 +0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/58306] Broken profiling for unrar sources: error: corrupted value profile: value profile counter (X out of Y) inconsistent with basic-block count
Date: Fri, 12 Aug 2016 11:55:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: attachments.created
Message-ID: <bug-58306-4-Yt27BhvBFX@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-58306-4@http.gcc.gnu.org/bugzilla/>
References: <bug-58306-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01689.txt.bz2
Content-length: 673

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58306

--- Comment #33 from Martin Liška <marxin at gcc dot gnu.org> ---
Created attachment 39275
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39275&action=edit
Patch candidate for the fallout

Hi Andread.

Can you please test me the following patch. I understand why the symbol is
undefined, but what I don't understand why is atomic update mode selected for
the test-case. Following patch should detect whether a target is capable of
atomic update operations, however libgcov.a would still contain
__atomic_fetch_add_8, which should be fine as soon as nobody is calling
functions that contain the symbol?
>From gcc-bugs-return-534354-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 11:56:17 2016
Return-Path: <gcc-bugs-return-534354-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 107196 invoked by alias); 12 Aug 2016 11:56:16 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 107185 invoked by uid 89); 12 Aug 2016 11:56:15 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:840
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 11:56:05 +0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/58306] Broken profiling for unrar sources: error: corrupted value profile: value profile counter (X out of Y) inconsistent with basic-block count
Date: Fri, 12 Aug 2016 11:56:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-58306-4-PBtfPCJxyX@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-58306-4@http.gcc.gnu.org/bugzilla/>
References: <bug-58306-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01690.txt.bz2
Content-length: 694

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58306

--- Comment #34 from Martin Liška <marxin at gcc dot gnu.org> ---
(In reply to Martin Liška from comment #33)
> Created attachment 39275 [details]
> Patch candidate for the fallout
> 
> Hi Andread.

*Andreas

> 
> Can you please test me the following patch. I understand why the symbol is
> undefined, but what I don't understand why is atomic update mode selected
> for the test-case. Following patch should detect whether a target is capable
> of atomic update operations, however libgcov.a would still contain
> __atomic_fetch_add_8, which should be fine as soon as nobody is calling
> functions that contain the symbol?
>From gcc-bugs-return-534355-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 12:13:35 2016
Return-Path: <gcc-bugs-return-534355-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 30674 invoked by alias); 12 Aug 2016 12:13:35 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 28849 invoked by uid 89); 12 Aug 2016 12:13:34 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 12:13:24 +0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/35590] Value profiling: string op -- requires power of 2 value??
Date: Fri, 12 Aug 2016 12:13:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 4.4.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-35590-4-y51LyRhrHp@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-35590-4@http.gcc.gnu.org/bugzilla/>
References: <bug-35590-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01691.txt.bz2
Content-length: 503

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=35590

--- Comment #3 from Martin Liška <marxin at gcc dot gnu.org> ---
Author: marxin
Date: Fri Aug 12 12:12:51 2016
New Revision: 239412

URL: https://gcc.gnu.org/viewcvs?rev=239412&root=gcc&view=rev
Log:
Add test coverage for PR gcov-profile/35590

        PR gcov-profile/35590
        * gcc.dg/tree-prof/val-prof-7.c: Improve test coverage.

Modified:
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/testsuite/gcc.dg/tree-prof/val-prof-7.c
>From gcc-bugs-return-534357-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 12:14:16 2016
Return-Path: <gcc-bugs-return-534357-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 92889 invoked by alias); 12 Aug 2016 12:14:16 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 92871 invoked by uid 89); 12 Aug 2016 12:14:16 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 12:14:07 +0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/35590] Value profiling: string op -- requires power of 2 value??
Date: Fri, 12 Aug 2016 12:14:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 4.4.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-35590-4-H1OxJ704wb@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-35590-4@http.gcc.gnu.org/bugzilla/>
References: <bug-35590-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01693.txt.bz2
Content-length: 471

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=35590

Martin Liška <marxin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--- Comment #4 from Martin Liška <marxin at gcc dot gnu.org> ---
Works fine, I've just updated test-coverage.
>From gcc-bugs-return-534356-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 12:14:07 2016
Return-Path: <gcc-bugs-return-534356-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 92196 invoked by alias); 12 Aug 2016 12:14:07 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 92176 invoked by uid 89); 12 Aug 2016 12:14:06 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Works
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 12:14:05 +0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/35590] Value profiling: string op -- requires power of 2 value??
Date: Fri, 12 Aug 2016 12:14:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 4.4.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-35590-4-ga50cmIAat@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-35590-4@http.gcc.gnu.org/bugzilla/>
References: <bug-35590-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01692.txt.bz2
Content-length: 921

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=35590

Martin Liška <marxin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--- Comment #3 from Martin Liška <marxin at gcc dot gnu.org> ---
Author: marxin
Date: Fri Aug 12 12:12:51 2016
New Revision: 239412

URL: https://gcc.gnu.org/viewcvs?rev=239412&root=gcc&view=rev
Log:
Add test coverage for PR gcov-profile/35590

        PR gcov-profile/35590
        * gcc.dg/tree-prof/val-prof-7.c: Improve test coverage.

Modified:
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/testsuite/gcc.dg/tree-prof/val-prof-7.c

--- Comment #4 from Martin Liška <marxin at gcc dot gnu.org> ---
Works fine, I've just updated test-coverage.
>From gcc-bugs-return-534358-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 12:23:36 2016
Return-Path: <gcc-bugs-return-534358-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 123046 invoked by alias); 12 Aug 2016 12:23:35 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 123029 invoked by uid 89); 12 Aug 2016 12:23:35 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=array_ref, ARRAY_REF, suppresses
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 12:23:22 +0000
From: "ppalka at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/74762] [5/6/7 Regression] Uncaught Wuninitialized case
Date: Fri, 12 Aug 2016 12:23:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ppalka at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-74762-4-985IUFKZ5V@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-74762-4@http.gcc.gnu.org/bugzilla/>
References: <bug-74762-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01694.txt.bz2
Content-length: 566

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74762

Patrick Palka <ppalka at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ppalka at gcc dot gnu.org

--- Comment #1 from Patrick Palka <ppalka at gcc dot gnu.org> ---
Looks like warn_uninit() suppresses the warning on 'i' because the
TREE_NO_WARNING flag is set on the ARRAY_REF by the C++ FE (in
finish_parenthesized_expr(), for an unrelated purpose).
>From gcc-bugs-return-534359-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 12:25:18 2016
Return-Path: <gcc-bugs-return-534359-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 125955 invoked by alias); 12 Aug 2016 12:25:18 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 125946 invoked by uid 89); 12 Aug 2016 12:25:17 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:419
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 12:25:07 +0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/67097] gcov-tool merge (can) crash when dir2 contains files not in dir1
Date: Fri, 12 Aug 2016 12:25:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 5.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-67097-4-zSE5jCOQ5y@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67097-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67097-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01695.txt.bz2
Content-length: 442

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67097

Martin Liška <marxin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--- Comment #9 from Martin Liška <marxin at gcc dot gnu.org> ---
Fixed on trunk.
>From gcc-bugs-return-534360-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 12:31:50 2016
Return-Path: <gcc-bugs-return-534360-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 9465 invoked by alias); 12 Aug 2016 12:31:49 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 9451 invoked by uid 89); 12 Aug 2016 12:31:49 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=UBSAN, 71512, 39276
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 12:31:39 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/71512] ICE: verify_gimple failed with UBSAN
Date: Fri, 12 Aug 2016 12:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status assigned_to attachments.created
Message-ID: <bug-71512-4-MKZO7SpvXx@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71512-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71512-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01696.txt.bz2
Content-length: 578

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71512

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED
           Assignee|unassigned at gcc dot gnu.org      |jakub at gcc dot gnu.org

--- Comment #4 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Created attachment 39276
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39276&action=edit
gcc7-pr71512.patch

Untested fix.
>From gcc-bugs-return-534361-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 12:38:21 2016
Return-Path: <gcc-bugs-return-534361-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 53660 invoked by alias); 12 Aug 2016 12:38:21 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 53651 invoked by uid 89); 12 Aug 2016 12:38:20 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 12:38:10 +0000
From: "manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/74762] [5/6/7 Regression] Uncaught Wuninitialized case
Date: Fri, 12 Aug 2016 12:38:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: manu at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc component everconfirmed
Message-ID: <bug-74762-4-Xjum0fHjDT@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-74762-4@http.gcc.gnu.org/bugzilla/>
References: <bug-74762-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01697.txt.bz2
Content-length: 1017

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74762

Manuel López-Ibáñez <manu at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-12
                 CC|                            |manu at gcc dot gnu.org
          Component|middle-end                  |c++
     Ever confirmed|0                           |1

--- Comment #2 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
A simpler testcase without infinite recursion:

struct tree2;
struct tree_vector2
{
  tree2 *elts[1];
};
struct tree2
{
  struct
  {
    tree_vector2 vector;
  } u;
};
tree2 *
const_with_all_bytes_same (tree2 *val)
{
  int i;
  return ((val->u.vector.elts[i]));
}

And I would say this is a C++ problem, but unfortunately, it is a problem
throughout GCC of abusing TREE_NO_WARNING.
>From gcc-bugs-return-534362-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 12:41:00 2016
Return-Path: <gcc-bugs-return-534362-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 68093 invoked by alias); 12 Aug 2016 12:40:59 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 68080 invoked by uid 89); 12 Aug 2016 12:40:58 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 12:40:48 +0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/65831] gcov does not output 0% coverage files
Date: Fri, 12 Aug 2016 12:40:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 4.8.2
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-65831-4-vHA5ikeKrV@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-65831-4@http.gcc.gnu.org/bugzilla/>
References: <bug-65831-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01698.txt.bz2
Content-length: 442

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65831

Martin Liška <marxin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--- Comment #2 from Martin Liška <marxin at gcc dot gnu.org> ---
Fixed on trunk.
>From gcc-bugs-return-534363-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 12:42:06 2016
Return-Path: <gcc-bugs-return-534363-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 69777 invoked by alias); 12 Aug 2016 12:42:06 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 69760 invoked by uid 89); 12 Aug 2016 12:42:05 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy«use
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 12:41:55 +0000
From: "manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/74765] New: missing uninitialized warning (parenthesis, TREE_NO_WARNING abuse)
Date: Fri, 12 Aug 2016 12:42:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: manu at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-74765-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01699.txt.bz2
Content-length: 738

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74765

            Bug ID: 74765
           Summary: missing uninitialized warning (parenthesis,
                    TREE_NO_WARNING abuse)
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: manu at gcc dot gnu.org
  Target Milestone: ---

int foo(int x, int y)
{
    int i;
    if ((i ==0)) return x;
    return y;
}

int foo2(int x, int y)
{
    int i;
    if (i ==0) return x;
    return y;
}

The extra parenthesis hide the -Wuninitialized warnings for foo(). Related to
PR25733. Different from PR74762.
>From gcc-bugs-return-534364-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 12:51:43 2016
Return-Path: <gcc-bugs-return-534364-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 101315 invoked by alias); 12 Aug 2016 12:51:42 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 101281 invoked by uid 89); 12 Aug 2016 12:51:41 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:722, 2016812, 2016-8-12
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 12:51:31 +0000
From: "manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/25814] Request for warning for parser ambiguity of function declarations and variable declarations with initializations
Date: Fri, 12 Aug 2016 12:51:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 4.0.2
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: manu at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P5
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cf_reconfirmed_on cc
Message-ID: <bug-25814-4-hH86EFf0dW@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-25814-4@http.gcc.gnu.org/bugzilla/>
References: <bug-25814-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01700.txt.bz2
Content-length: 733

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=25814

Manuel López-Ibáñez <manu at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Last reconfirmed|2006-03-08 05:07:27         |2016-8-12
                 CC|                            |manu at gcc dot gnu.org

--- Comment #7 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
Clang gives:

prog.cc:19:6: warning: parentheses were disambiguated as a function declaration
[-Wvexing-parse]
  X x(Y());
     ^~~~~
prog.cc:19:7: note: add a pair of parentheses to declare a variable
  X x(Y());
      ^
      (  )
1 warning generated.
>From gcc-bugs-return-534365-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 12:56:59 2016
Return-Path: <gcc-bugs-return-534365-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 18643 invoked by alias); 12 Aug 2016 12:56:58 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 18623 invoked by uid 89); 12 Aug 2016 12:56:57 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=hash_map
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 12:56:47 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/74765] missing uninitialized warning (parenthesis, TREE_NO_WARNING abuse)
Date: Fri, 12 Aug 2016 12:56:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-74765-4-gE0lv5T7Wy@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-74765-4@http.gcc.gnu.org/bugzilla/>
References: <bug-74765-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01701.txt.bz2
Content-length: 466

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74765

--- Comment #1 from Richard Biener <rguenth at gcc dot gnu.org> ---
I wonder if we can somehow "annotate" locations with NO_WARNING
(warning-option)
instead of relying on bits on tree nodes / stmts.  Maybe even as simple as a
global hash_map <location, diag-desc> that could also be used to tack warnings
to locations and emit those only if the location remains in the IL stream
after dead code elimination...
>From gcc-bugs-return-534366-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 12:58:47 2016
Return-Path: <gcc-bugs-return-534366-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 21274 invoked by alias); 12 Aug 2016 12:58:46 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 21241 invoked by uid 89); 12 Aug 2016 12:58:46 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyW326
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 12:58:35 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/57326] Piecewise folding of operations on PHI nodes
Date: Fri, 12 Aug 2016 12:58:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution target_milestone
Message-ID: <bug-57326-4-vOK7Qhswsb@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-57326-4@http.gcc.gnu.org/bugzilla/>
References: <bug-57326-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01702.txt.bz2
Content-length: 482

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57326

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED
   Target Milestone|---                         |7.0

--- Comment #2 from Richard Biener <rguenth at gcc dot gnu.org> ---
Fixed.
>From gcc-bugs-return-534367-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 12:59:06 2016
Return-Path: <gcc-bugs-return-534367-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 22106 invoked by alias); 12 Aug 2016 12:59:05 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 22090 invoked by uid 89); 12 Aug 2016 12:59:05 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-0.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50 autolearn=ham version=3.3.2 spammy=UD:ssa-pre-32.c, ssapre32c, treessaprec, sk:fully_c
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 12:58:49 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/57326] Piecewise folding of operations on PHI nodes
Date: Fri, 12 Aug 2016 12:59:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution target_milestone
Message-ID: <bug-57326-4-FBhmejCGAj@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-57326-4@http.gcc.gnu.org/bugzilla/>
References: <bug-57326-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01703.txt.bz2
Content-length: 2010

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57326

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED
   Target Milestone|---                         |7.0

--- Comment #2 from Richard Biener <rguenth at gcc dot gnu.org> ---
Fixed.

--- Comment #3 from Richard Biener <rguenth at gcc dot gnu.org> ---
Author: rguenth
Date: Fri Aug 12 12:58:15 2016
New Revision: 239414

URL: https://gcc.gnu.org/viewcvs?rev=239414&root=gcc&view=rev
Log:
2016-08-12  Richard Biener  <rguenther@suse.de>

        PR tree-optimization/57326
        * tree-ssa-pre.c (fully_constant_expression): Handle simplification
        returning an SSA name.
        (phi_translate_1): When fully_constant_expression returns a NAME
        make sure we have a leader for it.

        * gcc.dg/tree-ssa/ssa-pre-32.c: New testcase.
        * gcc.dg/tree-ssa/loadpre14.c: Adjust.
        * gcc.dg/tree-ssa/pr35287.c: Likewise.
        * gcc.target/i386/pr45685.c: Likewise.
        * gcc.dg/tree-ssa/predcom-1.c: Disable PRE.
        * gcc.dg/tree-ssa/predcom-2.c: Likewise.
        * gcc.dg/tree-ssa/predcom-3.c: Likewise.
        * gcc.dg/tree-ssa/ssa-sink-10.c: Likewise.
        * gfortran.dg/pr34163.f90: Likewise.

Added:
    trunk/gcc/testsuite/gcc.dg/tree-ssa/ssa-pre-32.c
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/testsuite/gcc.dg/tree-ssa/loadpre14.c
    trunk/gcc/testsuite/gcc.dg/tree-ssa/pr35287.c
    trunk/gcc/testsuite/gcc.dg/tree-ssa/predcom-1.c
    trunk/gcc/testsuite/gcc.dg/tree-ssa/predcom-2.c
    trunk/gcc/testsuite/gcc.dg/tree-ssa/predcom-3.c
    trunk/gcc/testsuite/gcc.dg/tree-ssa/ssa-sink-10.c
    trunk/gcc/testsuite/gcc.target/i386/pr45685.c
    trunk/gcc/testsuite/gfortran.dg/pr34163.f90
    trunk/gcc/tree-ssa-pre.c
>From gcc-bugs-return-534368-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 13:07:59 2016
Return-Path: <gcc-bugs-return-534368-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 64143 invoked by alias); 12 Aug 2016 13:07:59 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 64041 invoked by uid 89); 12 Aug 2016 13:07:58 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 13:07:49 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/67410] [5/6/7 Regression] c/c-typeck.c references out of bounds array
Date: Fri, 12 Aug 2016 13:07:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 5.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc assigned_to target_milestone short_desc
Message-ID: <bug-67410-4-xXgNVfxV6y@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67410-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67410-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01704.txt.bz2
Content-length: 742

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67410

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jakub at gcc dot gnu.org
           Assignee|marxin at gcc dot gnu.org          |jakub at gcc dot gnu.org
   Target Milestone|---                         |5.5
            Summary|c/c-typeck.c references out |[5/6/7 Regression]
                   |of bounds array             |c/c-typeck.c references out
                   |                            |of bounds array

--- Comment #3 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Broken by r210113.
>From gcc-bugs-return-534369-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 13:08:41 2016
Return-Path: <gcc-bugs-return-534369-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 65974 invoked by alias); 12 Aug 2016 13:08:41 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 65962 invoked by uid 89); 12 Aug 2016 13:08:40 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy9277
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 13:08:31 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/67410] [5/6/7 Regression] c/c-typeck.c references out of bounds array
Date: Fri, 12 Aug 2016 13:08:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 5.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc assigned_to target_milestone short_desc attachments.created
Message-ID: <bug-67410-4-IyCE2U1rUb@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67410-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67410-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01705.txt.bz2
Content-length: 942

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67410

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jakub at gcc dot gnu.org
           Assignee|marxin at gcc dot gnu.org          |jakub at gcc dot gnu.org
   Target Milestone|---                         |5.5
            Summary|c/c-typeck.c references out |[5/6/7 Regression]
                   |of bounds array             |c/c-typeck.c references out
                   |                            |of bounds array

--- Comment #3 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Broken by r210113.

--- Comment #4 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Created attachment 39277
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39277&action=edit
gcc7-pr67410.patch

Untested fix.
>From gcc-bugs-return-534370-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 13:26:57 2016
Return-Path: <gcc-bugs-return-534370-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 94407 invoked by alias); 12 Aug 2016 13:26:57 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 94381 invoked by uid 89); 12 Aug 2016 13:26:56 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 13:26:49 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/74765] missing uninitialized warning (parenthesis, TREE_NO_WARNING abuse)
Date: Fri, 12 Aug 2016 13:26:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-74765-4-ftc80H0MDa@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-74765-4@http.gcc.gnu.org/bugzilla/>
References: <bug-74765-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01706.txt.bz2
Content-length: 578

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74765

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jakub at gcc dot gnu.org

--- Comment #2 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
I had plans to turn TREE_NO_WARNING/gimple_no_warning_p into on the side
hashmap which would map trees or gimple stmts to bitmaps of OPT_W* flags that
should be disabled, maybe that would help here.
>From gcc-bugs-return-534371-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 13:38:11 2016
Return-Path: <gcc-bugs-return-534371-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 108443 invoked by alias); 12 Aug 2016 13:38:11 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 108434 invoked by uid 89); 12 Aug 2016 13:38:10 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 13:38:00 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/74762] [5/6/7 Regression] missing uninitialized warning (C++, parenthesized expr, TREE_NO_WARNING)
Date: Fri, 12 Aug 2016 13:38:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-74762-4-ykiymDHHPR@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-74762-4@http.gcc.gnu.org/bugzilla/>
References: <bug-74762-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01707.txt.bz2
Content-length: 447

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74762

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jakub at gcc dot gnu.org

--- Comment #3 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Started most likely with r177667, r177670 doesn't warn, r177661 does.
>From gcc-bugs-return-534372-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 13:39:23 2016
Return-Path: <gcc-bugs-return-534372-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 111083 invoked by alias); 12 Aug 2016 13:39:23 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 111047 invoked by uid 89); 12 Aug 2016 13:39:22 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 13:39:12 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/74762] [5/6/7 Regression] missing uninitialized warning (C++, parenthesized expr, TREE_NO_WARNING)
Date: Fri, 12 Aug 2016 13:39:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-74762-4-Zf5wK7TXHK@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-74762-4@http.gcc.gnu.org/bugzilla/>
References: <bug-74762-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01708.txt.bz2
Content-length: 189

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74762

--- Comment #4 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Started most likely with r177667, r177670 doesn't warn, r177661 does.
>From gcc-bugs-return-534373-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 13:44:50 2016
Return-Path: <gcc-bugs-return-534373-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 118256 invoked by alias); 12 Aug 2016 13:44:49 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 118232 invoked by uid 89); 12 Aug 2016 13:44:48 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 13:44:38 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/71972] [6 Regression] ICE with "-std=c++14" on x86_64-linux-gnu (internal compiler error: Segmentation fault, cxx_eval_store_expression)
Date: Fri, 12 Aug 2016 13:44:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: jason at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-71972-4-qTbbFouA2k@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71972-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71972-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01709.txt.bz2
Content-length: 428

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71972

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jakub at gcc dot gnu.org

--- Comment #4 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Is this backportable for 6.2 (or better 6.3 only)?
>From gcc-bugs-return-534374-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 13:45:01 2016
Return-Path: <gcc-bugs-return-534374-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 119852 invoked by alias); 12 Aug 2016 13:45:00 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 119813 invoked by uid 89); 12 Aug 2016 13:44:59 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Scan
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 13:44:49 +0000
From: "uros at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug testsuite/71008] [7 Regression] FAIL: gcc.target/i386/avx512f-vprord-1.c scan-assembler-times vprord
Date: Fri, 12 Aug 2016 13:45:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: testsuite
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: uros at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: ubizjak at gmail dot com
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71008-4-pIiX9eQKJs@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71008-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71008-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01710.txt.bz2
Content-length: 826

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71008

--- Comment #5 from uros at gcc dot gnu.org ---
Author: uros
Date: Fri Aug 12 13:44:13 2016
New Revision: 239415

URL: https://gcc.gnu.org/viewcvs?rev=239415&root=gcc&view=rev
Log:
        PR testsuite/71008
        * gcc.target/i386/avx512f-vprord-1.c: Scan also for vprold.
        * gcc.target/i386/avx512f-vprorq-1.c: Scan also for vprolq.
        * gcc.target/i386/avx512vl-vprord-1.c: Scan also for vprold.
        * gcc.target/i386/avx512vl-vprorq-1.c: Scan also for vprolq.


Modified:
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/testsuite/gcc.target/i386/avx512f-vprord-1.c
    trunk/gcc/testsuite/gcc.target/i386/avx512f-vprorq-1.c
    trunk/gcc/testsuite/gcc.target/i386/avx512vl-vprord-1.c
    trunk/gcc/testsuite/gcc.target/i386/avx512vl-vprorq-1.c
>From gcc-bugs-return-534375-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 13:47:31 2016
Return-Path: <gcc-bugs-return-534375-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 125047 invoked by alias); 12 Aug 2016 13:47:31 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 125037 invoked by uid 89); 12 Aug 2016 13:47:30 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:1294
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 13:47:20 +0000
From: "wschmidt at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/74585] SRA forces parameters to memory causing awful code generation
Date: Fri, 12 Aug 2016 13:47:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wschmidt at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-74585-4-xMTbBjoLhD@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-74585-4@http.gcc.gnu.org/bugzilla/>
References: <bug-74585-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01711.txt.bz2
Content-length: 1244

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74585

--- Comment #5 from Bill Schmidt <wschmidt at gcc dot gnu.org> ---
(In reply to Richard Biener from comment #1)
> The issue is not SRA pushing things to memory - it doesn't.  The issue is
> that in the GIMPLE IL the parameter appears as "memory" as it is an
> aggregate type.
> 
> The issue is really RTL expansion of the argument (not sure where that's
> done)
> which doesn't take into account that we could happily expand
> 
>   a$vx0_27 = MEM[(struct  *)&a];
>   a$vx1_28 = MEM[(struct  *)&a + 16B];
>   a$vx2_29 = MEM[(struct  *)&a + 32B];
>   a$vx3_30 = MEM[(struct  *)&a + 48B];
> 
> if a is expanded to registers.
> 

OK, I'll investigate further.  But the assumption that an aggregate parameter
is "memory" seems wrong to me.  SRA is explicitly taking the address of a
parameter which has not previously had its address taken, so it seems to me
that if it's passed in registers this in itself will force it to memory on
procedure entry, despite whatever else is currently going on with
-fno-tree-sra.  But this is all talk, I need to do some digging to see what the
issues are.  To me the SRA transformation seemed "obviously" :) wrong, so I
stopped looking...
>From gcc-bugs-return-534376-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 14:07:12 2016
Return-Path: <gcc-bugs-return-534376-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 46655 invoked by alias); 12 Aug 2016 14:07:12 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 46631 invoked by uid 89); 12 Aug 2016 14:07:11 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 14:07:01 +0000
From: "ubizjak at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug testsuite/71008] [7 Regression] FAIL: gcc.target/i386/avx512f-vprord-1.c scan-assembler-times vprord
Date: Fri, 12 Aug 2016 14:07:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: testsuite
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ubizjak at gmail dot com
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: ubizjak at gmail dot com
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cf_gcctarget bug_status resolution
Message-ID: <bug-71008-4-5cgtdQjGFS@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71008-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71008-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01712.txt.bz2
Content-length: 482

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71008

Uroš Bizjak <ubizjak at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Target|                            |x86
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #6 from Uroš Bizjak <ubizjak at gmail dot com> ---
Fixed.
>From gcc-bugs-return-534377-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 14:35:12 2016
Return-Path: <gcc-bugs-return-534377-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 73037 invoked by alias); 12 Aug 2016 14:35:12 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 73021 invoked by uid 89); 12 Aug 2016 14:35:11 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: =?ISO-8859-1?Q?Yes, score=9.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,LIKELY_SPAM_BODY,TECH_SUPPORT_PHONE2 autolearn=no version=3.3.2 spammy=8:¸â, W, CANADA, Care?X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 14:35:01 +0000
From: "jightaaa at mail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/74775] New: Quickbooks POS SUPPORT PHONE number ((((1.800 919 0992 Quickbooks PREMIER tech support number
Date: Fri, 12 Aug 2016 14:35:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jightaaa at mail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-74775-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01713.txt.bz2
Content-length: 11980

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74775

            Bug ID: 74775
           Summary: Quickbooks POS SUPPORT PHONE number ((((1.800 919 0992
                    Quickbooks PREMIER tech support number
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ada
          Assignee: unassigned at gcc dot gnu.org
          Reporter: jightaaa at mail dot com
  Target Milestone: ---

Created attachment 39282
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39282&action=edit
1-800-919-0992 ⫸⫸ Quickbooks support phone number CANADA⫸⫸CANADA QPML +¦$÷
1800-919-0992 quickbooks support phone number, quickbooks support contact
number, quickbooks nical support contact number, qu

$$$ѬѬѬ{{@) 1-800-919-0992 ) Quickbooks Tech Support Phone USA,ѬѬѬ Quickbooks
Help Desk Phone number USA, Quickbooks enterprise pro tech support USA,ѬѬѬ
Quickbooks technical support phone numberѬѬѬ #$W@#%@$
QuickBooks support !!1 800!!919!!0992 QuickBooks @#%ѬѬ>support phone number
QuickBooks phone number QuickBooks
3 ~@#%ѬѬ> Usa@ +1- 800- 919 - 0992 ...((( Quickbooks technical support phone
number...
4 ~@#%ѬѬ> Usa@ +1- 800- 919 - 0992 ...((( Quickbooks technical support phone
number...
5 ~@#%ѬѬ> Usa@ +1- 800- 919 - 0992 ...((( Quickbooks tech support number...
6 ~@#%ѬѬ> Usa@ +1- 800- 919 - 0992 ...((( Quickbooks tech support number...
7 ~@#%ѬѬ> Usa@ +1- 800- 919 - 0992 ...((( Quickbooks technical support phone
number...
8 ~@#%ѬѬ> Usa@ +1- 800- 919 - 0992 ...((( Quickbooks technical support phone
number...
~@#%ѬѬ> Usa@ +1- 800- 919 - 0992 ...((( Quickbooks tech support number...
~@#%ѬѬ> Usa@ +1- 800- 919 - 0992 ...((( Quickbooks tech support number...
==~@#%ѬѬ> Usa@ +1- 800- 919 - 0992 ...((( Quickbooks technical support phone
number...
~@#%ѬѬ> Usa@ +1- 800- 919 - 0992 ...((( Quickbooks technical support phone
number...
~@#%ѬѬ> Usa@ +1- 800- 919 - 0992 ...((( Quickbooks technical support phone
number...
@#%ѬѬ>@@!!1 800!!919!!0992 QuickBooks support phone number QuickBooks phone
number QuickBooks @#%ѬѬ>@@!!1 800!!919!!0992 QuickBooks support phone number
QuickBooks phone number QuickBooks @#%ѬѬ>@@!!1 800!!919!!0992 QuickBooks
support phone number QuickBooks phone number QuickBooks @#%ѬѬ>@@!!1
800!!919!!0992 QuickBooks support phone number. @@Call, 1-800-919-0992 for all
type @#%ѬѬ> by Quickbooks support telephone number,Quickbooks support phone
number,Quickbooks support phone number,Quickbooks @#%ѬѬ> phone number,
Quickbooks technical support number.Quickbooks support number, Quickbooks phone
number, Quickbooks tech support number, Quickbooks customer ... QuickBooks
phone number QuickBooks @#%ѬѬ>@@!!1 800!!919!!0992 QuickBooks support phone
number QuickBooks phone number QuickBooks @#%ѬѬ>@@!!1 800!!919!!0992 QuickBooks
support phone number QuickBooks phone number QuickBooks @#%ѬѬ>@@!!1
800!!919!!0992 QuickBooks support phone number QuickBooks phone number
QuickBooks @#%ѬѬ>@@!!1 800!!919!!0992 QuickBooks support phone number
QuickBooks phone number QuickBooks @#%ѬѬ>@@!!1 800!!919!!0992 QuickBooks
support phone number QuickBooks phone number @#%ѬѬ>@@!!1 800!!919!!0992
QuickBooks support phone number QuickBooks phone number QuickBooks @#%ѬѬ>@@!!1
800!!919!!0992 QuickBooks support phone number QuickBooks phone number
QuickBooks @#%ѬѬ>@@!!1 800!!919!!0992 QuickBooks support phone number
QuickBooks phone number Quickbooks Phone Number)))) 1-800-919-0992
((((Quickbooks Tech Support phone number @@Call, 1-800-919-0992 for all type
@#%ѬѬ> by Quickbooks tech support phone number, 1800-919-0992 Intuit Quickbooks
Tech Support Phone Number, 1800-919-0992 Quickbooks @#%ѬѬ> Desk Phone Number,
1800-919-0992 Quickbooks tech support number, Quickbooks technical support
phone number,@@ 1800-919-0992 @ Quickbooks phone number, 1800-919-0992
Quickbooks technical support number, 1800-919-0992 Quickbooks support phone
number, 1800-919-0992 Quickbooks technical support, Quickbooks Customer Service
Phone Number, Quickbooks Customer Service Number, @@Call, 1-800-919-0992 for
all type @#%ѬѬ> by Quickbooks support telephone number,Quickbooks support phone
number,Quickbooks support phone number,Quickbooks @#%ѬѬ> phone number,
Quickbooks technical support number.Quickbooks support number, Quickbooks phone
number, Quickbooks tech support number, Quickbooks customer ... Quickbooks
Customer Support Phone Number, Quickbooks Customer Support Number,@@@@
Quickbooks Customer Service @#%ѬѬ>line Number, Quickbooks Customer Care Number,
Quickbooks support team phone number, @@@@@ Quickbooks @#%ѬѬ> number-Quickbooks
@#%ѬѬ>line Number; Quickbooks @#%ѬѬ> phone number-Quickbooks @#%ѬѬ>line Number,
Quickbooks Tech Support Toll free Number, Quickbooks Support Telephone Number,
Quickbooks Tech Support Telephone number, Quickbooks Tech Support contact
number, Quickbooks support contact number, Quickbooks technical support contact
number. Call, Quickbooks tech support phone number, Intuit Quickbooks Tech
Support Phone Number, Quickbooks @#%ѬѬ> Desk Phone Number, Quickbooks tech
support number, Quickbooks technical support phone number, Quickbooks phone
number, Quickbooks technical support number, Quickbooks support phone number.
It is very popular toll free number which vide by Quickbooks technical support,
Quickbooks Customer Service Phone Number, Quickbooks Customer Service Number,
Quickbooks Customer Support Phone Number, Quickbooks Customer Support Number,
Quickbooks Customer Service @#%ѬѬ>line Number, Quickbooks Customer Care Number,
Quickbooks support team phone number. Call, Quickbooks tech support phone
number, Intuit Quickbooks Tech Support Phone Number, Quickbooks @#%ѬѬ> Desk
Phone Number, Quickbooks tech support number, Quickbooks technical support
phone number, Quickbooks phone number, Quickbooks technical support number,
Quickbooks support phone number, Quickbooks technical support, Quickbooks
Customer Service Phone Number, Quickbooks Customer Service Number, Quickbooks
Customer Support Phone Number, Quickbooks Customer Support Number, Quickbooks
Customer Service @#%ѬѬ>line Number, Quickbooks Customer Care Number, Quickbooks
support team phone number, Quickbooks @#%ѬѬ> number-Quickbooks @#%ѬѬ>line
Number; Quickbooks @#%ѬѬ> phone number, Quickbooks @#%ѬѬ>line Number,
Quickbooks Tech Support Toll free Number, Quickbooks Support Telephone Number,
Quickbooks Tech Support Telephone number, Quickbooks Tech Support contact
number, Quickbooks support contact number, Quickbooks technical support contact
number, Quickbooks support phone number, Quickbooks payroll support phone
number. Quickbooks payroll customer support phone number Quickbooks Support
@#%ѬѬ>line Number, Quickbooks contact number Quickbooks tech support phone
number Quickbooks support team phone number Quickbooks contact number
1800-919-0992 Quickbooks technical @#%ѬѬ> telephone number, Quickbooks
technical @#%ѬѬ> contact number, Quickbooks technical support contact number,
Quickbooks contact number, Quickbooks contact phone number, Quickbooks contact
telephone number, Quickbooks 24 hour contact number, Quickbooks customer
support contact number, Quickbooks customer service contact number, Quickbooks
official number, Quickbooks official contact number, Quickbooks 800 contact
number, Quickbooks toll free number, 800 number for Quickbooks support,
Quickbooks 24/7 support phone number Quickbooks support phone number,Quickbooks
support phone number,Quickbooks @#%ѬѬ> phone number, Quickbooks technical
support number.Quickbooks support number, Quickbooks phone number, Quickbooks
tech support number, Quickbooks customer support number, Quickbooks customer
support phone number, Quickbooks customer service phone number, Quickbooks
payroll customer service phone number, Quickbooks support phone number.
@#%ѬѬ>@Call 1-800-919-0992/.Quickbooks 24/7 support phone number,Quickbooks
telephone number for support? call 1800-919-0992@./Quickbooks contact number,
Quickbooks contact phone number, Quickbooks contact telephone numbertelephone
number for Quickbooks online support,Quickbooks official support
number,Quickbooks official number,Quickbooks payroll official phone
number,phone number for Quickbooks payroll supportQuickbooks 24/7 support phone
numberQuickbooks support number,Quickbooks telephone number for support
.................. Quickbooks phone number,(1-800-919-0992)// Quickbooks
customer care number..... Quickbooks Toll Free, Intuit@(1-800.919-0992)@-:
Quickbooks Technical Support Number, Quickbooks @#%ѬѬ> desk phone number vides
online solution for all USA/CANADA clients. For any @#%ѬѬ> of query call 1 800
919 0992 to get all Quickbooks account solution. For any @#%ѬѬ> of query call 1
800 919 0992 to get all Quickbooks account solution. @@Call, 1-800-919-0992 for
all type @#%ѬѬ> by Quickbooks support telephone number,Quickbooks support phone
number,Quickbooks support phone number,Quickbooks @#%ѬѬ> phone number,
Quickbooks technical support number.Quickbooks support number, Quickbooks phone
number, Quickbooks tech support number, Quickbooks customer support number,
Quickbooks customer support phone number, Quickbooks customer service phone
number, Quickbooks payroll customer service phone number, Quickbooks support
phone number ~@#%ѬѬ> Usa@ +1- 800- 919 - 0992 ...((( Quickbooks tech support
number...
Quickbooks @#%ѬѬ> number-Quickbooks @#%ѬѬ>line Number; Quickbooks @#%ѬѬ> phone
number-Quickbooks @#%ѬѬ>line Number, Quickbooks Tech Support Toll free Number,
Quickbooks Support Telephone Number, Quickbooks Tech Support Telephone number,
Quickbooks Tech Support contact number, Quickbooks support contact number,
Quickbooks technical support contact number, Quickbooks @#%ѬѬ> desk phone
number. Call, @(1-800-919-0992)@-: It is very popular toll free number which
vide by Quickbooks technical support, Quickbooks Customer Service Phone Number,
Quickbooks Customer Service Number, Quickbooks Customer Support Phone Number,
Quickbooks Customer Support Number, Quickbooks Customer Service @#%ѬѬ>line
Number, Quickbooks Customer Care Number, Quickbooks support team phone number.
Call,@(1-800-919-0992)@-: Quickbooks @#%ѬѬ> number-Quickbooks @#%ѬѬ>line
Number; Quickbooks @#%ѬѬ> phone number, Quickbooks @#%ѬѬ>line Number,
Quickbooks Tech Support Toll free Number, Quickbooks Support Telephone Number,
Quickbooks Tech Support Telephone number, Quickbooks Tech Support contact
number, Quickbooks support contact number, Quickbooks technical support contact
number, Quickbooks support phone number, Quickbooks payroll support phone
number. Quickbooks payroll customer support phone number for all type @#%ѬѬ> by
Quickbooks support telephone number, Quickbooks @#%ѬѬ> phone number, Quickbooks
technical support number.Quickbooks support number, Quickbooks phone number,
Quickbooks tech support number, Quickbooks customer support number, Quickbooks
customer support phone number, Quickbooks customer service phone number,
Quickbooks payroll customer service phone number
>From gcc-bugs-return-534378-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 14:40:21 2016
Return-Path: <gcc-bugs-return-534378-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 76298 invoked by alias); 12 Aug 2016 14:40:20 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 76286 invoked by uid 89); 12 Aug 2016 14:40:20 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: =?ISO-8859-1?Q?Yes, score=8.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_40,LIKELY_SPAM_BODY,TECH_SUPPORT_PHONE2 autolearn=no version=3.3.2 spammy=hewlett, packard, technician, theyâ?X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 14:40:10 +0000
From: "gabrurock411 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug boehm-gc/74782] New: HP Printer Support Phone Number  1 (888) 990-8801
Date: Fri, 12 Aug 2016 14:40:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: boehm-gc
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: gabrurock411 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-74782-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01714.txt.bz2
Content-length: 8125

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74782

            Bug ID: 74782
           Summary: HP Printer Support Phone Number  1 (888) 990-8801
           Product: gcc
           Version: 6.1.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: boehm-gc
          Assignee: unassigned at gcc dot gnu.org
          Reporter: gabrurock411 at gmail dot com
  Target Milestone: ---

Live HP Printer Support                                                        
                            (888) 990-8801                     





Are you facing technical problems with your HP printer and looking for HP
printer support phone number or HP printer support phone number or HP printer
customer service telephone number or HP printer customer service phone number
or HP printer customer service telephone number or HP printer customer service
telephone number, don’t worry you are at the right place. You just need to
connect with our HP printer technology expert through our toll free number
(888) 990-8801.HP printer Support Phone Number 1(888) 990-8801, HP printer
support. HP USA Customer Service Phone Number 1(888) 990-8801.

When you dial our HP printer support telephone number you’ll be connected with
one of our printer technology experts and s/he will help you to get rid of your
technical problem with Hewlett Packard Printer. In case they’re unable to fix
it they’ll be sharing a new HP printer support phone number of their senior
level technicians. hp printer troubleshooting , hp help and support , contact
hp printer support , hp support for printers , hp printer contact number , hp
printer phone support , install hp printer , hp laptop support number , hp
printer tech support phone number. We are provide best support for HP OfficeJet
Pro 8600 support. We have expert technician and they can resolve your issue and
we are providing hp tech support telephone number. Our more services are tech
support for hp, hp phone number for printer support, hp wireless printer
support phone number, hp printer fix ,hp printer setup , hp computer support
number , hp printer support phone number usa , hp wireless printer support
technical support for Hewlett Packard Printer. HP printer support,  They’ll
help you with HP printer support phone number or HP printer  support phone
number, HP printer  support phone number, HP printer customer service number,
HP printer  support phone number, HP printer support phone number. HP USA
Customer Service Phone Number 1(888) 990-8801

We are provide best support for HP OfficeJet Pro 8600 support. We have expert
technician and they can resolve your issue and we are providing hp tech support
telephone number. Our more services are tech support for hp, hp phone number
for printer support, hp wireless printer support phone number, hp printer fix.
Our printer technology experts are good enough to assist you if you are
searching on Google for HP printer support, hp printer help phone number, HP
printer help, HP printer helpline, HP printer helpdesk, HP printer tech
support, HP printer technical support number, support for Hewlett Packard
Printer, hp printer tech support number , hp printer technical support number ,
hp printer technical support phone number , hp printer troubleshooting , hp
help and support , contact hp printer support , hp support for printers , hp
printer contact number , hp printer phone support , install hp printer , hp
laptop support number , hp printer tech support phone number , hp printer setup
, hp computer support number , hp printer support phone number usa , hp
wireless printer support technical support for hp Printer. HP printer support,
HP printer help, hp printer help phone number,  HP printer helpline, HP printer
helpdesk, support for Hewlett Packard Printer, HP printer problem, HP printer
problems, HP printer problem, HP printer problems, HP printer issues, HP
printer issues, HP printer number, HP printer number, HP technical support
number. You don’t need to go and search on Google every time you need
assistance. 
HP USA Customer Service Phone Number 1(888) 990-8801, phone number for hp
support,hp 800 number,phone number for hp printer support,hp support telephone
number,hp help desk number,hp printers tech support phone number,hp printers
support phone number,hp printer helpline phone number,hp laptop technical
support number,hp phone number for tech support,hp troubleshooting phone
number,hp help and support phone number,call hp tech support,hp printer service
phone number
We are basically provided a technical support for the hp and the phone number
of the hp is 1(888) 990-8801. phone number for hp support,hp 800 number,phone
number for hp printer support,hp support telephone number,hp help desk
number,hp printers tech support phone number,hp printers support phone
number,hp printer helpline phone number,hp laptop technical support number,hp
phone number for tech support,hp troubleshooting phone number,hp help and
support phone number,call hp tech support,hp printer service phone number, hp
printer tech support number | hp printer technical support number | hp printer
technical support phone number | hp printer troubleshooting | hp help and
support | contact hp printer support | hp support for printers | hp printer
contact number | hp printer phone support | install hp printer | hp laptop
support number | hp printer tech support phone number | hp printer setup | hp
computer support number | hp printer support phone number usa | hp wireless
printer support
We are provide best support for HP OfficeJet Pro 8600 support. We have expert
technician and they can resolve your issue and we are providing hp tech support
telephone number. Our more services are tech support for hp, hp phone number
for printer support, hp wireless printer support phone number, hp printer fix.
hp printer tech support number | hp printer technical support number | hp
printer technical support phone number | hp printer troubleshooting | hp help
and support | contact hp printer support | hp support for printers | hp printer
contact number | hp printer phone support | install hp printer | hp laptop
support number | hp printer tech support phone number | hp printer setup | hp
computer support number | hp printer support phone number usa | hp wireless
printer support
HP printer setup, HP printer service with technical support number 1(888)
990-8801, HP printer Support, HP printer help, how to fix HP printer problem,
HP printer not working, HP printer configuration, HP printer Support Number 
1(888) 990-8801, HP printer support, HP printer support, HP printer support, HP
printer support, HP printer support, HP printer support, HP printer support, HP
printer support, HP printer support 1(888) 990-8801, Contact on HP printer tech
support phone number for HP printer technical help and HP printer suppor phone
number 1(888) 990-8801.
hp printer tech support number | hp printer technical support number | hp
printer technical support phone number | hp printer troubleshooting | hp help
and support | contact hp printer support | hp support for printers | hp printer
contact number | hp printer phone support | install hp printer | hp laptop
support number | hp printer tech support phone number | hp printer setup | hp
computer support number | hp printer support phone number usa | hp wireless
printer support |hp phone number for hp support,hp 800 number,phone number for
hp printer support,hp support telephone number,hp help desk number,hp printers
tech support phone number,hp printers support phone number,hp printer helpline
phone number,hp laptop technical support number,hp phone number for tech
support,hp troubleshooting phone number,hp help and support phone number,call
hp tech support,hp printer service phone number.
>From gcc-bugs-return-534379-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 14:43:32 2016
Return-Path: <gcc-bugs-return-534379-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 80700 invoked by alias); 12 Aug 2016 14:43:32 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 80690 invoked by uid 89); 12 Aug 2016 14:43:31 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: =?ISO-8859-1?Q?Yes, score=9.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,LIKELY_SPAM_BODY,TECH_SUPPORT_PHONE2 autolearn=no version=3.3.2 spammy=hewlett, packard, technician, theyâ?X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 14:43:27 +0000
From: "gabrurock411 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/74784] New: HP Printer Tech Support Phone Number  1 (888) 990-8801
Date: Fri, 12 Aug 2016 14:43:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 5.4.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: gabrurock411 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-74784-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01715.txt.bz2
Content-length: 8131

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74784

            Bug ID: 74784
           Summary: HP Printer Tech Support Phone Number  1 (888) 990-8801
           Product: gcc
           Version: 5.4.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: gabrurock411 at gmail dot com
  Target Milestone: ---

Live HP Printer Support                                                        
                            (888) 990-8801                     





Are you facing technical problems with your HP printer and looking for HP
printer support phone number or HP printer support phone number or HP printer
customer service telephone number or HP printer customer service phone number
or HP printer customer service telephone number or HP printer customer service
telephone number, don’t worry you are at the right place. You just need to
connect with our HP printer technology expert through our toll free number
(888) 990-8801.HP printer Support Phone Number 1(888) 990-8801, HP printer
support. HP USA Customer Service Phone Number 1(888) 990-8801.

When you dial our HP printer support telephone number you’ll be connected with
one of our printer technology experts and s/he will help you to get rid of your
technical problem with Hewlett Packard Printer. In case they’re unable to fix
it they’ll be sharing a new HP printer support phone number of their senior
level technicians. hp printer troubleshooting , hp help and support , contact
hp printer support , hp support for printers , hp printer contact number , hp
printer phone support , install hp printer , hp laptop support number , hp
printer tech support phone number. We are provide best support for HP OfficeJet
Pro 8600 support. We have expert technician and they can resolve your issue and
we are providing hp tech support telephone number. Our more services are tech
support for hp, hp phone number for printer support, hp wireless printer
support phone number, hp printer fix ,hp printer setup , hp computer support
number , hp printer support phone number usa , hp wireless printer support
technical support for Hewlett Packard Printer. HP printer support,  They’ll
help you with HP printer support phone number or HP printer  support phone
number, HP printer  support phone number, HP printer customer service number,
HP printer  support phone number, HP printer support phone number. HP USA
Customer Service Phone Number 1(888) 990-8801

We are provide best support for HP OfficeJet Pro 8600 support. We have expert
technician and they can resolve your issue and we are providing hp tech support
telephone number. Our more services are tech support for hp, hp phone number
for printer support, hp wireless printer support phone number, hp printer fix.
Our printer technology experts are good enough to assist you if you are
searching on Google for HP printer support, hp printer help phone number, HP
printer help, HP printer helpline, HP printer helpdesk, HP printer tech
support, HP printer technical support number, support for Hewlett Packard
Printer, hp printer tech support number , hp printer technical support number ,
hp printer technical support phone number , hp printer troubleshooting , hp
help and support , contact hp printer support , hp support for printers , hp
printer contact number , hp printer phone support , install hp printer , hp
laptop support number , hp printer tech support phone number , hp printer setup
, hp computer support number , hp printer support phone number usa , hp
wireless printer support technical support for hp Printer. HP printer support,
HP printer help, hp printer help phone number,  HP printer helpline, HP printer
helpdesk, support for Hewlett Packard Printer, HP printer problem, HP printer
problems, HP printer problem, HP printer problems, HP printer issues, HP
printer issues, HP printer number, HP printer number, HP technical support
number. You don’t need to go and search on Google every time you need
assistance. 
HP USA Customer Service Phone Number 1(888) 990-8801, phone number for hp
support,hp 800 number,phone number for hp printer support,hp support telephone
number,hp help desk number,hp printers tech support phone number,hp printers
support phone number,hp printer helpline phone number,hp laptop technical
support number,hp phone number for tech support,hp troubleshooting phone
number,hp help and support phone number,call hp tech support,hp printer service
phone number
We are basically provided a technical support for the hp and the phone number
of the hp is 1(888) 990-8801. phone number for hp support,hp 800 number,phone
number for hp printer support,hp support telephone number,hp help desk
number,hp printers tech support phone number,hp printers support phone
number,hp printer helpline phone number,hp laptop technical support number,hp
phone number for tech support,hp troubleshooting phone number,hp help and
support phone number,call hp tech support,hp printer service phone number, hp
printer tech support number | hp printer technical support number | hp printer
technical support phone number | hp printer troubleshooting | hp help and
support | contact hp printer support | hp support for printers | hp printer
contact number | hp printer phone support | install hp printer | hp laptop
support number | hp printer tech support phone number | hp printer setup | hp
computer support number | hp printer support phone number usa | hp wireless
printer support
We are provide best support for HP OfficeJet Pro 8600 support. We have expert
technician and they can resolve your issue and we are providing hp tech support
telephone number. Our more services are tech support for hp, hp phone number
for printer support, hp wireless printer support phone number, hp printer fix.
hp printer tech support number | hp printer technical support number | hp
printer technical support phone number | hp printer troubleshooting | hp help
and support | contact hp printer support | hp support for printers | hp printer
contact number | hp printer phone support | install hp printer | hp laptop
support number | hp printer tech support phone number | hp printer setup | hp
computer support number | hp printer support phone number usa | hp wireless
printer support
HP printer setup, HP printer service with technical support number 1(888)
990-8801, HP printer Support, HP printer help, how to fix HP printer problem,
HP printer not working, HP printer configuration, HP printer Support Number 
1(888) 990-8801, HP printer support, HP printer support, HP printer support, HP
printer support, HP printer support, HP printer support, HP printer support, HP
printer support, HP printer support 1(888) 990-8801, Contact on HP printer tech
support phone number for HP printer technical help and HP printer suppor phone
number 1(888) 990-8801.
hp printer tech support number | hp printer technical support number | hp
printer technical support phone number | hp printer troubleshooting | hp help
and support | contact hp printer support | hp support for printers | hp printer
contact number | hp printer phone support | install hp printer | hp laptop
support number | hp printer tech support phone number | hp printer setup | hp
computer support number | hp printer support phone number usa | hp wireless
printer support |hp phone number for hp support,hp 800 number,phone number for
hp printer support,hp support telephone number,hp help desk number,hp printers
tech support phone number,hp printers support phone number,hp printer helpline
phone number,hp laptop technical support number,hp phone number for tech
support,hp troubleshooting phone number,hp help and support phone number,call
hp tech support,hp printer service phone number.
>From gcc-bugs-return-534380-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 14:46:17 2016
Return-Path: <gcc-bugs-return-534380-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 112747 invoked by alias); 12 Aug 2016 14:46:16 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 112686 invoked by uid 89); 12 Aug 2016 14:46:15 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 14:46:08 +0000
From: "manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/74765] missing uninitialized warning (parenthesis, TREE_NO_WARNING abuse)
Date: Fri, 12 Aug 2016 14:46:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: manu at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-74765-4-dbQkFoKKWR@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-74765-4@http.gcc.gnu.org/bugzilla/>
References: <bug-74765-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01716.txt.bz2
Content-length: 397

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74765

--- Comment #3 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
(In reply to Richard Biener from comment #1)
> I wonder if we can somehow "annotate" locations with NO_WARNING
> (warning-option)

Wouldn't that be equivalent to internally generating a #pragma GCC diagnostic
ignored? If so, then we can do that already.
>From gcc-bugs-return-534381-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 14:58:46 2016
Return-Path: <gcc-bugs-return-534381-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 82251 invoked by alias); 12 Aug 2016 14:58:45 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 82231 invoked by uid 89); 12 Aug 2016 14:58:44 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 14:58:34 +0000
From: "rguenther at suse dot de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/74585] SRA forces parameters to memory causing awful code generation
Date: Fri, 12 Aug 2016 14:58:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenther at suse dot de
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-74585-4-bdFweBA9oU@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-74585-4@http.gcc.gnu.org/bugzilla/>
References: <bug-74585-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01717.txt.bz2
Content-length: 1647

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74585

--- Comment #6 from rguenther at suse dot de <rguenther at suse dot de> ---
On August 12, 2016 3:46:46 PM GMT+02:00, "wschmidt at gcc dot gnu.org"
<gcc-bugzilla@gcc.gnu.org> wrote:
>https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74585
>
>--- Comment #5 from Bill Schmidt <wschmidt at gcc dot gnu.org> ---
>(In reply to Richard Biener from comment #1)
>> The issue is not SRA pushing things to memory - it doesn't.  The
>issue is
>> that in the GIMPLE IL the parameter appears as "memory" as it is an
>> aggregate type.
>> 
>> The issue is really RTL expansion of the argument (not sure where
>that's
>> done)
>> which doesn't take into account that we could happily expand
>> 
>>   a$vx0_27 = MEM[(struct  *)&a];
>>   a$vx1_28 = MEM[(struct  *)&a + 16B];
>>   a$vx2_29 = MEM[(struct  *)&a + 32B];
>>   a$vx3_30 = MEM[(struct  *)&a + 48B];
>> 
>> if a is expanded to registers.
>> 
>
>OK, I'll investigate further.  But the assumption that an aggregate
>parameter
>is "memory" seems wrong to me.  SRA is explicitly taking the address of
>a
>parameter which has not previously had its address taken, so it seems
>to me
>that if it's passed in registers this in itself will force it to memory
>on
>procedure entry, despite whatever else is currently going on with
>-fno-tree-sra.  But this is all talk, I need to do some digging to see
>what the
>issues are.  To me the SRA transformation seemed "obviously" :) wrong,
>so I
>stopped looking...

The MEM_REF quoted does not constitute an address-taking of a.  It's the same
semantically as the original component-refs.

Richard.
>From gcc-bugs-return-534382-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 14:58:57 2016
Return-Path: <gcc-bugs-return-534382-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 82967 invoked by alias); 12 Aug 2016 14:58:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 82952 invoked by uid 89); 12 Aug 2016 14:58:55 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 14:58:45 +0000
From: "manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/74762] [5/6/7 Regression] missing uninitialized warning (C++, parenthesized expr, TREE_NO_WARNING)
Date: Fri, 12 Aug 2016 14:58:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: manu at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-74762-4-RAVSFysLUw@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-74762-4@http.gcc.gnu.org/bugzilla/>
References: <bug-74762-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01718.txt.bz2
Content-length: 1407

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74762

--- Comment #5 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
(In reply to Patrick Palka from comment #1)
> Looks like warn_uninit() suppresses the warning on 'i' because the
> TREE_NO_WARNING flag is set on the ARRAY_REF by the C++ FE (in
> finish_parenthesized_expr(), for an unrelated purpose).

I wonder if a quick work-around for this case in particular is to check for:

  if (TREE_CODE (expr) == MODIFY_EXPR)

like the C parser does:

          /* A parenthesized expression.  */
          location_t loc_open_paren = c_parser_peek_token (parser)->location;
          c_parser_consume_token (parser);
          expr = c_parser_expression (parser);
          if (TREE_CODE (expr.value) == MODIFY_EXPR)
            TREE_NO_WARNING (expr.value) = 1;
          if (expr.original_code != C_MAYBE_CONST_EXPR)
            expr.original_code = ERROR_MARK;
          /* Don't change EXPR.ORIGINAL_TYPE.  */
          location_t loc_close_paren = c_parser_peek_token (parser)->location;
          set_c_expr_source_range (&expr, loc_open_paren, loc_close_paren);
          c_parser_skip_until_found (parser, CPP_CLOSE_PAREN,
                                     "expected %<)%>");

Then the bug will only trigger for code such as ((lhs=rhs)), which is what
TREE_NO_WARNING is trying to avoid warning for.
>From gcc-bugs-return-534383-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 14:59:28 2016
Return-Path: <gcc-bugs-return-534383-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 83891 invoked by alias); 12 Aug 2016 14:59:28 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 83875 invoked by uid 89); 12 Aug 2016 14:59:27 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 14:59:17 +0000
From: "amker at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/69848] poor vectorization of a loop from SPEC2006 464.h264ref
Date: Fri, 12 Aug 2016 14:59:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: amker at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-69848-4-XgpQ9tuN64@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69848-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69848-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01719.txt.bz2
Content-length: 804

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69848

--- Comment #15 from amker at gcc dot gnu.org ---
Author: amker
Date: Fri Aug 12 14:58:20 2016
New Revision: 239416

URL: https://gcc.gnu.org/viewcvs?rev=239416&root=gcc&view=rev
Log:
        PR tree-optimization/69848
        * tree-vectorizer.h (enum vect_def_type): New condition reduction
        type CONST_COND_REDUCTION.
        * tree-vect-loop.c (vectorizable_reduction): Support new condition
        reudction type CONST_COND_REDUCTION.

        gcc/testsuite
        PR tree-optimization/69848
        * gcc.dg/vect/vect-pr69848.c: New test.

Added:
    trunk/gcc/testsuite/gcc.dg/vect/vect-pr69848.c
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/tree-vect-loop.c
    trunk/gcc/tree-vectorizer.h
>From gcc-bugs-return-534384-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 15:04:45 2016
Return-Path: <gcc-bugs-return-534384-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 97491 invoked by alias); 12 Aug 2016 15:04:45 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 96728 invoked by uid 89); 12 Aug 2016 15:04:43 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=4.4.7, tricky, our
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 15:04:33 +0000
From: "jeanerpp at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/74751] gcc can't generate correct code
Date: Fri, 12 Aug 2016 15:04:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 4.8.5
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: jeanerpp at gmail dot com
X-Bugzilla-Status: CLOSED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status
Message-ID: <bug-74751-4-Js7lSPvYjI@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-74751-4@http.gcc.gnu.org/bugzilla/>
References: <bug-74751-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01720.txt.bz2
Content-length: 777

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74751

xujian <jeanerpp at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |CLOSED

--- Comment #3 from xujian <jeanerpp at gmail dot com> ---
(In reply to Jakub Jelinek from comment #2)
> This is invalid, violates C aliasing rules.
> If you don't want to change your code, you can use -fno-strict-aliasing,
> otherwise e.g. replace the bogus ShortCopy with memcpy?

Thanks a lot!
"-fno-strict-aliasing" can solve our issue.
It is so tricky since different version of gcc behaviour differently regarding
this issue. We used 3.4.6/4.4.7 before, and did not encouter this.
>From gcc-bugs-return-534385-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 15:07:48 2016
Return-Path: <gcc-bugs-return-534385-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 102236 invoked by alias); 12 Aug 2016 15:07:48 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 102220 invoked by uid 89); 12 Aug 2016 15:07:47 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 15:07:39 +0000
From: "manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/74765] missing uninitialized warning (parenthesis, TREE_NO_WARNING abuse)
Date: Fri, 12 Aug 2016 15:07:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: manu at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-74765-4-oGPG3BdNGG@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-74765-4@http.gcc.gnu.org/bugzilla/>
References: <bug-74765-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01721.txt.bz2
Content-length: 770

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74765

--- Comment #4 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
(In reply to Jakub Jelinek from comment #2)
> I had plans to turn TREE_NO_WARNING/gimple_no_warning_p into on the side
> hashmap which would map trees or gimple stmts to bitmaps of OPT_W* flags
> that should be disabled, maybe that would help here.

For this particular case, the reason we set TREE_NO_WARNING is because we want
to warn for 

if(i=0)

but we want to allow users to worki around the warning with:

if ((i=0))

There are other ways that we could suggest to work-around the warning, such as:

    if(bool(a = 0))

or 

if ( (a=0) != 0)

Note that the first one does warn, but the intent is clear.
>From gcc-bugs-return-534386-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 15:40:53 2016
Return-Path: <gcc-bugs-return-534386-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 98741 invoked by alias); 12 Aug 2016 15:40:53 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 98720 invoked by uid 89); 12 Aug 2016 15:40:52 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 15:40:51 +0000
From: "jgreenhalgh at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72819] [AArch64] ABI error: HFA structs of __fp16 incorrectly passed to functions
Date: Fri, 12 Aug 2016 15:40:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords: ABI, wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jgreenhalgh at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jgreenhalgh at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-72819-4-LCsKpxhFog@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72819-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72819-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01722.txt.bz2
Content-length: 465

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72819

James Greenhalgh <jgreenhalgh at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #3 from James Greenhalgh <jgreenhalgh at gcc dot gnu.org> ---
Patch in place on trunk and 6.
>From gcc-bugs-return-534387-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 16:05:20 2016
Return-Path: <gcc-bugs-return-534387-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 44907 invoked by alias); 12 Aug 2016 16:05:20 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 44895 invoked by uid 89); 12 Aug 2016 16:05:19 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 16:05:09 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/67410] [5/6/7 Regression] c/c-typeck.c references out of bounds array
Date: Fri, 12 Aug 2016 16:05:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 5.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-67410-4-R03zXxZMpu@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67410-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67410-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01723.txt.bz2
Content-length: 652

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67410

--- Comment #5 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Author: jakub
Date: Fri Aug 12 16:04:33 2016
New Revision: 239419

URL: https://gcc.gnu.org/viewcvs?rev=239419&root=gcc&view=rev
Log:
        PR c/67410
        * c-typeck.c (set_nonincremental_init_from_string): Use / instead of
        % to determine val element to change.  Assert that
        wchar_bytes * charwidth fits into val array.

        * gcc.dg/pr67410.c: New test.

Added:
    trunk/gcc/testsuite/gcc.dg/pr67410.c
Modified:
    trunk/gcc/c/ChangeLog
    trunk/gcc/c/c-typeck.c
    trunk/gcc/testsuite/ChangeLog
>From gcc-bugs-return-534388-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 16:06:28 2016
Return-Path: <gcc-bugs-return-534388-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 46510 invoked by alias); 12 Aug 2016 16:06:28 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 46471 invoked by uid 89); 12 Aug 2016 16:06:27 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 16:06:26 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/67410] [5/6/7 Regression] c/c-typeck.c references out of bounds array
Date: Fri, 12 Aug 2016 16:06:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 5.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-67410-4-AhRCOgVVoY@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67410-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67410-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01724.txt.bz2
Content-length: 716

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67410

--- Comment #6 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Author: jakub
Date: Fri Aug 12 16:05:53 2016
New Revision: 239420

URL: https://gcc.gnu.org/viewcvs?rev=239420&root=gcc&view=rev
Log:
        PR c/67410
        * c-typeck.c (set_nonincremental_init_from_string): Use / instead of
        % to determine val element to change.  Assert that
        wchar_bytes * charwidth fits into val array.

        * gcc.dg/pr67410.c: New test.

Added:
    branches/gcc-6-branch/gcc/testsuite/gcc.dg/pr67410.c
Modified:
    branches/gcc-6-branch/gcc/c/ChangeLog
    branches/gcc-6-branch/gcc/c/c-typeck.c
    branches/gcc-6-branch/gcc/testsuite/ChangeLog
>From gcc-bugs-return-534389-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 16:08:25 2016
Return-Path: <gcc-bugs-return-534389-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 49669 invoked by alias); 12 Aug 2016 16:08:24 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 49654 invoked by uid 89); 12 Aug 2016 16:08:23 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 16:08:13 +0000
From: "ppalka at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/71654] [6/7 Regression] missing VRP optimization on c++ unsigned char and short expressions
Date: Fri, 12 Aug 2016 16:08:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ppalka at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: ppalka at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71654-4-a6He2DMxyl@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71654-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71654-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01725.txt.bz2
Content-length: 988

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71654

--- Comment #4 from Patrick Palka <ppalka at gcc dot gnu.org> ---
Author: ppalka
Date: Fri Aug 12 16:07:40 2016
New Revision: 239421

URL: https://gcc.gnu.org/viewcvs?rev=239421&root=gcc&view=rev
Log:
Fix PR middle-end/71654 (missed shortening of a compare)

gcc/ChangeLog:

        PR middle-end/71654
        * match.pd ((T)A CMP (T)B -> A CMP B): Allow (T)A to be a
        sign-changing cast from a shorter unsigned type to a wider
        signed type.

gcc/testsuite/ChangeLog:

        PR middle-end/71654
        * gcc.dg/c-c++-common/pr71654.c: New test.
        * gcc.dg/tree-ssa/vrp23: Add -fno-tree-forwprop to
        dg-options.
        * gcc.dg/tree-ssa/vrp24: Likewise.


Added:
    trunk/gcc/testsuite/c-c++-common/pr71654.c
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/match.pd
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/testsuite/gcc.dg/tree-ssa/vrp23.c
    trunk/gcc/testsuite/gcc.dg/tree-ssa/vrp24.c
>From gcc-bugs-return-534390-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 16:08:35 2016
Return-Path: <gcc-bugs-return-534390-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 51811 invoked by alias); 12 Aug 2016 16:08:35 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 51795 invoked by uid 89); 12 Aug 2016 16:08:34 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 16:08:32 +0000
From: "ysrumyan at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/71956] [7 Regression] 176.gcc fails on 32 bits when compiled with -march=core-avx2
Date: Fri, 12 Aug 2016 16:08:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ysrumyan at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71956-4-acwJlVND4H@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71956-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71956-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01726.txt.bz2
Content-length: 364

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71956

--- Comment #3 from Yuri Rumyantsev <ysrumyan at gmail dot com> ---
It turned out that after r235653 (with minor int->bool type change) 176.gcc
started RF. If we turn off vrp phase benchmark passes. The problem fail is
sched.c. Note that avx2 is essential for reproducing. Try to understand what
the issue is.
>From gcc-bugs-return-534391-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 16:11:26 2016
Return-Path: <gcc-bugs-return-534391-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 123893 invoked by alias); 12 Aug 2016 16:11:26 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 123884 invoked by uid 89); 12 Aug 2016 16:11:25 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:313
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 16:11:15 +0000
From: "ysrumyan at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/71956] [7 Regression] 176.gcc fails on 32 bits when compiled with -march=core-avx2
Date: Fri, 12 Aug 2016 16:11:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ysrumyan at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71956-4-4aGWF8DYZV@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71956-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71956-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01727.txt.bz2
Content-length: 210

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71956

--- Comment #4 from Yuri Rumyantsev <ysrumyan at gmail dot com> ---
Need to read "problem file is 176.gcc/src/sched.c, problem function
sched_analyze_insn.
>From gcc-bugs-return-534392-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 16:17:20 2016
Return-Path: <gcc-bugs-return-534392-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 2443 invoked by alias); 12 Aug 2016 16:17:19 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 2430 invoked by uid 89); 12 Aug 2016 16:17:18 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 16:17:08 +0000
From: "ysrumyan at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71077] [7 Regression] gcc -lto raises ICE
Date: Fri, 12 Aug 2016 16:17:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ysrumyan at gmail dot com
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: ppalka at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-71077-4-TJiTwOqsoS@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71077-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71077-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01728.txt.bz2
Content-length: 646

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71077

Yuri Rumyantsev <ysrumyan at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ysrumyan at gmail dot com

--- Comment #5 from Yuri Rumyantsev <ysrumyan at gmail dot com> ---
We found out that after r235653 with minor change of int->bool type 176.gcc
still RF on HSW machine in 32-bit if opt level equal 3. If we turn off VRP
phase by -fno-tree-vrp option benchmark is passed. Need to understand why this
simplification affects on it.
>From gcc-bugs-return-534393-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 16:20:35 2016
Return-Path: <gcc-bugs-return-534393-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 14656 invoked by alias); 12 Aug 2016 16:20:34 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 14640 invoked by uid 89); 12 Aug 2016 16:20:34 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=reality
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 16:20:24 +0000
From: "amker at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/74881] New: re-align optimization blocks vectorization on powerpc
Date: Fri, 12 Aug 2016 16:20:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: amker at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-74881-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01729.txt.bz2
Content-length: 882

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74881

            Bug ID: 74881
           Summary: re-align optimization blocks vectorization on powerpc
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: tree-optimization
          Assignee: unassigned at gcc dot gnu.org
          Reporter: amker at gcc dot gnu.org
  Target Milestone: ---

Hi,
gcc.dg/vect/vect-117.c starts failing with patch at r238301.  After
investigation I think it exposed a latent vectorizer issue.  Before patch, the
loop is vectorized but guarded by alias check that is always false.  That is,
the vectorized loop will never be executed in reality.  The patch only skips
known to be false alias check.

Detailed analysis and possible fix is at
https://gcc.gnu.org/ml/gcc-patches/2016-08/msg01035.html
>From gcc-bugs-return-534394-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 17:07:39 2016
Return-Path: <gcc-bugs-return-534394-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 48723 invoked by alias); 12 Aug 2016 17:07:39 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 48703 invoked by uid 89); 12 Aug 2016 17:07:38 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 17:07:28 +0000
From: "edlinger at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71083] [5/6/7 Regression] Unaligned bit-field address when predictive commoning
Date: Fri, 12 Aug 2016 17:07:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: major
X-Bugzilla-Who: edlinger at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71083-4-7th8RbnK7u@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71083-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71083-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01730.txt.bz2
Content-length: 1413

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71083

--- Comment #10 from Bernd Edlinger <edlinger at gcc dot gnu.org> ---
Author: edlinger
Date: Fri Aug 12 17:06:44 2016
New Revision: 239423

URL: https://gcc.gnu.org/viewcvs?rev=239423&root=gcc&view=rev
Log:
2016-08-12  Bernd Edlinger  <bernd.edlinger@hotmail.de>

        Backport from mainline
        2016-08-11  Bernd Edlinger  <bernd.edlinger@hotmail.de>

        PR tree-optimization/71083
        * tree-predcom.c (ref_at_iteration): Correctly align the
        reference type.

testsuite:
2016-08-12  Bernd Edlinger  <bernd.edlinger@hotmail.de>

        Backport from mainline
        2016-08-11  Bernd Edlinger  <bernd.edlinger@hotmail.de>

        PR tree-optimization/71083
        * gcc.c-torture/execute/pr71083.c: New test.
        * gnat.dg/loop_optimization23.adb: New test.
        * gnat.dg/loop_optimization23_pkg.ads: New test.
        * gnat.dg/loop_optimization23_pkg.adb: New test.

Added:
    branches/gcc-6-branch/gcc/testsuite/gcc.c-torture/execute/pr71083.c
    branches/gcc-6-branch/gcc/testsuite/gnat.dg/loop_optimization23.adb
    branches/gcc-6-branch/gcc/testsuite/gnat.dg/loop_optimization23_pkg.adb
    branches/gcc-6-branch/gcc/testsuite/gnat.dg/loop_optimization23_pkg.ads
Modified:
    branches/gcc-6-branch/gcc/ChangeLog
    branches/gcc-6-branch/gcc/testsuite/ChangeLog
    branches/gcc-6-branch/gcc/tree-predcom.c
>From gcc-bugs-return-534395-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 17:14:35 2016
Return-Path: <gcc-bugs-return-534395-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 55103 invoked by alias); 12 Aug 2016 17:14:35 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 55094 invoked by uid 89); 12 Aug 2016 17:14:34 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 17:14:24 +0000
From: "patrick at parcs dot ath.cx" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71077] [7 Regression] gcc -lto raises ICE
Date: Fri, 12 Aug 2016 17:14:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: patrick at parcs dot ath.cx
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: ppalka at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71077-4-9Qb1hB7Usn@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71077-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71077-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01731.txt.bz2
Content-length: 1493

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71077

--- Comment #6 from patrick at parcs dot ath.cx ---
On Fri, 12 Aug 2016, ysrumyan at gmail dot com wrote:

> https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71077
> 
> Yuri Rumyantsev <ysrumyan at gmail dot com> changed:
> 
>            What    |Removed                     |Added
> ----------------------------------------------------------------------------
>                  CC|                            |ysrumyan at gmail dot com
> 
> --- Comment #5 from Yuri Rumyantsev <ysrumyan at gmail dot com> ---
> We found out that after r235653 with minor change of int->bool type 176.gcc
> still RF on HSW machine in 32-bit if opt level equal 3. If we turn off VRP
> phase by -fno-tree-vrp option benchmark is passed. Need to understand why this
> simplification affects on it.

My only guess is that the combining step still doesn't handle
VECTOR_CSTs correctly. Could you please check if this patch fixes the
runtime failure?

diff --git a/gcc/tree-ssa-threadedge.c b/gcc/tree-ssa-threadedge.c
index 170e456..0db7bda 100644
--- a/gcc/tree-ssa-threadedge.c
+++ b/gcc/tree-ssa-threadedge.c
@@ -577,6 +577,7 @@ simplify_control_stmt_condition_1 (edge e,
   if (handle_dominating_asserts
       && (cond_code == EQ_EXPR || cond_code == NE_EXPR)
       && TREE_CODE (op0) == SSA_NAME
+      && INTEGRAL_TYPE_P (TREE_TYPE (op0))
       && integer_zerop (op1))
     {
       gimple *def_stmt = SSA_NAME_DEF_STMT (op0);
>From gcc-bugs-return-534396-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 17:18:53 2016
Return-Path: <gcc-bugs-return-534396-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 71083 invoked by alias); 12 Aug 2016 17:18:53 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 71059 invoked by uid 89); 12 Aug 2016 17:18:52 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,LIKELY_SPAM_BODY,LONGWORDS autolearn=no version=3.3.2 spammyÊNADA, Care, 1800, sk:number
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 17:18:42 +0000
From: "divalisingh at yopmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/74970] New: Microsoft 24/7 online Live Number ( 1-800+492+3958) that provided byMicrosoft Office 365
Date: Fri, 12 Aug 2016 17:18:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: divalisingh at yopmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-74970-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01732.txt.bz2
Content-length: 8443

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74970

            Bug ID: 74970
           Summary: Microsoft 24/7 online Live Number ( 1-800+492+3958)
                    that provided byMicrosoft Office 365
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: divalisingh at yopmail dot com
  Target Milestone: ---

online Live Number ( 1-800+492+3958) provided byMicrosoft Office 365

Microsoft 24/7 online Live Number ( 1-800+492+3958) that provided byMicrosoft
Office 365

Microsoft 24/7 online Live Number ( 1-800+492+3958) that provided byMicrosoft
Office 365

Microsoft 24/7 online Live Number ( 1-800+492+3958) that provided byMicrosoft
Office 365

Microsoft 24/7 online Live Number ( 1-800+492+3958) that provided byMicrosoft
Office 365

Microsoft 24/7 online Live Number ( 1-800+492+3958) that provided byMicrosoft
Office 365
Microsoft 24/7 online Live Number ( 1-800+492+3958) that provided byMicrosoft
Office 365
number microsoft office live phone number Microsoft office 2010 update
microsoft outlook customer service telephone number microsoft office number to
call Microsoft office 2010 upgrade microsoft outlook customer support microsoft
office online help microsoft office 2011 mac microsoft outlook customer support
number microsoft office online support microsoft office 2011 mac product key
microsoft outlook customer support phone microsoft office phone number
microsoft office 2013 microsoft outlook customer support phone number microsoft
office phone number customer service microsoft office 25 character product key
microsoft outlook email customer service microsoft office phone number support
microsoft office Microsoft help microsoft outlook email customer service number
microsoft office phone support microsoft office Microsoft key microsoft outlook
email help phone number microsoft office phone support number microsoft office
Microsoft phone number microsoft outlook email support microsoft office product
support microsoft office and excel microsoft outlook email support number
Microsoft office phone number,((((1-800+492+3958)))) )// Microsoft office
customer care number..... Microsoft office Toll Free,
Intuit@(1-800+492+3958)@-: Microsoft office Technical Support Number, Microsoft
office help desk phone number provides online solution for all USA/CANADA
clients. For any help of query call (((1-800+492+3958)))) to get all Microsoft
office account solution. For any help of query call (((1-800+492+3958)))) to
get all Microsoft office account solution. @@Call,(((1-800+492+3958)))) for All
type help 1-800+492+3958 by Microsoft office support telephone number,Microsoft
office support phone number,Microsoft office support phone number,Microsoft
office help phone number, Microsoft office technical support number.Microsoft
office support number, Microsoft office phone number, Microsoft office tech
support number, Microsoft office customer support number, Microsoft office
customer support phone number, Microsoft office customer service phone number,
Microsoft office payroll customer service phone number, Microsoft office
support phone number Microsoft office help number-Microsoft office Helpline
Number; Microsoft office help phone number-Microsoft office Helpline Number,
Microsoft office Tech Support Toll free Number, Microsoft office Support
Telephone Number, Microsoft office Tech Support Telephone number, Microsoft
office Tech Support contact number, Microsoft office support contact number,
Microsoft office technical support contact number, Microsoft office help desk
phone number. Call, @((((1-800+492+3958)))))@-: It is very popular toll free
number which provide by Microsoft office technical support, Microsoft office
Customer Service Phone Number, Microsoft office Customer Service Number,
Microsoft office Customer Support Phone Number, Microsoft office Customer
Support Number, Microsoft office Customer Service Helpline Number, Microsoft
office Customer Care Number, Microsoft office support team phone number.
Call,@((((1-800+492+3958)))))@-: Microsoft office help number-Microsoft office
Helpline Number; Microsoft office help phone number,
!!microsoft outlook customer support phone number-(1-800+492+3958)
!!microsoft outlook email sign in support number-(1-800+492+3958)
!!microsoft outlook email signature support number-(1-800+492+3958)
!!microsoft outlook email support number-(1-800+492+3958)
!!microsoft outlook email support phone number-(1-800+492+3958)
!!microsoft outlook email technical support number-(1-800+492+3958)
!!microsoft outlook express tech support phone number-(1-800+492+3958)
!!microsoft outlook exprss technical support phone number-(1-800+492+3958)
!!microsoft outlook help desk phone number-(1-800+492+3958)
!!microsoft outlook help phone number-(1-800+492+3958)
!!microsoft outlook help support
!!microsoft outlook phone number-(1-800+492+3958) support
!!microsoft outlook phone support
microsoft outlook support contact phone number-(1-800+492+3958)
!!microsoft outlook support number-(1-800+492+3958)
microsoft outlook support phone
!!microsoft outlook support phone number-(1-800+492+3958)
!!microsoft outlook support telephone number-(1-800+492+3958)
!!microsoft outlook tech support number-(1-800+492+3958)
!!microsoft outlook tech support phone number-(1-800+492+3958)
!!microsoft outlook technical support
Microsoft office Helpline Number, Microsoft office Tech Support Toll free
Number, Microsoft office Support Telephone Number, Microsoft office Tech
Support Telephone number, Microsoft office Tech Support contact number,
Microsoft office support contact number, Microsoft office technical support
contact number, Microsoft office pro support phone number, Microsoft office
payroll support phone number. Microsoft office payroll customer 1-800+492+3958
support phone number for all type help by Microsoft office support telephone
number, Microsoft office help phone number, Microsoft office technical support
number.Microsoft office support number, Microsoft office phone number,
Microsoft office tech support number, Microsoft office customer support number,
Microsoft office customer support phone number, Microsoft office customer
service phone number, Microsoft number microsoft office live phone number
Microsoft office 2010 update microsoft outlook customer service telephone
number microsoft office number to call Microsoft office 2010 upgrade microsoft
outlook customer support microsoft office online help microsoft office 2011 mac
microsoft outlook customer support number microsoft office online support
microsoft office 2011 mac product key microsoft outlook customer support phone
microsoft office phone number microsoft office 2013 microsoft outlook customer
support phone number microsoft office phNumber +++ ++ 1-800+492+3958++++++
Microsoft Office 365 Phone Number Ms Technical one number customer service
microsoft office 25 character product key microsoft outlook email customer
service microsoft office phone number support microsoft office Microsoft help
microsoft outlook email customer service number microsoft office phone support
microsoft office Microsoft key microsoft outlook email help phone number
microsoft office phone support number microsoft office Microsoft phone number
microsoft outlook email support microsoft office product support microsoft
office and excel microsoft outlook Microsoft office support phone number
Microsoft office Tech Support Toll free Number, Microsoft office Support
Telephone Number, Microsoft office Tech Support Telephone number, Microsoft
office Tech Support contact number, Microsoft office support contact number,
Microsoft office technical support contact number, Microsoft office pro support
phone number, Microsoft office payroll support phone number. Microsoft office
payroll customer 1-800+492+3958 support phone number for all type help by
Microsoft office support telephone number, Microsoft office help phone number,
Microsoft office technical support number.Microsoft office support number,
Microsoft office phone number, Microsoft office tech support number, Microsoft
office customer support number, Microsoft office customer support phone number,
Microsoft office customer service phone number, Microsoft.
>From gcc-bugs-return-534397-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 17:31:05 2016
Return-Path: <gcc-bugs-return-534397-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 88379 invoked by alias); 12 Aug 2016 17:31:05 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 88363 invoked by uid 89); 12 Aug 2016 17:31:04 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:1471
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 17:30:54 +0000
From: "wschmidt at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/74585] powerpc64: Very poor code generation for homogeneous vector aggregates passed in registers
Date: Fri, 12 Aug 2016 17:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wschmidt at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: component short_desc
Message-ID: <bug-74585-4-d5np8Ryojb@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-74585-4@http.gcc.gnu.org/bugzilla/>
References: <bug-74585-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01733.txt.bz2
Content-length: 1549

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74585

Bill Schmidt <wschmidt at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
          Component|tree-optimization           |rtl-optimization
            Summary|SRA forces parameters to    |powerpc64: Very poor code
                   |memory causing awful code   |generation for homogeneous
                   |generation                  |vector aggregates passed in
                   |                            |registers

--- Comment #7 from Bill Schmidt <wschmidt at gcc dot gnu.org> ---
One issue is in the expansion logic, specifically in assign_parm_setup_block in
function.c:

  /* If a BLKmode arrives in registers, copy it to a stack slot.  ...  */

The preceding logic handles single-register parameters being placed in a pseudo
without a stack slot, but all aggregates are forced to the stack no matter
what, so that's where

(mem/c:BLK (plus:DI (reg/f:DI 150 virtual-stack-vars)
        (const_int 128 [0x80])) [0  A128])

comes from initially.  I suspect this generally has to be this way, and
subsequent optimization is supposed to try to use the registers where possible
and eliminate the stores when they go dead.  The question is whether the
optimizer is smart enough to recognize that the BIT_FIELD_EXPRs correspond to
vector extract operations that can be performed on the incoming pseudo.  I'll
look further.

Revising title/component accordingly...
>From gcc-bugs-return-534398-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 17:37:22 2016
Return-Path: <gcc-bugs-return-534398-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 97264 invoked by alias); 12 Aug 2016 17:37:22 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 97250 invoked by uid 89); 12 Aug 2016 17:37:21 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 17:37:11 +0000
From: "krebbel at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/69847] Spec 2006 403.gcc slows down with -mlra vs. reload on PowerPC
Date: Fri, 12 Aug 2016 17:37:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: krebbel at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-69847-4-9cQGK0o6aw@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69847-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69847-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01734.txt.bz2
Content-length: 389

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69847

--- Comment #26 from Andreas Krebbel <krebbel at gcc dot gnu.org> ---
(In reply to Andreas Krebbel from comment #21)
> However, there appear to be performance regressions at least with cactusADM.

I was not able to reproduce the regression in an non-shared environment. In
fact the re-measurement shows a slight improvement instead.
>From gcc-bugs-return-534399-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 18:10:29 2016
Return-Path: <gcc-bugs-return-534399-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 29374 invoked by alias); 12 Aug 2016 18:10:29 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 29361 invoked by uid 89); 12 Aug 2016 18:10:28 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 18:10:18 +0000
From: "wschmidt at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/74585] powerpc64: Very poor code generation for homogeneous vector aggregates passed in registers
Date: Fri, 12 Aug 2016 18:10:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wschmidt at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-74585-4-I0ViiWazGr@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-74585-4@http.gcc.gnu.org/bugzilla/>
References: <bug-74585-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01735.txt.bz2
Content-length: 263

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74585

--- Comment #8 from Bill Schmidt <wschmidt at gcc dot gnu.org> ---
FYI, adding -mcpu=power9 to the options makes it much easier to read the RTL,
as it gets rid of the extra vector swaps needed for POWER8.
>From gcc-bugs-return-534400-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 18:52:29 2016
Return-Path: <gcc-bugs-return-534400-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 78475 invoked by alias); 12 Aug 2016 18:52:28 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 78466 invoked by uid 89); 12 Aug 2016 18:52:28 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=3.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=U*@@@, U*@@, @@@, D*!!
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 18:52:18 +0000
From: "wave3 at codehot dot co.uk" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75130] New: @@@@1++855++709++2847^^@@%@%@$$ Epson Printer tech support
Date: Fri, 12 Aug 2016 18:52:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 3.0.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wave3 at codehot dot co.uk
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-75130-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01736.txt.bz2
Content-length: 16209

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75130

            Bug ID: 75130
           Summary: @@@@1++855++709++2847^^@@%@%@$$ Epson Printer tech
                    support
           Product: gcc
           Version: 3.0.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: wave3 at codehot dot co.uk
  Target Milestone: ---

Created attachment 39337
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39337&action=edit
/@!!((I+855+7O9+2847+))!@#&EPSON printer suppOrt phOne number EPSON printer
technical suppOrt phOne number USA UST<:::: /@!!((I+855+7O9+2847+))!!@EPSON
printer suppOrt phOne number EPSON printer tech

/@!!((I+855+7O9+2847+))!@#&EPSON printer suppOrt phOne number EPSON printer
technical suppOrt phOne number USA UST<:::: /@!!((I+855+7O9+2847+))!!@EPSON
printer suppOrt phOne number EPSON printer tech suppOrt phOne number USA
UST<::: /@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON
printer tech suppOrt phOne number USA EPSON printer custOmer service
@@@++@@++I+855+7O9+2847 !!++++@@+++@@@@+EPSON printer suppOrt phOne number
EPSON printer tech suppOrt phOne number USA JUST<:::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA EPSON printer custOmer
service@@!!((*I+855+7O9+2847+))!!@@EPSON printer suppOrt phOne number EPSON
printer tech suppOrt phOne number USA, EPSON printer technical suppOrt phOne
number EPSON printer custOmer suppOrt phOne number EPSON printer phOne number
EPSON printer custOmer care phOne number brOhter printer custOmer care number
EPSON printer tOll free phOne number EPSON printer suppOrt EPSON suppOrt EPSON
printers suppOrt EPSON custOmer service EPSON printer help EPSON tech suppOrt
EPSON printer custOmer service EPSON printer tech suppOrt EPSON technical
suppOrt /@!!((I+855+7O9+2847+))!@#&EPSON printer suppOrt phOne number EPSON
printer technical suppOrt phOne number USA UST<::::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA UST<::: /@!!((I+855+7O9+2847+))!!@EPSON printer
suppOrt phOne number EPSON printer tech suppOrt phOne number USA EPSON printer
custOmer service @@@++@@++I+855+7O9+2847 !!++++@@+++@@@@+EPSON printer suppOrt
phOne number EPSON printer tech suppOrt phOne number USA JUST<:::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA EPSON printer custOmer
service@@!!((*I+855+7O9+2847+))!!@@EPSON printer suppOrt phOne number EPSON
printer tech suppOrt phOne number USA, EPSON printer technical suppOrt phOne
number EPSON printer custOmer suppOrt phOne number EPSON printer phOne number
EPSON printer custOmer care phOne number brOhter printer custOmer care number
EPSON printer tOll free phOne number EPSON printer suppOrt EPSON suppOrt EPSON
printers suppOrt EPSON custOmer service EPSON printer help EPSON tech suppOrt
EPSON printer custOmer service EPSON printer tech suppOrt EPSON technical
suppOrt /@!!((I+855+7O9+2847+))!@#&EPSON printer suppOrt phOne number EPSON
printer technical suppOrt phOne number USA UST<::::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA UST<::: /@!!((I+855+7O9+2847+))!!@EPSON printer
suppOrt phOne number EPSON printer tech suppOrt phOne number USA EPSON printer
custOmer service @@@++@@++I+855+7O9+2847 !!++++@@+++@@@@+EPSON printer suppOrt
phOne number EPSON printer tech suppOrt phOne number USA JUST<:::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA EPSON printer custOmer
service@@!!((*I+855+7O9+2847+))!!@@EPSON printer suppOrt phOne number EPSON
printer tech suppOrt phOne number USA, EPSON printer technical suppOrt phOne
number EPSON printer custOmer suppOrt phOne number EPSON printer phOne number
EPSON printer custOmer care phOne number brOhter printer custOmer care number
EPSON printer tOll free phOne number EPSON printer suppOrt EPSON suppOrt EPSON
printers suppOrt EPSON custOmer service EPSON printer help EPSON tech suppOrt
EPSON printer custOmer service EPSON printer tech suppOrt EPSON technical
suppOrt /@!!((I+855+7O9+2847+))!@#&EPSON printer suppOrt phOne number EPSON
printer technical suppOrt phOne number USA UST<::::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA UST<::: /@!!((I+855+7O9+2847+))!!@EPSON printer
suppOrt phOne number EPSON printer tech suppOrt phOne number USA EPSON printer
custOmer service @@@++@@++I+855+7O9+2847 !!++++@@+++@@@@+EPSON printer suppOrt
phOne number EPSON printer tech suppOrt phOne number USA JUST<:::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA EPSON printer custOmer
service@@!!((*I+855+7O9+2847+))!!@@EPSON printer suppOrt phOne number EPSON
printer tech suppOrt phOne number USA, EPSON printer technical suppOrt phOne
number EPSON printer custOmer suppOrt phOne number EPSON printer phOne number
EPSON printer custOmer care phOne number brOhter printer custOmer care number
EPSON printer tOll free phOne number EPSON printer suppOrt EPSON suppOrt EPSON
printers suppOrt EPSON custOmer service EPSON printer help EPSON tech suppOrt
EPSON printer custOmer service EPSON printer tech suppOrt EPSON technical
suppOrt /@!!((I+855+7O9+2847+))!@#&EPSON printer suppOrt phOne number EPSON
printer technical suppOrt phOne number USA UST<::::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA UST<::: /@!!((I+855+7O9+2847+))!!@EPSON printer
suppOrt phOne number EPSON printer tech suppOrt phOne number USA EPSON printer
custOmer service @@@++@@++I+855+7O9+2847 !!++++@@+++@@@@+EPSON printer suppOrt
phOne number EPSON printer tech suppOrt phOne number USA JUST<:::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA EPSON printer custOmer
service@@!!((*I+855+7O9+2847+))!!@@EPSON printer suppOrt phOne number EPSON
printer tech suppOrt phOne number USA, EPSON printer technical suppOrt phOne
number EPSON printer custOmer suppOrt phOne number EPSON printer phOne number
EPSON printer custOmer care phOne number brOhter printer custOmer care number
EPSON printer tOll free phOne number EPSON printer suppOrt EPSON suppOrt EPSON
printers suppOrt EPSON custOmer service EPSON printer help EPSON tech suppOrt
EPSON printer custOmer service EPSON printer tech suppOrt EPSON technical
suppOrt /@!!((I+855+7O9+2847+))!@#&EPSON printer suppOrt phOne number EPSON
printer technical suppOrt phOne number USA UST<::::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA UST<::: /@!!((I+855+7O9+2847+))!!@EPSON printer
suppOrt phOne number EPSON printer tech suppOrt phOne number USA EPSON printer
custOmer service @@@++@@++I+855+7O9+2847 !!++++@@+++@@@@+EPSON printer suppOrt
phOne number EPSON printer tech suppOrt phOne number USA JUST<:::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA EPSON printer custOmer
service@@!!((*I+855+7O9+2847+))!!@@EPSON printer suppOrt phOne number EPSON
printer tech suppOrt phOne number USA, EPSON printer technical suppOrt phOne
number EPSON printer custOmer suppOrt phOne number EPSON printer phOne number
EPSON printer custOmer care phOne number brOhter printer custOmer care number
EPSON printer tOll free phOne number EPSON printer suppOrt EPSON suppOrt EPSON
printers suppOrt EPSON custOmer service EPSON printer help EPSON tech suppOrt
EPSON printer custOmer service EPSON printer tech suppOrt EPSON technical
suppOrt /@!!((I+855+7O9+2847+))!@#&EPSON printer suppOrt phOne number EPSON
printer technical suppOrt phOne number USA UST<::::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA UST<::: /@!!((I+855+7O9+2847+))!!@EPSON printer
suppOrt phOne number EPSON printer tech suppOrt phOne number USA EPSON printer
custOmer service @@@++@@++I+855+7O9+2847 !!++++@@+++@@@@+EPSON printer suppOrt
phOne number EPSON printer tech suppOrt phOne number USA JUST<:::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA EPSON printer custOmer
service@@!!((*I+855+7O9+2847+))!!@@EPSON printer suppOrt phOne number EPSON
printer tech suppOrt phOne number USA, EPSON printer technical suppOrt phOne
number EPSON printer custOmer suppOrt phOne number EPSON printer phOne number
EPSON printer custOmer care phOne number brOhter printer custOmer care number
EPSON printer tOll free phOne number EPSON printer suppOrt EPSON suppOrt EPSON
printers suppOrt EPSON custOmer service EPSON printer help EPSON tech suppOrt
EPSON printer custOmer service EPSON printer tech suppOrt EPSON technical
suppOrt /@!!((I+855+7O9+2847+))!@#&EPSON printer suppOrt phOne number EPSON
printer technical suppOrt phOne number USA UST<::::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA UST<::: /@!!((I+855+7O9+2847+))!!@EPSON printer
suppOrt phOne number EPSON printer tech suppOrt phOne number USA EPSON printer
custOmer service @@@++@@++I+855+7O9+2847 !!++++@@+++@@@@+EPSON printer suppOrt
phOne number EPSON printer tech suppOrt phOne number USA JUST<:::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA EPSON printer custOmer
service@@!!((*I+855+7O9+2847+))!!@@EPSON printer suppOrt phOne number EPSON
printer tech suppOrt phOne number USA, EPSON printer technical suppOrt phOne
number EPSON printer custOmer suppOrt phOne number EPSON printer phOne number
EPSON printer custOmer care phOne number brOhter printer custOmer care number
EPSON printer tOll free phOne number EPSON printer suppOrt EPSON suppOrt EPSON
printers suppOrt EPSON custOmer service EPSON printer help EPSON tech suppOrt
EPSON printer custOmer service EPSON printer tech suppOrt EPSON technical
suppOrt /@!!((I+855+7O9+2847+))!@#&EPSON printer suppOrt phOne number EPSON
printer technical suppOrt phOne number USA UST<::::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA UST<::: /@!!((I+855+7O9+2847+))!!@EPSON printer
suppOrt phOne number EPSON printer tech suppOrt phOne number USA EPSON printer
custOmer service @@@++@@++I+855+7O9+2847 !!++++@@+++@@@@+EPSON printer suppOrt
phOne number EPSON printer tech suppOrt phOne number USA JUST<:::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA EPSON printer custOmer
service@@!!((*I+855+7O9+2847+))!!@@EPSON printer suppOrt phOne number EPSON
printer tech suppOrt phOne number USA, EPSON printer technical suppOrt phOne
number EPSON printer custOmer suppOrt phOne number EPSON printer phOne number
EPSON printer custOmer care phOne number brOhter printer custOmer care number
EPSON printer tOll free phOne number EPSON printer suppOrt EPSON suppOrt EPSON
printers suppOrt EPSON custOmer service EPSON printer help EPSON tech suppOrt
EPSON printer custOmer service EPSON printer tech suppOrt EPSON technical
suppOrt /@!!((I+855+7O9+2847+))!@#&EPSON printer suppOrt phOne number EPSON
printer technical suppOrt phOne number USA UST<::::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA UST<::: /@!!((I+855+7O9+2847+))!!@EPSON printer
suppOrt phOne number EPSON printer tech suppOrt phOne number USA EPSON printer
custOmer service @@@++@@++I+855+7O9+2847 !!++++@@+++@@@@+EPSON printer suppOrt
phOne number EPSON printer tech suppOrt phOne number USA JUST<:::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA EPSON printer custOmer
service@@!!((*I+855+7O9+2847+))!!@@EPSON printer suppOrt phOne number EPSON
printer tech suppOrt phOne number USA, EPSON printer technical suppOrt phOne
number EPSON printer custOmer suppOrt phOne number EPSON printer phOne number
EPSON printer custOmer care phOne number brOhter printer custOmer care number
EPSON printer tOll free phOne number EPSON printer suppOrt EPSON suppOrt EPSON
printers suppOrt EPSON custOmer service EPSON printer help EPSON tech suppOrt
EPSON printer custOmer service EPSON printer tech suppOrt EPSON technical
suppOrt /@!!((I+855+7O9+2847+))!@#&EPSON printer suppOrt phOne number EPSON
printer technical suppOrt phOne number USA UST<::::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA UST<::: /@!!((I+855+7O9+2847+))!!@EPSON printer
suppOrt phOne number EPSON printer tech suppOrt phOne number USA EPSON printer
custOmer service @@@++@@++I+855+7O9+2847 !!++++@@+++@@@@+EPSON printer suppOrt
phOne number EPSON printer tech suppOrt phOne number USA JUST<:::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA EPSON printer custOmer
service@@!!((*I+855+7O9+2847+))!!@@EPSON printer suppOrt phOne number EPSON
printer tech suppOrt phOne number USA, EPSON printer technical suppOrt phOne
number EPSON printer custOmer suppOrt phOne number EPSON printer phOne number
EPSON printer custOmer care phOne number brOhter printer custOmer care number
EPSON printer tOll free phOne number EPSON printer suppOrt EPSON suppOrt EPSON
printers suppOrt EPSON custOmer service EPSON printer help EPSON tech suppOrt
EPSON printer custOmer service EPSON printer tech suppOrt EPSON technical
suppOrt /@!!((I+855+7O9+2847+))!@#&EPSON printer suppOrt phOne number EPSON
printer technical suppOrt phOne number USA UST<::::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA UST<::: /@!!((I+855+7O9+2847+))!!@EPSON printer
suppOrt phOne number EPSON printer tech suppOrt phOne number USA EPSON printer
custOmer service @@@++@@++I+855+7O9+2847 !!++++@@+++@@@@+EPSON printer suppOrt
phOne number EPSON printer tech suppOrt phOne number USA JUST<:::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA EPSON printer custOmer
service@@!!((*I+855+7O9+2847+))!!@@EPSON printer suppOrt phOne number EPSON
printer tech suppOrt phOne number USA, EPSON printer technical suppOrt phOne
number EPSON printer custOmer suppOrt phOne number EPSON printer phOne number
EPSON printer custOmer care phOne number brOhter printer custOmer care number
EPSON printer tOll free phOne number EPSON printer suppOrt EPSON suppOrt EPSON
printers suppOrt EPSON custOmer service EPSON printer help EPSON tech suppOrt
EPSON printer custOmer service EPSON printer tech suppOrt EPSON technical
suppOrt /@!!((I+855+7O9+2847+))!@#&EPSON printer suppOrt phOne number EPSON
printer technical suppOrt phOne number USA UST<::::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA UST<::: /@!!((I+855+7O9+2847+))!!@EPSON printer
suppOrt phOne number EPSON printer tech suppOrt phOne number USA EPSON printer
custOmer service @@@++@@++I+855+7O9+2847 !!++++@@+++@@@@+EPSON printer suppOrt
phOne number EPSON printer tech suppOrt phOne number USA JUST<:::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA EPSON printer custOmer
service@@!!((*I+855+7O9+2847+))!!@@EPSON printer suppOrt phOne number EPSON
printer tech suppOrt phOne number USA, EPSON printer technical suppOrt phOne
number EPSON printer custOmer suppOrt phOne number EPSON printer phOne number
EPSON printer custOmer care phOne number brOhter printer custOmer care number
EPSON printer tOll free phOne number EPSON printer suppOrt EPSON suppOrt EPSON
printers suppOrt EPSON custOmer service EPSON printer help EPSON tech suppOrt
EPSON printer custOmer service EPSON printer tech suppOrt EPSON technical
suppOrt
>From gcc-bugs-return-534401-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 18:57:25 2016
Return-Path: <gcc-bugs-return-534401-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 97444 invoked by alias); 12 Aug 2016 18:57:24 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 97400 invoked by uid 89); 12 Aug 2016 18:57:24 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 18:57:14 +0000
From: "edlinger at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71083] [5/6/7 Regression] Unaligned bit-field address when predictive commoning
Date: Fri, 12 Aug 2016 18:57:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: major
X-Bugzilla-Who: edlinger at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71083-4-ETAEFwThhq@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71083-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71083-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01737.txt.bz2
Content-length: 1413

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71083

--- Comment #11 from Bernd Edlinger <edlinger at gcc dot gnu.org> ---
Author: edlinger
Date: Fri Aug 12 18:56:30 2016
New Revision: 239424

URL: https://gcc.gnu.org/viewcvs?rev=239424&root=gcc&view=rev
Log:
2016-08-12  Bernd Edlinger  <bernd.edlinger@hotmail.de>

        Backport from mainline
        2016-08-11  Bernd Edlinger  <bernd.edlinger@hotmail.de>

        PR tree-optimization/71083
        * tree-predcom.c (ref_at_iteration): Correctly align the
        reference type.

testsuite:
2016-08-12  Bernd Edlinger  <bernd.edlinger@hotmail.de>

        Backport from mainline
        2016-08-11  Bernd Edlinger  <bernd.edlinger@hotmail.de>

        PR tree-optimization/71083
        * gcc.c-torture/execute/pr71083.c: New test.
        * gnat.dg/loop_optimization23.adb: New test.
        * gnat.dg/loop_optimization23_pkg.ads: New test.
        * gnat.dg/loop_optimization23_pkg.adb: New test.

Added:
    branches/gcc-5-branch/gcc/testsuite/gcc.c-torture/execute/pr71083.c
    branches/gcc-5-branch/gcc/testsuite/gnat.dg/loop_optimization23.adb
    branches/gcc-5-branch/gcc/testsuite/gnat.dg/loop_optimization23_pkg.adb
    branches/gcc-5-branch/gcc/testsuite/gnat.dg/loop_optimization23_pkg.ads
Modified:
    branches/gcc-5-branch/gcc/ChangeLog
    branches/gcc-5-branch/gcc/testsuite/ChangeLog
    branches/gcc-5-branch/gcc/tree-predcom.c
>From gcc-bugs-return-534402-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 19:00:53 2016
Return-Path: <gcc-bugs-return-534402-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 35507 invoked by alias); 12 Aug 2016 19:00:53 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 35439 invoked by uid 89); 12 Aug 2016 19:00:53 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-0.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:266, 72858, fixit
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 19:00:41 +0000
From: "dmalcolm at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/72858] incorrect fixit hints in -Wformat diagnostics
Date: Fri, 12 Aug 2016 19:00:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dmalcolm at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: dmalcolm at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72858-4-oUE6hMWMDR@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72858-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72858-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01738.txt.bz2
Content-length: 208

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72858

--- Comment #1 from David Malcolm <dmalcolm at gcc dot gnu.org> ---
Candidate patch posted here:
https://gcc.gnu.org/ml/gcc-patches/2016-08/msg01053.html
>From gcc-bugs-return-534403-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 19:05:21 2016
Return-Path: <gcc-bugs-return-534403-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 41115 invoked by alias); 12 Aug 2016 19:05:21 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 41078 invoked by uid 89); 12 Aug 2016 19:05:20 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-0.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyÚnglin
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 19:05:10 +0000
From: "danglin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/68740] FAIL: experimental/type_erased_allocator/1.cc (test for excess errors)
Date: Fri, 12 Aug 2016 19:05:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: danglin at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: redi at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-68740-4-ntMd8Iec3E@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68740-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68740-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01739.txt.bz2
Content-length: 435

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68740

John David Anglin <danglin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #5 from John David Anglin <danglin at gcc dot gnu.org> ---
Fixed.
>From gcc-bugs-return-534404-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 19:08:51 2016
Return-Path: <gcc-bugs-return-534404-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 45102 invoked by alias); 12 Aug 2016 19:08:51 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 45080 invoked by uid 89); 12 Aug 2016 19:08:50 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=trans-mem, transmem, adf, klfohfn
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 19:08:40 +0000
From: "klfohfn at yopmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/75173] New: vczvxczv zcx  dsf sdf s adf asd
Date: Fri, 12 Aug 2016 19:08:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: trans-mem
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: klfohfn at yopmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75173-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01740.txt.bz2
Content-length: 463

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75173

            Bug ID: 75173
           Summary: vczvxczv zcx  dsf sdf s adf asd
           Product: gcc
           Version: trans-mem
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: klfohfn at yopmail dot com
  Target Milestone: ---

fsda fdasdf sdaf asdf sdf asd fwer d fasdf
>From gcc-bugs-return-534405-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 19:12:51 2016
Return-Path: <gcc-bugs-return-534405-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 54487 invoked by alias); 12 Aug 2016 19:12:51 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 54473 invoked by uid 89); 12 Aug 2016 19:12:50 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=3.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammyÊNADA, number@, aus, AUS
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 19:12:46 +0000
From: "Drythilite1976 at fleckens dot hu" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75186] New: oll fr33 nUmBeR @@++1-888-527-3401++@@ for AVG Antivirus tech & technical suppor
Date: Fri, 12 Aug 2016 19:12:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: Drythilite1976 at fleckens dot hu
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75186-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01741.txt.bz2
Content-length: 1458

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75186

            Bug ID: 75186
           Summary: oll fr33 nUmBeR @@++1-888-527-3401++@@ for AVG
                    Antivirus tech & technical suppor
           Product: gcc
           Version: 6.2.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: Drythilite1976 at fleckens dot hu
  Target Milestone: ---

oll fr33 nUmBeR @@++1-888-527-3401++@@ for AVG Antivirus tech & technical
suppor
usa+1888-527-3401+ ) Technical support number
CANADA++1888-527-3401+  Avg Antivirus Technical Support
USA-++1-8.8.8-5.2.7-3.4.0.1 contact Avg antivirus customer service phone number
AUS-+18885273401 phone number for Avg customer service
UK-+1888-527-3401+  phone number for Avg antivirus technical support
1-8.8.8-5.2.7-3.4.0.1 phone number for Avg antivirus c
Avg helpline phone number@~+1888-527-3401+  Avg tech Support Number Avg
antivirus customer service phone number
Avg Security contact Number ++1-8.8.8-5.2.7-3.4.0.1**Avg antivirus support
phone number
usa+1888-527-3401+ ) Technical support number
CANADA++1888-527-3401+  Avg Antivirus Technical Support
USA-++1-8.8.8-5.2.7-3.4.0.15contact Avg antivirus customer service phone number
AUS-+1-8.8.8-5.2.7-3.4.0.1 phone number for Avg customer service
UK-+1888-527-3401+  phone number for Avg antivirus technical support
+1-1-8.8.
>From gcc-bugs-return-534406-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 19:14:54 2016
Return-Path: <gcc-bugs-return-534406-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 56495 invoked by alias); 12 Aug 2016 19:14:54 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 56484 invoked by uid 89); 12 Aug 2016 19:14:53 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=jim, exclude, HELLO, Hx-languages-length:2305
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 19:14:43 +0000
From: "jim at jtan dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug lto/75194] New: -flto loses .debug_macro section
Date: Fri, 12 Aug 2016 19:14:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: lto
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jim at jtan dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75194-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01742.txt.bz2
Content-length: 2987

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75194

            Bug ID: 75194
           Summary: -flto loses .debug_macro section
           Product: gcc
           Version: 5.4.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: lto
          Assignee: unassigned at gcc dot gnu.org
          Reporter: jim at jtan dot com
  Target Milestone: ---

With -flto, I can't get "info macros" to work in GDB.  The .debug_macros
section seems to be lost:

$ cat test.c
#define HELLO "hello"
int main() {}
$ gcc -Wall -Wextra -o test1 test.c -ggdb3
$ gcc -Wall -Wextra -o test2 test.c -ggdb3 -flto
$ readelf -WS test1 > 1
$ readelf -WS test2 > 2
$ diff -u 1 2
--- 1   2016-08-12 15:10:04.153446089 -0400
+++ 2   2016-08-12 15:10:07.393523823 -0400
@@ -1,4 +1,4 @@
-There are 37 section headers, starting at offset 0x3398:
+There are 36 section headers, starting at offset 0x1460:

 Section Headers:
   [Nr] Name              Type            Address          Off    Size   ES Flg
Lk Inf Al
@@ -31,14 +31,13 @@
   [26] .bss              NOBITS          0000000000600890 000890 000008 00  WA
 0   0  1
   [27] .comment          PROGBITS        0000000000000000 000890 000025 01  MS
 0   0  1
   [28] .debug_aranges    PROGBITS        0000000000000000 0008b5 000030 00    
 0   0  1
-  [29] .debug_info       PROGBITS        0000000000000000 0008e5 000056 00    
 0   0  1
-  [30] .debug_abbrev     PROGBITS        0000000000000000 00093b 00003a 00    
 0   0  1
-  [31] .debug_line       PROGBITS        0000000000000000 000975 000057 00    
 0   0  1
-  [32] .debug_str        PROGBITS        0000000000000000 0009cc 0019b8 01  MS
 0   0  1
-  [33] .debug_macro      PROGBITS        0000000000000000 002384 0005f2 00    
 0   0  1
-  [34] .shstrtab         STRTAB          0000000000000000 003239 000159 00    
 0   0  1
-  [35] .symtab           SYMTAB          0000000000000000 002978 0006c0 18    
36  53  8
-  [36] .strtab           STRTAB          0000000000000000 003038 000201 00    
 0   0  1
+  [29] .debug_info       PROGBITS        0000000000000000 0008e5 000052 00    
 0   0  1
+  [30] .debug_abbrev     PROGBITS        0000000000000000 000937 000037 00    
 0   0  1
+  [31] .debug_line       PROGBITS        0000000000000000 00096e 000039 00    
 0   0  1
+  [32] .debug_str        PROGBITS        0000000000000000 0009a7 0000e0 01  MS
 0   0  1
+  [33] .shstrtab         STRTAB          0000000000000000 001312 00014c 00    
 0   0  1
+  [34] .symtab           SYMTAB          0000000000000000 000a88 000690 18    
35  51  8
+  [35] .strtab           STRTAB          0000000000000000 001118 0001fa 00    
 0   0  1
 Key to Flags:
   W (write), A (alloc), X (execute), M (merge), S (strings), l (large)
   I (info), L (link order), G (group), T (TLS), E (exclude), x (unknown)
>From gcc-bugs-return-534407-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 19:16:17 2016
Return-Path: <gcc-bugs-return-534407-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 58234 invoked by alias); 12 Aug 2016 19:16:17 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 58223 invoked by uid 89); 12 Aug 2016 19:16:16 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=3.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00,SPAM_SUBJECT1 autolearn=no version=3.3.2 spammy=U*@@@, @@@@@, 1855, 1-855
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 19:16:09 +0000
From: "shrutig736 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/75198] New: ***PrinTer call @@@@@ .1-855 709 2847 Lexmark Printer customer care
Date: Fri, 12 Aug 2016 19:16:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: 4.0.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: shrutig736 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75198-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01743.txt.bz2
Content-length: 557

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75198

            Bug ID: 75198
           Summary: ***PrinTer call @@@@@ .1-855 709 2847 Lexmark Printer
                    customer care
           Product: gcc
           Version: 4.0.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ada
          Assignee: unassigned at gcc dot gnu.org
          Reporter: shrutig736 at gmail dot com
  Target Milestone: ---

1-855 709 2847 Lexmark Printer customer care 1-855 709 2847 Lexmark Printer
customer care
>From gcc-bugs-return-534408-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 19:28:23 2016
Return-Path: <gcc-bugs-return-534408-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 99120 invoked by alias); 12 Aug 2016 19:28:23 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 99105 invoked by uid 89); 12 Aug 2016 19:28:22 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-0.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=xvfxvfxvx, new-ra, newra
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 19:28:19 +0000
From: "xvfxvfxvx at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/75250] New: norton
Date: Fri, 12 Aug 2016 19:28:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: new-ra
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: xvfxvfxvx at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75250-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01744.txt.bz2
Content-length: 393

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75250

            Bug ID: 75250
           Summary: norton
           Product: gcc
           Version: new-ra
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ada
          Assignee: unassigned at gcc dot gnu.org
          Reporter: xvfxvfxvx at gmail dot com
  Target Milestone: ---

norton
>From gcc-bugs-return-534409-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 19:31:35 2016
Return-Path: <gcc-bugs-return-534409-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 104917 invoked by alias); 12 Aug 2016 19:31:35 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 104905 invoked by uid 89); 12 Aug 2016 19:31:34 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 19:31:24 +0000
From: "edlinger at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71083] [5/6/7 Regression] Unaligned bit-field address when predictive commoning
Date: Fri, 12 Aug 2016 19:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: major
X-Bugzilla-Who: edlinger at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71083-4-5OZKHDfHdv@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71083-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71083-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01745.txt.bz2
Content-length: 535

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71083

--- Comment #12 from Bernd Edlinger <edlinger at gcc dot gnu.org> ---
Author: edlinger
Date: Fri Aug 12 19:30:39 2016
New Revision: 239426

URL: https://gcc.gnu.org/viewcvs?rev=239426&root=gcc&view=rev
Log:
2016-08-12  Bernd Edlinger  <bernd.edlinger@hotmail.de>

        PR tree-optimization/71083
        * tree-predcom.c (ref_at_iteration): Use a COMPONENT_REF for the
        bitfield access when possible.

Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/tree-predcom.c
>From gcc-bugs-return-534410-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 19:33:14 2016
Return-Path: <gcc-bugs-return-534410-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 108581 invoked by alias); 12 Aug 2016 19:33:13 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 107755 invoked by uid 89); 12 Aug 2016 19:33:13 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 19:33:03 +0000
From: "edlinger at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71083] [5/6/7 Regression] Unaligned bit-field address when predictive commoning
Date: Fri, 12 Aug 2016 19:33:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: major
X-Bugzilla-Who: edlinger at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-71083-4-K1iae3ANrM@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71083-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71083-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01746.txt.bz2
Content-length: 432

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71083

Bernd Edlinger <edlinger at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--- Comment #13 from Bernd Edlinger <edlinger at gcc dot gnu.org> ---
fixed.
>From gcc-bugs-return-534411-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 19:34:42 2016
Return-Path: <gcc-bugs-return-534411-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 110375 invoked by alias); 12 Aug 2016 19:34:41 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 110355 invoked by uid 89); 12 Aug 2016 19:34:40 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, U*@@, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 19:34:30 +0000
From: "nia77 at ov3u841 dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75276] New: @%@$$$@^^@1_8OOx790x72O8 @^^@@%CANON P.r.i.n.t.e.r t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
Date: Fri, 12 Aug 2016 19:34:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: fortran-dev
X-Bugzilla-Keywords:
X-Bugzilla-Severity: critical
X-Bugzilla-Who: nia77 at ov3u841 dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75276-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01747.txt.bz2
Content-length: 7100

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75276

            Bug ID: 75276
           Summary: @%@$$$@^^@1_8OOx790x72O8 @^^@@%CANON P.r.i.n.t.e.r
                    t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
           Product: gcc
           Version: fortran-dev
            Status: UNCONFIRMED
          Severity: critical
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: nia77 at ov3u841 dot com
  Target Milestone: ---

/@!!((I+800+681+72O8+))!!@CANON printer suppOrt phOne number CANON printer tech
suppOrt phOne number USA UST<::: /@!!((I+800+681+72O8+))!!@CANON printer
suppOrt phOne number CANON printer tech suppOrt phOne number USA CANON printer
custOmer service @@@++@@++I+800+681+72O8 !!++++@@+++@@@@+CANON printer suppOrt
phOne number CANON printer tech suppOrt phOne number USA JUST<:::
/@!!((I+800+681+72O8+))!!@CANON printer suppOrt phOne number CANON printer tech
suppOrt phOne number USA CANON printer custOmer
service@@!!((*I+800+681+72O8+))!!@@CANON printer suppOrt phOne number CANON
printer tech suppOrt phOne number USA, CANON printer technical suppOrt phOne
number CANON printer custOmer suppOrt phOne number CANON printer phOne number
CANON printer custOmer care phOne number brOhter printer custOmer care number
CANON printer tOll free phOne number CANON printer suppOrt CANON suppOrt CANON
printers suppOrt CANON custOmer service CANON printer help CANON tech suppOrt
CANON printer custOmer service CANON printer tech suppOrt CANON technical
suppOrt CANON printer trOubleshOOting CANON printers trOubleshOOting CANON
internatiOnal CANONs printer suppOrt CANON custOmer suppOrt CANON printer
technical suppOrt CANON printer repair CANON printer helpline CANON printers
custOmer service CANON service center CANONs printers suppOrt CANON helpline
CANON custOmer service phOne number install CANON printer CANON printers tech
suppOrt CANON printer suppOrt number CANON printer custOmer suppOrt CANON
printer cOntact number CANON printer prOblems CANON printers help CANON printer
service CANON printer service center CANON printer cOntact CANON custOmer
service number CANON printers helpline CANON suppOrt number CANON printer
repairs CANON printer scanner CANON printers phOne number CANON printers
custOmer suppOrt CANON suppOrt center CANON tech suppOrt phOne number CANONs
printers custOmer service CANON printer custOmer service number CANON printers
technical suppOrt CANON printer helpline number CANON suppOrt phOne number
CANON suppOrt printer CANON technical suppOrt number CANON printers cOntact
trOubleshOOting CANON printer CANON printer phOne suppOrt CANON printers
suppOrt phOne number trOubleshOOt CANON printer CANON printers cOntact number
CANONs custOmer service CANON printer number CANON phOne suppOrt CANON
trOubleshOOting CANON printer custOmer care CANON printer help desk drivers fOr
CANON printers CANON technical suppOrt phOne number CANON custOmer service
phOne cOntact CANON printers CANON printer custOmer care number CANON help desk
CANON Online suppOrt CANON custOmer suppOrt phOne number CANONs printer
custOmer service CANON printer mfc CANON printers tech suppOrt phOne number
CANON service CANONs tech suppOrt CANON printers custOmer service phOne number
CANON printer install CANON laser printers CANONs printers suppOrt CANON
printer CANON printer service centre CANON printer updates CANON inkjet printer
cOntact CANON suppOrt CANON tech suppOrt phOne CANON lc61 CANONs printers tech
suppOrt printers Online cOntact CANON printer CANONs printer CANON label
printer CANON custOmer suppOrt phOne CANON printers custOmer suppOrt number
CANON suppOrt centre CANON laser printer CANON printer custOmer service suppOrt
CANON wireless printer setup buy CANON printer Online CANON printer tech
suppOrt number CANON netwOrk printer CANON printers custOmer service number
custOmer service fOr CANON printers CANON service centre CANON wireless printer
CANON printers CANON custOmer care CANON printer Online suppOrt CANON printer
tOll free number phOne number fOr CANON printers CANON printer installatiOn
CANON printers help desk CANON printer suppOrt phOne service CANON CANON mfc
CANON printer custOmer suppOrt number CANON printers technical suppOrt phOne
number CANON printer hOtline cOntact number fOr CANON printers CANON printer
CANON.cOm suppOrt cOntact CANON printer suppOrt CANON printer trOubleshOOt
CANON telephOne suppOrt CANON printers custOmer suppOrt phOne number CANON
printer help phOne number CANON custOmer service telephOne number CANON printer
tech suppOrt phOne CANON.ca suppOrt CANON printer Online CANON multifunctiOn
printer printer suppOrt CANON printer help CANON mfc printer technical suppOrt
fOr CANON printers CANON tech suppOrt number email suppOrt CANON printers
suppOrt phOne mfc CANON CANON hl227Odw CANON printers website CANON printer
suppOrt CANON printers repair repair CANON printer CANON printers suppOrt CANON
helpline number CANON scanner printer CANON printers service CANON printers
custOmer service telephOne number CANON printer phOne number custOmer service
CANON printers review www.CANON.cOm suppOrt fOr CANON printer CANON printer
repair service CANON printer phOne number fOr CANON printer suppOrt CANON
printer website CANON printers custOmer service phOne CANON printer prOblems
and sOlutiOns CANONs printers custOmer service phOne number custOmer service
CANON printer sOlutiOn CANON CANON fax suppOrt mfc CANON printer CANON printer
custOmer service phOne CANON printer help number CANON mfc-846On drivers fOr
CANON printers CANON technical suppOrt phOne number CANON custOmer service
phOne cOntact CANON printers CANON printer custOmer care number CANON help desk
CANON Online suppOrt CANON custOmer suppOrt phOne number CANONs printer
custOmer service CANON printer mfc CANON printers tech suppOrt phOne number
CANON service CANONs tech suppOrt CANON printers custOmer service phOne number
CANON printer install CANON laser printers CANONs printers suppOrt CANON
printer CANON printer service centre CANON printer updates CANON inkjet printer
cOntact CANON suppOrt CANON tech suppOrt phOne CANON lc61 CANONs printers tech
suppOrt printers Online cOntact CANON printer CANONs printer CANON label
printer CANON custOmer suppOrt phOne CANON printers custOmer suppOrt number
CANON suppOrt centre CANON laser printer CANON printer custOmer service suppOrt
CANON wireless printer setup buy CANON printer Online CANON printer tech
suppOrt number CANON netwOrk printer CANON printers custOmer service number
custOmer service fOr CANON printers CANON service centre CANON wireless printer
CANON printers CANON custOmer care CANON printer Online suppOrt CANON printer
tOll free number phOne number fOr CANON printers CANON printer installatiOn
CANON printers help desk CANON printer suppOrt phOne service CANON CANON CANON
printer custOmer service/@!!((I+800+681+72O8+))!!@CANON printer suppOrt phOne
number CANON printer tech suppOrt phOne number USA
>From gcc-bugs-return-534412-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 19:36:17 2016
Return-Path: <gcc-bugs-return-534412-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 11599 invoked by alias); 12 Aug 2016 19:36:17 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 11587 invoked by uid 89); 12 Aug 2016 19:36:16 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, U*@@, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 19:36:06 +0000
From: "nia77 at ov3u841 dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75283] New: @%@$$$@^^@1_8OOx790x72O8 @^^@@%KODAK P.r.i.n.t.e.r t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
Date: Fri, 12 Aug 2016 19:36:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: fortran-dev
X-Bugzilla-Keywords:
X-Bugzilla-Severity: critical
X-Bugzilla-Who: nia77 at ov3u841 dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75283-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01748.txt.bz2
Content-length: 7100

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75283

            Bug ID: 75283
           Summary: @%@$$$@^^@1_8OOx790x72O8 @^^@@%KODAK P.r.i.n.t.e.r
                    t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
           Product: gcc
           Version: fortran-dev
            Status: UNCONFIRMED
          Severity: critical
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: nia77 at ov3u841 dot com
  Target Milestone: ---

/@!!((I+800+681+72O8+))!!@KODAK printer suppOrt phOne number KODAK printer tech
suppOrt phOne number USA UST<::: /@!!((I+800+681+72O8+))!!@KODAK printer
suppOrt phOne number KODAK printer tech suppOrt phOne number USA KODAK printer
custOmer service @@@++@@++I+800+681+72O8 !!++++@@+++@@@@+KODAK printer suppOrt
phOne number KODAK printer tech suppOrt phOne number USA JUST<:::
/@!!((I+800+681+72O8+))!!@KODAK printer suppOrt phOne number KODAK printer tech
suppOrt phOne number USA KODAK printer custOmer
service@@!!((*I+800+681+72O8+))!!@@KODAK printer suppOrt phOne number KODAK
printer tech suppOrt phOne number USA, KODAK printer technical suppOrt phOne
number KODAK printer custOmer suppOrt phOne number KODAK printer phOne number
KODAK printer custOmer care phOne number brOhter printer custOmer care number
KODAK printer tOll free phOne number KODAK printer suppOrt KODAK suppOrt KODAK
printers suppOrt KODAK custOmer service KODAK printer help KODAK tech suppOrt
KODAK printer custOmer service KODAK printer tech suppOrt KODAK technical
suppOrt KODAK printer trOubleshOOting KODAK printers trOubleshOOting KODAK
internatiOnal KODAKs printer suppOrt KODAK custOmer suppOrt KODAK printer
technical suppOrt KODAK printer repair KODAK printer helpline KODAK printers
custOmer service KODAK service center KODAKs printers suppOrt KODAK helpline
KODAK custOmer service phOne number install KODAK printer KODAK printers tech
suppOrt KODAK printer suppOrt number KODAK printer custOmer suppOrt KODAK
printer cOntact number KODAK printer prOblems KODAK printers help KODAK printer
service KODAK printer service center KODAK printer cOntact KODAK custOmer
service number KODAK printers helpline KODAK suppOrt number KODAK printer
repairs KODAK printer scanner KODAK printers phOne number KODAK printers
custOmer suppOrt KODAK suppOrt center KODAK tech suppOrt phOne number KODAKs
printers custOmer service KODAK printer custOmer service number KODAK printers
technical suppOrt KODAK printer helpline number KODAK suppOrt phOne number
KODAK suppOrt printer KODAK technical suppOrt number KODAK printers cOntact
trOubleshOOting KODAK printer KODAK printer phOne suppOrt KODAK printers
suppOrt phOne number trOubleshOOt KODAK printer KODAK printers cOntact number
KODAKs custOmer service KODAK printer number KODAK phOne suppOrt KODAK
trOubleshOOting KODAK printer custOmer care KODAK printer help desk drivers fOr
KODAK printers KODAK technical suppOrt phOne number KODAK custOmer service
phOne cOntact KODAK printers KODAK printer custOmer care number KODAK help desk
KODAK Online suppOrt KODAK custOmer suppOrt phOne number KODAKs printer
custOmer service KODAK printer mfc KODAK printers tech suppOrt phOne number
KODAK service KODAKs tech suppOrt KODAK printers custOmer service phOne number
KODAK printer install KODAK laser printers KODAKs printers suppOrt KODAK
printer KODAK printer service centre KODAK printer updates KODAK inkjet printer
cOntact KODAK suppOrt KODAK tech suppOrt phOne KODAK lc61 KODAKs printers tech
suppOrt printers Online cOntact KODAK printer KODAKs printer KODAK label
printer KODAK custOmer suppOrt phOne KODAK printers custOmer suppOrt number
KODAK suppOrt centre KODAK laser printer KODAK printer custOmer service suppOrt
KODAK wireless printer setup buy KODAK printer Online KODAK printer tech
suppOrt number KODAK netwOrk printer KODAK printers custOmer service number
custOmer service fOr KODAK printers KODAK service centre KODAK wireless printer
KODAK printers KODAK custOmer care KODAK printer Online suppOrt KODAK printer
tOll free number phOne number fOr KODAK printers KODAK printer installatiOn
KODAK printers help desk KODAK printer suppOrt phOne service KODAK KODAK mfc
KODAK printer custOmer suppOrt number KODAK printers technical suppOrt phOne
number KODAK printer hOtline cOntact number fOr KODAK printers KODAK printer
KODAK.cOm suppOrt cOntact KODAK printer suppOrt KODAK printer trOubleshOOt
KODAK telephOne suppOrt KODAK printers custOmer suppOrt phOne number KODAK
printer help phOne number KODAK custOmer service telephOne number KODAK printer
tech suppOrt phOne KODAK.ca suppOrt KODAK printer Online KODAK multifunctiOn
printer printer suppOrt KODAK printer help KODAK mfc printer technical suppOrt
fOr KODAK printers KODAK tech suppOrt number email suppOrt KODAK printers
suppOrt phOne mfc KODAK KODAK hl227Odw KODAK printers website KODAK printer
suppOrt KODAK printers repair repair KODAK printer KODAK printers suppOrt KODAK
helpline number KODAK scanner printer KODAK printers service KODAK printers
custOmer service telephOne number KODAK printer phOne number custOmer service
KODAK printers review www.KODAK.cOm suppOrt fOr KODAK printer KODAK printer
repair service KODAK printer phOne number fOr KODAK printer suppOrt KODAK
printer website KODAK printers custOmer service phOne KODAK printer prOblems
and sOlutiOns KODAKs printers custOmer service phOne number custOmer service
KODAK printer sOlutiOn KODAK KODAK fax suppOrt mfc KODAK printer KODAK printer
custOmer service phOne KODAK printer help number KODAK mfc-846On drivers fOr
KODAK printers KODAK technical suppOrt phOne number KODAK custOmer service
phOne cOntact KODAK printers KODAK printer custOmer care number KODAK help desk
KODAK Online suppOrt KODAK custOmer suppOrt phOne number KODAKs printer
custOmer service KODAK printer mfc KODAK printers tech suppOrt phOne number
KODAK service KODAKs tech suppOrt KODAK printers custOmer service phOne number
KODAK printer install KODAK laser printers KODAKs printers suppOrt KODAK
printer KODAK printer service centre KODAK printer updates KODAK inkjet printer
cOntact KODAK suppOrt KODAK tech suppOrt phOne KODAK lc61 KODAKs printers tech
suppOrt printers Online cOntact KODAK printer KODAKs printer KODAK label
printer KODAK custOmer suppOrt phOne KODAK printers custOmer suppOrt number
KODAK suppOrt centre KODAK laser printer KODAK printer custOmer service suppOrt
KODAK wireless printer setup buy KODAK printer Online KODAK printer tech
suppOrt number KODAK netwOrk printer KODAK printers custOmer service number
custOmer service fOr KODAK printers KODAK service centre KODAK wireless printer
KODAK printers KODAK custOmer care KODAK printer Online suppOrt KODAK printer
tOll free number phOne number fOr KODAK printers KODAK printer installatiOn
KODAK printers help desk KODAK printer suppOrt phOne service KODAK KODAK KODAK
printer custOmer service/@!!((I+800+681+72O8+))!!@KODAK printer suppOrt phOne
number KODAK printer tech suppOrt phOne number USA
>From gcc-bugs-return-534413-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 19:39:11 2016
Return-Path: <gcc-bugs-return-534413-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 24556 invoked by alias); 12 Aug 2016 19:39:11 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 24547 invoked by uid 89); 12 Aug 2016 19:39:10 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=1.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00,UNWANTED_LANGUAGE_BODY autolearn=ham version=3.3.2 spammy=Mac
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 19:39:04 +0000
From: "edlinger at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/72833] [7 regression] error in fortran/parse.c (unexpected_eof) on Mac OS X 10.7
Date: Fri, 12 Aug 2016 19:39:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: edlinger at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-72833-4-YXoebWwWV8@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72833-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72833-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01749.txt.bz2
Content-length: 432

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72833

Bernd Edlinger <edlinger at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--- Comment #15 from Bernd Edlinger <edlinger at gcc dot gnu.org> ---
fixed.
>From gcc-bugs-return-534414-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 19:57:11 2016
Return-Path: <gcc-bugs-return-534414-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 112996 invoked by alias); 12 Aug 2016 19:57:11 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 112986 invoked by uid 89); 12 Aug 2016 19:57:10 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 19:57:00 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/71512] ICE: verify_gimple failed with UBSAN
Date: Fri, 12 Aug 2016 19:57:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71512-4-IVjD4VbTyz@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71512-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71512-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01750.txt.bz2
Content-length: 914

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71512

--- Comment #5 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Author: jakub
Date: Fri Aug 12 19:56:26 2016
New Revision: 239430

URL: https://gcc.gnu.org/viewcvs?rev=239430&root=gcc&view=rev
Log:
        PR c/71512
        * ubsan.c (instrument_si_overflow): Pass true instead of false
        to gsi_replace.
        (pass_ubsan::execute): Call gimple_purge_dead_eh_edges at the end
        of bbs.  Return TODO_cleanup_cfg if any returned true.

        * g++.dg/ubsan/pr71512.C: New test.
        * c-c++-common/ubsan/pr71512-1.c: New test.
        * c-c++-common/ubsan/pr71512-2.c: New test.

Added:
    trunk/gcc/testsuite/c-c++-common/ubsan/pr71512-1.c
    trunk/gcc/testsuite/c-c++-common/ubsan/pr71512-2.c
    trunk/gcc/testsuite/g++.dg/ubsan/pr71512.C
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/ubsan.c
>From gcc-bugs-return-534416-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 19:58:41 2016
Return-Path: <gcc-bugs-return-534416-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 116567 invoked by alias); 12 Aug 2016 19:58:41 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 116555 invoked by uid 89); 12 Aug 2016 19:58:40 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 19:58:36 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/71512] ICE: verify_gimple failed with UBSAN
Date: Fri, 12 Aug 2016 19:58:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-71512-4-OIuOi2ni8P@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71512-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71512-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01752.txt.bz2
Content-length: 1380

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71512

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #6 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Author: jakub
Date: Fri Aug 12 19:57:35 2016
New Revision: 239431

URL: https://gcc.gnu.org/viewcvs?rev=239431&root=gcc&view=rev
Log:
        PR c/71512
        * ubsan.c (instrument_si_overflow): Pass true instead of false
        to gsi_replace.
        (pass_ubsan::execute): Call gimple_purge_dead_eh_edges at the end
        of bbs.  Return TODO_cleanup_cfg if any returned true.

        * g++.dg/ubsan/pr71512.C: New test.
        * c-c++-common/ubsan/pr71512-1.c: New test.
        * c-c++-common/ubsan/pr71512-2.c: New test.

Added:
    branches/gcc-6-branch/gcc/testsuite/c-c++-common/ubsan/pr71512-1.c
    branches/gcc-6-branch/gcc/testsuite/c-c++-common/ubsan/pr71512-2.c
    branches/gcc-6-branch/gcc/testsuite/g++.dg/ubsan/pr71512.C
Modified:
    branches/gcc-6-branch/gcc/ChangeLog
    branches/gcc-6-branch/gcc/testsuite/ChangeLog
    branches/gcc-6-branch/gcc/ubsan.c

--- Comment #7 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Fixed.
>From gcc-bugs-return-534415-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 19:58:20 2016
Return-Path: <gcc-bugs-return-534415-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 115567 invoked by alias); 12 Aug 2016 19:58:20 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 115556 invoked by uid 89); 12 Aug 2016 19:58:19 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 19:58:09 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/71512] ICE: verify_gimple failed with UBSAN
Date: Fri, 12 Aug 2016 19:58:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71512-4-fuP4ET7qg5@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71512-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71512-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01751.txt.bz2
Content-length: 1010

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71512

--- Comment #6 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Author: jakub
Date: Fri Aug 12 19:57:35 2016
New Revision: 239431

URL: https://gcc.gnu.org/viewcvs?rev=239431&root=gcc&view=rev
Log:
        PR c/71512
        * ubsan.c (instrument_si_overflow): Pass true instead of false
        to gsi_replace.
        (pass_ubsan::execute): Call gimple_purge_dead_eh_edges at the end
        of bbs.  Return TODO_cleanup_cfg if any returned true.

        * g++.dg/ubsan/pr71512.C: New test.
        * c-c++-common/ubsan/pr71512-1.c: New test.
        * c-c++-common/ubsan/pr71512-2.c: New test.

Added:
    branches/gcc-6-branch/gcc/testsuite/c-c++-common/ubsan/pr71512-1.c
    branches/gcc-6-branch/gcc/testsuite/c-c++-common/ubsan/pr71512-2.c
    branches/gcc-6-branch/gcc/testsuite/g++.dg/ubsan/pr71512.C
Modified:
    branches/gcc-6-branch/gcc/ChangeLog
    branches/gcc-6-branch/gcc/testsuite/ChangeLog
    branches/gcc-6-branch/gcc/ubsan.c
>From gcc-bugs-return-534417-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 19:59:03 2016
Return-Path: <gcc-bugs-return-534417-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 117520 invoked by alias); 12 Aug 2016 19:59:02 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 117503 invoked by uid 89); 12 Aug 2016 19:59:01 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 19:58:51 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/71512] ICE: verify_gimple failed with UBSAN
Date: Fri, 12 Aug 2016 19:59:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-71512-4-SnUy5sYXKn@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71512-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71512-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01753.txt.bz2
Content-length: 423

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71512

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #7 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Fixed.
>From gcc-bugs-return-534418-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 20:00:03 2016
Return-Path: <gcc-bugs-return-534418-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 118955 invoked by alias); 12 Aug 2016 20:00:03 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 118875 invoked by uid 89); 12 Aug 2016 20:00:01 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 19:59:51 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/67410] [5 Regression] c/c-typeck.c references out of bounds array
Date: Fri, 12 Aug 2016 20:00:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 5.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: short_desc
Message-ID: <bug-67410-4-cBQl4UvNFO@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67410-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67410-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01754.txt.bz2
Content-length: 532

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67410

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|[5/6/7 Regression]          |[5 Regression] c/c-typeck.c
                   |c/c-typeck.c references out |references out of bounds
                   |of bounds array             |array

--- Comment #7 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Fixed for 6.2+ so far.
>From gcc-bugs-return-534419-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 20:02:03 2016
Return-Path: <gcc-bugs-return-534419-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 122199 invoked by alias); 12 Aug 2016 20:02:03 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 122186 invoked by uid 89); 12 Aug 2016 20:02:02 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 20:01:52 +0000
From: "segher at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/43669] libgcc build fails with  Error: cannot represent subtraction with an offset
Date: Fri, 12 Aug 2016 20:02:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 4.5.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: segher at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-43669-4-3J1djmig7o@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-43669-4@http.gcc.gnu.org/bugzilla/>
References: <bug-43669-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01755.txt.bz2
Content-length: 444

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=43669

Segher Boessenkool <segher at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |FIXED

--- Comment #3 from Segher Boessenkool <segher at gcc dot gnu.org> ---
Assuming fixed.
>From gcc-bugs-return-534420-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 20:22:06 2016
Return-Path: <gcc-bugs-return-534420-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 53772 invoked by alias); 12 Aug 2016 20:22:06 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 53759 invoked by uid 89); 12 Aug 2016 20:22:05 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=clocks, constantly, Hx-languages-length:931
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 20:21:55 +0000
From: "nfitzgerald at mozilla dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/75402] New: std::condition_variable::wait_until wakes up constantly
Date: Fri, 12 Aug 2016 20:22:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: nfitzgerald at mozilla dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-75402-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01756.txt.bz2
Content-length: 985

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75402

            Bug ID: 75402
           Summary: std::condition_variable::wait_until wakes up
                    constantly
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: libstdc++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: nfitzgerald at mozilla dot com
  Target Milestone: ---

Created attachment 39353
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39353&action=edit
testcase.cpp

Expected:

The thread calling std::condition_variable::wait_until has no (or very very
few) wake ups until the specified timeout

Actual:

The thread is woken up constantly.

std::condition_variable::wait_until ends up passing a bad timespec as the futex
timeout.

----------------

This test case fails with both std::chrono::steady_clock and
std::chrono::system_clock. I didn't test any other clocks.
>From gcc-bugs-return-534421-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 20:35:49 2016
Return-Path: <gcc-bugs-return-534421-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 108676 invoked by alias); 12 Aug 2016 20:35:49 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 108663 invoked by uid 89); 12 Aug 2016 20:35:48 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, U*@@, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 20:35:38 +0000
From: "wave4 at codehot dot co.uk" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75415] New: @%@$$$@^^@1_855x709x2847 @@@^^@@%EPSON  P.r.i.n.t.e.r t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
Date: Fri, 12 Aug 2016 20:35:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: fortran-dev
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wave4 at codehot dot co.uk
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75415-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01757.txt.bz2
Content-length: 7232

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75415

            Bug ID: 75415
           Summary: @%@$$$@^^@1_855x709x2847 @@@^^@@%EPSON  P.r.i.n.t.e.r
                    t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
           Product: gcc
           Version: fortran-dev
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: wave4 at codehot dot co.uk
  Target Milestone: ---

re <:::: /@!!((I+855+7O9+2847+))!@#&EPSON printer suppOrt phOne number EPSON
printer technical suppOrt phOne number USA UST<::::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA UST<::: /@!!((I+855+7O9+2847+))!!@EPSON printer
suppOrt phOne number EPSON printer tech suppOrt phOne number USA EPSON printer
custOmer service @@@++@@++I+855+7O9+2847 !!++++@@+++@@@@+EPSON printer suppOrt
phOne number EPSON printer tech suppOrt phOne number USA JUST<:::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA EPSON printer custOmer
service@@!!((*I+855+7O9+2847+))!!@@EPSON printer suppOrt phOne number EPSON
printer tech suppOrt phOne number USA, EPSON printer technical suppOrt phOne
number EPSON printer custOmer suppOrt phOne number EPSON printer phOne number
EPSON printer custOmer care phOne number brOhter printer custOmer care number
EPSON printer tOll free phOne number EPSON printer suppOrt EPSON suppOrt EPSON
printers suppOrt EPSON custOmer service EPSON printer help EPSON tech suppOrt
EPSON printer custOmer service EPSON printer tech suppOrt EPSON technical
suppOrt EPSON printer trOubleshOOting EPSON printers trOubleshOOting EPSON
internatiOnal EPSONs printer suppOrt EPSON custOmer suppOrt EPSON printer
technical suppOrt EPSON printer repair EPSON printer helpline EPSON printers
custOmer service EPSON service center EPSONs printers suppOrt EPSON helpline
EPSON custOmer service phOne number install EPSON printer EPSON printers tech
suppOrt EPSON printer suppOrt number EPSON printer custOmer suppOrt EPSON
printer cOntact number EPSON printer prOblems EPSON printers help EPSON printer
service EPSON printer service center EPSON printer cOntact EPSON custOmer
service number EPSON printers helpline EPSON suppOrt number EPSON printer
repairs EPSON printer scanner EPSON printers phOne number EPSON printers
custOmer suppOrt EPSON suppOrt center EPSON tech suppOrt phOne number EPSONs
printers custOmer service EPSON printer custOmer service number EPSON printers
technical suppOrt EPSON printer helpline number EPSON suppOrt phOne number
EPSON suppOrt printer EPSON technical suppOrt number EPSON printers cOntact
trOubleshOOting EPSON printer EPSON printer phOne suppOrt EPSON printers
suppOrt phOne number trOubleshOOt EPSON printer EPSON printers cOntact number
EPSONs custOmer service EPSON printer number EPSON phOne suppOrt EPSON
trOubleshOOting EPSON printer custOmer care EPSON printer help desk drivers fOr
EPSON printers EPSON technical suppOrt phOne number EPSON custOmer service
phOne cOntact EPSON printers EPSON printer custOmer care number EPSON help desk
EPSON Online suppOrt EPSON custOmer suppOrt phOne number EPSONs printer
custOmer service EPSON printer mfc EPSON printers tech suppOrt phOne number
EPSON service EPSONs tech suppOrt EPSON printers custOmer service phOne number
EPSON printer install EPSON laser printers EPSONs printers suppOrt EPSON
printer EPSON printer service centre EPSON printer updates EPSON inkjet printer
cOntact EPSON suppOrt EPSON tech suppOrt phOne EPSON lc61 EPSONs printers tech
suppOrt printers Online cOntact EPSON printer EPSONs printer EPSON label
printer EPSON custOmer suppOrt phOne EPSON printers custOmer suppOrt number
EPSON suppOrt centre EPSON laser printer EPSON printer custOmer service suppOrt
EPSON wireless printer setup buy EPSON printer Online EPSON printer tech
suppOrt number EPSON netwOrk printer EPSON printers custOmer service number
custOmer service fOr EPSON printers EPSON service centre EPSON wireless printer
EPSON printers EPSON custOmer care EPSON printer Online suppOrt EPSON printer
tOll free number phOne number fOr EPSON printers EPSON printer installatiOn
EPSON printers help desk EPSON printer suppOrt phOne service EPSON EPSON mfc
EPSON printer custOmer suppOrt number EPSON printers technical suppOrt phOne
number EPSON printer hOtline cOntact number fOr EPSON printers EPSON printer
EPSON.cOm suppOrt cOntact EPSON printer suppOrt EPSON printer trOubleshOOt
EPSON telephOne suppOrt EPSON printers custOmer suppOrt phOne number EPSON
printer help phOne number EPSON custOmer service telephOne number EPSON printer
tech suppOrt phOne EPSON.ca suppOrt EPSON printer Online EPSON multifunctiOn
printer printer suppOrt EPSON printer help EPSON mfc printer technical suppOrt
fOr EPSON printers EPSON tech suppOrt number email suppOrt EPSON printers
suppOrt phOne mfc EPSON EPSON hl227Odw EPSON printers website EPSON printer
suppOrt EPSON printers repair repair EPSON printer EPSON printers suppOrt EPSON
helpline number EPSON scanner printer EPSON printers service EPSON printers
custOmer service telephOne number EPSON printer phOne number custOmer service
EPSON printers review www.EPSON.cOm suppOrt fOr EPSON printer EPSON printer
repair service EPSON printer phOne number fOr EPSON printer suppOrt EPSON
printer website EPSON printers custOmer service phOne EPSON printer prOblems
and sOlutiOns EPSONs printers custOmer service phOne number custOmer service
EPSON printer sOlutiOn EPSON EPSON fax suppOrt mfc EPSON printer EPSON printer
custOmer service phOne EPSON printer help number EPSON mfc-846On drivers fOr
EPSON printers EPSON technical suppOrt phOne number EPSON custOmer service
phOne cOntact EPSON printers EPSON printer custOmer care number EPSON help desk
EPSON Online suppOrt EPSON custOmer suppOrt phOne number EPSONs printer
custOmer service EPSON printer mfc EPSON printers tech suppOrt phOne number
EPSON service EPSONs tech suppOrt EPSON printers custOmer service phOne number
EPSON printer install EPSON laser printers EPSONs printers suppOrt EPSON
printer EPSON printer service centre EPSON printer updates EPSON inkjet printer
cOntact EPSON suppOrt EPSON tech suppOrt phOne EPSON lc61 EPSONs printers tech
suppOrt printers Online cOntact EPSON printer EPSONs printer EPSON label
printer EPSON custOmer suppOrt phOne EPSON printers custOmer suppOrt number
EPSON suppOrt centre EPSON laser printer EPSON printer custOmer service suppOrt
EPSON wireless printer setup buy EPSON printer Online EPSON printer tech
suppOrt number EPSON netwOrk printer EPSON printers custOmer service number
custOmer service fOr EPSON printers EPSON service centre EPSON wireless printer
EPSON printers EPSON custOmer care EPSON printer Online suppOrt EPSON printer
tOll free number phOne number fOr EPSON printers EPSON printer installatiOn
EPSON printers help desk EPSON printer suppOrt phOne service EPSON EPSON EPSON
printer custOmer service/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne
number EPSON printer tech suppOrt phOne number USA
>From gcc-bugs-return-534422-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 20:39:06 2016
Return-Path: <gcc-bugs-return-534422-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 115003 invoked by alias); 12 Aug 2016 20:39:06 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 114982 invoked by uid 89); 12 Aug 2016 20:39:06 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, U*@@, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 20:38:55 +0000
From: "harsh10 at codehot dot co.uk" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75422] New: @%@$$$@^^@1_855x709x2847 @@@^^@@%LEXMARK P.r.i.n.t.e.r t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
Date: Fri, 12 Aug 2016 20:39:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: fortran-dev
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: harsh10 at codehot dot co.uk
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75422-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01758.txt.bz2
Content-length: 7713

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75422

            Bug ID: 75422
           Summary: @%@$$$@^^@1_855x709x2847 @@@^^@@%LEXMARK P.r.i.n.t.e.r
                    t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
           Product: gcc
           Version: fortran-dev
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: harsh10 at codehot dot co.uk
  Target Milestone: ---

re <:::: /@!!((I+855+7O9+2847+))!@#&LEXMARK printer suppOrt phOne number
LEXMARK printer technical suppOrt phOne number USA UST<::::
/@!!((I+855+7O9+2847+))!!@LEXMARK printer suppOrt phOne number LEXMARK printer
tech suppOrt phOne number USA UST<::: /@!!((I+855+7O9+2847+))!!@LEXMARK printer
suppOrt phOne number LEXMARK printer tech suppOrt phOne number USA LEXMARK
printer custOmer service @@@++@@++I+855+7O9+2847 !!++++@@+++@@@@+LEXMARK
printer suppOrt phOne number LEXMARK printer tech suppOrt phOne number USA
JUST<::: /@!!((I+855+7O9+2847+))!!@LEXMARK printer suppOrt phOne number LEXMARK
printer tech suppOrt phOne number USA LEXMARK printer custOmer
service@@!!((*I+855+7O9+2847+))!!@@LEXMARK printer suppOrt phOne number LEXMARK
printer tech suppOrt phOne number USA, LEXMARK printer technical suppOrt phOne
number LEXMARK printer custOmer suppOrt phOne number LEXMARK printer phOne
number LEXMARK printer custOmer care phOne number brOhter printer custOmer care
number LEXMARK printer tOll free phOne number LEXMARK printer suppOrt LEXMARK
suppOrt LEXMARK printers suppOrt LEXMARK custOmer service LEXMARK printer help
LEXMARK tech suppOrt LEXMARK printer custOmer service LEXMARK printer tech
suppOrt LEXMARK technical suppOrt LEXMARK printer trOubleshOOting LEXMARK
printers trOubleshOOting LEXMARK internatiOnal LEXMARKs printer suppOrt LEXMARK
custOmer suppOrt LEXMARK printer technical suppOrt LEXMARK printer repair
LEXMARK printer helpline LEXMARK printers custOmer service LEXMARK service
center LEXMARKs printers suppOrt LEXMARK helpline LEXMARK custOmer service
phOne number install LEXMARK printer LEXMARK printers tech suppOrt LEXMARK
printer suppOrt number LEXMARK printer custOmer suppOrt LEXMARK printer cOntact
number LEXMARK printer prOblems LEXMARK printers help LEXMARK printer service
LEXMARK printer service center LEXMARK printer cOntact LEXMARK custOmer service
number LEXMARK printers helpline LEXMARK suppOrt number LEXMARK printer repairs
LEXMARK printer scanner LEXMARK printers phOne number LEXMARK printers custOmer
suppOrt LEXMARK suppOrt center LEXMARK tech suppOrt phOne number LEXMARKs
printers custOmer service LEXMARK printer custOmer service number LEXMARK
printers technical suppOrt LEXMARK printer helpline number LEXMARK suppOrt
phOne number LEXMARK suppOrt printer LEXMARK technical suppOrt number LEXMARK
printers cOntact trOubleshOOting LEXMARK printer LEXMARK printer phOne suppOrt
LEXMARK printers suppOrt phOne number trOubleshOOt LEXMARK printer LEXMARK
printers cOntact number LEXMARKs custOmer service LEXMARK printer number
LEXMARK phOne suppOrt LEXMARK trOubleshOOting LEXMARK printer custOmer care
LEXMARK printer help desk drivers fOr LEXMARK printers LEXMARK technical
suppOrt phOne number LEXMARK custOmer service phOne cOntact LEXMARK printers
LEXMARK printer custOmer care number LEXMARK help desk LEXMARK Online suppOrt
LEXMARK custOmer suppOrt phOne number LEXMARKs printer custOmer service LEXMARK
printer mfc LEXMARK printers tech suppOrt phOne number LEXMARK service LEXMARKs
tech suppOrt LEXMARK printers custOmer service phOne number LEXMARK printer
install LEXMARK laser printers LEXMARKs printers suppOrt LEXMARK printer
LEXMARK printer service centre LEXMARK printer updates LEXMARK inkjet printer
cOntact LEXMARK suppOrt LEXMARK tech suppOrt phOne LEXMARK lc61 LEXMARKs
printers tech suppOrt printers Online cOntact LEXMARK printer LEXMARKs printer
LEXMARK label printer LEXMARK custOmer suppOrt phOne LEXMARK printers custOmer
suppOrt number LEXMARK suppOrt centre LEXMARK laser printer LEXMARK printer
custOmer service suppOrt LEXMARK wireless printer setup buy LEXMARK printer
Online LEXMARK printer tech suppOrt number LEXMARK netwOrk printer LEXMARK
printers custOmer service number custOmer service fOr LEXMARK printers LEXMARK
service centre LEXMARK wireless printer LEXMARK printers LEXMARK custOmer care
LEXMARK printer Online suppOrt LEXMARK printer tOll free number phOne number
fOr LEXMARK printers LEXMARK printer installatiOn LEXMARK printers help desk
LEXMARK printer suppOrt phOne service LEXMARK LEXMARK mfc LEXMARK printer
custOmer suppOrt number LEXMARK printers technical suppOrt phOne number LEXMARK
printer hOtline cOntact number fOr LEXMARK printers LEXMARK printer LEXMARK.cOm
suppOrt cOntact LEXMARK printer suppOrt LEXMARK printer trOubleshOOt LEXMARK
telephOne suppOrt LEXMARK printers custOmer suppOrt phOne number LEXMARK
printer help phOne number LEXMARK custOmer service telephOne number LEXMARK
printer tech suppOrt phOne LEXMARK.ca suppOrt LEXMARK printer Online LEXMARK
multifunctiOn printer printer suppOrt LEXMARK printer help LEXMARK mfc printer
technical suppOrt fOr LEXMARK printers LEXMARK tech suppOrt number email
suppOrt LEXMARK printers suppOrt phOne mfc LEXMARK LEXMARK hl227Odw LEXMARK
printers website LEXMARK printer suppOrt LEXMARK printers repair repair LEXMARK
printer LEXMARK printers suppOrt LEXMARK helpline number LEXMARK scanner
printer LEXMARK printers service LEXMARK printers custOmer service telephOne
number LEXMARK printer phOne number custOmer service LEXMARK printers review
www.LEXMARK.cOm suppOrt fOr LEXMARK printer LEXMARK printer repair service
LEXMARK printer phOne number fOr LEXMARK printer suppOrt LEXMARK printer
website LEXMARK printers custOmer service phOne LEXMARK printer prOblems and
sOlutiOns LEXMARKs printers custOmer service phOne number custOmer service
LEXMARK printer sOlutiOn LEXMARK LEXMARK fax suppOrt mfc LEXMARK printer
LEXMARK printer custOmer service phOne LEXMARK printer help number LEXMARK
mfc-846On drivers fOr LEXMARK printers LEXMARK technical suppOrt phOne number
LEXMARK custOmer service phOne cOntact LEXMARK printers LEXMARK printer
custOmer care number LEXMARK help desk LEXMARK Online suppOrt LEXMARK custOmer
suppOrt phOne number LEXMARKs printer custOmer service LEXMARK printer mfc
LEXMARK printers tech suppOrt phOne number LEXMARK service LEXMARKs tech
suppOrt LEXMARK printers custOmer service phOne number LEXMARK printer install
LEXMARK laser printers LEXMARKs printers suppOrt LEXMARK printer LEXMARK
printer service centre LEXMARK printer updates LEXMARK inkjet printer cOntact
LEXMARK suppOrt LEXMARK tech suppOrt phOne LEXMARK lc61 LEXMARKs printers tech
suppOrt printers Online cOntact LEXMARK printer LEXMARKs printer LEXMARK label
printer LEXMARK custOmer suppOrt phOne LEXMARK printers custOmer suppOrt number
LEXMARK suppOrt centre LEXMARK laser printer LEXMARK printer custOmer service
suppOrt LEXMARK wireless printer setup buy LEXMARK printer Online LEXMARK
printer tech suppOrt number LEXMARK netwOrk printer LEXMARK printers custOmer
service number custOmer service fOr LEXMARK printers LEXMARK service centre
LEXMARK wireless printer LEXMARK printers LEXMARK custOmer care LEXMARK printer
Online suppOrt LEXMARK printer tOll free number phOne number fOr LEXMARK
printers LEXMARK printer installatiOn LEXMARK printers help desk LEXMARK
printer suppOrt phOne service LEXMARK LEXMARK LEXMARK printer custOmer
service/@!!((I+855+7O9+2847+))!!@LEXMARK printer suppOrt phOne number LEXMARK
printer tech suppOrt phOne number USA
>From gcc-bugs-return-534423-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 20:41:37 2016
Return-Path: <gcc-bugs-return-534423-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 120678 invoked by alias); 12 Aug 2016 20:41:37 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 120662 invoked by uid 89); 12 Aug 2016 20:41:36 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, U*@@, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 20:41:26 +0000
From: "wave4 at codehot dot co.uk" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75425] New: @%@$$$@^^@1_855x709x2847 @@@@^^@@% Lexmark P.r.i.n.t.e.r t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
Date: Fri, 12 Aug 2016 20:41:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: fortran-dev
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wave4 at codehot dot co.uk
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75425-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01759.txt.bz2
Content-length: 7733

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75425

            Bug ID: 75425
           Summary: @%@$$$@^^@1_855x709x2847 @@@@^^@@% Lexmark
                    P.r.i.n.t.e.r t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e
                    n.u.m.b.e.r
           Product: gcc
           Version: fortran-dev
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: wave4 at codehot dot co.uk
  Target Milestone: ---

re <:::: /@!!((I+855+7O9+2847+))!@#&LEXMARK printer suppOrt phOne number
LEXMARK printer technical suppOrt phOne number USA UST<::::
/@!!((I+855+7O9+2847+))!!@LEXMARK printer suppOrt phOne number LEXMARK printer
tech suppOrt phOne number USA UST<::: /@!!((I+855+7O9+2847+))!!@LEXMARK printer
suppOrt phOne number LEXMARK printer tech suppOrt phOne number USA LEXMARK
printer custOmer service @@@++@@++I+855+7O9+2847 !!++++@@+++@@@@+LEXMARK
printer suppOrt phOne number LEXMARK printer tech suppOrt phOne number USA
JUST<::: /@!!((I+855+7O9+2847+))!!@LEXMARK printer suppOrt phOne number LEXMARK
printer tech suppOrt phOne number USA LEXMARK printer custOmer
service@@!!((*I+855+7O9+2847+))!!@@LEXMARK printer suppOrt phOne number LEXMARK
printer tech suppOrt phOne number USA, LEXMARK printer technical suppOrt phOne
number LEXMARK printer custOmer suppOrt phOne number LEXMARK printer phOne
number LEXMARK printer custOmer care phOne number brOhter printer custOmer care
number LEXMARK printer tOll free phOne number LEXMARK printer suppOrt LEXMARK
suppOrt LEXMARK printers suppOrt LEXMARK custOmer service LEXMARK printer help
LEXMARK tech suppOrt LEXMARK printer custOmer service LEXMARK printer tech
suppOrt LEXMARK technical suppOrt LEXMARK printer trOubleshOOting LEXMARK
printers trOubleshOOting LEXMARK internatiOnal LEXMARKs printer suppOrt LEXMARK
custOmer suppOrt LEXMARK printer technical suppOrt LEXMARK printer repair
LEXMARK printer helpline LEXMARK printers custOmer service LEXMARK service
center LEXMARKs printers suppOrt LEXMARK helpline LEXMARK custOmer service
phOne number install LEXMARK printer LEXMARK printers tech suppOrt LEXMARK
printer suppOrt number LEXMARK printer custOmer suppOrt LEXMARK printer cOntact
number LEXMARK printer prOblems LEXMARK printers help LEXMARK printer service
LEXMARK printer service center LEXMARK printer cOntact LEXMARK custOmer service
number LEXMARK printers helpline LEXMARK suppOrt number LEXMARK printer repairs
LEXMARK printer scanner LEXMARK printers phOne number LEXMARK printers custOmer
suppOrt LEXMARK suppOrt center LEXMARK tech suppOrt phOne number LEXMARKs
printers custOmer service LEXMARK printer custOmer service number LEXMARK
printers technical suppOrt LEXMARK printer helpline number LEXMARK suppOrt
phOne number LEXMARK suppOrt printer LEXMARK technical suppOrt number LEXMARK
printers cOntact trOubleshOOting LEXMARK printer LEXMARK printer phOne suppOrt
LEXMARK printers suppOrt phOne number trOubleshOOt LEXMARK printer LEXMARK
printers cOntact number LEXMARKs custOmer service LEXMARK printer number
LEXMARK phOne suppOrt LEXMARK trOubleshOOting LEXMARK printer custOmer care
LEXMARK printer help desk drivers fOr LEXMARK printers LEXMARK technical
suppOrt phOne number LEXMARK custOmer service phOne cOntact LEXMARK printers
LEXMARK printer custOmer care number LEXMARK help desk LEXMARK Online suppOrt
LEXMARK custOmer suppOrt phOne number LEXMARKs printer custOmer service LEXMARK
printer mfc LEXMARK printers tech suppOrt phOne number LEXMARK service LEXMARKs
tech suppOrt LEXMARK printers custOmer service phOne number LEXMARK printer
install LEXMARK laser printers LEXMARKs printers suppOrt LEXMARK printer
LEXMARK printer service centre LEXMARK printer updates LEXMARK inkjet printer
cOntact LEXMARK suppOrt LEXMARK tech suppOrt phOne LEXMARK lc61 LEXMARKs
printers tech suppOrt printers Online cOntact LEXMARK printer LEXMARKs printer
LEXMARK label printer LEXMARK custOmer suppOrt phOne LEXMARK printers custOmer
suppOrt number LEXMARK suppOrt centre LEXMARK laser printer LEXMARK printer
custOmer service suppOrt LEXMARK wireless printer setup buy LEXMARK printer
Online LEXMARK printer tech suppOrt number LEXMARK netwOrk printer LEXMARK
printers custOmer service number custOmer service fOr LEXMARK printers LEXMARK
service centre LEXMARK wireless printer LEXMARK printers LEXMARK custOmer care
LEXMARK printer Online suppOrt LEXMARK printer tOll free number phOne number
fOr LEXMARK printers LEXMARK printer installatiOn LEXMARK printers help desk
LEXMARK printer suppOrt phOne service LEXMARK LEXMARK mfc LEXMARK printer
custOmer suppOrt number LEXMARK printers technical suppOrt phOne number LEXMARK
printer hOtline cOntact number fOr LEXMARK printers LEXMARK printer LEXMARK.cOm
suppOrt cOntact LEXMARK printer suppOrt LEXMARK printer trOubleshOOt LEXMARK
telephOne suppOrt LEXMARK printers custOmer suppOrt phOne number LEXMARK
printer help phOne number LEXMARK custOmer service telephOne number LEXMARK
printer tech suppOrt phOne LEXMARK.ca suppOrt LEXMARK printer Online LEXMARK
multifunctiOn printer printer suppOrt LEXMARK printer help LEXMARK mfc printer
technical suppOrt fOr LEXMARK printers LEXMARK tech suppOrt number email
suppOrt LEXMARK printers suppOrt phOne mfc LEXMARK LEXMARK hl227Odw LEXMARK
printers website LEXMARK printer suppOrt LEXMARK printers repair repair LEXMARK
printer LEXMARK printers suppOrt LEXMARK helpline number LEXMARK scanner
printer LEXMARK printers service LEXMARK printers custOmer service telephOne
number LEXMARK printer phOne number custOmer service LEXMARK printers review
www.LEXMARK.cOm suppOrt fOr LEXMARK printer LEXMARK printer repair service
LEXMARK printer phOne number fOr LEXMARK printer suppOrt LEXMARK printer
website LEXMARK printers custOmer service phOne LEXMARK printer prOblems and
sOlutiOns LEXMARKs printers custOmer service phOne number custOmer service
LEXMARK printer sOlutiOn LEXMARK LEXMARK fax suppOrt mfc LEXMARK printer
LEXMARK printer custOmer service phOne LEXMARK printer help number LEXMARK
mfc-846On drivers fOr LEXMARK printers LEXMARK technical suppOrt phOne number
LEXMARK custOmer service phOne cOntact LEXMARK printers LEXMARK printer
custOmer care number LEXMARK help desk LEXMARK Online suppOrt LEXMARK custOmer
suppOrt phOne number LEXMARKs printer custOmer service LEXMARK printer mfc
LEXMARK printers tech suppOrt phOne number LEXMARK service LEXMARKs tech
suppOrt LEXMARK printers custOmer service phOne number LEXMARK printer install
LEXMARK laser printers LEXMARKs printers suppOrt LEXMARK printer LEXMARK
printer service centre LEXMARK printer updates LEXMARK inkjet printer cOntact
LEXMARK suppOrt LEXMARK tech suppOrt phOne LEXMARK lc61 LEXMARKs printers tech
suppOrt printers Online cOntact LEXMARK printer LEXMARKs printer LEXMARK label
printer LEXMARK custOmer suppOrt phOne LEXMARK printers custOmer suppOrt number
LEXMARK suppOrt centre LEXMARK laser printer LEXMARK printer custOmer service
suppOrt LEXMARK wireless printer setup buy LEXMARK printer Online LEXMARK
printer tech suppOrt number LEXMARK netwOrk printer LEXMARK printers custOmer
service number custOmer service fOr LEXMARK printers LEXMARK service centre
LEXMARK wireless printer LEXMARK printers LEXMARK custOmer care LEXMARK printer
Online suppOrt LEXMARK printer tOll free number phOne number fOr LEXMARK
printers LEXMARK printer installatiOn LEXMARK printers help desk LEXMARK
printer suppOrt phOne service LEXMARK LEXMARK LEXMARK printer custOmer
service/@!!((I+855+7O9+2847+))!!@LEXMARK printer suppOrt phOne number LEXMARK
printer tech suppOrt phOne number USA
>From gcc-bugs-return-534424-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 20:44:06 2016
Return-Path: <gcc-bugs-return-534424-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 125800 invoked by alias); 12 Aug 2016 20:44:06 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 125736 invoked by uid 89); 12 Aug 2016 20:44:05 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, U*@@, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 20:43:55 +0000
From: "ravi5 at codehot dot co.uk" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75440] New: @%@$$$@^^@1_855x709x2847 @@@^^@@%HP P.r.i.n.t.e.r t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
Date: Fri, 12 Aug 2016 20:44:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: fortran-dev
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ravi5 at codehot dot co.uk
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75440-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01760.txt.bz2
Content-length: 6536

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75440

            Bug ID: 75440
           Summary: @%@$$$@^^@1_855x709x2847 @@@^^@@%HP P.r.i.n.t.e.r
                    t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
           Product: gcc
           Version: fortran-dev
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: ravi5 at codehot dot co.uk
  Target Milestone: ---

re <:::: /@!!((I+855+7O9+2847+))!@#&HP printer suppOrt phOne number HP printer
technical suppOrt phOne number USA UST<:::: /@!!((I+855+7O9+2847+))!!@HP
printer suppOrt phOne number HP printer tech suppOrt phOne number USA UST<:::
/@!!((I+855+7O9+2847+))!!@HP printer suppOrt phOne number HP printer tech
suppOrt phOne number USA HP printer custOmer service @@@++@@++I+855+7O9+2847
!!++++@@+++@@@@+HP printer suppOrt phOne number HP printer tech suppOrt phOne
number USA JUST<::: /@!!((I+855+7O9+2847+))!!@HP printer suppOrt phOne number
HP printer tech suppOrt phOne number USA HP printer custOmer
service@@!!((*I+855+7O9+2847+))!!@@HP printer suppOrt phOne number HP printer
tech suppOrt phOne number USA, HP printer technical suppOrt phOne number HP
printer custOmer suppOrt phOne number HP printer phOne number HP printer
custOmer care phOne number brOhter printer custOmer care number HP printer tOll
free phOne number HP printer suppOrt HP suppOrt HP printers suppOrt HP custOmer
service HP printer help HP tech suppOrt HP printer custOmer service HP printer
tech suppOrt HP technical suppOrt HP printer trOubleshOOting HP printers
trOubleshOOting HP internatiOnal HPs printer suppOrt HP custOmer suppOrt HP
printer technical suppOrt HP printer repair HP printer helpline HP printers
custOmer service HP service center HPs printers suppOrt HP helpline HP custOmer
service phOne number install HP printer HP printers tech suppOrt HP printer
suppOrt number HP printer custOmer suppOrt HP printer cOntact number HP printer
prOblems HP printers help HP printer service HP printer service center HP
printer cOntact HP custOmer service number HP printers helpline HP suppOrt
number HP printer repairs HP printer scanner HP printers phOne number HP
printers custOmer suppOrt HP suppOrt center HP tech suppOrt phOne number HPs
printers custOmer service HP printer custOmer service number HP printers
technical suppOrt HP printer helpline number HP suppOrt phOne number HP suppOrt
printer HP technical suppOrt number HP printers cOntact trOubleshOOting HP
printer HP printer phOne suppOrt HP printers suppOrt phOne number trOubleshOOt
HP printer HP printers cOntact number HPs custOmer service HP printer number HP
phOne suppOrt HP trOubleshOOting HP printer custOmer care HP printer help desk
drivers fOr HP printers HP technical suppOrt phOne number HP custOmer service
phOne cOntact HP printers HP printer custOmer care number HP help desk HP
Online suppOrt HP custOmer suppOrt phOne number HPs printer custOmer service HP
printer mfc HP printers tech suppOrt phOne number HP service HPs tech suppOrt
HP printers custOmer service phOne number HP printer install HP laser printers
HPs printers suppOrt HP printer HP printer service centre HP printer updates HP
inkjet printer cOntact HP suppOrt HP tech suppOrt phOne HP lc61 HPs printers
tech suppOrt printers Online cOntact HP printer HPs printer HP label printer HP
custOmer suppOrt phOne HP printers custOmer suppOrt number HP suppOrt centre HP
laser printer HP printer custOmer service suppOrt HP wireless printer setup buy
HP printer Online HP printer tech suppOrt number HP netwOrk printer HP printers
custOmer service number custOmer service fOr HP printers HP service centre HP
wireless printer HP printers HP custOmer care HP printer Online suppOrt HP
printer tOll free number phOne number fOr HP printers HP printer installatiOn
HP printers help desk HP printer suppOrt phOne service HP HP mfc HP printer
custOmer suppOrt number HP printers technical suppOrt phOne number HP printer
hOtline cOntact number fOr HP printers HP printer HP.cOm suppOrt cOntact HP
printer suppOrt HP printer trOubleshOOt HP telephOne suppOrt HP printers
custOmer suppOrt phOne number HP printer help phOne number HP custOmer service
telephOne number HP printer tech suppOrt phOne HP.ca suppOrt HP printer Online
HP multifunctiOn printer printer suppOrt HP printer help HP mfc printer
technical suppOrt fOr HP printers HP tech suppOrt number email suppOrt HP
printers suppOrt phOne mfc HP HP hl227Odw HP printers website HP printer
suppOrt HP printers repair repair HP printer HP printers suppOrt HP helpline
number HP scanner printer HP printers service HP printers custOmer service
telephOne number HP printer phOne number custOmer service HP printers review
www.HP.cOm suppOrt fOr HP printer HP printer repair service HP printer phOne
number fOr HP printer suppOrt HP printer website HP printers custOmer service
phOne HP printer prOblems and sOlutiOns HPs printers custOmer service phOne
number custOmer service HP printer sOlutiOn HP HP fax suppOrt mfc HP printer HP
printer custOmer service phOne HP printer help number HP mfc-846On drivers fOr
HP printers HP technical suppOrt phOne number HP custOmer service phOne cOntact
HP printers HP printer custOmer care number HP help desk HP Online suppOrt HP
custOmer suppOrt phOne number HPs printer custOmer service HP printer mfc HP
printers tech suppOrt phOne number HP service HPs tech suppOrt HP printers
custOmer service phOne number HP printer install HP laser printers HPs printers
suppOrt HP printer HP printer service centre HP printer updates HP inkjet
printer cOntact HP suppOrt HP tech suppOrt phOne HP lc61 HPs printers tech
suppOrt printers Online cOntact HP printer HPs printer HP label printer HP
custOmer suppOrt phOne HP printers custOmer suppOrt number HP suppOrt centre HP
laser printer HP printer custOmer service suppOrt HP wireless printer setup buy
HP printer Online HP printer tech suppOrt number HP netwOrk printer HP printers
custOmer service number custOmer service fOr HP printers HP service centre HP
wireless printer HP printers HP custOmer care HP printer Online suppOrt HP
printer tOll free number phOne number fOr HP printers HP printer installatiOn
HP printers help desk HP printer suppOrt phOne service HP HP HP printer
custOmer service/@!!((I+855+7O9+2847+))!!@HP printer suppOrt phOne number HP
printer tech suppOrt phOne number USA
>From gcc-bugs-return-534425-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 20:44:14 2016
Return-Path: <gcc-bugs-return-534425-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 126387 invoked by alias); 12 Aug 2016 20:44:13 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 126304 invoked by uid 89); 12 Aug 2016 20:44:13 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, U*@@, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 20:44:02 +0000
From: "wave4 at codehot dot co.uk" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75441] New: @%@$$$@^^@1_855x709x2847 @@@^^@@%%% CANON P.r.i.n.t.e.r t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
Date: Fri, 12 Aug 2016 20:44:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: fortran-dev
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wave4 at codehot dot co.uk
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75441-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01761.txt.bz2
Content-length: 7254

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75441

            Bug ID: 75441
           Summary: @%@$$$@^^@1_855x709x2847 @@@^^@@%%% CANON
                    P.r.i.n.t.e.r t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e
                    n.u.m.b.e.r
           Product: gcc
           Version: fortran-dev
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: wave4 at codehot dot co.uk
  Target Milestone: ---

re <:::: /@!!((I+855+7O9+2847+))!@#&CANON printer suppOrt phOne number CANON
printer technical suppOrt phOne number USA UST<::::
/@!!((I+855+7O9+2847+))!!@CANON printer suppOrt phOne number CANON printer tech
suppOrt phOne number USA UST<::: /@!!((I+855+7O9+2847+))!!@CANON printer
suppOrt phOne number CANON printer tech suppOrt phOne number USA CANON printer
custOmer service @@@++@@++I+855+7O9+2847 !!++++@@+++@@@@+CANON printer suppOrt
phOne number CANON printer tech suppOrt phOne number USA JUST<:::
/@!!((I+855+7O9+2847+))!!@CANON printer suppOrt phOne number CANON printer tech
suppOrt phOne number USA CANON printer custOmer
service@@!!((*I+855+7O9+2847+))!!@@CANON printer suppOrt phOne number CANON
printer tech suppOrt phOne number USA, CANON printer technical suppOrt phOne
number CANON printer custOmer suppOrt phOne number CANON printer phOne number
CANON printer custOmer care phOne number brOhter printer custOmer care number
CANON printer tOll free phOne number CANON printer suppOrt CANON suppOrt CANON
printers suppOrt CANON custOmer service CANON printer help CANON tech suppOrt
CANON printer custOmer service CANON printer tech suppOrt CANON technical
suppOrt CANON printer trOubleshOOting CANON printers trOubleshOOting CANON
internatiOnal CANONs printer suppOrt CANON custOmer suppOrt CANON printer
technical suppOrt CANON printer repair CANON printer helpline CANON printers
custOmer service CANON service center CANONs printers suppOrt CANON helpline
CANON custOmer service phOne number install CANON printer CANON printers tech
suppOrt CANON printer suppOrt number CANON printer custOmer suppOrt CANON
printer cOntact number CANON printer prOblems CANON printers help CANON printer
service CANON printer service center CANON printer cOntact CANON custOmer
service number CANON printers helpline CANON suppOrt number CANON printer
repairs CANON printer scanner CANON printers phOne number CANON printers
custOmer suppOrt CANON suppOrt center CANON tech suppOrt phOne number CANONs
printers custOmer service CANON printer custOmer service number CANON printers
technical suppOrt CANON printer helpline number CANON suppOrt phOne number
CANON suppOrt printer CANON technical suppOrt number CANON printers cOntact
trOubleshOOting CANON printer CANON printer phOne suppOrt CANON printers
suppOrt phOne number trOubleshOOt CANON printer CANON printers cOntact number
CANONs custOmer service CANON printer number CANON phOne suppOrt CANON
trOubleshOOting CANON printer custOmer care CANON printer help desk drivers fOr
CANON printers CANON technical suppOrt phOne number CANON custOmer service
phOne cOntact CANON printers CANON printer custOmer care number CANON help desk
CANON Online suppOrt CANON custOmer suppOrt phOne number CANONs printer
custOmer service CANON printer mfc CANON printers tech suppOrt phOne number
CANON service CANONs tech suppOrt CANON printers custOmer service phOne number
CANON printer install CANON laser printers CANONs printers suppOrt CANON
printer CANON printer service centre CANON printer updates CANON inkjet printer
cOntact CANON suppOrt CANON tech suppOrt phOne CANON lc61 CANONs printers tech
suppOrt printers Online cOntact CANON printer CANONs printer CANON label
printer CANON custOmer suppOrt phOne CANON printers custOmer suppOrt number
CANON suppOrt centre CANON laser printer CANON printer custOmer service suppOrt
CANON wireless printer setup buy CANON printer Online CANON printer tech
suppOrt number CANON netwOrk printer CANON printers custOmer service number
custOmer service fOr CANON printers CANON service centre CANON wireless printer
CANON printers CANON custOmer care CANON printer Online suppOrt CANON printer
tOll free number phOne number fOr CANON printers CANON printer installatiOn
CANON printers help desk CANON printer suppOrt phOne service CANON CANON mfc
CANON printer custOmer suppOrt number CANON printers technical suppOrt phOne
number CANON printer hOtline cOntact number fOr CANON printers CANON printer
CANON.cOm suppOrt cOntact CANON printer suppOrt CANON printer trOubleshOOt
CANON telephOne suppOrt CANON printers custOmer suppOrt phOne number CANON
printer help phOne number CANON custOmer service telephOne number CANON printer
tech suppOrt phOne CANON.ca suppOrt CANON printer Online CANON multifunctiOn
printer printer suppOrt CANON printer help CANON mfc printer technical suppOrt
fOr CANON printers CANON tech suppOrt number email suppOrt CANON printers
suppOrt phOne mfc CANON CANON hl227Odw CANON printers website CANON printer
suppOrt CANON printers repair repair CANON printer CANON printers suppOrt CANON
helpline number CANON scanner printer CANON printers service CANON printers
custOmer service telephOne number CANON printer phOne number custOmer service
CANON printers review www.CANON.cOm suppOrt fOr CANON printer CANON printer
repair service CANON printer phOne number fOr CANON printer suppOrt CANON
printer website CANON printers custOmer service phOne CANON printer prOblems
and sOlutiOns CANONs printers custOmer service phOne number custOmer service
CANON printer sOlutiOn CANON CANON fax suppOrt mfc CANON printer CANON printer
custOmer service phOne CANON printer help number CANON mfc-846On drivers fOr
CANON printers CANON technical suppOrt phOne number CANON custOmer service
phOne cOntact CANON printers CANON printer custOmer care number CANON help desk
CANON Online suppOrt CANON custOmer suppOrt phOne number CANONs printer
custOmer service CANON printer mfc CANON printers tech suppOrt phOne number
CANON service CANONs tech suppOrt CANON printers custOmer service phOne number
CANON printer install CANON laser printers CANONs printers suppOrt CANON
printer CANON printer service centre CANON printer updates CANON inkjet printer
cOntact CANON suppOrt CANON tech suppOrt phOne CANON lc61 CANONs printers tech
suppOrt printers Online cOntact CANON printer CANONs printer CANON label
printer CANON custOmer suppOrt phOne CANON printers custOmer suppOrt number
CANON suppOrt centre CANON laser printer CANON printer custOmer service suppOrt
CANON wireless printer setup buy CANON printer Online CANON printer tech
suppOrt number CANON netwOrk printer CANON printers custOmer service number
custOmer service fOr CANON printers CANON service centre CANON wireless printer
CANON printers CANON custOmer care CANON printer Online suppOrt CANON printer
tOll free number phOne number fOr CANON printers CANON printer installatiOn
CANON printers help desk CANON printer suppOrt phOne service CANON CANON CANON
printer custOmer service/@!!((I+855+7O9+2847+))!!@CANON printer suppOrt phOne
number CANON printer tech suppOrt phOne number USA
>From gcc-bugs-return-534426-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 20:47:11 2016
Return-Path: <gcc-bugs-return-534426-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 7700 invoked by alias); 12 Aug 2016 20:47:11 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 7180 invoked by uid 89); 12 Aug 2016 20:47:10 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, brothers, UD:ca, brother
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 20:47:00 +0000
From: "nighaier at codehot dot co.uk" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75448] New: @%@$$$@^^@1_8OOx709x2847 @^^@@%BROTHER P.r.i.n.t.e.r t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
Date: Fri, 12 Aug 2016 20:47:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: fortran-dev
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: nighaier at codehot dot co.uk
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75448-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01762.txt.bz2
Content-length: 7579

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75448

            Bug ID: 75448
           Summary: @%@$$$@^^@1_8OOx709x2847 @^^@@%BROTHER P.r.i.n.t.e.r
                    t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
           Product: gcc
           Version: fortran-dev
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: nighaier at codehot dot co.uk
  Target Milestone: ---

/@!!((I+855+709+2847+))!!@BROTHER printer suppOrt phOne number BROTHER printer
tech suppOrt phOne number USA UST<::: /@!!((I+855+709+2847+))!!@BROTHER printer
suppOrt phOne number BROTHER printer tech suppOrt phOne number USA BROTHER
printer custOmer service @@@++@@++I+855+709+2847 !!++++@@+++@@@@+BROTHER
printer suppOrt phOne number BROTHER printer tech suppOrt phOne number USA
JUST<::: /@!!((I+855+709+2847+))!!@BROTHER printer suppOrt phOne number BROTHER
printer tech suppOrt phOne number USA BROTHER printer custOmer
service@@!!((*I+855+709+2847+))!!@@BROTHER printer suppOrt phOne number BROTHER
printer tech suppOrt phOne number USA, BROTHER printer technical suppOrt phOne
number BROTHER printer custOmer suppOrt phOne number BROTHER printer phOne
number BROTHER printer custOmer care phOne number brOhter printer custOmer care
number BROTHER printer tOll free phOne number BROTHER printer suppOrt BROTHER
suppOrt BROTHER printers suppOrt BROTHER custOmer service BROTHER printer help
BROTHER tech suppOrt BROTHER printer custOmer service BROTHER printer tech
suppOrt BROTHER technical suppOrt BROTHER printer trOubleshOOting BROTHER
printers trOubleshOOting BROTHER internatiOnal BROTHERs printer suppOrt BROTHER
custOmer suppOrt BROTHER printer technical suppOrt BROTHER printer repair
BROTHER printer helpline BROTHER printers custOmer service BROTHER service
center BROTHERs printers suppOrt BROTHER helpline BROTHER custOmer service
phOne number install BROTHER printer BROTHER printers tech suppOrt BROTHER
printer suppOrt number BROTHER printer custOmer suppOrt BROTHER printer cOntact
number BROTHER printer prOblems BROTHER printers help BROTHER printer service
BROTHER printer service center BROTHER printer cOntact BROTHER custOmer service
number BROTHER printers helpline BROTHER suppOrt number BROTHER printer repairs
BROTHER printer scanner BROTHER printers phOne number BROTHER printers custOmer
suppOrt BROTHER suppOrt center BROTHER tech suppOrt phOne number BROTHERs
printers custOmer service BROTHER printer custOmer service number BROTHER
printers technical suppOrt BROTHER printer helpline number BROTHER suppOrt
phOne number BROTHER suppOrt printer BROTHER technical suppOrt number BROTHER
printers cOntact trOubleshOOting BROTHER printer BROTHER printer phOne suppOrt
BROTHER printers suppOrt phOne number trOubleshOOt BROTHER printer BROTHER
printers cOntact number BROTHERs custOmer service BROTHER printer number
BROTHER phOne suppOrt BROTHER trOubleshOOting BROTHER printer custOmer care
BROTHER printer help desk drivers fOr BROTHER printers BROTHER technical
suppOrt phOne number BROTHER custOmer service phOne cOntact BROTHER printers
BROTHER printer custOmer care number BROTHER help desk BROTHER Online suppOrt
BROTHER custOmer suppOrt phOne number BROTHERs printer custOmer service BROTHER
printer mfc BROTHER printers tech suppOrt phOne number BROTHER service BROTHERs
tech suppOrt BROTHER printers custOmer service phOne number BROTHER printer
install BROTHER laser printers BROTHERs printers suppOrt BROTHER printer
BROTHER printer service centre BROTHER printer updates BROTHER inkjet printer
cOntact BROTHER suppOrt BROTHER tech suppOrt phOne BROTHER lc61 BROTHERs
printers tech suppOrt printers Online cOntact BROTHER printer BROTHERs printer
BROTHER label printer BROTHER custOmer suppOrt phOne BROTHER printers custOmer
suppOrt number BROTHER suppOrt centre BROTHER laser printer BROTHER printer
custOmer service suppOrt BROTHER wireless printer setup buy BROTHER printer
Online BROTHER printer tech suppOrt number BROTHER netwOrk printer BROTHER
printers custOmer service number custOmer service fOr BROTHER printers BROTHER
service centre BROTHER wireless printer BROTHER printers BROTHER custOmer care
BROTHER printer Online suppOrt BROTHER printer tOll free number phOne number
fOr BROTHER printers BROTHER printer installatiOn BROTHER printers help desk
BROTHER printer suppOrt phOne service BROTHER BROTHER mfc BROTHER printer
custOmer suppOrt number BROTHER printers technical suppOrt phOne number BROTHER
printer hOtline cOntact number fOr BROTHER printers BROTHER printer BROTHER.cOm
suppOrt cOntact BROTHER printer suppOrt BROTHER printer trOubleshOOt BROTHER
telephOne suppOrt BROTHER printers custOmer suppOrt phOne number BROTHER
printer help phOne number BROTHER custOmer service telephOne number BROTHER
printer tech suppOrt phOne BROTHER.ca suppOrt BROTHER printer Online BROTHER
multifunctiOn printer printer suppOrt BROTHER printer help BROTHER mfc printer
technical suppOrt fOr BROTHER printers BROTHER tech suppOrt number email
suppOrt BROTHER printers suppOrt phOne mfc BROTHER BROTHER hl227Odw BROTHER
printers website BROTHER printer suppOrt BROTHER printers repair repair BROTHER
printer BROTHER printers suppOrt BROTHER helpline number BROTHER scanner
printer BROTHER printers service BROTHER printers custOmer service telephOne
number BROTHER printer phOne number custOmer service BROTHER printers review
www.BROTHER.cOm suppOrt fOr BROTHER printer BROTHER printer repair service
BROTHER printer phOne number fOr BROTHER printer suppOrt BROTHER printer
website BROTHER printers custOmer service phOne BROTHER printer prOblems and
sOlutiOns BROTHERs printers custOmer service phOne number custOmer service
BROTHER printer sOlutiOn BROTHER BROTHER fax suppOrt mfc BROTHER printer
BROTHER printer custOmer service phOne BROTHER printer help number BROTHER
mfc-846On drivers fOr BROTHER printers BROTHER technical suppOrt phOne number
BROTHER custOmer service phOne cOntact BROTHER printers BROTHER printer
custOmer care number BROTHER help desk BROTHER Online suppOrt BROTHER custOmer
suppOrt phOne number BROTHERs printer custOmer service BROTHER printer mfc
BROTHER printers tech suppOrt phOne number BROTHER service BROTHERs tech
suppOrt BROTHER printers custOmer service phOne number BROTHER printer install
BROTHER laser printers BROTHERs printers suppOrt BROTHER printer BROTHER
printer service centre BROTHER printer updates BROTHER inkjet printer cOntact
BROTHER suppOrt BROTHER tech suppOrt phOne BROTHER lc61 BROTHERs printers tech
suppOrt printers Online cOntact BROTHER printer BROTHERs printer BROTHER label
printer BROTHER custOmer suppOrt phOne BROTHER printers custOmer suppOrt number
BROTHER suppOrt centre BROTHER laser printer BROTHER printer custOmer service
suppOrt BROTHER wireless printer setup buy BROTHER printer Online BROTHER
printer tech suppOrt number BROTHER netwOrk printer BROTHER printers custOmer
service number custOmer service fOr BROTHER printers BROTHER service centre
BROTHER wireless printer BROTHER printers BROTHER custOmer care BROTHER printer
Online suppOrt BROTHER printer tOll free number phOne number fOr BROTHER
printers BROTHER printer installatiOn BROTHER printers help desk BROTHER
printer suppOrt phOne service BROTHER BROTHER BROTHER printer custOmer
service/@!!((I+855+709+2847+))!!@BROTHER printer suppOrt phOne number BROTHER
printer tech suppOrt phOne number USA
>From gcc-bugs-return-534427-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 20:52:23 2016
Return-Path: <gcc-bugs-return-534427-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 45979 invoked by alias); 12 Aug 2016 20:52:23 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 45966 invoked by uid 89); 12 Aug 2016 20:52:22 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 20:52:11 +0000
From: "wschmidt at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/74585] powerpc64: Very poor code generation for homogeneous vector aggregates passed in registers
Date: Fri, 12 Aug 2016 20:52:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wschmidt at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-74585-4-wy0OGllyyc@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-74585-4@http.gcc.gnu.org/bugzilla/>
References: <bug-74585-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01763.txt.bz2
Content-length: 694

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74585

--- Comment #9 from Bill Schmidt <wschmidt at gcc dot gnu.org> ---
We do optimize things well for the following:

typedef struct
{
  __vector double vx0;
  __vector double vx1;
  __vector double vx2;
  __vector double vx3;
} vdoublex8_t;

vdoublex8_t
test_vecd8_rotate_left (vdoublex8_t a)
{
  vdoublex8_t b;
  b.vx0 = a.vx0;
  b.vx1 = a.vx1;
  b.vx2 = a.vx2;
  b.vx3 = a.vx3;
  return b;
}

At expansion time we have similar code as above, with all the stack stores and
reloads for the argument and the return value, but the optimizer is able to
remove all of that.  So the problem only occurs when referencing part of a
vector.
>From gcc-bugs-return-534428-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 20:55:05 2016
Return-Path: <gcc-bugs-return-534428-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 48729 invoked by alias); 12 Aug 2016 20:55:05 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 48720 invoked by uid 89); 12 Aug 2016 20:55:04 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, U*@@, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 20:54:54 +0000
From: "wave4 at codehot dot co.uk" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75461] New: @%@$$$@^^@1_855x709x2847 @@@^^@@% HP  P.r.i.n.t.e.r t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.
Date: Fri, 12 Aug 2016 20:55:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: fortran-dev
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wave4 at codehot dot co.uk
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75461-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01764.txt.bz2
Content-length: 6537

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75461

            Bug ID: 75461
           Summary: @%@$$$@^^@1_855x709x2847 @@@^^@@% HP  P.r.i.n.t.e.r
                    t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.
           Product: gcc
           Version: fortran-dev
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: wave4 at codehot dot co.uk
  Target Milestone: ---

re <:::: /@!!((I+855+7O9+2847+))!@#&HP printer suppOrt phOne number HP printer
technical suppOrt phOne number USA UST<:::: /@!!((I+855+7O9+2847+))!!@HP
printer suppOrt phOne number HP printer tech suppOrt phOne number USA UST<:::
/@!!((I+855+7O9+2847+))!!@HP printer suppOrt phOne number HP printer tech
suppOrt phOne number USA HP printer custOmer service @@@++@@++I+855+7O9+2847
!!++++@@+++@@@@+HP printer suppOrt phOne number HP printer tech suppOrt phOne
number USA JUST<::: /@!!((I+855+7O9+2847+))!!@HP printer suppOrt phOne number
HP printer tech suppOrt phOne number USA HP printer custOmer
service@@!!((*I+855+7O9+2847+))!!@@HP printer suppOrt phOne number HP printer
tech suppOrt phOne number USA, HP printer technical suppOrt phOne number HP
printer custOmer suppOrt phOne number HP printer phOne number HP printer
custOmer care phOne number brOhter printer custOmer care number HP printer tOll
free phOne number HP printer suppOrt HP suppOrt HP printers suppOrt HP custOmer
service HP printer help HP tech suppOrt HP printer custOmer service HP printer
tech suppOrt HP technical suppOrt HP printer trOubleshOOting HP printers
trOubleshOOting HP internatiOnal HPs printer suppOrt HP custOmer suppOrt HP
printer technical suppOrt HP printer repair HP printer helpline HP printers
custOmer service HP service center HPs printers suppOrt HP helpline HP custOmer
service phOne number install HP printer HP printers tech suppOrt HP printer
suppOrt number HP printer custOmer suppOrt HP printer cOntact number HP printer
prOblems HP printers help HP printer service HP printer service center HP
printer cOntact HP custOmer service number HP printers helpline HP suppOrt
number HP printer repairs HP printer scanner HP printers phOne number HP
printers custOmer suppOrt HP suppOrt center HP tech suppOrt phOne number HPs
printers custOmer service HP printer custOmer service number HP printers
technical suppOrt HP printer helpline number HP suppOrt phOne number HP suppOrt
printer HP technical suppOrt number HP printers cOntact trOubleshOOting HP
printer HP printer phOne suppOrt HP printers suppOrt phOne number trOubleshOOt
HP printer HP printers cOntact number HPs custOmer service HP printer number HP
phOne suppOrt HP trOubleshOOting HP printer custOmer care HP printer help desk
drivers fOr HP printers HP technical suppOrt phOne number HP custOmer service
phOne cOntact HP printers HP printer custOmer care number HP help desk HP
Online suppOrt HP custOmer suppOrt phOne number HPs printer custOmer service HP
printer mfc HP printers tech suppOrt phOne number HP service HPs tech suppOrt
HP printers custOmer service phOne number HP printer install HP laser printers
HPs printers suppOrt HP printer HP printer service centre HP printer updates HP
inkjet printer cOntact HP suppOrt HP tech suppOrt phOne HP lc61 HPs printers
tech suppOrt printers Online cOntact HP printer HPs printer HP label printer HP
custOmer suppOrt phOne HP printers custOmer suppOrt number HP suppOrt centre HP
laser printer HP printer custOmer service suppOrt HP wireless printer setup buy
HP printer Online HP printer tech suppOrt number HP netwOrk printer HP printers
custOmer service number custOmer service fOr HP printers HP service centre HP
wireless printer HP printers HP custOmer care HP printer Online suppOrt HP
printer tOll free number phOne number fOr HP printers HP printer installatiOn
HP printers help desk HP printer suppOrt phOne service HP HP mfc HP printer
custOmer suppOrt number HP printers technical suppOrt phOne number HP printer
hOtline cOntact number fOr HP printers HP printer HP.cOm suppOrt cOntact HP
printer suppOrt HP printer trOubleshOOt HP telephOne suppOrt HP printers
custOmer suppOrt phOne number HP printer help phOne number HP custOmer service
telephOne number HP printer tech suppOrt phOne HP.ca suppOrt HP printer Online
HP multifunctiOn printer printer suppOrt HP printer help HP mfc printer
technical suppOrt fOr HP printers HP tech suppOrt number email suppOrt HP
printers suppOrt phOne mfc HP HP hl227Odw HP printers website HP printer
suppOrt HP printers repair repair HP printer HP printers suppOrt HP helpline
number HP scanner printer HP printers service HP printers custOmer service
telephOne number HP printer phOne number custOmer service HP printers review
www.HP.cOm suppOrt fOr HP printer HP printer repair service HP printer phOne
number fOr HP printer suppOrt HP printer website HP printers custOmer service
phOne HP printer prOblems and sOlutiOns HPs printers custOmer service phOne
number custOmer service HP printer sOlutiOn HP HP fax suppOrt mfc HP printer HP
printer custOmer service phOne HP printer help number HP mfc-846On drivers fOr
HP printers HP technical suppOrt phOne number HP custOmer service phOne cOntact
HP printers HP printer custOmer care number HP help desk HP Online suppOrt HP
custOmer suppOrt phOne number HPs printer custOmer service HP printer mfc HP
printers tech suppOrt phOne number HP service HPs tech suppOrt HP printers
custOmer service phOne number HP printer install HP laser printers HPs printers
suppOrt HP printer HP printer service centre HP printer updates HP inkjet
printer cOntact HP suppOrt HP tech suppOrt phOne HP lc61 HPs printers tech
suppOrt printers Online cOntact HP printer HPs printer HP label printer HP
custOmer suppOrt phOne HP printers custOmer suppOrt number HP suppOrt centre HP
laser printer HP printer custOmer service suppOrt HP wireless printer setup buy
HP printer Online HP printer tech suppOrt number HP netwOrk printer HP printers
custOmer service number custOmer service fOr HP printers HP service centre HP
wireless printer HP printers HP custOmer care HP printer Online suppOrt HP
printer tOll free number phOne number fOr HP printers HP printer installatiOn
HP printers help desk HP printer suppOrt phOne service HP HP HP printer
custOmer service/@!!((I+855+7O9+2847+))!!@HP printer suppOrt phOne number HP
printer tech suppOrt phOne number USA
>From gcc-bugs-return-534429-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 20:55:08 2016
Return-Path: <gcc-bugs-return-534429-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 49069 invoked by alias); 12 Aug 2016 20:55:08 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 49024 invoked by uid 89); 12 Aug 2016 20:55:08 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, U*@@, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 20:54:58 +0000
From: "nighaier at codehot dot co.uk" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75463] New: @%@$$$@^^^@1_855x709x2847 @^^^@@%LEXMARK P.r.i.n.t.e.r t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
Date: Fri, 12 Aug 2016 20:55:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: fortran-dev
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: nighaier at codehot dot co.uk
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75463-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01765.txt.bz2
Content-length: 7581

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75463

            Bug ID: 75463
           Summary: @%@$$$@^^^@1_855x709x2847 @^^^@@%LEXMARK P.r.i.n.t.e.r
                    t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
           Product: gcc
           Version: fortran-dev
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: nighaier at codehot dot co.uk
  Target Milestone: ---

/@!!((I+855+709+2847+))!!@LEXMARK printer suppOrt phOne number LEXMARK printer
tech suppOrt phOne number USA UST<::: /@!!((I+855+709+2847+))!!@LEXMARK printer
suppOrt phOne number LEXMARK printer tech suppOrt phOne number USA LEXMARK
printer custOmer service @@@++@@++I+855+709+2847 !!++++@@+++@@@@+LEXMARK
printer suppOrt phOne number LEXMARK printer tech suppOrt phOne number USA
JUST<::: /@!!((I+855+709+2847+))!!@LEXMARK printer suppOrt phOne number LEXMARK
printer tech suppOrt phOne number USA LEXMARK printer custOmer
service@@!!((*I+855+709+2847+))!!@@LEXMARK printer suppOrt phOne number LEXMARK
printer tech suppOrt phOne number USA, LEXMARK printer technical suppOrt phOne
number LEXMARK printer custOmer suppOrt phOne number LEXMARK printer phOne
number LEXMARK printer custOmer care phOne number brOhter printer custOmer care
number LEXMARK printer tOll free phOne number LEXMARK printer suppOrt LEXMARK
suppOrt LEXMARK printers suppOrt LEXMARK custOmer service LEXMARK printer help
LEXMARK tech suppOrt LEXMARK printer custOmer service LEXMARK printer tech
suppOrt LEXMARK technical suppOrt LEXMARK printer trOubleshOOting LEXMARK
printers trOubleshOOting LEXMARK internatiOnal LEXMARKs printer suppOrt LEXMARK
custOmer suppOrt LEXMARK printer technical suppOrt LEXMARK printer repair
LEXMARK printer helpline LEXMARK printers custOmer service LEXMARK service
center LEXMARKs printers suppOrt LEXMARK helpline LEXMARK custOmer service
phOne number install LEXMARK printer LEXMARK printers tech suppOrt LEXMARK
printer suppOrt number LEXMARK printer custOmer suppOrt LEXMARK printer cOntact
number LEXMARK printer prOblems LEXMARK printers help LEXMARK printer service
LEXMARK printer service center LEXMARK printer cOntact LEXMARK custOmer service
number LEXMARK printers helpline LEXMARK suppOrt number LEXMARK printer repairs
LEXMARK printer scanner LEXMARK printers phOne number LEXMARK printers custOmer
suppOrt LEXMARK suppOrt center LEXMARK tech suppOrt phOne number LEXMARKs
printers custOmer service LEXMARK printer custOmer service number LEXMARK
printers technical suppOrt LEXMARK printer helpline number LEXMARK suppOrt
phOne number LEXMARK suppOrt printer LEXMARK technical suppOrt number LEXMARK
printers cOntact trOubleshOOting LEXMARK printer LEXMARK printer phOne suppOrt
LEXMARK printers suppOrt phOne number trOubleshOOt LEXMARK printer LEXMARK
printers cOntact number LEXMARKs custOmer service LEXMARK printer number
LEXMARK phOne suppOrt LEXMARK trOubleshOOting LEXMARK printer custOmer care
LEXMARK printer help desk drivers fOr LEXMARK printers LEXMARK technical
suppOrt phOne number LEXMARK custOmer service phOne cOntact LEXMARK printers
LEXMARK printer custOmer care number LEXMARK help desk LEXMARK Online suppOrt
LEXMARK custOmer suppOrt phOne number LEXMARKs printer custOmer service LEXMARK
printer mfc LEXMARK printers tech suppOrt phOne number LEXMARK service LEXMARKs
tech suppOrt LEXMARK printers custOmer service phOne number LEXMARK printer
install LEXMARK laser printers LEXMARKs printers suppOrt LEXMARK printer
LEXMARK printer service centre LEXMARK printer updates LEXMARK inkjet printer
cOntact LEXMARK suppOrt LEXMARK tech suppOrt phOne LEXMARK lc61 LEXMARKs
printers tech suppOrt printers Online cOntact LEXMARK printer LEXMARKs printer
LEXMARK label printer LEXMARK custOmer suppOrt phOne LEXMARK printers custOmer
suppOrt number LEXMARK suppOrt centre LEXMARK laser printer LEXMARK printer
custOmer service suppOrt LEXMARK wireless printer setup buy LEXMARK printer
Online LEXMARK printer tech suppOrt number LEXMARK netwOrk printer LEXMARK
printers custOmer service number custOmer service fOr LEXMARK printers LEXMARK
service centre LEXMARK wireless printer LEXMARK printers LEXMARK custOmer care
LEXMARK printer Online suppOrt LEXMARK printer tOll free number phOne number
fOr LEXMARK printers LEXMARK printer installatiOn LEXMARK printers help desk
LEXMARK printer suppOrt phOne service LEXMARK LEXMARK mfc LEXMARK printer
custOmer suppOrt number LEXMARK printers technical suppOrt phOne number LEXMARK
printer hOtline cOntact number fOr LEXMARK printers LEXMARK printer LEXMARK.cOm
suppOrt cOntact LEXMARK printer suppOrt LEXMARK printer trOubleshOOt LEXMARK
telephOne suppOrt LEXMARK printers custOmer suppOrt phOne number LEXMARK
printer help phOne number LEXMARK custOmer service telephOne number LEXMARK
printer tech suppOrt phOne LEXMARK.ca suppOrt LEXMARK printer Online LEXMARK
multifunctiOn printer printer suppOrt LEXMARK printer help LEXMARK mfc printer
technical suppOrt fOr LEXMARK printers LEXMARK tech suppOrt number email
suppOrt LEXMARK printers suppOrt phOne mfc LEXMARK LEXMARK hl227Odw LEXMARK
printers website LEXMARK printer suppOrt LEXMARK printers repair repair LEXMARK
printer LEXMARK printers suppOrt LEXMARK helpline number LEXMARK scanner
printer LEXMARK printers service LEXMARK printers custOmer service telephOne
number LEXMARK printer phOne number custOmer service LEXMARK printers review
www.LEXMARK.cOm suppOrt fOr LEXMARK printer LEXMARK printer repair service
LEXMARK printer phOne number fOr LEXMARK printer suppOrt LEXMARK printer
website LEXMARK printers custOmer service phOne LEXMARK printer prOblems and
sOlutiOns LEXMARKs printers custOmer service phOne number custOmer service
LEXMARK printer sOlutiOn LEXMARK LEXMARK fax suppOrt mfc LEXMARK printer
LEXMARK printer custOmer service phOne LEXMARK printer help number LEXMARK
mfc-846On drivers fOr LEXMARK printers LEXMARK technical suppOrt phOne number
LEXMARK custOmer service phOne cOntact LEXMARK printers LEXMARK printer
custOmer care number LEXMARK help desk LEXMARK Online suppOrt LEXMARK custOmer
suppOrt phOne number LEXMARKs printer custOmer service LEXMARK printer mfc
LEXMARK printers tech suppOrt phOne number LEXMARK service LEXMARKs tech
suppOrt LEXMARK printers custOmer service phOne number LEXMARK printer install
LEXMARK laser printers LEXMARKs printers suppOrt LEXMARK printer LEXMARK
printer service centre LEXMARK printer updates LEXMARK inkjet printer cOntact
LEXMARK suppOrt LEXMARK tech suppOrt phOne LEXMARK lc61 LEXMARKs printers tech
suppOrt printers Online cOntact LEXMARK printer LEXMARKs printer LEXMARK label
printer LEXMARK custOmer suppOrt phOne LEXMARK printers custOmer suppOrt number
LEXMARK suppOrt centre LEXMARK laser printer LEXMARK printer custOmer service
suppOrt LEXMARK wireless printer setup buy LEXMARK printer Online LEXMARK
printer tech suppOrt number LEXMARK netwOrk printer LEXMARK printers custOmer
service number custOmer service fOr LEXMARK printers LEXMARK service centre
LEXMARK wireless printer LEXMARK printers LEXMARK custOmer care LEXMARK printer
Online suppOrt LEXMARK printer tOll free number phOne number fOr LEXMARK
printers LEXMARK printer installatiOn LEXMARK printers help desk LEXMARK
printer suppOrt phOne service LEXMARK LEXMARK LEXMARK printer custOmer
service/@!!((I+855+709+2847+))!!@LEXMARK printer suppOrt phOne number LEXMARK
printer tech suppOrt phOne number USA
>From gcc-bugs-return-534430-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 20:56:36 2016
Return-Path: <gcc-bugs-return-534430-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 51375 invoked by alias); 12 Aug 2016 20:56:36 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 51322 invoked by uid 89); 12 Aug 2016 20:56:35 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, brothers, UD:ca, brother
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 20:56:25 +0000
From: "nighaier at codehot dot co.uk" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75468] New: @%@$$$@^^^@1_855x709x2847 @^^^@@%BROTHER P.r.i.n.t.e.r t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
Date: Fri, 12 Aug 2016 20:56:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: fortran-dev
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: nighaier at codehot dot co.uk
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75468-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01766.txt.bz2
Content-length: 7581

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75468

            Bug ID: 75468
           Summary: @%@$$$@^^^@1_855x709x2847 @^^^@@%BROTHER P.r.i.n.t.e.r
                    t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
           Product: gcc
           Version: fortran-dev
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: nighaier at codehot dot co.uk
  Target Milestone: ---

/@!!((I+855+709+2847+))!!@BROTHER printer suppOrt phOne number BROTHER printer
tech suppOrt phOne number USA UST<::: /@!!((I+855+709+2847+))!!@BROTHER printer
suppOrt phOne number BROTHER printer tech suppOrt phOne number USA BROTHER
printer custOmer service @@@++@@++I+855+709+2847 !!++++@@+++@@@@+BROTHER
printer suppOrt phOne number BROTHER printer tech suppOrt phOne number USA
JUST<::: /@!!((I+855+709+2847+))!!@BROTHER printer suppOrt phOne number BROTHER
printer tech suppOrt phOne number USA BROTHER printer custOmer
service@@!!((*I+855+709+2847+))!!@@BROTHER printer suppOrt phOne number BROTHER
printer tech suppOrt phOne number USA, BROTHER printer technical suppOrt phOne
number BROTHER printer custOmer suppOrt phOne number BROTHER printer phOne
number BROTHER printer custOmer care phOne number brOhter printer custOmer care
number BROTHER printer tOll free phOne number BROTHER printer suppOrt BROTHER
suppOrt BROTHER printers suppOrt BROTHER custOmer service BROTHER printer help
BROTHER tech suppOrt BROTHER printer custOmer service BROTHER printer tech
suppOrt BROTHER technical suppOrt BROTHER printer trOubleshOOting BROTHER
printers trOubleshOOting BROTHER internatiOnal BROTHERs printer suppOrt BROTHER
custOmer suppOrt BROTHER printer technical suppOrt BROTHER printer repair
BROTHER printer helpline BROTHER printers custOmer service BROTHER service
center BROTHERs printers suppOrt BROTHER helpline BROTHER custOmer service
phOne number install BROTHER printer BROTHER printers tech suppOrt BROTHER
printer suppOrt number BROTHER printer custOmer suppOrt BROTHER printer cOntact
number BROTHER printer prOblems BROTHER printers help BROTHER printer service
BROTHER printer service center BROTHER printer cOntact BROTHER custOmer service
number BROTHER printers helpline BROTHER suppOrt number BROTHER printer repairs
BROTHER printer scanner BROTHER printers phOne number BROTHER printers custOmer
suppOrt BROTHER suppOrt center BROTHER tech suppOrt phOne number BROTHERs
printers custOmer service BROTHER printer custOmer service number BROTHER
printers technical suppOrt BROTHER printer helpline number BROTHER suppOrt
phOne number BROTHER suppOrt printer BROTHER technical suppOrt number BROTHER
printers cOntact trOubleshOOting BROTHER printer BROTHER printer phOne suppOrt
BROTHER printers suppOrt phOne number trOubleshOOt BROTHER printer BROTHER
printers cOntact number BROTHERs custOmer service BROTHER printer number
BROTHER phOne suppOrt BROTHER trOubleshOOting BROTHER printer custOmer care
BROTHER printer help desk drivers fOr BROTHER printers BROTHER technical
suppOrt phOne number BROTHER custOmer service phOne cOntact BROTHER printers
BROTHER printer custOmer care number BROTHER help desk BROTHER Online suppOrt
BROTHER custOmer suppOrt phOne number BROTHERs printer custOmer service BROTHER
printer mfc BROTHER printers tech suppOrt phOne number BROTHER service BROTHERs
tech suppOrt BROTHER printers custOmer service phOne number BROTHER printer
install BROTHER laser printers BROTHERs printers suppOrt BROTHER printer
BROTHER printer service centre BROTHER printer updates BROTHER inkjet printer
cOntact BROTHER suppOrt BROTHER tech suppOrt phOne BROTHER lc61 BROTHERs
printers tech suppOrt printers Online cOntact BROTHER printer BROTHERs printer
BROTHER label printer BROTHER custOmer suppOrt phOne BROTHER printers custOmer
suppOrt number BROTHER suppOrt centre BROTHER laser printer BROTHER printer
custOmer service suppOrt BROTHER wireless printer setup buy BROTHER printer
Online BROTHER printer tech suppOrt number BROTHER netwOrk printer BROTHER
printers custOmer service number custOmer service fOr BROTHER printers BROTHER
service centre BROTHER wireless printer BROTHER printers BROTHER custOmer care
BROTHER printer Online suppOrt BROTHER printer tOll free number phOne number
fOr BROTHER printers BROTHER printer installatiOn BROTHER printers help desk
BROTHER printer suppOrt phOne service BROTHER BROTHER mfc BROTHER printer
custOmer suppOrt number BROTHER printers technical suppOrt phOne number BROTHER
printer hOtline cOntact number fOr BROTHER printers BROTHER printer BROTHER.cOm
suppOrt cOntact BROTHER printer suppOrt BROTHER printer trOubleshOOt BROTHER
telephOne suppOrt BROTHER printers custOmer suppOrt phOne number BROTHER
printer help phOne number BROTHER custOmer service telephOne number BROTHER
printer tech suppOrt phOne BROTHER.ca suppOrt BROTHER printer Online BROTHER
multifunctiOn printer printer suppOrt BROTHER printer help BROTHER mfc printer
technical suppOrt fOr BROTHER printers BROTHER tech suppOrt number email
suppOrt BROTHER printers suppOrt phOne mfc BROTHER BROTHER hl227Odw BROTHER
printers website BROTHER printer suppOrt BROTHER printers repair repair BROTHER
printer BROTHER printers suppOrt BROTHER helpline number BROTHER scanner
printer BROTHER printers service BROTHER printers custOmer service telephOne
number BROTHER printer phOne number custOmer service BROTHER printers review
www.BROTHER.cOm suppOrt fOr BROTHER printer BROTHER printer repair service
BROTHER printer phOne number fOr BROTHER printer suppOrt BROTHER printer
website BROTHER printers custOmer service phOne BROTHER printer prOblems and
sOlutiOns BROTHERs printers custOmer service phOne number custOmer service
BROTHER printer sOlutiOn BROTHER BROTHER fax suppOrt mfc BROTHER printer
BROTHER printer custOmer service phOne BROTHER printer help number BROTHER
mfc-846On drivers fOr BROTHER printers BROTHER technical suppOrt phOne number
BROTHER custOmer service phOne cOntact BROTHER printers BROTHER printer
custOmer care number BROTHER help desk BROTHER Online suppOrt BROTHER custOmer
suppOrt phOne number BROTHERs printer custOmer service BROTHER printer mfc
BROTHER printers tech suppOrt phOne number BROTHER service BROTHERs tech
suppOrt BROTHER printers custOmer service phOne number BROTHER printer install
BROTHER laser printers BROTHERs printers suppOrt BROTHER printer BROTHER
printer service centre BROTHER printer updates BROTHER inkjet printer cOntact
BROTHER suppOrt BROTHER tech suppOrt phOne BROTHER lc61 BROTHERs printers tech
suppOrt printers Online cOntact BROTHER printer BROTHERs printer BROTHER label
printer BROTHER custOmer suppOrt phOne BROTHER printers custOmer suppOrt number
BROTHER suppOrt centre BROTHER laser printer BROTHER printer custOmer service
suppOrt BROTHER wireless printer setup buy BROTHER printer Online BROTHER
printer tech suppOrt number BROTHER netwOrk printer BROTHER printers custOmer
service number custOmer service fOr BROTHER printers BROTHER service centre
BROTHER wireless printer BROTHER printers BROTHER custOmer care BROTHER printer
Online suppOrt BROTHER printer tOll free number phOne number fOr BROTHER
printers BROTHER printer installatiOn BROTHER printers help desk BROTHER
printer suppOrt phOne service BROTHER BROTHER BROTHER printer custOmer
service/@!!((I+855+709+2847+))!!@BROTHER printer suppOrt phOne number BROTHER
printer tech suppOrt phOne number USA
>From gcc-bugs-return-534431-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 20:57:54 2016
Return-Path: <gcc-bugs-return-534431-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 62093 invoked by alias); 12 Aug 2016 20:57:54 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 62081 invoked by uid 89); 12 Aug 2016 20:57:53 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, brothers, UD:ca, brother
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 20:57:43 +0000
From: "nighaier at codehot dot co.uk" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug objc++/75476] New: @%@$$$@^^@1_855x709x2847 @^^@@%BROTHER P.r.i.n.t.e.r t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
Date: Fri, 12 Aug 2016 20:57:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: objc++
X-Bugzilla-Version: fortran-dev
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: nighaier at codehot dot co.uk
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75476-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01767.txt.bz2
Content-length: 7582

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75476

            Bug ID: 75476
           Summary: @%@$$$@^^@1_855x709x2847 @^^@@%BROTHER P.r.i.n.t.e.r
                    t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
           Product: gcc
           Version: fortran-dev
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: objc++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: nighaier at codehot dot co.uk
  Target Milestone: ---

/@!!((I+855+709+2847+))!!@BROTHER printer suppOrt phOne number BROTHER printer
tech suppOrt phOne number USA UST<::: /@!!((I+855+709+2847+))!!@BROTHER printer
suppOrt phOne number BROTHER printer tech suppOrt phOne number USA BROTHER
printer custOmer service @@@++@@++I+855+709+2847 !!++++@@+++@@@@+BROTHER
printer suppOrt phOne number BROTHER printer tech suppOrt phOne number USA
JUST<::: /@!!((I+855+709+2847+))!!@BROTHER printer suppOrt phOne number BROTHER
printer tech suppOrt phOne number USA BROTHER printer custOmer
service@@!!((*I+855+709+2847+))!!@@BROTHER printer suppOrt phOne number BROTHER
printer tech suppOrt phOne number USA, BROTHER printer technical suppOrt phOne
number BROTHER printer custOmer suppOrt phOne number BROTHER printer phOne
number BROTHER printer custOmer care phOne number brOhter printer custOmer care
number BROTHER printer tOll free phOne number BROTHER printer suppOrt BROTHER
suppOrt BROTHER printers suppOrt BROTHER custOmer service BROTHER printer help
BROTHER tech suppOrt BROTHER printer custOmer service BROTHER printer tech
suppOrt BROTHER technical suppOrt BROTHER printer trOubleshOOting BROTHER
printers trOubleshOOting BROTHER internatiOnal BROTHERs printer suppOrt BROTHER
custOmer suppOrt BROTHER printer technical suppOrt BROTHER printer repair
BROTHER printer helpline BROTHER printers custOmer service BROTHER service
center BROTHERs printers suppOrt BROTHER helpline BROTHER custOmer service
phOne number install BROTHER printer BROTHER printers tech suppOrt BROTHER
printer suppOrt number BROTHER printer custOmer suppOrt BROTHER printer cOntact
number BROTHER printer prOblems BROTHER printers help BROTHER printer service
BROTHER printer service center BROTHER printer cOntact BROTHER custOmer service
number BROTHER printers helpline BROTHER suppOrt number BROTHER printer repairs
BROTHER printer scanner BROTHER printers phOne number BROTHER printers custOmer
suppOrt BROTHER suppOrt center BROTHER tech suppOrt phOne number BROTHERs
printers custOmer service BROTHER printer custOmer service number BROTHER
printers technical suppOrt BROTHER printer helpline number BROTHER suppOrt
phOne number BROTHER suppOrt printer BROTHER technical suppOrt number BROTHER
printers cOntact trOubleshOOting BROTHER printer BROTHER printer phOne suppOrt
BROTHER printers suppOrt phOne number trOubleshOOt BROTHER printer BROTHER
printers cOntact number BROTHERs custOmer service BROTHER printer number
BROTHER phOne suppOrt BROTHER trOubleshOOting BROTHER printer custOmer care
BROTHER printer help desk drivers fOr BROTHER printers BROTHER technical
suppOrt phOne number BROTHER custOmer service phOne cOntact BROTHER printers
BROTHER printer custOmer care number BROTHER help desk BROTHER Online suppOrt
BROTHER custOmer suppOrt phOne number BROTHERs printer custOmer service BROTHER
printer mfc BROTHER printers tech suppOrt phOne number BROTHER service BROTHERs
tech suppOrt BROTHER printers custOmer service phOne number BROTHER printer
install BROTHER laser printers BROTHERs printers suppOrt BROTHER printer
BROTHER printer service centre BROTHER printer updates BROTHER inkjet printer
cOntact BROTHER suppOrt BROTHER tech suppOrt phOne BROTHER lc61 BROTHERs
printers tech suppOrt printers Online cOntact BROTHER printer BROTHERs printer
BROTHER label printer BROTHER custOmer suppOrt phOne BROTHER printers custOmer
suppOrt number BROTHER suppOrt centre BROTHER laser printer BROTHER printer
custOmer service suppOrt BROTHER wireless printer setup buy BROTHER printer
Online BROTHER printer tech suppOrt number BROTHER netwOrk printer BROTHER
printers custOmer service number custOmer service fOr BROTHER printers BROTHER
service centre BROTHER wireless printer BROTHER printers BROTHER custOmer care
BROTHER printer Online suppOrt BROTHER printer tOll free number phOne number
fOr BROTHER printers BROTHER printer installatiOn BROTHER printers help desk
BROTHER printer suppOrt phOne service BROTHER BROTHER mfc BROTHER printer
custOmer suppOrt number BROTHER printers technical suppOrt phOne number BROTHER
printer hOtline cOntact number fOr BROTHER printers BROTHER printer BROTHER.cOm
suppOrt cOntact BROTHER printer suppOrt BROTHER printer trOubleshOOt BROTHER
telephOne suppOrt BROTHER printers custOmer suppOrt phOne number BROTHER
printer help phOne number BROTHER custOmer service telephOne number BROTHER
printer tech suppOrt phOne BROTHER.ca suppOrt BROTHER printer Online BROTHER
multifunctiOn printer printer suppOrt BROTHER printer help BROTHER mfc printer
technical suppOrt fOr BROTHER printers BROTHER tech suppOrt number email
suppOrt BROTHER printers suppOrt phOne mfc BROTHER BROTHER hl227Odw BROTHER
printers website BROTHER printer suppOrt BROTHER printers repair repair BROTHER
printer BROTHER printers suppOrt BROTHER helpline number BROTHER scanner
printer BROTHER printers service BROTHER printers custOmer service telephOne
number BROTHER printer phOne number custOmer service BROTHER printers review
www.BROTHER.cOm suppOrt fOr BROTHER printer BROTHER printer repair service
BROTHER printer phOne number fOr BROTHER printer suppOrt BROTHER printer
website BROTHER printers custOmer service phOne BROTHER printer prOblems and
sOlutiOns BROTHERs printers custOmer service phOne number custOmer service
BROTHER printer sOlutiOn BROTHER BROTHER fax suppOrt mfc BROTHER printer
BROTHER printer custOmer service phOne BROTHER printer help number BROTHER
mfc-846On drivers fOr BROTHER printers BROTHER technical suppOrt phOne number
BROTHER custOmer service phOne cOntact BROTHER printers BROTHER printer
custOmer care number BROTHER help desk BROTHER Online suppOrt BROTHER custOmer
suppOrt phOne number BROTHERs printer custOmer service BROTHER printer mfc
BROTHER printers tech suppOrt phOne number BROTHER service BROTHERs tech
suppOrt BROTHER printers custOmer service phOne number BROTHER printer install
BROTHER laser printers BROTHERs printers suppOrt BROTHER printer BROTHER
printer service centre BROTHER printer updates BROTHER inkjet printer cOntact
BROTHER suppOrt BROTHER tech suppOrt phOne BROTHER lc61 BROTHERs printers tech
suppOrt printers Online cOntact BROTHER printer BROTHERs printer BROTHER label
printer BROTHER custOmer suppOrt phOne BROTHER printers custOmer suppOrt number
BROTHER suppOrt centre BROTHER laser printer BROTHER printer custOmer service
suppOrt BROTHER wireless printer setup buy BROTHER printer Online BROTHER
printer tech suppOrt number BROTHER netwOrk printer BROTHER printers custOmer
service number custOmer service fOr BROTHER printers BROTHER service centre
BROTHER wireless printer BROTHER printers BROTHER custOmer care BROTHER printer
Online suppOrt BROTHER printer tOll free number phOne number fOr BROTHER
printers BROTHER printer installatiOn BROTHER printers help desk BROTHER
printer suppOrt phOne service BROTHER BROTHER BROTHER printer custOmer
service/@!!((I+855+709+2847+))!!@BROTHER printer suppOrt phOne number BROTHER
printer tech suppOrt phOne number USA
>From gcc-bugs-return-534432-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 20:59:50 2016
Return-Path: <gcc-bugs-return-534432-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 68304 invoked by alias); 12 Aug 2016 20:59:50 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 67834 invoked by uid 89); 12 Aug 2016 20:59:50 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, U*@@, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 20:59:38 +0000
From: "harsh10 at codehot dot co.uk" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75483] New: @%@$$$@^^@1_855x~709x~2847 @@@^^@@%LEXMARK P.r.i.n.t.e.r t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
Date: Fri, 12 Aug 2016 20:59:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: fortran-dev
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: harsh10 at codehot dot co.uk
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75483-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01768.txt.bz2
Content-length: 7728

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75483

            Bug ID: 75483
           Summary: @%@$$$@^^@1_855x~709x~2847 @@@^^@@%LEXMARK
                    P.r.i.n.t.e.r t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e
                    n.u.m.b.e.r
           Product: gcc
           Version: fortran-dev
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: harsh10 at codehot dot co.uk
  Target Milestone: ---

/@!!((I+855+7O9+2847+))!@#&LEXMARK printer suppOrt phOne number LEXMARK printer
technical suppOrt phOne number USA UST<:::: /@!!((I+855+7O9+2847+))!!@LEXMARK
printer suppOrt phOne number LEXMARK printer tech suppOrt phOne number USA
UST<::: /@!!((I+855+7O9+2847+))!!@LEXMARK printer suppOrt phOne number LEXMARK
printer tech suppOrt phOne number USA LEXMARK printer custOmer service
@@@++@@++I+855+7O9+2847 !!++++@@+++@@@@+LEXMARK printer suppOrt phOne number
LEXMARK printer tech suppOrt phOne number USA JUST<:::
/@!!((I+855+7O9+2847+))!!@LEXMARK printer suppOrt phOne number LEXMARK printer
tech suppOrt phOne number USA LEXMARK printer custOmer
service@@!!((*I+855+7O9+2847+))!!@@LEXMARK printer suppOrt phOne number LEXMARK
printer tech suppOrt phOne number USA, LEXMARK printer technical suppOrt phOne
number LEXMARK printer custOmer suppOrt phOne number LEXMARK printer phOne
number LEXMARK printer custOmer care phOne number brOhter printer custOmer care
number LEXMARK printer tOll free phOne number LEXMARK printer suppOrt LEXMARK
suppOrt LEXMARK printers suppOrt LEXMARK custOmer service LEXMARK printer help
LEXMARK tech suppOrt LEXMARK printer custOmer service LEXMARK printer tech
suppOrt LEXMARK technical suppOrt LEXMARK printer trOubleshOOting LEXMARK
printers trOubleshOOting LEXMARK internatiOnal LEXMARKs printer suppOrt LEXMARK
custOmer suppOrt LEXMARK printer technical suppOrt LEXMARK printer repair
LEXMARK printer helpline LEXMARK printers custOmer service LEXMARK service
center LEXMARKs printers suppOrt LEXMARK helpline LEXMARK custOmer service
phOne number install LEXMARK printer LEXMARK printers tech suppOrt LEXMARK
printer suppOrt number LEXMARK printer custOmer suppOrt LEXMARK printer cOntact
number LEXMARK printer prOblems LEXMARK printers help LEXMARK printer service
LEXMARK printer service center LEXMARK printer cOntact LEXMARK custOmer service
number LEXMARK printers helpline LEXMARK suppOrt number LEXMARK printer repairs
LEXMARK printer scanner LEXMARK printers phOne number LEXMARK printers custOmer
suppOrt LEXMARK suppOrt center LEXMARK tech suppOrt phOne number LEXMARKs
printers custOmer service LEXMARK printer custOmer service number LEXMARK
printers technical suppOrt LEXMARK printer helpline number LEXMARK suppOrt
phOne number LEXMARK suppOrt printer LEXMARK technical suppOrt number LEXMARK
printers cOntact trOubleshOOting LEXMARK printer LEXMARK printer phOne suppOrt
LEXMARK printers suppOrt phOne number trOubleshOOt LEXMARK printer LEXMARK
printers cOntact number LEXMARKs custOmer service LEXMARK printer number
LEXMARK phOne suppOrt LEXMARK trOubleshOOting LEXMARK printer custOmer care
LEXMARK printer help desk drivers fOr LEXMARK printers LEXMARK technical
suppOrt phOne number LEXMARK custOmer service phOne cOntact LEXMARK printers
LEXMARK printer custOmer care number LEXMARK help desk LEXMARK Online suppOrt
LEXMARK custOmer suppOrt phOne number LEXMARKs printer custOmer service LEXMARK
printer mfc LEXMARK printers tech suppOrt phOne number LEXMARK service LEXMARKs
tech suppOrt LEXMARK printers custOmer service phOne number LEXMARK printer
install LEXMARK laser printers LEXMARKs printers suppOrt LEXMARK printer
LEXMARK printer service centre LEXMARK printer updates LEXMARK inkjet printer
cOntact LEXMARK suppOrt LEXMARK tech suppOrt phOne LEXMARK lc61 LEXMARKs
printers tech suppOrt printers Online cOntact LEXMARK printer LEXMARKs printer
LEXMARK label printer LEXMARK custOmer suppOrt phOne LEXMARK printers custOmer
suppOrt number LEXMARK suppOrt centre LEXMARK laser printer LEXMARK printer
custOmer service suppOrt LEXMARK wireless printer setup buy LEXMARK printer
Online LEXMARK printer tech suppOrt number LEXMARK netwOrk printer LEXMARK
printers custOmer service number custOmer service fOr LEXMARK printers LEXMARK
service centre LEXMARK wireless printer LEXMARK printers LEXMARK custOmer care
LEXMARK printer Online suppOrt LEXMARK printer tOll free number phOne number
fOr LEXMARK printers LEXMARK printer installatiOn LEXMARK printers help desk
LEXMARK printer suppOrt phOne service LEXMARK LEXMARK mfc LEXMARK printer
custOmer suppOrt number LEXMARK printers technical suppOrt phOne number LEXMARK
printer hOtline cOntact number fOr LEXMARK printers LEXMARK printer LEXMARK.cOm
suppOrt cOntact LEXMARK printer suppOrt LEXMARK printer trOubleshOOt LEXMARK
telephOne suppOrt LEXMARK printers custOmer suppOrt phOne number LEXMARK
printer help phOne number LEXMARK custOmer service telephOne number LEXMARK
printer tech suppOrt phOne LEXMARK.ca suppOrt LEXMARK printer Online LEXMARK
multifunctiOn printer printer suppOrt LEXMARK printer help LEXMARK mfc printer
technical suppOrt fOr LEXMARK printers LEXMARK tech suppOrt number email
suppOrt LEXMARK printers suppOrt phOne mfc LEXMARK LEXMARK hl227Odw LEXMARK
printers website LEXMARK printer suppOrt LEXMARK printers repair repair LEXMARK
printer LEXMARK printers suppOrt LEXMARK helpline number LEXMARK scanner
printer LEXMARK printers service LEXMARK printers custOmer service telephOne
number LEXMARK printer phOne number custOmer service LEXMARK printers review
www.LEXMARK.cOm suppOrt fOr LEXMARK printer LEXMARK printer repair service
LEXMARK printer phOne number fOr LEXMARK printer suppOrt LEXMARK printer
website LEXMARK printers custOmer service phOne LEXMARK printer prOblems and
sOlutiOns LEXMARKs printers custOmer service phOne number custOmer service
LEXMARK printer sOlutiOn LEXMARK LEXMARK fax suppOrt mfc LEXMARK printer
LEXMARK printer custOmer service phOne LEXMARK printer help number LEXMARK
mfc-846On drivers fOr LEXMARK printers LEXMARK technical suppOrt phOne number
LEXMARK custOmer service phOne cOntact LEXMARK printers LEXMARK printer
custOmer care number LEXMARK help desk LEXMARK Online suppOrt LEXMARK custOmer
suppOrt phOne number LEXMARKs printer custOmer service LEXMARK printer mfc
LEXMARK printers tech suppOrt phOne number LEXMARK service LEXMARKs tech
suppOrt LEXMARK printers custOmer service phOne number LEXMARK printer install
LEXMARK laser printers LEXMARKs printers suppOrt LEXMARK printer LEXMARK
printer service centre LEXMARK printer updates LEXMARK inkjet printer cOntact
LEXMARK suppOrt LEXMARK tech suppOrt phOne LEXMARK lc61 LEXMARKs printers tech
suppOrt printers Online cOntact LEXMARK printer LEXMARKs printer LEXMARK label
printer LEXMARK custOmer suppOrt phOne LEXMARK printers custOmer suppOrt number
LEXMARK suppOrt centre LEXMARK laser printer LEXMARK printer custOmer service
suppOrt LEXMARK wireless printer setup buy LEXMARK printer Online LEXMARK
printer tech suppOrt number LEXMARK netwOrk printer LEXMARK printers custOmer
service number custOmer service fOr LEXMARK printers LEXMARK service centre
LEXMARK wireless printer LEXMARK printers LEXMARK custOmer care LEXMARK printer
Online suppOrt LEXMARK printer tOll free number phOne number fOr LEXMARK
printers LEXMARK printer installatiOn LEXMARK printers help desk LEXMARK
printer suppOrt phOne service LEXMARK LEXMARK LEXMARK printer custOmer
service/@!!((I+855+7O9+2847+))!!@LEXMARK printer suppOrt phOne number LEXMARK
printer tech suppOrt phOne number USA
>From gcc-bugs-return-534433-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 21:01:22 2016
Return-Path: <gcc-bugs-return-534433-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 71623 invoked by alias); 12 Aug 2016 21:01:22 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 71556 invoked by uid 89); 12 Aug 2016 21:01:21 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, U*@@, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 21:01:11 +0000
From: "harsh10 at codehot dot co.uk" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: =?UTF-8?B?W0J1ZyBjKysvNzU0ODddIE5ldzogQCVAJCQkQF5eKysrMV84NTV4NzA54oCm?= =?UTF-8?B?Li4yODQ3ICsrK15eQEAlTEVYTUFSSyBQLnIuaS5uLnQuZS5yIHQuZS5jLmgu?= =?UTF-8?B?IHMudS5wLnAuLm8uci50IHAuaC5vLm4uZSBuLnUubS5iLmUucg==?Date: Fri, 12 Aug 2016 21:01:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: fortran-dev
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: harsh10 at codehot dot co.uk
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75487-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01769.txt.bz2
Content-length: 7738

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75487

            Bug ID: 75487
           Summary: @%@$$$@^^+++1_855x709…..2847 +++^^@@%LEXMARK
                    P.r.i.n.t.e.r t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e
                    n.u.m.b.e.r
           Product: gcc
           Version: fortran-dev
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: harsh10 at codehot dot co.uk
  Target Milestone: ---

/@!!((I+855+7O9+2847+))!@#&LEXMARK printer suppOrt phOne number LEXMARK printer
technical suppOrt phOne number USA UST<:::: /@!!((I+855+7O9+2847+))!!@LEXMARK
printer suppOrt phOne number LEXMARK printer tech suppOrt phOne number USA
UST<::: /@!!((I+855+7O9+2847+))!!@LEXMARK printer suppOrt phOne number LEXMARK
printer tech suppOrt phOne number USA LEXMARK printer custOmer service
@@@++@@++I+855+7O9+2847 !!++++@@+++@@@@+LEXMARK printer suppOrt phOne number
LEXMARK printer tech suppOrt phOne number USA JUST<:::
/@!!((I+855+7O9+2847+))!!@LEXMARK printer suppOrt phOne number LEXMARK printer
tech suppOrt phOne number USA LEXMARK printer custOmer
service@@!!((*I+855+7O9+2847+))!!@@LEXMARK printer suppOrt phOne number LEXMARK
printer tech suppOrt phOne number USA, LEXMARK printer technical suppOrt phOne
number LEXMARK printer custOmer suppOrt phOne number LEXMARK printer phOne
number LEXMARK printer custOmer care phOne number brOhter printer custOmer care
number LEXMARK printer tOll free phOne number LEXMARK printer suppOrt LEXMARK
suppOrt LEXMARK printers suppOrt LEXMARK custOmer service LEXMARK printer help
LEXMARK tech suppOrt LEXMARK printer custOmer service LEXMARK printer tech
suppOrt LEXMARK technical suppOrt LEXMARK printer trOubleshOOting LEXMARK
printers trOubleshOOting LEXMARK internatiOnal LEXMARKs printer suppOrt LEXMARK
custOmer suppOrt LEXMARK printer technical suppOrt LEXMARK printer repair
LEXMARK printer helpline LEXMARK printers custOmer service LEXMARK service
center LEXMARKs printers suppOrt LEXMARK helpline LEXMARK custOmer service
phOne number install LEXMARK printer LEXMARK printers tech suppOrt LEXMARK
printer suppOrt number LEXMARK printer custOmer suppOrt LEXMARK printer cOntact
number LEXMARK printer prOblems LEXMARK printers help LEXMARK printer service
LEXMARK printer service center LEXMARK printer cOntact LEXMARK custOmer service
number LEXMARK printers helpline LEXMARK suppOrt number LEXMARK printer repairs
LEXMARK printer scanner LEXMARK printers phOne number LEXMARK printers custOmer
suppOrt LEXMARK suppOrt center LEXMARK tech suppOrt phOne number LEXMARKs
printers custOmer service LEXMARK printer custOmer service number LEXMARK
printers technical suppOrt LEXMARK printer helpline number LEXMARK suppOrt
phOne number LEXMARK suppOrt printer LEXMARK technical suppOrt number LEXMARK
printers cOntact trOubleshOOting LEXMARK printer LEXMARK printer phOne suppOrt
LEXMARK printers suppOrt phOne number trOubleshOOt LEXMARK printer LEXMARK
printers cOntact number LEXMARKs custOmer service LEXMARK printer number
LEXMARK phOne suppOrt LEXMARK trOubleshOOting LEXMARK printer custOmer care
LEXMARK printer help desk drivers fOr LEXMARK printers LEXMARK technical
suppOrt phOne number LEXMARK custOmer service phOne cOntact LEXMARK printers
LEXMARK printer custOmer care number LEXMARK help desk LEXMARK Online suppOrt
LEXMARK custOmer suppOrt phOne number LEXMARKs printer custOmer service LEXMARK
printer mfc LEXMARK printers tech suppOrt phOne number LEXMARK service LEXMARKs
tech suppOrt LEXMARK printers custOmer service phOne number LEXMARK printer
install LEXMARK laser printers LEXMARKs printers suppOrt LEXMARK printer
LEXMARK printer service centre LEXMARK printer updates LEXMARK inkjet printer
cOntact LEXMARK suppOrt LEXMARK tech suppOrt phOne LEXMARK lc61 LEXMARKs
printers tech suppOrt printers Online cOntact LEXMARK printer LEXMARKs printer
LEXMARK label printer LEXMARK custOmer suppOrt phOne LEXMARK printers custOmer
suppOrt number LEXMARK suppOrt centre LEXMARK laser printer LEXMARK printer
custOmer service suppOrt LEXMARK wireless printer setup buy LEXMARK printer
Online LEXMARK printer tech suppOrt number LEXMARK netwOrk printer LEXMARK
printers custOmer service number custOmer service fOr LEXMARK printers LEXMARK
service centre LEXMARK wireless printer LEXMARK printers LEXMARK custOmer care
LEXMARK printer Online suppOrt LEXMARK printer tOll free number phOne number
fOr LEXMARK printers LEXMARK printer installatiOn LEXMARK printers help desk
LEXMARK printer suppOrt phOne service LEXMARK LEXMARK mfc LEXMARK printer
custOmer suppOrt number LEXMARK printers technical suppOrt phOne number LEXMARK
printer hOtline cOntact number fOr LEXMARK printers LEXMARK printer LEXMARK.cOm
suppOrt cOntact LEXMARK printer suppOrt LEXMARK printer trOubleshOOt LEXMARK
telephOne suppOrt LEXMARK printers custOmer suppOrt phOne number LEXMARK
printer help phOne number LEXMARK custOmer service telephOne number LEXMARK
printer tech suppOrt phOne LEXMARK.ca suppOrt LEXMARK printer Online LEXMARK
multifunctiOn printer printer suppOrt LEXMARK printer help LEXMARK mfc printer
technical suppOrt fOr LEXMARK printers LEXMARK tech suppOrt number email
suppOrt LEXMARK printers suppOrt phOne mfc LEXMARK LEXMARK hl227Odw LEXMARK
printers website LEXMARK printer suppOrt LEXMARK printers repair repair LEXMARK
printer LEXMARK printers suppOrt LEXMARK helpline number LEXMARK scanner
printer LEXMARK printers service LEXMARK printers custOmer service telephOne
number LEXMARK printer phOne number custOmer service LEXMARK printers review
www.LEXMARK.cOm suppOrt fOr LEXMARK printer LEXMARK printer repair service
LEXMARK printer phOne number fOr LEXMARK printer suppOrt LEXMARK printer
website LEXMARK printers custOmer service phOne LEXMARK printer prOblems and
sOlutiOns LEXMARKs printers custOmer service phOne number custOmer service
LEXMARK printer sOlutiOn LEXMARK LEXMARK fax suppOrt mfc LEXMARK printer
LEXMARK printer custOmer service phOne LEXMARK printer help number LEXMARK
mfc-846On drivers fOr LEXMARK printers LEXMARK technical suppOrt phOne number
LEXMARK custOmer service phOne cOntact LEXMARK printers LEXMARK printer
custOmer care number LEXMARK help desk LEXMARK Online suppOrt LEXMARK custOmer
suppOrt phOne number LEXMARKs printer custOmer service LEXMARK printer mfc
LEXMARK printers tech suppOrt phOne number LEXMARK service LEXMARKs tech
suppOrt LEXMARK printers custOmer service phOne number LEXMARK printer install
LEXMARK laser printers LEXMARKs printers suppOrt LEXMARK printer LEXMARK
printer service centre LEXMARK printer updates LEXMARK inkjet printer cOntact
LEXMARK suppOrt LEXMARK tech suppOrt phOne LEXMARK lc61 LEXMARKs printers tech
suppOrt printers Online cOntact LEXMARK printer LEXMARKs printer LEXMARK label
printer LEXMARK custOmer suppOrt phOne LEXMARK printers custOmer suppOrt number
LEXMARK suppOrt centre LEXMARK laser printer LEXMARK printer custOmer service
suppOrt LEXMARK wireless printer setup buy LEXMARK printer Online LEXMARK
printer tech suppOrt number LEXMARK netwOrk printer LEXMARK printers custOmer
service number custOmer service fOr LEXMARK printers LEXMARK service centre
LEXMARK wireless printer LEXMARK printers LEXMARK custOmer care LEXMARK printer
Online suppOrt LEXMARK printer tOll free number phOne number fOr LEXMARK
printers LEXMARK printer installatiOn LEXMARK printers help desk LEXMARK
printer suppOrt phOne service LEXMARK LEXMARK LEXMARK printer custOmer
service/@!!((I+855+7O9+2847+))!!@LEXMARK printer suppOrt phOne number LEXMARK
printer tech suppOrt phOne number USA
>From gcc-bugs-return-534435-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 21:19:32 2016
Return-Path: <gcc-bugs-return-534435-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 91279 invoked by alias); 12 Aug 2016 21:19:32 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 91205 invoked by uid 89); 12 Aug 2016 21:19:31 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, U*@@, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 21:19:21 +0000
From: "suraj2809 at mailinator dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75537] New: @%@$$$@^^@1_8OOx681x7208 @^^@@%TRENDMICRO A.n.t.i.v.i.r.u.s   t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
Date: Fri, 12 Aug 2016 21:19:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: tree-ssa
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: suraj2809 at mailinator dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75537-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01771.txt.bz2
Content-length: 8638

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75537

            Bug ID: 75537
           Summary: @%@$$$@^^@1_8OOx681x7208 @^^@@%TRENDMICRO
                    A.n.t.i.v.i.r.u.s   t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e
                    n.u.m.b.e.r
           Product: gcc
           Version: tree-ssa
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: suraj2809 at mailinator dot com
  Target Milestone: ---

/@!!((I+855+681+7208+))!!@TRENDMICRO antivirus suppOrt phOne number TRENDMICRO
antivirus tech suppOrt phOne number USA UST<:::
/@!!((I+855+681+7208+))!!@TRENDMICRO antivirus suppOrt phOne number TRENDMICRO
antivirus tech suppOrt phOne number USA TRENDMICRO antivirus custOmer service
@@@++@@++I+855+681+7208 !!++++@@+++@@@@+TRENDMICRO antivirus suppOrt phOne
number TRENDMICRO antivirus tech suppOrt phOne number USA JUST<:::
/@!!((I+855+681+7208+))!!@TRENDMICRO antivirus suppOrt phOne number TRENDMICRO
antivirus tech suppOrt phOne number USA TRENDMICRO antivirus custOmer
service@@!!((*I+855+681+7208+))!!@@TRENDMICRO antivirus suppOrt phOne number
TRENDMICRO antivirus tech suppOrt phOne number USA, TRENDMICRO antivirus
technical suppOrt phOne number TRENDMICRO antivirus custOmer suppOrt phOne
number TRENDMICRO antivirus phOne number TRENDMICRO antivirus custOmer care
phOne number brOhter antivirus custOmer care number TRENDMICRO antivirus tOll
free phOne number TRENDMICRO antivirus suppOrt TRENDMICRO suppOrt TRENDMICRO
antiviruss suppOrt TRENDMICRO custOmer service TRENDMICRO antivirus help
TRENDMICRO tech suppOrt TRENDMICRO antivirus custOmer service TRENDMICRO
antivirus tech suppOrt TRENDMICRO technical suppOrt TRENDMICRO antivirus
trOubleshOOting TRENDMICRO antiviruss trOubleshOOting TRENDMICRO internatiOnal
TRENDMICROs antivirus suppOrt TRENDMICRO custOmer suppOrt TRENDMICRO antivirus
technical suppOrt TRENDMICRO antivirus repair TRENDMICRO antivirus helpline
TRENDMICRO antiviruss custOmer service TRENDMICRO service center TRENDMICROs
antiviruss suppOrt TRENDMICRO helpline TRENDMICRO custOmer service phOne number
install TRENDMICRO antivirus TRENDMICRO antiviruss tech suppOrt TRENDMICRO
antivirus suppOrt number TRENDMICRO antivirus custOmer suppOrt TRENDMICRO
antivirus cOntact number TRENDMICRO antivirus prOblems TRENDMICRO antiviruss
help TRENDMICRO antivirus service TRENDMICRO antivirus service center
TRENDMICRO antivirus cOntact TRENDMICRO custOmer service number TRENDMICRO
antiviruss helpline TRENDMICRO suppOrt number TRENDMICRO antivirus repairs
TRENDMICRO antivirus scanner TRENDMICRO antiviruss phOne number TRENDMICRO
antiviruss custOmer suppOrt TRENDMICRO suppOrt center TRENDMICRO tech suppOrt
phOne number TRENDMICROs antiviruss custOmer service TRENDMICRO antivirus
custOmer service number TRENDMICRO antiviruss technical suppOrt TRENDMICRO
antivirus helpline number TRENDMICRO suppOrt phOne number TRENDMICRO suppOrt
antivirus TRENDMICRO technical suppOrt number TRENDMICRO antiviruss cOntact
trOubleshOOting TRENDMICRO antivirus TRENDMICRO antivirus phOne suppOrt
TRENDMICRO antiviruss suppOrt phOne number trOubleshOOt TRENDMICRO antivirus
TRENDMICRO antiviruss cOntact number TRENDMICROs custOmer service TRENDMICRO
antivirus number TRENDMICRO phOne suppOrt TRENDMICRO trOubleshOOting TRENDMICRO
antivirus custOmer care TRENDMICRO antivirus help desk drivers fOr TRENDMICRO
antiviruss TRENDMICRO technical suppOrt phOne number TRENDMICRO custOmer
service phOne cOntact TRENDMICRO antiviruss TRENDMICRO antivirus custOmer care
number TRENDMICRO help desk TRENDMICRO Online suppOrt TRENDMICRO custOmer
suppOrt phOne number TRENDMICROs antivirus custOmer service TRENDMICRO
antivirus mfc TRENDMICRO antiviruss tech suppOrt phOne number TRENDMICRO
service TRENDMICROs tech suppOrt TRENDMICRO antiviruss custOmer service phOne
number TRENDMICRO antivirus install TRENDMICRO laser antiviruss TRENDMICROs
antiviruss suppOrt TRENDMICRO antivirus TRENDMICRO antivirus service centre
TRENDMICRO antivirus updates TRENDMICRO inkjet antivirus cOntact TRENDMICRO
suppOrt TRENDMICRO tech suppOrt phOne TRENDMICRO lc61 TRENDMICROs antiviruss
tech suppOrt antiviruss Online cOntact TRENDMICRO antivirus TRENDMICROs
antivirus TRENDMICRO label antivirus TRENDMICRO custOmer suppOrt phOne
TRENDMICRO antiviruss custOmer suppOrt number TRENDMICRO suppOrt centre
TRENDMICRO laser antivirus TRENDMICRO antivirus custOmer service suppOrt
TRENDMICRO wireless antivirus setup buy TRENDMICRO antivirus Online TRENDMICRO
antivirus tech suppOrt number TRENDMICRO netwOrk antivirus TRENDMICRO
antiviruss custOmer service number custOmer service fOr TRENDMICRO antiviruss
TRENDMICRO service centre TRENDMICRO wireless antivirus TRENDMICRO antiviruss
TRENDMICRO custOmer care TRENDMICRO antivirus Online suppOrt TRENDMICRO
antivirus tOll free number phOne number fOr TRENDMICRO antiviruss TRENDMICRO
antivirus installatiOn TRENDMICRO antiviruss help desk TRENDMICRO antivirus
suppOrt phOne service TRENDMICRO TRENDMICRO mfc TRENDMICRO antivirus custOmer
suppOrt number TRENDMICRO antiviruss technical suppOrt phOne number TRENDMICRO
antivirus hOtline cOntact number fOr TRENDMICRO antiviruss TRENDMICRO antivirus
TRENDMICRO.cOm suppOrt cOntact TRENDMICRO antivirus suppOrt TRENDMICRO
antivirus trOubleshOOt TRENDMICRO telephOne suppOrt TRENDMICRO antiviruss
custOmer suppOrt phOne number TRENDMICRO antivirus help phOne number TRENDMICRO
custOmer service telephOne number TRENDMICRO antivirus tech suppOrt phOne
TRENDMICRO.ca suppOrt TRENDMICRO antivirus Online TRENDMICRO multifunctiOn
antivirus antivirus suppOrt TRENDMICRO antivirus help TRENDMICRO mfc antivirus
technical suppOrt fOr TRENDMICRO antiviruss TRENDMICRO tech suppOrt number
email suppOrt TRENDMICRO antiviruss suppOrt phOne mfc TRENDMICRO TRENDMICRO
hl227Odw TRENDMICRO antiviruss website TRENDMICRO antivirus suppOrt TRENDMICRO
antiviruss repair repair TRENDMICRO antivirus TRENDMICRO antiviruss suppOrt
TRENDMICRO helpline number TRENDMICRO scanner antivirus TRENDMICRO antiviruss
service TRENDMICRO antiviruss custOmer service telephOne number TRENDMICRO
antivirus phOne number custOmer service TRENDMICRO antiviruss review
www.TRENDMICRO.cOm suppOrt fOr TRENDMICRO antivirus TRENDMICRO antivirus repair
service TRENDMICRO antivirus phOne number fOr TRENDMICRO antivirus suppOrt
TRENDMICRO antivirus website TRENDMICRO antiviruss custOmer service phOne
TRENDMICRO antivirus prOblems and sOlutiOns TRENDMICROs antiviruss custOmer
service phOne number custOmer service TRENDMICRO antivirus sOlutiOn TRENDMICRO
TRENDMICRO fax suppOrt mfc TRENDMICRO antivirus TRENDMICRO antivirus custOmer
service phOne TRENDMICRO antivirus help number TRENDMICRO mfc-846On drivers fOr
TRENDMICRO antiviruss TRENDMICRO technical suppOrt phOne number TRENDMICRO
custOmer service phOne cOntact TRENDMICRO antiviruss TRENDMICRO antivirus
custOmer care number TRENDMICRO help desk TRENDMICRO Online suppOrt TRENDMICRO
custOmer suppOrt phOne number TRENDMICROs antivirus custOmer service TRENDMICRO
antivirus mfc TRENDMICRO antiviruss tech suppOrt phOne number TRENDMICRO
service TRENDMICROs tech suppOrt TRENDMICRO antiviruss custOmer service phOne
number TRENDMICRO antivirus install TRENDMICRO laser antiviruss TRENDMICROs
antiviruss suppOrt TRENDMICRO antivirus TRENDMICRO antivirus service centre
TRENDMICRO antivirus updates TRENDMICRO inkjet antivirus cOntact TRENDMICRO
suppOrt TRENDMICRO tech suppOrt phOne TRENDMICRO lc61 TRENDMICROs antiviruss
tech suppOrt antiviruss Online cOntact TRENDMICRO antivirus TRENDMICROs
antivirus TRENDMICRO label antivirus TRENDMICRO custOmer suppOrt phOne
TRENDMICRO antiviruss custOmer suppOrt number TRENDMICRO suppOrt centre
TRENDMICRO laser antivirus TRENDMICRO antivirus custOmer service suppOrt
TRENDMICRO wireless antivirus setup buy TRENDMICRO antivirus Online TRENDMICRO
antivirus tech suppOrt number TRENDMICRO netwOrk antivirus TRENDMICRO
antiviruss custOmer service number custOmer service fOr TRENDMICRO antiviruss
TRENDMICRO service centre TRENDMICRO wireless antivirus TRENDMICRO antiviruss
TRENDMICRO custOmer care TRENDMICRO antivirus Online suppOrt TRENDMICRO
antivirus tOll free number phOne number fOr TRENDMICRO antiviruss TRENDMICRO
antivirus installatiOn TRENDMICRO antiviruss help desk TRENDMICRO antivirus
suppOrt phOne service TRENDMICRO TRENDMICRO TRENDMICRO antivirus custOmer
service/@!!((I+855+681+7208+))!!@TRENDMICRO antivirus suppOrt phOne number
TRENDMICRO antivirus tech suppOrt phOne number USA
>From gcc-bugs-return-534434-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 21:19:08 2016
Return-Path: <gcc-bugs-return-534434-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 89462 invoked by alias); 12 Aug 2016 21:19:08 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 89453 invoked by uid 89); 12 Aug 2016 21:19:07 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy¬tivity
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 21:18:57 +0000
From: "wschmidt at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/74585] powerpc64: Very poor code generation for homogeneous vector aggregates passed in registers
Date: Fri, 12 Aug 2016 21:19:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wschmidt at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-74585-4-9BQxbwpFU7@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-74585-4@http.gcc.gnu.org/bugzilla/>
References: <bug-74585-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01770.txt.bz2
Content-length: 2109

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74585

--- Comment #10 from Bill Schmidt <wschmidt at gcc dot gnu.org> ---
The dse pass is responsible for removing all the unnecessary stack activity.  I
think that we are probably confusing it because the stores are full vector
stores, but the loads are vector element loads of smaller size.

Some evidence for this:  I can get the desired code generation by rewriting the
code to copy all the vectors in the structure into "scalar vectors" prior to
use, and doing the reverse to construct the result vector.  We then get the
code we're looking for.

To wit:

typedef struct
          {
                __vector double vx0;
                __vector double vx1;
                __vector double vx2;
                __vector double vx3;
          } vdoublex8_t;

vdoublex8_t
test_vecd8_rotate_left (vdoublex8_t a)
{
        __vector double avx0, avx1, avx2, avx3, rvx0, rvx1, rvx2, rvx3;
        __vector double temp;
        vdoublex8_t result;

        avx0 = a.vx0;
        avx1 = a.vx1;
        avx2 = a.vx2;
        avx3 = a.vx3;

        temp = a.vx0;

        /* Copy low dword of vx0 and high dword of vx1 to vx0 high / low.  */
        rvx0[VEC_DW_H] = avx0[VEC_DW_L];
        rvx0[VEC_DW_L] = avx1[VEC_DW_H];
        /* Copy low dword of vx1 and high dword of vx2 to vx1 high / low.  */
        rvx1[VEC_DW_H] = avx1[VEC_DW_L];
        rvx1[VEC_DW_L] = avx2[VEC_DW_H];
        /* Copy low dword of vx2 and high dword of vx2 to vx2 high / low.  */
        rvx2[VEC_DW_H] = avx2[VEC_DW_L];
        rvx2[VEC_DW_L] = avx3[VEC_DW_H];
        /* Copy low dword of vx3 and high dword of vx0 to vx3 high / low.  */
        rvx3[VEC_DW_H] = avx3[VEC_DW_L];
        rvx3[VEC_DW_L] = temp[VEC_DW_H];

        result.vx0 = rvx0;
        result.vx1 = rvx1;
        result.vx2 = rvx2;
        result.vx3 = rvx3;

        return (result);
}

With this we generate pretty tight code with no loads or stores.  (Just lost my
network connection to the server i was testing on, so I can't post the code,
but it looks good.)
>From gcc-bugs-return-534436-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 21:21:07 2016
Return-Path: <gcc-bugs-return-534436-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 99138 invoked by alias); 12 Aug 2016 21:21:06 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 99123 invoked by uid 89); 12 Aug 2016 21:21:06 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, kaspersky, U*@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 21:20:56 +0000
From: "suraj2809 at mailinator dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75539] New: @%@$$$@^^@1_8OOx681x7208 @^^@@%KASPERSKY A.n.t.i.v.i.r.u.s   t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
Date: Fri, 12 Aug 2016 21:21:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: trans-mem
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: suraj2809 at mailinator dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75539-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01772.txt.bz2
Content-length: 8398

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75539

            Bug ID: 75539
           Summary: @%@$$$@^^@1_8OOx681x7208 @^^@@%KASPERSKY
                    A.n.t.i.v.i.r.u.s   t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e
                    n.u.m.b.e.r
           Product: gcc
           Version: trans-mem
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: suraj2809 at mailinator dot com
  Target Milestone: ---

/@!!((I+855+681+7208+))!!@KASPERSKY antivirus suppOrt phOne number KASPERSKY
antivirus tech suppOrt phOne number USA UST<:::
/@!!((I+855+681+7208+))!!@KASPERSKY antivirus suppOrt phOne number KASPERSKY
antivirus tech suppOrt phOne number USA KASPERSKY antivirus custOmer service
@@@++@@++I+855+681+7208 !!++++@@+++@@@@+KASPERSKY antivirus suppOrt phOne
number KASPERSKY antivirus tech suppOrt phOne number USA JUST<:::
/@!!((I+855+681+7208+))!!@KASPERSKY antivirus suppOrt phOne number KASPERSKY
antivirus tech suppOrt phOne number USA KASPERSKY antivirus custOmer
service@@!!((*I+855+681+7208+))!!@@KASPERSKY antivirus suppOrt phOne number
KASPERSKY antivirus tech suppOrt phOne number USA, KASPERSKY antivirus
technical suppOrt phOne number KASPERSKY antivirus custOmer suppOrt phOne
number KASPERSKY antivirus phOne number KASPERSKY antivirus custOmer care phOne
number brOhter antivirus custOmer care number KASPERSKY antivirus tOll free
phOne number KASPERSKY antivirus suppOrt KASPERSKY suppOrt KASPERSKY antiviruss
suppOrt KASPERSKY custOmer service KASPERSKY antivirus help KASPERSKY tech
suppOrt KASPERSKY antivirus custOmer service KASPERSKY antivirus tech suppOrt
KASPERSKY technical suppOrt KASPERSKY antivirus trOubleshOOting KASPERSKY
antiviruss trOubleshOOting KASPERSKY internatiOnal KASPERSKYs antivirus suppOrt
KASPERSKY custOmer suppOrt KASPERSKY antivirus technical suppOrt KASPERSKY
antivirus repair KASPERSKY antivirus helpline KASPERSKY antiviruss custOmer
service KASPERSKY service center KASPERSKYs antiviruss suppOrt KASPERSKY
helpline KASPERSKY custOmer service phOne number install KASPERSKY antivirus
KASPERSKY antiviruss tech suppOrt KASPERSKY antivirus suppOrt number KASPERSKY
antivirus custOmer suppOrt KASPERSKY antivirus cOntact number KASPERSKY
antivirus prOblems KASPERSKY antiviruss help KASPERSKY antivirus service
KASPERSKY antivirus service center KASPERSKY antivirus cOntact KASPERSKY
custOmer service number KASPERSKY antiviruss helpline KASPERSKY suppOrt number
KASPERSKY antivirus repairs KASPERSKY antivirus scanner KASPERSKY antiviruss
phOne number KASPERSKY antiviruss custOmer suppOrt KASPERSKY suppOrt center
KASPERSKY tech suppOrt phOne number KASPERSKYs antiviruss custOmer service
KASPERSKY antivirus custOmer service number KASPERSKY antiviruss technical
suppOrt KASPERSKY antivirus helpline number KASPERSKY suppOrt phOne number
KASPERSKY suppOrt antivirus KASPERSKY technical suppOrt number KASPERSKY
antiviruss cOntact trOubleshOOting KASPERSKY antivirus KASPERSKY antivirus
phOne suppOrt KASPERSKY antiviruss suppOrt phOne number trOubleshOOt KASPERSKY
antivirus KASPERSKY antiviruss cOntact number KASPERSKYs custOmer service
KASPERSKY antivirus number KASPERSKY phOne suppOrt KASPERSKY trOubleshOOting
KASPERSKY antivirus custOmer care KASPERSKY antivirus help desk drivers fOr
KASPERSKY antiviruss KASPERSKY technical suppOrt phOne number KASPERSKY
custOmer service phOne cOntact KASPERSKY antiviruss KASPERSKY antivirus
custOmer care number KASPERSKY help desk KASPERSKY Online suppOrt KASPERSKY
custOmer suppOrt phOne number KASPERSKYs antivirus custOmer service KASPERSKY
antivirus mfc KASPERSKY antiviruss tech suppOrt phOne number KASPERSKY service
KASPERSKYs tech suppOrt KASPERSKY antiviruss custOmer service phOne number
KASPERSKY antivirus install KASPERSKY laser antiviruss KASPERSKYs antiviruss
suppOrt KASPERSKY antivirus KASPERSKY antivirus service centre KASPERSKY
antivirus updates KASPERSKY inkjet antivirus cOntact KASPERSKY suppOrt
KASPERSKY tech suppOrt phOne KASPERSKY lc61 KASPERSKYs antiviruss tech suppOrt
antiviruss Online cOntact KASPERSKY antivirus KASPERSKYs antivirus KASPERSKY
label antivirus KASPERSKY custOmer suppOrt phOne KASPERSKY antiviruss custOmer
suppOrt number KASPERSKY suppOrt centre KASPERSKY laser antivirus KASPERSKY
antivirus custOmer service suppOrt KASPERSKY wireless antivirus setup buy
KASPERSKY antivirus Online KASPERSKY antivirus tech suppOrt number KASPERSKY
netwOrk antivirus KASPERSKY antiviruss custOmer service number custOmer service
fOr KASPERSKY antiviruss KASPERSKY service centre KASPERSKY wireless antivirus
KASPERSKY antiviruss KASPERSKY custOmer care KASPERSKY antivirus Online suppOrt
KASPERSKY antivirus tOll free number phOne number fOr KASPERSKY antiviruss
KASPERSKY antivirus installatiOn KASPERSKY antiviruss help desk KASPERSKY
antivirus suppOrt phOne service KASPERSKY KASPERSKY mfc KASPERSKY antivirus
custOmer suppOrt number KASPERSKY antiviruss technical suppOrt phOne number
KASPERSKY antivirus hOtline cOntact number fOr KASPERSKY antiviruss KASPERSKY
antivirus KASPERSKY.cOm suppOrt cOntact KASPERSKY antivirus suppOrt KASPERSKY
antivirus trOubleshOOt KASPERSKY telephOne suppOrt KASPERSKY antiviruss
custOmer suppOrt phOne number KASPERSKY antivirus help phOne number KASPERSKY
custOmer service telephOne number KASPERSKY antivirus tech suppOrt phOne
KASPERSKY.ca suppOrt KASPERSKY antivirus Online KASPERSKY multifunctiOn
antivirus antivirus suppOrt KASPERSKY antivirus help KASPERSKY mfc antivirus
technical suppOrt fOr KASPERSKY antiviruss KASPERSKY tech suppOrt number email
suppOrt KASPERSKY antiviruss suppOrt phOne mfc KASPERSKY KASPERSKY hl227Odw
KASPERSKY antiviruss website KASPERSKY antivirus suppOrt KASPERSKY antiviruss
repair repair KASPERSKY antivirus KASPERSKY antiviruss suppOrt KASPERSKY
helpline number KASPERSKY scanner antivirus KASPERSKY antiviruss service
KASPERSKY antiviruss custOmer service telephOne number KASPERSKY antivirus
phOne number custOmer service KASPERSKY antiviruss review www.KASPERSKY.cOm
suppOrt fOr KASPERSKY antivirus KASPERSKY antivirus repair service KASPERSKY
antivirus phOne number fOr KASPERSKY antivirus suppOrt KASPERSKY antivirus
website KASPERSKY antiviruss custOmer service phOne KASPERSKY antivirus
prOblems and sOlutiOns KASPERSKYs antiviruss custOmer service phOne number
custOmer service KASPERSKY antivirus sOlutiOn KASPERSKY KASPERSKY fax suppOrt
mfc KASPERSKY antivirus KASPERSKY antivirus custOmer service phOne KASPERSKY
antivirus help number KASPERSKY mfc-846On drivers fOr KASPERSKY antiviruss
KASPERSKY technical suppOrt phOne number KASPERSKY custOmer service phOne
cOntact KASPERSKY antiviruss KASPERSKY antivirus custOmer care number KASPERSKY
help desk KASPERSKY Online suppOrt KASPERSKY custOmer suppOrt phOne number
KASPERSKYs antivirus custOmer service KASPERSKY antivirus mfc KASPERSKY
antiviruss tech suppOrt phOne number KASPERSKY service KASPERSKYs tech suppOrt
KASPERSKY antiviruss custOmer service phOne number KASPERSKY antivirus install
KASPERSKY laser antiviruss KASPERSKYs antiviruss suppOrt KASPERSKY antivirus
KASPERSKY antivirus service centre KASPERSKY antivirus updates KASPERSKY inkjet
antivirus cOntact KASPERSKY suppOrt KASPERSKY tech suppOrt phOne KASPERSKY lc61
KASPERSKYs antiviruss tech suppOrt antiviruss Online cOntact KASPERSKY
antivirus KASPERSKYs antivirus KASPERSKY label antivirus KASPERSKY custOmer
suppOrt phOne KASPERSKY antiviruss custOmer suppOrt number KASPERSKY suppOrt
centre KASPERSKY laser antivirus KASPERSKY antivirus custOmer service suppOrt
KASPERSKY wireless antivirus setup buy KASPERSKY antivirus Online KASPERSKY
antivirus tech suppOrt number KASPERSKY netwOrk antivirus KASPERSKY antiviruss
custOmer service number custOmer service fOr KASPERSKY antiviruss KASPERSKY
service centre KASPERSKY wireless antivirus KASPERSKY antiviruss KASPERSKY
custOmer care KASPERSKY antivirus Online suppOrt KASPERSKY antivirus tOll free
number phOne number fOr KASPERSKY antiviruss KASPERSKY antivirus installatiOn
KASPERSKY antiviruss help desk KASPERSKY antivirus suppOrt phOne service
KASPERSKY KASPERSKY KASPERSKY antivirus custOmer
service/@!!((I+855+681+7208+))!!@KASPERSKY antivirus suppOrt phOne number
KASPERSKY antivirus tech suppOrt phOne number USA
>From gcc-bugs-return-534437-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 21:22:48 2016
Return-Path: <gcc-bugs-return-534437-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 103973 invoked by alias); 12 Aug 2016 21:22:47 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 102627 invoked by uid 89); 12 Aug 2016 21:22:47 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, U*@@, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 21:22:36 +0000
From: "suraj2809 at mailinator dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75543] New: @%@$$$@^^@1_8OOx681x7208 @^^@@%PANDA A.n.t.i.v.i.r.u.s   t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
Date: Fri, 12 Aug 2016 21:22:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: trans-mem
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: suraj2809 at mailinator dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75543-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01773.txt.bz2
Content-length: 7462

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75543

            Bug ID: 75543
           Summary: @%@$$$@^^@1_8OOx681x7208 @^^@@%PANDA A.n.t.i.v.i.r.u.s
                      t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
           Product: gcc
           Version: trans-mem
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: suraj2809 at mailinator dot com
  Target Milestone: ---

/@!!((I+855+681+7208+))!!@PANDA antivirus suppOrt phOne number PANDA antivirus
tech suppOrt phOne number USA UST<::: /@!!((I+855+681+7208+))!!@PANDA antivirus
suppOrt phOne number PANDA antivirus tech suppOrt phOne number USA PANDA
antivirus custOmer service @@@++@@++I+855+681+7208 !!++++@@+++@@@@+PANDA
antivirus suppOrt phOne number PANDA antivirus tech suppOrt phOne number USA
JUST<::: /@!!((I+855+681+7208+))!!@PANDA antivirus suppOrt phOne number PANDA
antivirus tech suppOrt phOne number USA PANDA antivirus custOmer
service@@!!((*I+855+681+7208+))!!@@PANDA antivirus suppOrt phOne number PANDA
antivirus tech suppOrt phOne number USA, PANDA antivirus technical suppOrt
phOne number PANDA antivirus custOmer suppOrt phOne number PANDA antivirus
phOne number PANDA antivirus custOmer care phOne number brOhter antivirus
custOmer care number PANDA antivirus tOll free phOne number PANDA antivirus
suppOrt PANDA suppOrt PANDA antiviruss suppOrt PANDA custOmer service PANDA
antivirus help PANDA tech suppOrt PANDA antivirus custOmer service PANDA
antivirus tech suppOrt PANDA technical suppOrt PANDA antivirus trOubleshOOting
PANDA antiviruss trOubleshOOting PANDA internatiOnal PANDAs antivirus suppOrt
PANDA custOmer suppOrt PANDA antivirus technical suppOrt PANDA antivirus repair
PANDA antivirus helpline PANDA antiviruss custOmer service PANDA service center
PANDAs antiviruss suppOrt PANDA helpline PANDA custOmer service phOne number
install PANDA antivirus PANDA antiviruss tech suppOrt PANDA antivirus suppOrt
number PANDA antivirus custOmer suppOrt PANDA antivirus cOntact number PANDA
antivirus prOblems PANDA antiviruss help PANDA antivirus service PANDA
antivirus service center PANDA antivirus cOntact PANDA custOmer service number
PANDA antiviruss helpline PANDA suppOrt number PANDA antivirus repairs PANDA
antivirus scanner PANDA antiviruss phOne number PANDA antiviruss custOmer
suppOrt PANDA suppOrt center PANDA tech suppOrt phOne number PANDAs antiviruss
custOmer service PANDA antivirus custOmer service number PANDA antiviruss
technical suppOrt PANDA antivirus helpline number PANDA suppOrt phOne number
PANDA suppOrt antivirus PANDA technical suppOrt number PANDA antiviruss cOntact
trOubleshOOting PANDA antivirus PANDA antivirus phOne suppOrt PANDA antiviruss
suppOrt phOne number trOubleshOOt PANDA antivirus PANDA antiviruss cOntact
number PANDAs custOmer service PANDA antivirus number PANDA phOne suppOrt PANDA
trOubleshOOting PANDA antivirus custOmer care PANDA antivirus help desk drivers
fOr PANDA antiviruss PANDA technical suppOrt phOne number PANDA custOmer
service phOne cOntact PANDA antiviruss PANDA antivirus custOmer care number
PANDA help desk PANDA Online suppOrt PANDA custOmer suppOrt phOne number PANDAs
antivirus custOmer service PANDA antivirus mfc PANDA antiviruss tech suppOrt
phOne number PANDA service PANDAs tech suppOrt PANDA antiviruss custOmer
service phOne number PANDA antivirus install PANDA laser antiviruss PANDAs
antiviruss suppOrt PANDA antivirus PANDA antivirus service centre PANDA
antivirus updates PANDA inkjet antivirus cOntact PANDA suppOrt PANDA tech
suppOrt phOne PANDA lc61 PANDAs antiviruss tech suppOrt antiviruss Online
cOntact PANDA antivirus PANDAs antivirus PANDA label antivirus PANDA custOmer
suppOrt phOne PANDA antiviruss custOmer suppOrt number PANDA suppOrt centre
PANDA laser antivirus PANDA antivirus custOmer service suppOrt PANDA wireless
antivirus setup buy PANDA antivirus Online PANDA antivirus tech suppOrt number
PANDA netwOrk antivirus PANDA antiviruss custOmer service number custOmer
service fOr PANDA antiviruss PANDA service centre PANDA wireless antivirus
PANDA antiviruss PANDA custOmer care PANDA antivirus Online suppOrt PANDA
antivirus tOll free number phOne number fOr PANDA antiviruss PANDA antivirus
installatiOn PANDA antiviruss help desk PANDA antivirus suppOrt phOne service
PANDA PANDA mfc PANDA antivirus custOmer suppOrt number PANDA antiviruss
technical suppOrt phOne number PANDA antivirus hOtline cOntact number fOr PANDA
antiviruss PANDA antivirus PANDA.cOm suppOrt cOntact PANDA antivirus suppOrt
PANDA antivirus trOubleshOOt PANDA telephOne suppOrt PANDA antiviruss custOmer
suppOrt phOne number PANDA antivirus help phOne number PANDA custOmer service
telephOne number PANDA antivirus tech suppOrt phOne PANDA.ca suppOrt PANDA
antivirus Online PANDA multifunctiOn antivirus antivirus suppOrt PANDA
antivirus help PANDA mfc antivirus technical suppOrt fOr PANDA antiviruss PANDA
tech suppOrt number email suppOrt PANDA antiviruss suppOrt phOne mfc PANDA
PANDA hl227Odw PANDA antiviruss website PANDA antivirus suppOrt PANDA
antiviruss repair repair PANDA antivirus PANDA antiviruss suppOrt PANDA
helpline number PANDA scanner antivirus PANDA antiviruss service PANDA
antiviruss custOmer service telephOne number PANDA antivirus phOne number
custOmer service PANDA antiviruss review www.PANDA.cOm suppOrt fOr PANDA
antivirus PANDA antivirus repair service PANDA antivirus phOne number fOr PANDA
antivirus suppOrt PANDA antivirus website PANDA antiviruss custOmer service
phOne PANDA antivirus prOblems and sOlutiOns PANDAs antiviruss custOmer service
phOne number custOmer service PANDA antivirus sOlutiOn PANDA PANDA fax suppOrt
mfc PANDA antivirus PANDA antivirus custOmer service phOne PANDA antivirus help
number PANDA mfc-846On drivers fOr PANDA antiviruss PANDA technical suppOrt
phOne number PANDA custOmer service phOne cOntact PANDA antiviruss PANDA
antivirus custOmer care number PANDA help desk PANDA Online suppOrt PANDA
custOmer suppOrt phOne number PANDAs antivirus custOmer service PANDA antivirus
mfc PANDA antiviruss tech suppOrt phOne number PANDA service PANDAs tech
suppOrt PANDA antiviruss custOmer service phOne number PANDA antivirus install
PANDA laser antiviruss PANDAs antiviruss suppOrt PANDA antivirus PANDA
antivirus service centre PANDA antivirus updates PANDA inkjet antivirus cOntact
PANDA suppOrt PANDA tech suppOrt phOne PANDA lc61 PANDAs antiviruss tech
suppOrt antiviruss Online cOntact PANDA antivirus PANDAs antivirus PANDA label
antivirus PANDA custOmer suppOrt phOne PANDA antiviruss custOmer suppOrt number
PANDA suppOrt centre PANDA laser antivirus PANDA antivirus custOmer service
suppOrt PANDA wireless antivirus setup buy PANDA antivirus Online PANDA
antivirus tech suppOrt number PANDA netwOrk antivirus PANDA antiviruss custOmer
service number custOmer service fOr PANDA antiviruss PANDA service centre PANDA
wireless antivirus PANDA antiviruss PANDA custOmer care PANDA antivirus Online
suppOrt PANDA antivirus tOll free number phOne number fOr PANDA antiviruss
PANDA antivirus installatiOn PANDA antiviruss help desk PANDA antivirus suppOrt
phOne service PANDA PANDA PANDA antivirus custOmer
service/@!!((I+855+681+7208+))!!@PANDA antivirus suppOrt phOne number PANDA
antivirus tech suppOrt phOne number USA
>From gcc-bugs-return-534438-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 21:22:49 2016
Return-Path: <gcc-bugs-return-534438-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 104271 invoked by alias); 12 Aug 2016 21:22:49 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 104208 invoked by uid 89); 12 Aug 2016 21:22:48 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, U*@@, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 21:22:38 +0000
From: "taline96 at ov3u841 dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75544] New: @%@$$$@^^@1_8OOx681x72O8 @^^@@%CANON p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a c.a.n.a.d.a
Date: Fri, 12 Aug 2016 21:22:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: fortran-dev
X-Bugzilla-Keywords:
X-Bugzilla-Severity: critical
X-Bugzilla-Who: taline96 at ov3u841 dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75544-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01774.txt.bz2
Content-length: 7139

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75544

            Bug ID: 75544
           Summary: @%@$$$@^^@1_8OOx681x72O8 @^^@@%CANON p.r.i.n.t.e.r
                    t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a
                    c.a.n.a.d.a
           Product: gcc
           Version: fortran-dev
            Status: UNCONFIRMED
          Severity: critical
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: taline96 at ov3u841 dot com
  Target Milestone: ---

/@!!((I+800+681+72O8+))!!@CANON printer suppOrt phOne number CANON printer tech
suppOrt phOne number USA UST<::: /@!!((I+800+681+72O8+))!!@CANON printer
suppOrt phOne number CANON printer tech suppOrt phOne number USA CANON printer
custOmer service @@@++@@++I+800+681+72O8 !!++++@@+++@@@@+CANON printer suppOrt
phOne number CANON printer tech suppOrt phOne number USA JUST<:::
/@!!((I+800+681+72O8+))!!@CANON printer suppOrt phOne number CANON printer tech
suppOrt phOne number USA CANON printer custOmer
service@@!!((*I+800+681+72O8+))!!@@CANON printer suppOrt phOne number CANON
printer tech suppOrt phOne number USA, CANON printer technical suppOrt phOne
number CANON printer custOmer suppOrt phOne number CANON printer phOne number
CANON printer custOmer care phOne number brOhter printer custOmer care number
CANON printer tOll free phOne number CANON printer suppOrt CANON suppOrt CANON
printers suppOrt CANON custOmer service CANON printer help CANON tech suppOrt
CANON printer custOmer service CANON printer tech suppOrt CANON technical
suppOrt CANON printer trOubleshOOting CANON printers trOubleshOOting CANON
internatiOnal CANONs printer suppOrt CANON custOmer suppOrt CANON printer
technical suppOrt CANON printer repair CANON printer helpline CANON printers
custOmer service CANON service center CANONs printers suppOrt CANON helpline
CANON custOmer service phOne number install CANON printer CANON printers tech
suppOrt CANON printer suppOrt number CANON printer custOmer suppOrt CANON
printer cOntact number CANON printer prOblems CANON printers help CANON printer
service CANON printer service center CANON printer cOntact CANON custOmer
service number CANON printers helpline CANON suppOrt number CANON printer
repairs CANON printer scanner CANON printers phOne number CANON printers
custOmer suppOrt CANON suppOrt center CANON tech suppOrt phOne number CANONs
printers custOmer service CANON printer custOmer service number CANON printers
technical suppOrt CANON printer helpline number CANON suppOrt phOne number
CANON suppOrt printer CANON technical suppOrt number CANON printers cOntact
trOubleshOOting CANON printer CANON printer phOne suppOrt CANON printers
suppOrt phOne number trOubleshOOt CANON printer CANON printers cOntact number
CANONs custOmer service CANON printer number CANON phOne suppOrt CANON
trOubleshOOting CANON printer custOmer care CANON printer help desk drivers fOr
CANON printers CANON technical suppOrt phOne number CANON custOmer service
phOne cOntact CANON printers CANON printer custOmer care number CANON help desk
CANON Online suppOrt CANON custOmer suppOrt phOne number CANONs printer
custOmer service CANON printer mfc CANON printers tech suppOrt phOne number
CANON service CANONs tech suppOrt CANON printers custOmer service phOne number
CANON printer install CANON laser printers CANONs printers suppOrt CANON
printer CANON printer service centre CANON printer updates CANON inkjet printer
cOntact CANON suppOrt CANON tech suppOrt phOne CANON lc61 CANONs printers tech
suppOrt printers Online cOntact CANON printer CANONs printer CANON label
printer CANON custOmer suppOrt phOne CANON printers custOmer suppOrt number
CANON suppOrt centre CANON laser printer CANON printer custOmer service suppOrt
CANON wireless printer setup buy CANON printer Online CANON printer tech
suppOrt number CANON netwOrk printer CANON printers custOmer service number
custOmer service fOr CANON printers CANON service centre CANON wireless printer
CANON printers CANON custOmer care CANON printer Online suppOrt CANON printer
tOll free number phOne number fOr CANON printers CANON printer installatiOn
CANON printers help desk CANON printer suppOrt phOne service CANON CANON mfc
CANON printer custOmer suppOrt number CANON printers technical suppOrt phOne
number CANON printer hOtline cOntact number fOr CANON printers CANON printer
CANON.cOm suppOrt cOntact CANON printer suppOrt CANON printer trOubleshOOt
CANON telephOne suppOrt CANON printers custOmer suppOrt phOne number CANON
printer help phOne number CANON custOmer service telephOne number CANON printer
tech suppOrt phOne CANON.ca suppOrt CANON printer Online CANON multifunctiOn
printer printer suppOrt CANON printer help CANON mfc printer technical suppOrt
fOr CANON printers CANON tech suppOrt number email suppOrt CANON printers
suppOrt phOne mfc CANON CANON hl227Odw CANON printers website CANON printer
suppOrt CANON printers repair repair CANON printer CANON printers suppOrt CANON
helpline number CANON scanner printer CANON printers service CANON printers
custOmer service telephOne number CANON printer phOne number custOmer service
CANON printers review www.CANON.cOm suppOrt fOr CANON printer CANON printer
repair service CANON printer phOne number fOr CANON printer suppOrt CANON
printer website CANON printers custOmer service phOne CANON printer prOblems
and sOlutiOns CANONs printers custOmer service phOne number custOmer service
CANON printer sOlutiOn CANON CANON fax suppOrt mfc CANON printer CANON printer
custOmer service phOne CANON printer help number CANON mfc-846On drivers fOr
CANON printers CANON technical suppOrt phOne number CANON custOmer service
phOne cOntact CANON printers CANON printer custOmer care number CANON help desk
CANON Online suppOrt CANON custOmer suppOrt phOne number CANONs printer
custOmer service CANON printer mfc CANON printers tech suppOrt phOne number
CANON service CANONs tech suppOrt CANON printers custOmer service phOne number
CANON printer install CANON laser printers CANONs printers suppOrt CANON
printer CANON printer service centre CANON printer updates CANON inkjet printer
cOntact CANON suppOrt CANON tech suppOrt phOne CANON lc61 CANONs printers tech
suppOrt printers Online cOntact CANON printer CANONs printer CANON label
printer CANON custOmer suppOrt phOne CANON printers custOmer suppOrt number
CANON suppOrt centre CANON laser printer CANON printer custOmer service suppOrt
CANON wireless printer setup buy CANON printer Online CANON printer tech
suppOrt number CANON netwOrk printer CANON printers custOmer service number
custOmer service fOr CANON printers CANON service centre CANON wireless printer
CANON printers CANON custOmer care CANON printer Online suppOrt CANON printer
tOll free number phOne number fOr CANON printers CANON printer installatiOn
CANON printers help desk CANON printer suppOrt phOne service CANON CANON CANON
printer custOmer service/@!!((I+800+681+72O8+))!!@CANON printer suppOrt phOne
number CANON printer tech suppOrt phOne number USA
>From gcc-bugs-return-534439-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 21:24:18 2016
Return-Path: <gcc-bugs-return-534439-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 106542 invoked by alias); 12 Aug 2016 21:24:15 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 106516 invoked by uid 89); 12 Aug 2016 21:24:12 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, U*@@, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 21:24:02 +0000
From: "suraj2809 at mailinator dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75546] New: @%@$$$@^^@1_8OOx681x7208 @^^@@%AVAST A.n.t.i.v.i.r.u.s   t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
Date: Fri, 12 Aug 2016 21:24:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: trans-mem
X-Bugzilla-Keywords:
X-Bugzilla-Severity: critical
X-Bugzilla-Who: suraj2809 at mailinator dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75546-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01775.txt.bz2
Content-length: 7465

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75546

            Bug ID: 75546
           Summary: @%@$$$@^^@1_8OOx681x7208 @^^@@%AVAST A.n.t.i.v.i.r.u.s
                      t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
           Product: gcc
           Version: trans-mem
            Status: UNCONFIRMED
          Severity: critical
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: suraj2809 at mailinator dot com
  Target Milestone: ---

/@!!((I+855+681+7208+))!!@AVAST antivirus suppOrt phOne number AVAST antivirus
tech suppOrt phOne number USA UST<::: /@!!((I+855+681+7208+))!!@AVAST antivirus
suppOrt phOne number AVAST antivirus tech suppOrt phOne number USA AVAST
antivirus custOmer service @@@++@@++I+855+681+7208 !!++++@@+++@@@@+AVAST
antivirus suppOrt phOne number AVAST antivirus tech suppOrt phOne number USA
JUST<::: /@!!((I+855+681+7208+))!!@AVAST antivirus suppOrt phOne number AVAST
antivirus tech suppOrt phOne number USA AVAST antivirus custOmer
service@@!!((*I+855+681+7208+))!!@@AVAST antivirus suppOrt phOne number AVAST
antivirus tech suppOrt phOne number USA, AVAST antivirus technical suppOrt
phOne number AVAST antivirus custOmer suppOrt phOne number AVAST antivirus
phOne number AVAST antivirus custOmer care phOne number brOhter antivirus
custOmer care number AVAST antivirus tOll free phOne number AVAST antivirus
suppOrt AVAST suppOrt AVAST antiviruss suppOrt AVAST custOmer service AVAST
antivirus help AVAST tech suppOrt AVAST antivirus custOmer service AVAST
antivirus tech suppOrt AVAST technical suppOrt AVAST antivirus trOubleshOOting
AVAST antiviruss trOubleshOOting AVAST internatiOnal AVASTs antivirus suppOrt
AVAST custOmer suppOrt AVAST antivirus technical suppOrt AVAST antivirus repair
AVAST antivirus helpline AVAST antiviruss custOmer service AVAST service center
AVASTs antiviruss suppOrt AVAST helpline AVAST custOmer service phOne number
install AVAST antivirus AVAST antiviruss tech suppOrt AVAST antivirus suppOrt
number AVAST antivirus custOmer suppOrt AVAST antivirus cOntact number AVAST
antivirus prOblems AVAST antiviruss help AVAST antivirus service AVAST
antivirus service center AVAST antivirus cOntact AVAST custOmer service number
AVAST antiviruss helpline AVAST suppOrt number AVAST antivirus repairs AVAST
antivirus scanner AVAST antiviruss phOne number AVAST antiviruss custOmer
suppOrt AVAST suppOrt center AVAST tech suppOrt phOne number AVASTs antiviruss
custOmer service AVAST antivirus custOmer service number AVAST antiviruss
technical suppOrt AVAST antivirus helpline number AVAST suppOrt phOne number
AVAST suppOrt antivirus AVAST technical suppOrt number AVAST antiviruss cOntact
trOubleshOOting AVAST antivirus AVAST antivirus phOne suppOrt AVAST antiviruss
suppOrt phOne number trOubleshOOt AVAST antivirus AVAST antiviruss cOntact
number AVASTs custOmer service AVAST antivirus number AVAST phOne suppOrt AVAST
trOubleshOOting AVAST antivirus custOmer care AVAST antivirus help desk drivers
fOr AVAST antiviruss AVAST technical suppOrt phOne number AVAST custOmer
service phOne cOntact AVAST antiviruss AVAST antivirus custOmer care number
AVAST help desk AVAST Online suppOrt AVAST custOmer suppOrt phOne number AVASTs
antivirus custOmer service AVAST antivirus mfc AVAST antiviruss tech suppOrt
phOne number AVAST service AVASTs tech suppOrt AVAST antiviruss custOmer
service phOne number AVAST antivirus install AVAST laser antiviruss AVASTs
antiviruss suppOrt AVAST antivirus AVAST antivirus service centre AVAST
antivirus updates AVAST inkjet antivirus cOntact AVAST suppOrt AVAST tech
suppOrt phOne AVAST lc61 AVASTs antiviruss tech suppOrt antiviruss Online
cOntact AVAST antivirus AVASTs antivirus AVAST label antivirus AVAST custOmer
suppOrt phOne AVAST antiviruss custOmer suppOrt number AVAST suppOrt centre
AVAST laser antivirus AVAST antivirus custOmer service suppOrt AVAST wireless
antivirus setup buy AVAST antivirus Online AVAST antivirus tech suppOrt number
AVAST netwOrk antivirus AVAST antiviruss custOmer service number custOmer
service fOr AVAST antiviruss AVAST service centre AVAST wireless antivirus
AVAST antiviruss AVAST custOmer care AVAST antivirus Online suppOrt AVAST
antivirus tOll free number phOne number fOr AVAST antiviruss AVAST antivirus
installatiOn AVAST antiviruss help desk AVAST antivirus suppOrt phOne service
AVAST AVAST mfc AVAST antivirus custOmer suppOrt number AVAST antiviruss
technical suppOrt phOne number AVAST antivirus hOtline cOntact number fOr AVAST
antiviruss AVAST antivirus AVAST.cOm suppOrt cOntact AVAST antivirus suppOrt
AVAST antivirus trOubleshOOt AVAST telephOne suppOrt AVAST antiviruss custOmer
suppOrt phOne number AVAST antivirus help phOne number AVAST custOmer service
telephOne number AVAST antivirus tech suppOrt phOne AVAST.ca suppOrt AVAST
antivirus Online AVAST multifunctiOn antivirus antivirus suppOrt AVAST
antivirus help AVAST mfc antivirus technical suppOrt fOr AVAST antiviruss AVAST
tech suppOrt number email suppOrt AVAST antiviruss suppOrt phOne mfc AVAST
AVAST hl227Odw AVAST antiviruss website AVAST antivirus suppOrt AVAST
antiviruss repair repair AVAST antivirus AVAST antiviruss suppOrt AVAST
helpline number AVAST scanner antivirus AVAST antiviruss service AVAST
antiviruss custOmer service telephOne number AVAST antivirus phOne number
custOmer service AVAST antiviruss review www.AVAST.cOm suppOrt fOr AVAST
antivirus AVAST antivirus repair service AVAST antivirus phOne number fOr AVAST
antivirus suppOrt AVAST antivirus website AVAST antiviruss custOmer service
phOne AVAST antivirus prOblems and sOlutiOns AVASTs antiviruss custOmer service
phOne number custOmer service AVAST antivirus sOlutiOn AVAST AVAST fax suppOrt
mfc AVAST antivirus AVAST antivirus custOmer service phOne AVAST antivirus help
number AVAST mfc-846On drivers fOr AVAST antiviruss AVAST technical suppOrt
phOne number AVAST custOmer service phOne cOntact AVAST antiviruss AVAST
antivirus custOmer care number AVAST help desk AVAST Online suppOrt AVAST
custOmer suppOrt phOne number AVASTs antivirus custOmer service AVAST antivirus
mfc AVAST antiviruss tech suppOrt phOne number AVAST service AVASTs tech
suppOrt AVAST antiviruss custOmer service phOne number AVAST antivirus install
AVAST laser antiviruss AVASTs antiviruss suppOrt AVAST antivirus AVAST
antivirus service centre AVAST antivirus updates AVAST inkjet antivirus cOntact
AVAST suppOrt AVAST tech suppOrt phOne AVAST lc61 AVASTs antiviruss tech
suppOrt antiviruss Online cOntact AVAST antivirus AVASTs antivirus AVAST label
antivirus AVAST custOmer suppOrt phOne AVAST antiviruss custOmer suppOrt number
AVAST suppOrt centre AVAST laser antivirus AVAST antivirus custOmer service
suppOrt AVAST wireless antivirus setup buy AVAST antivirus Online AVAST
antivirus tech suppOrt number AVAST netwOrk antivirus AVAST antiviruss custOmer
service number custOmer service fOr AVAST antiviruss AVAST service centre AVAST
wireless antivirus AVAST antiviruss AVAST custOmer care AVAST antivirus Online
suppOrt AVAST antivirus tOll free number phOne number fOr AVAST antiviruss
AVAST antivirus installatiOn AVAST antiviruss help desk AVAST antivirus suppOrt
phOne service AVAST AVAST AVAST antivirus custOmer
service/@!!((I+855+681+7208+))!!@AVAST antivirus suppOrt phOne number AVAST
antivirus tech suppOrt phOne number USA
>From gcc-bugs-return-534440-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 21:25:12 2016
Return-Path: <gcc-bugs-return-534440-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 108685 invoked by alias); 12 Aug 2016 21:25:12 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 108662 invoked by uid 89); 12 Aug 2016 21:25:11 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, U*@@, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 21:25:01 +0000
From: "taline96 at ov3u841 dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75550] New: @%@$$$@^^@1_8OOx681x72O8 @^^@@%EPSON p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a c.a.n.a.d.a
Date: Fri, 12 Aug 2016 21:25:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: fortran-dev
X-Bugzilla-Keywords:
X-Bugzilla-Severity: critical
X-Bugzilla-Who: taline96 at ov3u841 dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75550-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01776.txt.bz2
Content-length: 7139

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75550

            Bug ID: 75550
           Summary: @%@$$$@^^@1_8OOx681x72O8 @^^@@%EPSON p.r.i.n.t.e.r
                    t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a
                    c.a.n.a.d.a
           Product: gcc
           Version: fortran-dev
            Status: UNCONFIRMED
          Severity: critical
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: taline96 at ov3u841 dot com
  Target Milestone: ---

/@!!((I+800+681+72O8+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA UST<::: /@!!((I+800+681+72O8+))!!@EPSON printer
suppOrt phOne number EPSON printer tech suppOrt phOne number USA EPSON printer
custOmer service @@@++@@++I+800+681+72O8 !!++++@@+++@@@@+EPSON printer suppOrt
phOne number EPSON printer tech suppOrt phOne number USA JUST<:::
/@!!((I+800+681+72O8+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA EPSON printer custOmer
service@@!!((*I+800+681+72O8+))!!@@EPSON printer suppOrt phOne number EPSON
printer tech suppOrt phOne number USA, EPSON printer technical suppOrt phOne
number EPSON printer custOmer suppOrt phOne number EPSON printer phOne number
EPSON printer custOmer care phOne number brOhter printer custOmer care number
EPSON printer tOll free phOne number EPSON printer suppOrt EPSON suppOrt EPSON
printers suppOrt EPSON custOmer service EPSON printer help EPSON tech suppOrt
EPSON printer custOmer service EPSON printer tech suppOrt EPSON technical
suppOrt EPSON printer trOubleshOOting EPSON printers trOubleshOOting EPSON
internatiOnal EPSONs printer suppOrt EPSON custOmer suppOrt EPSON printer
technical suppOrt EPSON printer repair EPSON printer helpline EPSON printers
custOmer service EPSON service center EPSONs printers suppOrt EPSON helpline
EPSON custOmer service phOne number install EPSON printer EPSON printers tech
suppOrt EPSON printer suppOrt number EPSON printer custOmer suppOrt EPSON
printer cOntact number EPSON printer prOblems EPSON printers help EPSON printer
service EPSON printer service center EPSON printer cOntact EPSON custOmer
service number EPSON printers helpline EPSON suppOrt number EPSON printer
repairs EPSON printer scanner EPSON printers phOne number EPSON printers
custOmer suppOrt EPSON suppOrt center EPSON tech suppOrt phOne number EPSONs
printers custOmer service EPSON printer custOmer service number EPSON printers
technical suppOrt EPSON printer helpline number EPSON suppOrt phOne number
EPSON suppOrt printer EPSON technical suppOrt number EPSON printers cOntact
trOubleshOOting EPSON printer EPSON printer phOne suppOrt EPSON printers
suppOrt phOne number trOubleshOOt EPSON printer EPSON printers cOntact number
EPSONs custOmer service EPSON printer number EPSON phOne suppOrt EPSON
trOubleshOOting EPSON printer custOmer care EPSON printer help desk drivers fOr
EPSON printers EPSON technical suppOrt phOne number EPSON custOmer service
phOne cOntact EPSON printers EPSON printer custOmer care number EPSON help desk
EPSON Online suppOrt EPSON custOmer suppOrt phOne number EPSONs printer
custOmer service EPSON printer mfc EPSON printers tech suppOrt phOne number
EPSON service EPSONs tech suppOrt EPSON printers custOmer service phOne number
EPSON printer install EPSON laser printers EPSONs printers suppOrt EPSON
printer EPSON printer service centre EPSON printer updates EPSON inkjet printer
cOntact EPSON suppOrt EPSON tech suppOrt phOne EPSON lc61 EPSONs printers tech
suppOrt printers Online cOntact EPSON printer EPSONs printer EPSON label
printer EPSON custOmer suppOrt phOne EPSON printers custOmer suppOrt number
EPSON suppOrt centre EPSON laser printer EPSON printer custOmer service suppOrt
EPSON wireless printer setup buy EPSON printer Online EPSON printer tech
suppOrt number EPSON netwOrk printer EPSON printers custOmer service number
custOmer service fOr EPSON printers EPSON service centre EPSON wireless printer
EPSON printers EPSON custOmer care EPSON printer Online suppOrt EPSON printer
tOll free number phOne number fOr EPSON printers EPSON printer installatiOn
EPSON printers help desk EPSON printer suppOrt phOne service EPSON EPSON mfc
EPSON printer custOmer suppOrt number EPSON printers technical suppOrt phOne
number EPSON printer hOtline cOntact number fOr EPSON printers EPSON printer
EPSON.cOm suppOrt cOntact EPSON printer suppOrt EPSON printer trOubleshOOt
EPSON telephOne suppOrt EPSON printers custOmer suppOrt phOne number EPSON
printer help phOne number EPSON custOmer service telephOne number EPSON printer
tech suppOrt phOne EPSON.ca suppOrt EPSON printer Online EPSON multifunctiOn
printer printer suppOrt EPSON printer help EPSON mfc printer technical suppOrt
fOr EPSON printers EPSON tech suppOrt number email suppOrt EPSON printers
suppOrt phOne mfc EPSON EPSON hl227Odw EPSON printers website EPSON printer
suppOrt EPSON printers repair repair EPSON printer EPSON printers suppOrt EPSON
helpline number EPSON scanner printer EPSON printers service EPSON printers
custOmer service telephOne number EPSON printer phOne number custOmer service
EPSON printers review www.EPSON.cOm suppOrt fOr EPSON printer EPSON printer
repair service EPSON printer phOne number fOr EPSON printer suppOrt EPSON
printer website EPSON printers custOmer service phOne EPSON printer prOblems
and sOlutiOns EPSONs printers custOmer service phOne number custOmer service
EPSON printer sOlutiOn EPSON EPSON fax suppOrt mfc EPSON printer EPSON printer
custOmer service phOne EPSON printer help number EPSON mfc-846On drivers fOr
EPSON printers EPSON technical suppOrt phOne number EPSON custOmer service
phOne cOntact EPSON printers EPSON printer custOmer care number EPSON help desk
EPSON Online suppOrt EPSON custOmer suppOrt phOne number EPSONs printer
custOmer service EPSON printer mfc EPSON printers tech suppOrt phOne number
EPSON service EPSONs tech suppOrt EPSON printers custOmer service phOne number
EPSON printer install EPSON laser printers EPSONs printers suppOrt EPSON
printer EPSON printer service centre EPSON printer updates EPSON inkjet printer
cOntact EPSON suppOrt EPSON tech suppOrt phOne EPSON lc61 EPSONs printers tech
suppOrt printers Online cOntact EPSON printer EPSONs printer EPSON label
printer EPSON custOmer suppOrt phOne EPSON printers custOmer suppOrt number
EPSON suppOrt centre EPSON laser printer EPSON printer custOmer service suppOrt
EPSON wireless printer setup buy EPSON printer Online EPSON printer tech
suppOrt number EPSON netwOrk printer EPSON printers custOmer service number
custOmer service fOr EPSON printers EPSON service centre EPSON wireless printer
EPSON printers EPSON custOmer care EPSON printer Online suppOrt EPSON printer
tOll free number phOne number fOr EPSON printers EPSON printer installatiOn
EPSON printers help desk EPSON printer suppOrt phOne service EPSON EPSON EPSON
printer custOmer service/@!!((I+800+681+72O8+))!!@EPSON printer suppOrt phOne
number EPSON printer tech suppOrt phOne number USA
>From gcc-bugs-return-534441-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 21:26:12 2016
Return-Path: <gcc-bugs-return-534441-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 110507 invoked by alias); 12 Aug 2016 21:26:12 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 110495 invoked by uid 89); 12 Aug 2016 21:26:11 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, U*@@, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 21:26:01 +0000
From: "suraj2809 at mailinator dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75553] New: @%@$$$@^^@1_8OOx681x7208 @^^@@%AVIRA A.n.t.i.v.i.r.u.s   t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
Date: Fri, 12 Aug 2016 21:26:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: trans-mem
X-Bugzilla-Keywords:
X-Bugzilla-Severity: critical
X-Bugzilla-Who: suraj2809 at mailinator dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75553-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01777.txt.bz2
Content-length: 7465

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75553

            Bug ID: 75553
           Summary: @%@$$$@^^@1_8OOx681x7208 @^^@@%AVIRA A.n.t.i.v.i.r.u.s
                      t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
           Product: gcc
           Version: trans-mem
            Status: UNCONFIRMED
          Severity: critical
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: suraj2809 at mailinator dot com
  Target Milestone: ---

/@!!((I+855+681+7208+))!!@AVIRA antivirus suppOrt phOne number AVIRA antivirus
tech suppOrt phOne number USA UST<::: /@!!((I+855+681+7208+))!!@AVIRA antivirus
suppOrt phOne number AVIRA antivirus tech suppOrt phOne number USA AVIRA
antivirus custOmer service @@@++@@++I+855+681+7208 !!++++@@+++@@@@+AVIRA
antivirus suppOrt phOne number AVIRA antivirus tech suppOrt phOne number USA
JUST<::: /@!!((I+855+681+7208+))!!@AVIRA antivirus suppOrt phOne number AVIRA
antivirus tech suppOrt phOne number USA AVIRA antivirus custOmer
service@@!!((*I+855+681+7208+))!!@@AVIRA antivirus suppOrt phOne number AVIRA
antivirus tech suppOrt phOne number USA, AVIRA antivirus technical suppOrt
phOne number AVIRA antivirus custOmer suppOrt phOne number AVIRA antivirus
phOne number AVIRA antivirus custOmer care phOne number brOhter antivirus
custOmer care number AVIRA antivirus tOll free phOne number AVIRA antivirus
suppOrt AVIRA suppOrt AVIRA antiviruss suppOrt AVIRA custOmer service AVIRA
antivirus help AVIRA tech suppOrt AVIRA antivirus custOmer service AVIRA
antivirus tech suppOrt AVIRA technical suppOrt AVIRA antivirus trOubleshOOting
AVIRA antiviruss trOubleshOOting AVIRA internatiOnal AVIRAs antivirus suppOrt
AVIRA custOmer suppOrt AVIRA antivirus technical suppOrt AVIRA antivirus repair
AVIRA antivirus helpline AVIRA antiviruss custOmer service AVIRA service center
AVIRAs antiviruss suppOrt AVIRA helpline AVIRA custOmer service phOne number
install AVIRA antivirus AVIRA antiviruss tech suppOrt AVIRA antivirus suppOrt
number AVIRA antivirus custOmer suppOrt AVIRA antivirus cOntact number AVIRA
antivirus prOblems AVIRA antiviruss help AVIRA antivirus service AVIRA
antivirus service center AVIRA antivirus cOntact AVIRA custOmer service number
AVIRA antiviruss helpline AVIRA suppOrt number AVIRA antivirus repairs AVIRA
antivirus scanner AVIRA antiviruss phOne number AVIRA antiviruss custOmer
suppOrt AVIRA suppOrt center AVIRA tech suppOrt phOne number AVIRAs antiviruss
custOmer service AVIRA antivirus custOmer service number AVIRA antiviruss
technical suppOrt AVIRA antivirus helpline number AVIRA suppOrt phOne number
AVIRA suppOrt antivirus AVIRA technical suppOrt number AVIRA antiviruss cOntact
trOubleshOOting AVIRA antivirus AVIRA antivirus phOne suppOrt AVIRA antiviruss
suppOrt phOne number trOubleshOOt AVIRA antivirus AVIRA antiviruss cOntact
number AVIRAs custOmer service AVIRA antivirus number AVIRA phOne suppOrt AVIRA
trOubleshOOting AVIRA antivirus custOmer care AVIRA antivirus help desk drivers
fOr AVIRA antiviruss AVIRA technical suppOrt phOne number AVIRA custOmer
service phOne cOntact AVIRA antiviruss AVIRA antivirus custOmer care number
AVIRA help desk AVIRA Online suppOrt AVIRA custOmer suppOrt phOne number AVIRAs
antivirus custOmer service AVIRA antivirus mfc AVIRA antiviruss tech suppOrt
phOne number AVIRA service AVIRAs tech suppOrt AVIRA antiviruss custOmer
service phOne number AVIRA antivirus install AVIRA laser antiviruss AVIRAs
antiviruss suppOrt AVIRA antivirus AVIRA antivirus service centre AVIRA
antivirus updates AVIRA inkjet antivirus cOntact AVIRA suppOrt AVIRA tech
suppOrt phOne AVIRA lc61 AVIRAs antiviruss tech suppOrt antiviruss Online
cOntact AVIRA antivirus AVIRAs antivirus AVIRA label antivirus AVIRA custOmer
suppOrt phOne AVIRA antiviruss custOmer suppOrt number AVIRA suppOrt centre
AVIRA laser antivirus AVIRA antivirus custOmer service suppOrt AVIRA wireless
antivirus setup buy AVIRA antivirus Online AVIRA antivirus tech suppOrt number
AVIRA netwOrk antivirus AVIRA antiviruss custOmer service number custOmer
service fOr AVIRA antiviruss AVIRA service centre AVIRA wireless antivirus
AVIRA antiviruss AVIRA custOmer care AVIRA antivirus Online suppOrt AVIRA
antivirus tOll free number phOne number fOr AVIRA antiviruss AVIRA antivirus
installatiOn AVIRA antiviruss help desk AVIRA antivirus suppOrt phOne service
AVIRA AVIRA mfc AVIRA antivirus custOmer suppOrt number AVIRA antiviruss
technical suppOrt phOne number AVIRA antivirus hOtline cOntact number fOr AVIRA
antiviruss AVIRA antivirus AVIRA.cOm suppOrt cOntact AVIRA antivirus suppOrt
AVIRA antivirus trOubleshOOt AVIRA telephOne suppOrt AVIRA antiviruss custOmer
suppOrt phOne number AVIRA antivirus help phOne number AVIRA custOmer service
telephOne number AVIRA antivirus tech suppOrt phOne AVIRA.ca suppOrt AVIRA
antivirus Online AVIRA multifunctiOn antivirus antivirus suppOrt AVIRA
antivirus help AVIRA mfc antivirus technical suppOrt fOr AVIRA antiviruss AVIRA
tech suppOrt number email suppOrt AVIRA antiviruss suppOrt phOne mfc AVIRA
AVIRA hl227Odw AVIRA antiviruss website AVIRA antivirus suppOrt AVIRA
antiviruss repair repair AVIRA antivirus AVIRA antiviruss suppOrt AVIRA
helpline number AVIRA scanner antivirus AVIRA antiviruss service AVIRA
antiviruss custOmer service telephOne number AVIRA antivirus phOne number
custOmer service AVIRA antiviruss review www.AVIRA.cOm suppOrt fOr AVIRA
antivirus AVIRA antivirus repair service AVIRA antivirus phOne number fOr AVIRA
antivirus suppOrt AVIRA antivirus website AVIRA antiviruss custOmer service
phOne AVIRA antivirus prOblems and sOlutiOns AVIRAs antiviruss custOmer service
phOne number custOmer service AVIRA antivirus sOlutiOn AVIRA AVIRA fax suppOrt
mfc AVIRA antivirus AVIRA antivirus custOmer service phOne AVIRA antivirus help
number AVIRA mfc-846On drivers fOr AVIRA antiviruss AVIRA technical suppOrt
phOne number AVIRA custOmer service phOne cOntact AVIRA antiviruss AVIRA
antivirus custOmer care number AVIRA help desk AVIRA Online suppOrt AVIRA
custOmer suppOrt phOne number AVIRAs antivirus custOmer service AVIRA antivirus
mfc AVIRA antiviruss tech suppOrt phOne number AVIRA service AVIRAs tech
suppOrt AVIRA antiviruss custOmer service phOne number AVIRA antivirus install
AVIRA laser antiviruss AVIRAs antiviruss suppOrt AVIRA antivirus AVIRA
antivirus service centre AVIRA antivirus updates AVIRA inkjet antivirus cOntact
AVIRA suppOrt AVIRA tech suppOrt phOne AVIRA lc61 AVIRAs antiviruss tech
suppOrt antiviruss Online cOntact AVIRA antivirus AVIRAs antivirus AVIRA label
antivirus AVIRA custOmer suppOrt phOne AVIRA antiviruss custOmer suppOrt number
AVIRA suppOrt centre AVIRA laser antivirus AVIRA antivirus custOmer service
suppOrt AVIRA wireless antivirus setup buy AVIRA antivirus Online AVIRA
antivirus tech suppOrt number AVIRA netwOrk antivirus AVIRA antiviruss custOmer
service number custOmer service fOr AVIRA antiviruss AVIRA service centre AVIRA
wireless antivirus AVIRA antiviruss AVIRA custOmer care AVIRA antivirus Online
suppOrt AVIRA antivirus tOll free number phOne number fOr AVIRA antiviruss
AVIRA antivirus installatiOn AVIRA antiviruss help desk AVIRA antivirus suppOrt
phOne service AVIRA AVIRA AVIRA antivirus custOmer
service/@!!((I+855+681+7208+))!!@AVIRA antivirus suppOrt phOne number AVIRA
antivirus tech suppOrt phOne number USA
>From gcc-bugs-return-534442-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 21:29:20 2016
Return-Path: <gcc-bugs-return-534442-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 13984 invoked by alias); 12 Aug 2016 21:29:20 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 13971 invoked by uid 89); 12 Aug 2016 21:29:19 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, U*@@, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 21:29:09 +0000
From: "suraj2809 at mailinator dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75559] New: @%@$$$@^^@1_8OOx681x7208 @^^@@%BULLGUARD A.n.t.i.v.i.r.u.s   t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
Date: Fri, 12 Aug 2016 21:29:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: trans-mem
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: suraj2809 at mailinator dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75559-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01778.txt.bz2
Content-length: 8398

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75559

            Bug ID: 75559
           Summary: @%@$$$@^^@1_8OOx681x7208 @^^@@%BULLGUARD
                    A.n.t.i.v.i.r.u.s   t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e
                    n.u.m.b.e.r
           Product: gcc
           Version: trans-mem
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: suraj2809 at mailinator dot com
  Target Milestone: ---

/@!!((I+855+681+7208+))!!@BULLGUARD antivirus suppOrt phOne number BULLGUARD
antivirus tech suppOrt phOne number USA UST<:::
/@!!((I+855+681+7208+))!!@BULLGUARD antivirus suppOrt phOne number BULLGUARD
antivirus tech suppOrt phOne number USA BULLGUARD antivirus custOmer service
@@@++@@++I+855+681+7208 !!++++@@+++@@@@+BULLGUARD antivirus suppOrt phOne
number BULLGUARD antivirus tech suppOrt phOne number USA JUST<:::
/@!!((I+855+681+7208+))!!@BULLGUARD antivirus suppOrt phOne number BULLGUARD
antivirus tech suppOrt phOne number USA BULLGUARD antivirus custOmer
service@@!!((*I+855+681+7208+))!!@@BULLGUARD antivirus suppOrt phOne number
BULLGUARD antivirus tech suppOrt phOne number USA, BULLGUARD antivirus
technical suppOrt phOne number BULLGUARD antivirus custOmer suppOrt phOne
number BULLGUARD antivirus phOne number BULLGUARD antivirus custOmer care phOne
number brOhter antivirus custOmer care number BULLGUARD antivirus tOll free
phOne number BULLGUARD antivirus suppOrt BULLGUARD suppOrt BULLGUARD antiviruss
suppOrt BULLGUARD custOmer service BULLGUARD antivirus help BULLGUARD tech
suppOrt BULLGUARD antivirus custOmer service BULLGUARD antivirus tech suppOrt
BULLGUARD technical suppOrt BULLGUARD antivirus trOubleshOOting BULLGUARD
antiviruss trOubleshOOting BULLGUARD internatiOnal BULLGUARDs antivirus suppOrt
BULLGUARD custOmer suppOrt BULLGUARD antivirus technical suppOrt BULLGUARD
antivirus repair BULLGUARD antivirus helpline BULLGUARD antiviruss custOmer
service BULLGUARD service center BULLGUARDs antiviruss suppOrt BULLGUARD
helpline BULLGUARD custOmer service phOne number install BULLGUARD antivirus
BULLGUARD antiviruss tech suppOrt BULLGUARD antivirus suppOrt number BULLGUARD
antivirus custOmer suppOrt BULLGUARD antivirus cOntact number BULLGUARD
antivirus prOblems BULLGUARD antiviruss help BULLGUARD antivirus service
BULLGUARD antivirus service center BULLGUARD antivirus cOntact BULLGUARD
custOmer service number BULLGUARD antiviruss helpline BULLGUARD suppOrt number
BULLGUARD antivirus repairs BULLGUARD antivirus scanner BULLGUARD antiviruss
phOne number BULLGUARD antiviruss custOmer suppOrt BULLGUARD suppOrt center
BULLGUARD tech suppOrt phOne number BULLGUARDs antiviruss custOmer service
BULLGUARD antivirus custOmer service number BULLGUARD antiviruss technical
suppOrt BULLGUARD antivirus helpline number BULLGUARD suppOrt phOne number
BULLGUARD suppOrt antivirus BULLGUARD technical suppOrt number BULLGUARD
antiviruss cOntact trOubleshOOting BULLGUARD antivirus BULLGUARD antivirus
phOne suppOrt BULLGUARD antiviruss suppOrt phOne number trOubleshOOt BULLGUARD
antivirus BULLGUARD antiviruss cOntact number BULLGUARDs custOmer service
BULLGUARD antivirus number BULLGUARD phOne suppOrt BULLGUARD trOubleshOOting
BULLGUARD antivirus custOmer care BULLGUARD antivirus help desk drivers fOr
BULLGUARD antiviruss BULLGUARD technical suppOrt phOne number BULLGUARD
custOmer service phOne cOntact BULLGUARD antiviruss BULLGUARD antivirus
custOmer care number BULLGUARD help desk BULLGUARD Online suppOrt BULLGUARD
custOmer suppOrt phOne number BULLGUARDs antivirus custOmer service BULLGUARD
antivirus mfc BULLGUARD antiviruss tech suppOrt phOne number BULLGUARD service
BULLGUARDs tech suppOrt BULLGUARD antiviruss custOmer service phOne number
BULLGUARD antivirus install BULLGUARD laser antiviruss BULLGUARDs antiviruss
suppOrt BULLGUARD antivirus BULLGUARD antivirus service centre BULLGUARD
antivirus updates BULLGUARD inkjet antivirus cOntact BULLGUARD suppOrt
BULLGUARD tech suppOrt phOne BULLGUARD lc61 BULLGUARDs antiviruss tech suppOrt
antiviruss Online cOntact BULLGUARD antivirus BULLGUARDs antivirus BULLGUARD
label antivirus BULLGUARD custOmer suppOrt phOne BULLGUARD antiviruss custOmer
suppOrt number BULLGUARD suppOrt centre BULLGUARD laser antivirus BULLGUARD
antivirus custOmer service suppOrt BULLGUARD wireless antivirus setup buy
BULLGUARD antivirus Online BULLGUARD antivirus tech suppOrt number BULLGUARD
netwOrk antivirus BULLGUARD antiviruss custOmer service number custOmer service
fOr BULLGUARD antiviruss BULLGUARD service centre BULLGUARD wireless antivirus
BULLGUARD antiviruss BULLGUARD custOmer care BULLGUARD antivirus Online suppOrt
BULLGUARD antivirus tOll free number phOne number fOr BULLGUARD antiviruss
BULLGUARD antivirus installatiOn BULLGUARD antiviruss help desk BULLGUARD
antivirus suppOrt phOne service BULLGUARD BULLGUARD mfc BULLGUARD antivirus
custOmer suppOrt number BULLGUARD antiviruss technical suppOrt phOne number
BULLGUARD antivirus hOtline cOntact number fOr BULLGUARD antiviruss BULLGUARD
antivirus BULLGUARD.cOm suppOrt cOntact BULLGUARD antivirus suppOrt BULLGUARD
antivirus trOubleshOOt BULLGUARD telephOne suppOrt BULLGUARD antiviruss
custOmer suppOrt phOne number BULLGUARD antivirus help phOne number BULLGUARD
custOmer service telephOne number BULLGUARD antivirus tech suppOrt phOne
BULLGUARD.ca suppOrt BULLGUARD antivirus Online BULLGUARD multifunctiOn
antivirus antivirus suppOrt BULLGUARD antivirus help BULLGUARD mfc antivirus
technical suppOrt fOr BULLGUARD antiviruss BULLGUARD tech suppOrt number email
suppOrt BULLGUARD antiviruss suppOrt phOne mfc BULLGUARD BULLGUARD hl227Odw
BULLGUARD antiviruss website BULLGUARD antivirus suppOrt BULLGUARD antiviruss
repair repair BULLGUARD antivirus BULLGUARD antiviruss suppOrt BULLGUARD
helpline number BULLGUARD scanner antivirus BULLGUARD antiviruss service
BULLGUARD antiviruss custOmer service telephOne number BULLGUARD antivirus
phOne number custOmer service BULLGUARD antiviruss review www.BULLGUARD.cOm
suppOrt fOr BULLGUARD antivirus BULLGUARD antivirus repair service BULLGUARD
antivirus phOne number fOr BULLGUARD antivirus suppOrt BULLGUARD antivirus
website BULLGUARD antiviruss custOmer service phOne BULLGUARD antivirus
prOblems and sOlutiOns BULLGUARDs antiviruss custOmer service phOne number
custOmer service BULLGUARD antivirus sOlutiOn BULLGUARD BULLGUARD fax suppOrt
mfc BULLGUARD antivirus BULLGUARD antivirus custOmer service phOne BULLGUARD
antivirus help number BULLGUARD mfc-846On drivers fOr BULLGUARD antiviruss
BULLGUARD technical suppOrt phOne number BULLGUARD custOmer service phOne
cOntact BULLGUARD antiviruss BULLGUARD antivirus custOmer care number BULLGUARD
help desk BULLGUARD Online suppOrt BULLGUARD custOmer suppOrt phOne number
BULLGUARDs antivirus custOmer service BULLGUARD antivirus mfc BULLGUARD
antiviruss tech suppOrt phOne number BULLGUARD service BULLGUARDs tech suppOrt
BULLGUARD antiviruss custOmer service phOne number BULLGUARD antivirus install
BULLGUARD laser antiviruss BULLGUARDs antiviruss suppOrt BULLGUARD antivirus
BULLGUARD antivirus service centre BULLGUARD antivirus updates BULLGUARD inkjet
antivirus cOntact BULLGUARD suppOrt BULLGUARD tech suppOrt phOne BULLGUARD lc61
BULLGUARDs antiviruss tech suppOrt antiviruss Online cOntact BULLGUARD
antivirus BULLGUARDs antivirus BULLGUARD label antivirus BULLGUARD custOmer
suppOrt phOne BULLGUARD antiviruss custOmer suppOrt number BULLGUARD suppOrt
centre BULLGUARD laser antivirus BULLGUARD antivirus custOmer service suppOrt
BULLGUARD wireless antivirus setup buy BULLGUARD antivirus Online BULLGUARD
antivirus tech suppOrt number BULLGUARD netwOrk antivirus BULLGUARD antiviruss
custOmer service number custOmer service fOr BULLGUARD antiviruss BULLGUARD
service centre BULLGUARD wireless antivirus BULLGUARD antiviruss BULLGUARD
custOmer care BULLGUARD antivirus Online suppOrt BULLGUARD antivirus tOll free
number phOne number fOr BULLGUARD antiviruss BULLGUARD antivirus installatiOn
BULLGUARD antiviruss help desk BULLGUARD antivirus suppOrt phOne service
BULLGUARD BULLGUARD BULLGUARD antivirus custOmer
service/@!!((I+855+681+7208+))!!@BULLGUARD antivirus suppOrt phOne number
BULLGUARD antivirus tech suppOrt phOne number USA
>From gcc-bugs-return-534443-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 21:30:59 2016
Return-Path: <gcc-bugs-return-534443-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 16124 invoked by alias); 12 Aug 2016 21:30:58 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 16109 invoked by uid 89); 12 Aug 2016 21:30:58 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, U*@@, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 21:30:48 +0000
From: "devsharmat20 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75562] New: @%@$$$@^^@1_8OOx681x7208 @^^@@%SBCGLOBAL M.a.i.lt.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
Date: Fri, 12 Aug 2016 21:30:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: tree-ssa
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: devsharmat20 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75562-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01779.txt.bz2
Content-length: 7526

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75562

            Bug ID: 75562
           Summary: @%@$$$@^^@1_8OOx681x7208 @^^@@%SBCGLOBAL
                    M.a.i.lt.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
           Product: gcc
           Version: tree-ssa
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: devsharmat20 at gmail dot com
  Target Milestone: ---

/@!!((I+855+681+7208+))!!@SBCGLOBAL mail suppOrt phOne number SBCGLOBAL mail
tech suppOrt phOne number USA UST<::: /@!!((I+855+681+7208+))!!@SBCGLOBAL mail
suppOrt phOne number SBCGLOBAL mail tech suppOrt phOne number USA SBCGLOBAL
mail custOmer service @@@++@@++I+855+681+7208 !!++++@@+++@@@@+SBCGLOBAL mail
suppOrt phOne number SBCGLOBAL mail tech suppOrt phOne number USA JUST<:::
/@!!((I+855+681+7208+))!!@SBCGLOBAL mail suppOrt phOne number SBCGLOBAL mail
tech suppOrt phOne number USA SBCGLOBAL mail custOmer
service@@!!((*I+855+681+7208+))!!@@SBCGLOBAL mail suppOrt phOne number
SBCGLOBAL mail tech suppOrt phOne number USA, SBCGLOBAL mail technical suppOrt
phOne number SBCGLOBAL mail custOmer suppOrt phOne number SBCGLOBAL mail phOne
number SBCGLOBAL mail custOmer care phOne number brOhter mail custOmer care
number SBCGLOBAL mail tOll free phOne number SBCGLOBAL mail suppOrt SBCGLOBAL
suppOrt SBCGLOBAL mails suppOrt SBCGLOBAL custOmer service SBCGLOBAL mail help
SBCGLOBAL tech suppOrt SBCGLOBAL mail custOmer service SBCGLOBAL mail tech
suppOrt SBCGLOBAL technical suppOrt SBCGLOBAL mail trOubleshOOting SBCGLOBAL
mails trOubleshOOting SBCGLOBAL internatiOnal SBCGLOBALs mail suppOrt SBCGLOBAL
custOmer suppOrt SBCGLOBAL mail technical suppOrt SBCGLOBAL mail repair
SBCGLOBAL mail helpline SBCGLOBAL mails custOmer service SBCGLOBAL service
center SBCGLOBALs mails suppOrt SBCGLOBAL helpline SBCGLOBAL custOmer service
phOne number install SBCGLOBAL mail SBCGLOBAL mails tech suppOrt SBCGLOBAL mail
suppOrt number SBCGLOBAL mail custOmer suppOrt SBCGLOBAL mail cOntact number
SBCGLOBAL mail prOblems SBCGLOBAL mails help SBCGLOBAL mail service SBCGLOBAL
mail service center SBCGLOBAL mail cOntact SBCGLOBAL custOmer service number
SBCGLOBAL mails helpline SBCGLOBAL suppOrt number SBCGLOBAL mail repairs
SBCGLOBAL mail scanner SBCGLOBAL mails phOne number SBCGLOBAL mails custOmer
suppOrt SBCGLOBAL suppOrt center SBCGLOBAL tech suppOrt phOne number SBCGLOBALs
mails custOmer service SBCGLOBAL mail custOmer service number SBCGLOBAL mails
technical suppOrt SBCGLOBAL mail helpline number SBCGLOBAL suppOrt phOne number
SBCGLOBAL suppOrt mail SBCGLOBAL technical suppOrt number SBCGLOBAL mails
cOntact trOubleshOOting SBCGLOBAL mail SBCGLOBAL mail phOne suppOrt SBCGLOBAL
mails suppOrt phOne number trOubleshOOt SBCGLOBAL mail SBCGLOBAL mails cOntact
number SBCGLOBALs custOmer service SBCGLOBAL mail number SBCGLOBAL phOne
suppOrt SBCGLOBAL trOubleshOOting SBCGLOBAL mail custOmer care SBCGLOBAL mail
help desk drivers fOr SBCGLOBAL mails SBCGLOBAL technical suppOrt phOne number
SBCGLOBAL custOmer service phOne cOntact SBCGLOBAL mails SBCGLOBAL mail
custOmer care number SBCGLOBAL help desk SBCGLOBAL Online suppOrt SBCGLOBAL
custOmer suppOrt phOne number SBCGLOBALs mail custOmer service SBCGLOBAL mail
mfc SBCGLOBAL mails tech suppOrt phOne number SBCGLOBAL service SBCGLOBALs tech
suppOrt SBCGLOBAL mails custOmer service phOne number SBCGLOBAL mail install
SBCGLOBAL laser mails SBCGLOBALs mails suppOrt SBCGLOBAL mail SBCGLOBAL mail
service centre SBCGLOBAL mail updates SBCGLOBAL inkjet mail cOntact SBCGLOBAL
suppOrt SBCGLOBAL tech suppOrt phOne SBCGLOBAL lc61 SBCGLOBALs mails tech
suppOrt mails Online cOntact SBCGLOBAL mail SBCGLOBALs mail SBCGLOBAL label
mail SBCGLOBAL custOmer suppOrt phOne SBCGLOBAL mails custOmer suppOrt number
SBCGLOBAL suppOrt centre SBCGLOBAL laser mail SBCGLOBAL mail custOmer service
suppOrt SBCGLOBAL wireless mail setup buy SBCGLOBAL mail Online SBCGLOBAL mail
tech suppOrt number SBCGLOBAL netwOrk mail SBCGLOBAL mails custOmer service
number custOmer service fOr SBCGLOBAL mails SBCGLOBAL service centre SBCGLOBAL
wireless mail SBCGLOBAL mails SBCGLOBAL custOmer care SBCGLOBAL mail Online
suppOrt SBCGLOBAL mail tOll free number phOne number fOr SBCGLOBAL mails
SBCGLOBAL mail installatiOn SBCGLOBAL mails help desk SBCGLOBAL mail suppOrt
phOne service SBCGLOBAL SBCGLOBAL mfc SBCGLOBAL mail custOmer suppOrt number
SBCGLOBAL mails technical suppOrt phOne number SBCGLOBAL mail hOtline cOntact
number fOr SBCGLOBAL mails SBCGLOBAL mail SBCGLOBAL.cOm suppOrt cOntact
SBCGLOBAL mail suppOrt SBCGLOBAL mail trOubleshOOt SBCGLOBAL telephOne suppOrt
SBCGLOBAL mails custOmer suppOrt phOne number SBCGLOBAL mail help phOne number
SBCGLOBAL custOmer service telephOne number SBCGLOBAL mail tech suppOrt phOne
SBCGLOBAL.ca suppOrt SBCGLOBAL mail Online SBCGLOBAL multifunctiOn mail mail
suppOrt SBCGLOBAL mail help SBCGLOBAL mfc mail technical suppOrt fOr SBCGLOBAL
mails SBCGLOBAL tech suppOrt number email suppOrt SBCGLOBAL mails suppOrt phOne
mfc SBCGLOBAL SBCGLOBAL hl227Odw SBCGLOBAL mails website SBCGLOBAL mail suppOrt
SBCGLOBAL mails repair repair SBCGLOBAL mail SBCGLOBAL mails suppOrt SBCGLOBAL
helpline number SBCGLOBAL scanner mail SBCGLOBAL mails service SBCGLOBAL mails
custOmer service telephOne number SBCGLOBAL mail phOne number custOmer service
SBCGLOBAL mails review www.SBCGLOBAL.cOm suppOrt fOr SBCGLOBAL mail SBCGLOBAL
mail repair service SBCGLOBAL mail phOne number fOr SBCGLOBAL mail suppOrt
SBCGLOBAL mail website SBCGLOBAL mails custOmer service phOne SBCGLOBAL mail
prOblems and sOlutiOns SBCGLOBALs mails custOmer service phOne number custOmer
service SBCGLOBAL mail sOlutiOn SBCGLOBAL SBCGLOBAL fax suppOrt mfc SBCGLOBAL
mail SBCGLOBAL mail custOmer service phOne SBCGLOBAL mail help number SBCGLOBAL
mfc-846On drivers fOr SBCGLOBAL mails SBCGLOBAL technical suppOrt phOne number
SBCGLOBAL custOmer service phOne cOntact SBCGLOBAL mails SBCGLOBAL mail
custOmer care number SBCGLOBAL help desk SBCGLOBAL Online suppOrt SBCGLOBAL
custOmer suppOrt phOne number SBCGLOBALs mail custOmer service SBCGLOBAL mail
mfc SBCGLOBAL mails tech suppOrt phOne number SBCGLOBAL service SBCGLOBALs tech
suppOrt SBCGLOBAL mails custOmer service phOne number SBCGLOBAL mail install
SBCGLOBAL laser mails SBCGLOBALs mails suppOrt SBCGLOBAL mail SBCGLOBAL mail
service centre SBCGLOBAL mail updates SBCGLOBAL inkjet mail cOntact SBCGLOBAL
suppOrt SBCGLOBAL tech suppOrt phOne SBCGLOBAL lc61 SBCGLOBALs mails tech
suppOrt mails Online cOntact SBCGLOBAL mail SBCGLOBALs mail SBCGLOBAL label
mail SBCGLOBAL custOmer suppOrt phOne SBCGLOBAL mails custOmer suppOrt number
SBCGLOBAL suppOrt centre SBCGLOBAL laser mail SBCGLOBAL mail custOmer service
suppOrt SBCGLOBAL wireless mail setup buy SBCGLOBAL mail Online SBCGLOBAL mail
tech suppOrt number SBCGLOBAL netwOrk mail SBCGLOBAL mails custOmer service
number custOmer service fOr SBCGLOBAL mails SBCGLOBAL service centre SBCGLOBAL
wireless mail SBCGLOBAL mails SBCGLOBAL custOmer care SBCGLOBAL mail Online
suppOrt SBCGLOBAL mail tOll free number phOne number fOr SBCGLOBAL mails
SBCGLOBAL mail installatiOn SBCGLOBAL mails help desk SBCGLOBAL mail suppOrt
phOne service SBCGLOBAL SBCGLOBAL SBCGLOBAL mail custOmer
service/@!!((I+855+681+7208+))!!@SBCGLOBAL mail suppOrt phOne number SBCGLOBAL
mail tech suppOrt phOne number USA
>From gcc-bugs-return-534444-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 21:34:51 2016
Return-Path: <gcc-bugs-return-534444-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 19982 invoked by alias); 12 Aug 2016 21:34:51 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 19890 invoked by uid 89); 12 Aug 2016 21:34:50 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, U*@@, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 21:34:40 +0000
From: "suraj2809 at mailinator dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75565] New: @%@$$$@^^@1_8OOx681x7208 @^^@@%BITDEFENDER A.n.t.i.v.i.r.u.s   t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
Date: Fri, 12 Aug 2016 21:34:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: trans-mem
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: suraj2809 at mailinator dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75565-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01780.txt.bz2
Content-length: 8866

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75565

            Bug ID: 75565
           Summary: @%@$$$@^^@1_8OOx681x7208 @^^@@%BITDEFENDER
                    A.n.t.i.v.i.r.u.s   t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e
                    n.u.m.b.e.r
           Product: gcc
           Version: trans-mem
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: suraj2809 at mailinator dot com
  Target Milestone: ---

/@!!((I+855+681+7208+))!!@BITDEFENDER antivirus suppOrt phOne number
BITDEFENDER antivirus tech suppOrt phOne number USA UST<:::
/@!!((I+855+681+7208+))!!@BITDEFENDER antivirus suppOrt phOne number
BITDEFENDER antivirus tech suppOrt phOne number USA BITDEFENDER antivirus
custOmer service @@@++@@++I+855+681+7208 !!++++@@+++@@@@+BITDEFENDER antivirus
suppOrt phOne number BITDEFENDER antivirus tech suppOrt phOne number USA
JUST<::: /@!!((I+855+681+7208+))!!@BITDEFENDER antivirus suppOrt phOne number
BITDEFENDER antivirus tech suppOrt phOne number USA BITDEFENDER antivirus
custOmer service@@!!((*I+855+681+7208+))!!@@BITDEFENDER antivirus suppOrt phOne
number BITDEFENDER antivirus tech suppOrt phOne number USA, BITDEFENDER
antivirus technical suppOrt phOne number BITDEFENDER antivirus custOmer suppOrt
phOne number BITDEFENDER antivirus phOne number BITDEFENDER antivirus custOmer
care phOne number brOhter antivirus custOmer care number BITDEFENDER antivirus
tOll free phOne number BITDEFENDER antivirus suppOrt BITDEFENDER suppOrt
BITDEFENDER antiviruss suppOrt BITDEFENDER custOmer service BITDEFENDER
antivirus help BITDEFENDER tech suppOrt BITDEFENDER antivirus custOmer service
BITDEFENDER antivirus tech suppOrt BITDEFENDER technical suppOrt BITDEFENDER
antivirus trOubleshOOting BITDEFENDER antiviruss trOubleshOOting BITDEFENDER
internatiOnal BITDEFENDERs antivirus suppOrt BITDEFENDER custOmer suppOrt
BITDEFENDER antivirus technical suppOrt BITDEFENDER antivirus repair
BITDEFENDER antivirus helpline BITDEFENDER antiviruss custOmer service
BITDEFENDER service center BITDEFENDERs antiviruss suppOrt BITDEFENDER helpline
BITDEFENDER custOmer service phOne number install BITDEFENDER antivirus
BITDEFENDER antiviruss tech suppOrt BITDEFENDER antivirus suppOrt number
BITDEFENDER antivirus custOmer suppOrt BITDEFENDER antivirus cOntact number
BITDEFENDER antivirus prOblems BITDEFENDER antiviruss help BITDEFENDER
antivirus service BITDEFENDER antivirus service center BITDEFENDER antivirus
cOntact BITDEFENDER custOmer service number BITDEFENDER antiviruss helpline
BITDEFENDER suppOrt number BITDEFENDER antivirus repairs BITDEFENDER antivirus
scanner BITDEFENDER antiviruss phOne number BITDEFENDER antiviruss custOmer
suppOrt BITDEFENDER suppOrt center BITDEFENDER tech suppOrt phOne number
BITDEFENDERs antiviruss custOmer service BITDEFENDER antivirus custOmer service
number BITDEFENDER antiviruss technical suppOrt BITDEFENDER antivirus helpline
number BITDEFENDER suppOrt phOne number BITDEFENDER suppOrt antivirus
BITDEFENDER technical suppOrt number BITDEFENDER antiviruss cOntact
trOubleshOOting BITDEFENDER antivirus BITDEFENDER antivirus phOne suppOrt
BITDEFENDER antiviruss suppOrt phOne number trOubleshOOt BITDEFENDER antivirus
BITDEFENDER antiviruss cOntact number BITDEFENDERs custOmer service BITDEFENDER
antivirus number BITDEFENDER phOne suppOrt BITDEFENDER trOubleshOOting
BITDEFENDER antivirus custOmer care BITDEFENDER antivirus help desk drivers fOr
BITDEFENDER antiviruss BITDEFENDER technical suppOrt phOne number BITDEFENDER
custOmer service phOne cOntact BITDEFENDER antiviruss BITDEFENDER antivirus
custOmer care number BITDEFENDER help desk BITDEFENDER Online suppOrt
BITDEFENDER custOmer suppOrt phOne number BITDEFENDERs antivirus custOmer
service BITDEFENDER antivirus mfc BITDEFENDER antiviruss tech suppOrt phOne
number BITDEFENDER service BITDEFENDERs tech suppOrt BITDEFENDER antiviruss
custOmer service phOne number BITDEFENDER antivirus install BITDEFENDER laser
antiviruss BITDEFENDERs antiviruss suppOrt BITDEFENDER antivirus BITDEFENDER
antivirus service centre BITDEFENDER antivirus updates BITDEFENDER inkjet
antivirus cOntact BITDEFENDER suppOrt BITDEFENDER tech suppOrt phOne
BITDEFENDER lc61 BITDEFENDERs antiviruss tech suppOrt antiviruss Online cOntact
BITDEFENDER antivirus BITDEFENDERs antivirus BITDEFENDER label antivirus
BITDEFENDER custOmer suppOrt phOne BITDEFENDER antiviruss custOmer suppOrt
number BITDEFENDER suppOrt centre BITDEFENDER laser antivirus BITDEFENDER
antivirus custOmer service suppOrt BITDEFENDER wireless antivirus setup buy
BITDEFENDER antivirus Online BITDEFENDER antivirus tech suppOrt number
BITDEFENDER netwOrk antivirus BITDEFENDER antiviruss custOmer service number
custOmer service fOr BITDEFENDER antiviruss BITDEFENDER service centre
BITDEFENDER wireless antivirus BITDEFENDER antiviruss BITDEFENDER custOmer care
BITDEFENDER antivirus Online suppOrt BITDEFENDER antivirus tOll free number
phOne number fOr BITDEFENDER antiviruss BITDEFENDER antivirus installatiOn
BITDEFENDER antiviruss help desk BITDEFENDER antivirus suppOrt phOne service
BITDEFENDER BITDEFENDER mfc BITDEFENDER antivirus custOmer suppOrt number
BITDEFENDER antiviruss technical suppOrt phOne number BITDEFENDER antivirus
hOtline cOntact number fOr BITDEFENDER antiviruss BITDEFENDER antivirus
BITDEFENDER.cOm suppOrt cOntact BITDEFENDER antivirus suppOrt BITDEFENDER
antivirus trOubleshOOt BITDEFENDER telephOne suppOrt BITDEFENDER antiviruss
custOmer suppOrt phOne number BITDEFENDER antivirus help phOne number
BITDEFENDER custOmer service telephOne number BITDEFENDER antivirus tech
suppOrt phOne BITDEFENDER.ca suppOrt BITDEFENDER antivirus Online BITDEFENDER
multifunctiOn antivirus antivirus suppOrt BITDEFENDER antivirus help
BITDEFENDER mfc antivirus technical suppOrt fOr BITDEFENDER antiviruss
BITDEFENDER tech suppOrt number email suppOrt BITDEFENDER antiviruss suppOrt
phOne mfc BITDEFENDER BITDEFENDER hl227Odw BITDEFENDER antiviruss website
BITDEFENDER antivirus suppOrt BITDEFENDER antiviruss repair repair BITDEFENDER
antivirus BITDEFENDER antiviruss suppOrt BITDEFENDER helpline number
BITDEFENDER scanner antivirus BITDEFENDER antiviruss service BITDEFENDER
antiviruss custOmer service telephOne number BITDEFENDER antivirus phOne number
custOmer service BITDEFENDER antiviruss review www.BITDEFENDER.cOm suppOrt fOr
BITDEFENDER antivirus BITDEFENDER antivirus repair service BITDEFENDER
antivirus phOne number fOr BITDEFENDER antivirus suppOrt BITDEFENDER antivirus
website BITDEFENDER antiviruss custOmer service phOne BITDEFENDER antivirus
prOblems and sOlutiOns BITDEFENDERs antiviruss custOmer service phOne number
custOmer service BITDEFENDER antivirus sOlutiOn BITDEFENDER BITDEFENDER fax
suppOrt mfc BITDEFENDER antivirus BITDEFENDER antivirus custOmer service phOne
BITDEFENDER antivirus help number BITDEFENDER mfc-846On drivers fOr BITDEFENDER
antiviruss BITDEFENDER technical suppOrt phOne number BITDEFENDER custOmer
service phOne cOntact BITDEFENDER antiviruss BITDEFENDER antivirus custOmer
care number BITDEFENDER help desk BITDEFENDER Online suppOrt BITDEFENDER
custOmer suppOrt phOne number BITDEFENDERs antivirus custOmer service
BITDEFENDER antivirus mfc BITDEFENDER antiviruss tech suppOrt phOne number
BITDEFENDER service BITDEFENDERs tech suppOrt BITDEFENDER antiviruss custOmer
service phOne number BITDEFENDER antivirus install BITDEFENDER laser antiviruss
BITDEFENDERs antiviruss suppOrt BITDEFENDER antivirus BITDEFENDER antivirus
service centre BITDEFENDER antivirus updates BITDEFENDER inkjet antivirus
cOntact BITDEFENDER suppOrt BITDEFENDER tech suppOrt phOne BITDEFENDER lc61
BITDEFENDERs antiviruss tech suppOrt antiviruss Online cOntact BITDEFENDER
antivirus BITDEFENDERs antivirus BITDEFENDER label antivirus BITDEFENDER
custOmer suppOrt phOne BITDEFENDER antiviruss custOmer suppOrt number
BITDEFENDER suppOrt centre BITDEFENDER laser antivirus BITDEFENDER antivirus
custOmer service suppOrt BITDEFENDER wireless antivirus setup buy BITDEFENDER
antivirus Online BITDEFENDER antivirus tech suppOrt number BITDEFENDER netwOrk
antivirus BITDEFENDER antiviruss custOmer service number custOmer service fOr
BITDEFENDER antiviruss BITDEFENDER service centre BITDEFENDER wireless
antivirus BITDEFENDER antiviruss BITDEFENDER custOmer care BITDEFENDER
antivirus Online suppOrt BITDEFENDER antivirus tOll free number phOne number
fOr BITDEFENDER antiviruss BITDEFENDER antivirus installatiOn BITDEFENDER
antiviruss help desk BITDEFENDER antivirus suppOrt phOne service BITDEFENDER
BITDEFENDER BITDEFENDER antivirus custOmer
service/@!!((I+855+681+7208+))!!@BITDEFENDER antivirus suppOrt phOne number
BITDEFENDER antivirus tech suppOrt phOne number USA
>From gcc-bugs-return-534445-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 21:35:40 2016
Return-Path: <gcc-bugs-return-534445-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 22209 invoked by alias); 12 Aug 2016 21:35:39 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 22171 invoked by uid 89); 12 Aug 2016 21:35:36 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, brothers, UD:ca, brother
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 21:35:26 +0000
From: "leeragram at codehot dot co.uk" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug objc++/75566] New: @%@$$$@^^@1_855x709x2847 @^^@@%BROTHER p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a c.a.n.a.d.a
Date: Fri, 12 Aug 2016 21:35:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: objc++
X-Bugzilla-Version: fortran-dev
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: leeragram at codehot dot co.uk
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75566-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01781.txt.bz2
Content-length: 7619

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75566

            Bug ID: 75566
           Summary: @%@$$$@^^@1_855x709x2847 @^^@@%BROTHER p.r.i.n.t.e.r
                    t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a
                    c.a.n.a.d.a
           Product: gcc
           Version: fortran-dev
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: objc++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: leeragram at codehot dot co.uk
  Target Milestone: ---

/@!!((I+855+709+2847+))!!@BROTHER printer suppOrt phOne number BROTHER printer
tech suppOrt phOne number USA UST<::: /@!!((I+855+709+2847+))!!@BROTHER printer
suppOrt phOne number BROTHER printer tech suppOrt phOne number USA BROTHER
printer custOmer service @@@++@@++I+855+709+2847 !!++++@@+++@@@@+BROTHER
printer suppOrt phOne number BROTHER printer tech suppOrt phOne number USA
JUST<::: /@!!((I+855+709+2847+))!!@BROTHER printer suppOrt phOne number BROTHER
printer tech suppOrt phOne number USA BROTHER printer custOmer
service@@!!((*I+855+709+2847+))!!@@BROTHER printer suppOrt phOne number BROTHER
printer tech suppOrt phOne number USA, BROTHER printer technical suppOrt phOne
number BROTHER printer custOmer suppOrt phOne number BROTHER printer phOne
number BROTHER printer custOmer care phOne number brOhter printer custOmer care
number BROTHER printer tOll free phOne number BROTHER printer suppOrt BROTHER
suppOrt BROTHER printers suppOrt BROTHER custOmer service BROTHER printer help
BROTHER tech suppOrt BROTHER printer custOmer service BROTHER printer tech
suppOrt BROTHER technical suppOrt BROTHER printer trOubleshOOting BROTHER
printers trOubleshOOting BROTHER internatiOnal BROTHERs printer suppOrt BROTHER
custOmer suppOrt BROTHER printer technical suppOrt BROTHER printer repair
BROTHER printer helpline BROTHER printers custOmer service BROTHER service
center BROTHERs printers suppOrt BROTHER helpline BROTHER custOmer service
phOne number install BROTHER printer BROTHER printers tech suppOrt BROTHER
printer suppOrt number BROTHER printer custOmer suppOrt BROTHER printer cOntact
number BROTHER printer prOblems BROTHER printers help BROTHER printer service
BROTHER printer service center BROTHER printer cOntact BROTHER custOmer service
number BROTHER printers helpline BROTHER suppOrt number BROTHER printer repairs
BROTHER printer scanner BROTHER printers phOne number BROTHER printers custOmer
suppOrt BROTHER suppOrt center BROTHER tech suppOrt phOne number BROTHERs
printers custOmer service BROTHER printer custOmer service number BROTHER
printers technical suppOrt BROTHER printer helpline number BROTHER suppOrt
phOne number BROTHER suppOrt printer BROTHER technical suppOrt number BROTHER
printers cOntact trOubleshOOting BROTHER printer BROTHER printer phOne suppOrt
BROTHER printers suppOrt phOne number trOubleshOOt BROTHER printer BROTHER
printers cOntact number BROTHERs custOmer service BROTHER printer number
BROTHER phOne suppOrt BROTHER trOubleshOOting BROTHER printer custOmer care
BROTHER printer help desk drivers fOr BROTHER printers BROTHER technical
suppOrt phOne number BROTHER custOmer service phOne cOntact BROTHER printers
BROTHER printer custOmer care number BROTHER help desk BROTHER Online suppOrt
BROTHER custOmer suppOrt phOne number BROTHERs printer custOmer service BROTHER
printer mfc BROTHER printers tech suppOrt phOne number BROTHER service BROTHERs
tech suppOrt BROTHER printers custOmer service phOne number BROTHER printer
install BROTHER laser printers BROTHERs printers suppOrt BROTHER printer
BROTHER printer service centre BROTHER printer updates BROTHER inkjet printer
cOntact BROTHER suppOrt BROTHER tech suppOrt phOne BROTHER lc61 BROTHERs
printers tech suppOrt printers Online cOntact BROTHER printer BROTHERs printer
BROTHER label printer BROTHER custOmer suppOrt phOne BROTHER printers custOmer
suppOrt number BROTHER suppOrt centre BROTHER laser printer BROTHER printer
custOmer service suppOrt BROTHER wireless printer setup buy BROTHER printer
Online BROTHER printer tech suppOrt number BROTHER netwOrk printer BROTHER
printers custOmer service number custOmer service fOr BROTHER printers BROTHER
service centre BROTHER wireless printer BROTHER printers BROTHER custOmer care
BROTHER printer Online suppOrt BROTHER printer tOll free number phOne number
fOr BROTHER printers BROTHER printer installatiOn BROTHER printers help desk
BROTHER printer suppOrt phOne service BROTHER BROTHER mfc BROTHER printer
custOmer suppOrt number BROTHER printers technical suppOrt phOne number BROTHER
printer hOtline cOntact number fOr BROTHER printers BROTHER printer BROTHER.cOm
suppOrt cOntact BROTHER printer suppOrt BROTHER printer trOubleshOOt BROTHER
telephOne suppOrt BROTHER printers custOmer suppOrt phOne number BROTHER
printer help phOne number BROTHER custOmer service telephOne number BROTHER
printer tech suppOrt phOne BROTHER.ca suppOrt BROTHER printer Online BROTHER
multifunctiOn printer printer suppOrt BROTHER printer help BROTHER mfc printer
technical suppOrt fOr BROTHER printers BROTHER tech suppOrt number email
suppOrt BROTHER printers suppOrt phOne mfc BROTHER BROTHER hl227Odw BROTHER
printers website BROTHER printer suppOrt BROTHER printers repair repair BROTHER
printer BROTHER printers suppOrt BROTHER helpline number BROTHER scanner
printer BROTHER printers service BROTHER printers custOmer service telephOne
number BROTHER printer phOne number custOmer service BROTHER printers review
www.BROTHER.cOm suppOrt fOr BROTHER printer BROTHER printer repair service
BROTHER printer phOne number fOr BROTHER printer suppOrt BROTHER printer
website BROTHER printers custOmer service phOne BROTHER printer prOblems and
sOlutiOns BROTHERs printers custOmer service phOne number custOmer service
BROTHER printer sOlutiOn BROTHER BROTHER fax suppOrt mfc BROTHER printer
BROTHER printer custOmer service phOne BROTHER printer help number BROTHER
mfc-846On drivers fOr BROTHER printers BROTHER technical suppOrt phOne number
BROTHER custOmer service phOne cOntact BROTHER printers BROTHER printer
custOmer care number BROTHER help desk BROTHER Online suppOrt BROTHER custOmer
suppOrt phOne number BROTHERs printer custOmer service BROTHER printer mfc
BROTHER printers tech suppOrt phOne number BROTHER service BROTHERs tech
suppOrt BROTHER printers custOmer service phOne number BROTHER printer install
BROTHER laser printers BROTHERs printers suppOrt BROTHER printer BROTHER
printer service centre BROTHER printer updates BROTHER inkjet printer cOntact
BROTHER suppOrt BROTHER tech suppOrt phOne BROTHER lc61 BROTHERs printers tech
suppOrt printers Online cOntact BROTHER printer BROTHERs printer BROTHER label
printer BROTHER custOmer suppOrt phOne BROTHER printers custOmer suppOrt number
BROTHER suppOrt centre BROTHER laser printer BROTHER printer custOmer service
suppOrt BROTHER wireless printer setup buy BROTHER printer Online BROTHER
printer tech suppOrt number BROTHER netwOrk printer BROTHER printers custOmer
service number custOmer service fOr BROTHER printers BROTHER service centre
BROTHER wireless printer BROTHER printers BROTHER custOmer care BROTHER printer
Online suppOrt BROTHER printer tOll free number phOne number fOr BROTHER
printers BROTHER printer installatiOn BROTHER printers help desk BROTHER
printer suppOrt phOne service BROTHER BROTHER BROTHER printer custOmer
service/@!!((I+855+709+2847+))!!@BROTHER printer suppOrt phOne number BROTHER
printer tech suppOrt phOne number USA
>From gcc-bugs-return-534446-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 21:36:42 2016
Return-Path: <gcc-bugs-return-534446-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 26579 invoked by alias); 12 Aug 2016 21:36:41 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 26447 invoked by uid 89); 12 Aug 2016 21:36:40 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, U*@@, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 21:36:30 +0000
From: "devsharmat20 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/75569] New: @%@$$$@^^@1_8OOx681x7208 @^^@@%ROADRUNNER M.a.i.lt.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
Date: Fri, 12 Aug 2016 21:36:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: new-ra
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: devsharmat20 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75569-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01782.txt.bz2
Content-length: 7753

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75569

            Bug ID: 75569
           Summary: @%@$$$@^^@1_8OOx681x7208 @^^@@%ROADRUNNER
                    M.a.i.lt.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
           Product: gcc
           Version: new-ra
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: devsharmat20 at gmail dot com
  Target Milestone: ---

/@!!((I+855+681+7208+))!!@ROADRUNNER mail suppOrt phOne number ROADRUNNER mail
tech suppOrt phOne number USA UST<::: /@!!((I+855+681+7208+))!!@ROADRUNNER mail
suppOrt phOne number ROADRUNNER mail tech suppOrt phOne number USA ROADRUNNER
mail custOmer service @@@++@@++I+855+681+7208 !!++++@@+++@@@@+ROADRUNNER mail
suppOrt phOne number ROADRUNNER mail tech suppOrt phOne number USA JUST<:::
/@!!((I+855+681+7208+))!!@ROADRUNNER mail suppOrt phOne number ROADRUNNER mail
tech suppOrt phOne number USA ROADRUNNER mail custOmer
service@@!!((*I+855+681+7208+))!!@@ROADRUNNER mail suppOrt phOne number
ROADRUNNER mail tech suppOrt phOne number USA, ROADRUNNER mail technical
suppOrt phOne number ROADRUNNER mail custOmer suppOrt phOne number ROADRUNNER
mail phOne number ROADRUNNER mail custOmer care phOne number brOhter mail
custOmer care number ROADRUNNER mail tOll free phOne number ROADRUNNER mail
suppOrt ROADRUNNER suppOrt ROADRUNNER mails suppOrt ROADRUNNER custOmer service
ROADRUNNER mail help ROADRUNNER tech suppOrt ROADRUNNER mail custOmer service
ROADRUNNER mail tech suppOrt ROADRUNNER technical suppOrt ROADRUNNER mail
trOubleshOOting ROADRUNNER mails trOubleshOOting ROADRUNNER internatiOnal
ROADRUNNERs mail suppOrt ROADRUNNER custOmer suppOrt ROADRUNNER mail technical
suppOrt ROADRUNNER mail repair ROADRUNNER mail helpline ROADRUNNER mails
custOmer service ROADRUNNER service center ROADRUNNERs mails suppOrt ROADRUNNER
helpline ROADRUNNER custOmer service phOne number install ROADRUNNER mail
ROADRUNNER mails tech suppOrt ROADRUNNER mail suppOrt number ROADRUNNER mail
custOmer suppOrt ROADRUNNER mail cOntact number ROADRUNNER mail prOblems
ROADRUNNER mails help ROADRUNNER mail service ROADRUNNER mail service center
ROADRUNNER mail cOntact ROADRUNNER custOmer service number ROADRUNNER mails
helpline ROADRUNNER suppOrt number ROADRUNNER mail repairs ROADRUNNER mail
scanner ROADRUNNER mails phOne number ROADRUNNER mails custOmer suppOrt
ROADRUNNER suppOrt center ROADRUNNER tech suppOrt phOne number ROADRUNNERs
mails custOmer service ROADRUNNER mail custOmer service number ROADRUNNER mails
technical suppOrt ROADRUNNER mail helpline number ROADRUNNER suppOrt phOne
number ROADRUNNER suppOrt mail ROADRUNNER technical suppOrt number ROADRUNNER
mails cOntact trOubleshOOting ROADRUNNER mail ROADRUNNER mail phOne suppOrt
ROADRUNNER mails suppOrt phOne number trOubleshOOt ROADRUNNER mail ROADRUNNER
mails cOntact number ROADRUNNERs custOmer service ROADRUNNER mail number
ROADRUNNER phOne suppOrt ROADRUNNER trOubleshOOting ROADRUNNER mail custOmer
care ROADRUNNER mail help desk drivers fOr ROADRUNNER mails ROADRUNNER
technical suppOrt phOne number ROADRUNNER custOmer service phOne cOntact
ROADRUNNER mails ROADRUNNER mail custOmer care number ROADRUNNER help desk
ROADRUNNER Online suppOrt ROADRUNNER custOmer suppOrt phOne number ROADRUNNERs
mail custOmer service ROADRUNNER mail mfc ROADRUNNER mails tech suppOrt phOne
number ROADRUNNER service ROADRUNNERs tech suppOrt ROADRUNNER mails custOmer
service phOne number ROADRUNNER mail install ROADRUNNER laser mails ROADRUNNERs
mails suppOrt ROADRUNNER mail ROADRUNNER mail service centre ROADRUNNER mail
updates ROADRUNNER inkjet mail cOntact ROADRUNNER suppOrt ROADRUNNER tech
suppOrt phOne ROADRUNNER lc61 ROADRUNNERs mails tech suppOrt mails Online
cOntact ROADRUNNER mail ROADRUNNERs mail ROADRUNNER label mail ROADRUNNER
custOmer suppOrt phOne ROADRUNNER mails custOmer suppOrt number ROADRUNNER
suppOrt centre ROADRUNNER laser mail ROADRUNNER mail custOmer service suppOrt
ROADRUNNER wireless mail setup buy ROADRUNNER mail Online ROADRUNNER mail tech
suppOrt number ROADRUNNER netwOrk mail ROADRUNNER mails custOmer service number
custOmer service fOr ROADRUNNER mails ROADRUNNER service centre ROADRUNNER
wireless mail ROADRUNNER mails ROADRUNNER custOmer care ROADRUNNER mail Online
suppOrt ROADRUNNER mail tOll free number phOne number fOr ROADRUNNER mails
ROADRUNNER mail installatiOn ROADRUNNER mails help desk ROADRUNNER mail suppOrt
phOne service ROADRUNNER ROADRUNNER mfc ROADRUNNER mail custOmer suppOrt number
ROADRUNNER mails technical suppOrt phOne number ROADRUNNER mail hOtline cOntact
number fOr ROADRUNNER mails ROADRUNNER mail ROADRUNNER.cOm suppOrt cOntact
ROADRUNNER mail suppOrt ROADRUNNER mail trOubleshOOt ROADRUNNER telephOne
suppOrt ROADRUNNER mails custOmer suppOrt phOne number ROADRUNNER mail help
phOne number ROADRUNNER custOmer service telephOne number ROADRUNNER mail tech
suppOrt phOne ROADRUNNER.ca suppOrt ROADRUNNER mail Online ROADRUNNER
multifunctiOn mail mail suppOrt ROADRUNNER mail help ROADRUNNER mfc mail
technical suppOrt fOr ROADRUNNER mails ROADRUNNER tech suppOrt number email
suppOrt ROADRUNNER mails suppOrt phOne mfc ROADRUNNER ROADRUNNER hl227Odw
ROADRUNNER mails website ROADRUNNER mail suppOrt ROADRUNNER mails repair repair
ROADRUNNER mail ROADRUNNER mails suppOrt ROADRUNNER helpline number ROADRUNNER
scanner mail ROADRUNNER mails service ROADRUNNER mails custOmer service
telephOne number ROADRUNNER mail phOne number custOmer service ROADRUNNER mails
review www.ROADRUNNER.cOm suppOrt fOr ROADRUNNER mail ROADRUNNER mail repair
service ROADRUNNER mail phOne number fOr ROADRUNNER mail suppOrt ROADRUNNER
mail website ROADRUNNER mails custOmer service phOne ROADRUNNER mail prOblems
and sOlutiOns ROADRUNNERs mails custOmer service phOne number custOmer service
ROADRUNNER mail sOlutiOn ROADRUNNER ROADRUNNER fax suppOrt mfc ROADRUNNER mail
ROADRUNNER mail custOmer service phOne ROADRUNNER mail help number ROADRUNNER
mfc-846On drivers fOr ROADRUNNER mails ROADRUNNER technical suppOrt phOne
number ROADRUNNER custOmer service phOne cOntact ROADRUNNER mails ROADRUNNER
mail custOmer care number ROADRUNNER help desk ROADRUNNER Online suppOrt
ROADRUNNER custOmer suppOrt phOne number ROADRUNNERs mail custOmer service
ROADRUNNER mail mfc ROADRUNNER mails tech suppOrt phOne number ROADRUNNER
service ROADRUNNERs tech suppOrt ROADRUNNER mails custOmer service phOne number
ROADRUNNER mail install ROADRUNNER laser mails ROADRUNNERs mails suppOrt
ROADRUNNER mail ROADRUNNER mail service centre ROADRUNNER mail updates
ROADRUNNER inkjet mail cOntact ROADRUNNER suppOrt ROADRUNNER tech suppOrt phOne
ROADRUNNER lc61 ROADRUNNERs mails tech suppOrt mails Online cOntact ROADRUNNER
mail ROADRUNNERs mail ROADRUNNER label mail ROADRUNNER custOmer suppOrt phOne
ROADRUNNER mails custOmer suppOrt number ROADRUNNER suppOrt centre ROADRUNNER
laser mail ROADRUNNER mail custOmer service suppOrt ROADRUNNER wireless mail
setup buy ROADRUNNER mail Online ROADRUNNER mail tech suppOrt number ROADRUNNER
netwOrk mail ROADRUNNER mails custOmer service number custOmer service fOr
ROADRUNNER mails ROADRUNNER service centre ROADRUNNER wireless mail ROADRUNNER
mails ROADRUNNER custOmer care ROADRUNNER mail Online suppOrt ROADRUNNER mail
tOll free number phOne number fOr ROADRUNNER mails ROADRUNNER mail installatiOn
ROADRUNNER mails help desk ROADRUNNER mail suppOrt phOne service ROADRUNNER
ROADRUNNER ROADRUNNER mail custOmer service/@!!((I+855+681+7208+))!!@ROADRUNNER
mail suppOrt phOne number ROADRUNNER mail tech suppOrt phOne number USA
>From gcc-bugs-return-534447-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 21:37:38 2016
Return-Path: <gcc-bugs-return-534447-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 30369 invoked by alias); 12 Aug 2016 21:37:38 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 30359 invoked by uid 89); 12 Aug 2016 21:37:37 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, brothers, UD:ca, brother
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 21:37:33 +0000
From: "leeragram at codehot dot co.uk" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug objc++/75570] New: %@$$$@^^@1_855x709x2847 @^^@@%BROTHER p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a c.a.n.a.D.a
Date: Fri, 12 Aug 2016 21:37:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: objc++
X-Bugzilla-Version: fortran-dev
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: leeragram at codehot dot co.uk
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75570-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01783.txt.bz2
Content-length: 7618

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75570

            Bug ID: 75570
           Summary: %@$$$@^^@1_855x709x2847 @^^@@%BROTHER p.r.i.n.t.e.r
                    t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a
                    c.a.n.a.D.a
           Product: gcc
           Version: fortran-dev
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: objc++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: leeragram at codehot dot co.uk
  Target Milestone: ---

/@!!((I+855+709+2847+))!!@BROTHER printer suppOrt phOne number BROTHER printer
tech suppOrt phOne number USA UST<::: /@!!((I+855+709+2847+))!!@BROTHER printer
suppOrt phOne number BROTHER printer tech suppOrt phOne number USA BROTHER
printer custOmer service @@@++@@++I+855+709+2847 !!++++@@+++@@@@+BROTHER
printer suppOrt phOne number BROTHER printer tech suppOrt phOne number USA
JUST<::: /@!!((I+855+709+2847+))!!@BROTHER printer suppOrt phOne number BROTHER
printer tech suppOrt phOne number USA BROTHER printer custOmer
service@@!!((*I+855+709+2847+))!!@@BROTHER printer suppOrt phOne number BROTHER
printer tech suppOrt phOne number USA, BROTHER printer technical suppOrt phOne
number BROTHER printer custOmer suppOrt phOne number BROTHER printer phOne
number BROTHER printer custOmer care phOne number brOhter printer custOmer care
number BROTHER printer tOll free phOne number BROTHER printer suppOrt BROTHER
suppOrt BROTHER printers suppOrt BROTHER custOmer service BROTHER printer help
BROTHER tech suppOrt BROTHER printer custOmer service BROTHER printer tech
suppOrt BROTHER technical suppOrt BROTHER printer trOubleshOOting BROTHER
printers trOubleshOOting BROTHER internatiOnal BROTHERs printer suppOrt BROTHER
custOmer suppOrt BROTHER printer technical suppOrt BROTHER printer repair
BROTHER printer helpline BROTHER printers custOmer service BROTHER service
center BROTHERs printers suppOrt BROTHER helpline BROTHER custOmer service
phOne number install BROTHER printer BROTHER printers tech suppOrt BROTHER
printer suppOrt number BROTHER printer custOmer suppOrt BROTHER printer cOntact
number BROTHER printer prOblems BROTHER printers help BROTHER printer service
BROTHER printer service center BROTHER printer cOntact BROTHER custOmer service
number BROTHER printers helpline BROTHER suppOrt number BROTHER printer repairs
BROTHER printer scanner BROTHER printers phOne number BROTHER printers custOmer
suppOrt BROTHER suppOrt center BROTHER tech suppOrt phOne number BROTHERs
printers custOmer service BROTHER printer custOmer service number BROTHER
printers technical suppOrt BROTHER printer helpline number BROTHER suppOrt
phOne number BROTHER suppOrt printer BROTHER technical suppOrt number BROTHER
printers cOntact trOubleshOOting BROTHER printer BROTHER printer phOne suppOrt
BROTHER printers suppOrt phOne number trOubleshOOt BROTHER printer BROTHER
printers cOntact number BROTHERs custOmer service BROTHER printer number
BROTHER phOne suppOrt BROTHER trOubleshOOting BROTHER printer custOmer care
BROTHER printer help desk drivers fOr BROTHER printers BROTHER technical
suppOrt phOne number BROTHER custOmer service phOne cOntact BROTHER printers
BROTHER printer custOmer care number BROTHER help desk BROTHER Online suppOrt
BROTHER custOmer suppOrt phOne number BROTHERs printer custOmer service BROTHER
printer mfc BROTHER printers tech suppOrt phOne number BROTHER service BROTHERs
tech suppOrt BROTHER printers custOmer service phOne number BROTHER printer
install BROTHER laser printers BROTHERs printers suppOrt BROTHER printer
BROTHER printer service centre BROTHER printer updates BROTHER inkjet printer
cOntact BROTHER suppOrt BROTHER tech suppOrt phOne BROTHER lc61 BROTHERs
printers tech suppOrt printers Online cOntact BROTHER printer BROTHERs printer
BROTHER label printer BROTHER custOmer suppOrt phOne BROTHER printers custOmer
suppOrt number BROTHER suppOrt centre BROTHER laser printer BROTHER printer
custOmer service suppOrt BROTHER wireless printer setup buy BROTHER printer
Online BROTHER printer tech suppOrt number BROTHER netwOrk printer BROTHER
printers custOmer service number custOmer service fOr BROTHER printers BROTHER
service centre BROTHER wireless printer BROTHER printers BROTHER custOmer care
BROTHER printer Online suppOrt BROTHER printer tOll free number phOne number
fOr BROTHER printers BROTHER printer installatiOn BROTHER printers help desk
BROTHER printer suppOrt phOne service BROTHER BROTHER mfc BROTHER printer
custOmer suppOrt number BROTHER printers technical suppOrt phOne number BROTHER
printer hOtline cOntact number fOr BROTHER printers BROTHER printer BROTHER.cOm
suppOrt cOntact BROTHER printer suppOrt BROTHER printer trOubleshOOt BROTHER
telephOne suppOrt BROTHER printers custOmer suppOrt phOne number BROTHER
printer help phOne number BROTHER custOmer service telephOne number BROTHER
printer tech suppOrt phOne BROTHER.ca suppOrt BROTHER printer Online BROTHER
multifunctiOn printer printer suppOrt BROTHER printer help BROTHER mfc printer
technical suppOrt fOr BROTHER printers BROTHER tech suppOrt number email
suppOrt BROTHER printers suppOrt phOne mfc BROTHER BROTHER hl227Odw BROTHER
printers website BROTHER printer suppOrt BROTHER printers repair repair BROTHER
printer BROTHER printers suppOrt BROTHER helpline number BROTHER scanner
printer BROTHER printers service BROTHER printers custOmer service telephOne
number BROTHER printer phOne number custOmer service BROTHER printers review
www.BROTHER.cOm suppOrt fOr BROTHER printer BROTHER printer repair service
BROTHER printer phOne number fOr BROTHER printer suppOrt BROTHER printer
website BROTHER printers custOmer service phOne BROTHER printer prOblems and
sOlutiOns BROTHERs printers custOmer service phOne number custOmer service
BROTHER printer sOlutiOn BROTHER BROTHER fax suppOrt mfc BROTHER printer
BROTHER printer custOmer service phOne BROTHER printer help number BROTHER
mfc-846On drivers fOr BROTHER printers BROTHER technical suppOrt phOne number
BROTHER custOmer service phOne cOntact BROTHER printers BROTHER printer
custOmer care number BROTHER help desk BROTHER Online suppOrt BROTHER custOmer
suppOrt phOne number BROTHERs printer custOmer service BROTHER printer mfc
BROTHER printers tech suppOrt phOne number BROTHER service BROTHERs tech
suppOrt BROTHER printers custOmer service phOne number BROTHER printer install
BROTHER laser printers BROTHERs printers suppOrt BROTHER printer BROTHER
printer service centre BROTHER printer updates BROTHER inkjet printer cOntact
BROTHER suppOrt BROTHER tech suppOrt phOne BROTHER lc61 BROTHERs printers tech
suppOrt printers Online cOntact BROTHER printer BROTHERs printer BROTHER label
printer BROTHER custOmer suppOrt phOne BROTHER printers custOmer suppOrt number
BROTHER suppOrt centre BROTHER laser printer BROTHER printer custOmer service
suppOrt BROTHER wireless printer setup buy BROTHER printer Online BROTHER
printer tech suppOrt number BROTHER netwOrk printer BROTHER printers custOmer
service number custOmer service fOr BROTHER printers BROTHER service centre
BROTHER wireless printer BROTHER printers BROTHER custOmer care BROTHER printer
Online suppOrt BROTHER printer tOll free number phOne number fOr BROTHER
printers BROTHER printer installatiOn BROTHER printers help desk BROTHER
printer suppOrt phOne service BROTHER BROTHER BROTHER printer custOmer
service/@!!((I+855+709+2847+))!!@BROTHER printer suppOrt phOne number BROTHER
printer tech suppOrt phOne number USA
>From gcc-bugs-return-534449-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 21:38:52 2016
Return-Path: <gcc-bugs-return-534449-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 38606 invoked by alias); 12 Aug 2016 21:38:52 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 38592 invoked by uid 89); 12 Aug 2016 21:38:51 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, U*@@, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 21:38:41 +0000
From: "devsharmat20 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75573] New: @%@$$$@^^@1_8OOx681x7208 @^^@@%CHARTER M.a.i.lt.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
Date: Fri, 12 Aug 2016 21:38:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: fortran-dev
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: devsharmat20 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75573-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01785.txt.bz2
Content-length: 7043

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75573

            Bug ID: 75573
           Summary: @%@$$$@^^@1_8OOx681x7208 @^^@@%CHARTER M.a.i.lt.e.c.h.
                    s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
           Product: gcc
           Version: fortran-dev
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: devsharmat20 at gmail dot com
  Target Milestone: ---

/@!!((I+855+681+7208+))!!@CHARTER mail suppOrt phOne number CHARTER mail tech
suppOrt phOne number USA UST<::: /@!!((I+855+681+7208+))!!@CHARTER mail suppOrt
phOne number CHARTER mail tech suppOrt phOne number USA CHARTER mail custOmer
service @@@++@@++I+855+681+7208 !!++++@@+++@@@@+CHARTER mail suppOrt phOne
number CHARTER mail tech suppOrt phOne number USA JUST<:::
/@!!((I+855+681+7208+))!!@CHARTER mail suppOrt phOne number CHARTER mail tech
suppOrt phOne number USA CHARTER mail custOmer
service@@!!((*I+855+681+7208+))!!@@CHARTER mail suppOrt phOne number CHARTER
mail tech suppOrt phOne number USA, CHARTER mail technical suppOrt phOne number
CHARTER mail custOmer suppOrt phOne number CHARTER mail phOne number CHARTER
mail custOmer care phOne number brOhter mail custOmer care number CHARTER mail
tOll free phOne number CHARTER mail suppOrt CHARTER suppOrt CHARTER mails
suppOrt CHARTER custOmer service CHARTER mail help CHARTER tech suppOrt CHARTER
mail custOmer service CHARTER mail tech suppOrt CHARTER technical suppOrt
CHARTER mail trOubleshOOting CHARTER mails trOubleshOOting CHARTER
internatiOnal CHARTERs mail suppOrt CHARTER custOmer suppOrt CHARTER mail
technical suppOrt CHARTER mail repair CHARTER mail helpline CHARTER mails
custOmer service CHARTER service center CHARTERs mails suppOrt CHARTER helpline
CHARTER custOmer service phOne number install CHARTER mail CHARTER mails tech
suppOrt CHARTER mail suppOrt number CHARTER mail custOmer suppOrt CHARTER mail
cOntact number CHARTER mail prOblems CHARTER mails help CHARTER mail service
CHARTER mail service center CHARTER mail cOntact CHARTER custOmer service
number CHARTER mails helpline CHARTER suppOrt number CHARTER mail repairs
CHARTER mail scanner CHARTER mails phOne number CHARTER mails custOmer suppOrt
CHARTER suppOrt center CHARTER tech suppOrt phOne number CHARTERs mails
custOmer service CHARTER mail custOmer service number CHARTER mails technical
suppOrt CHARTER mail helpline number CHARTER suppOrt phOne number CHARTER
suppOrt mail CHARTER technical suppOrt number CHARTER mails cOntact
trOubleshOOting CHARTER mail CHARTER mail phOne suppOrt CHARTER mails suppOrt
phOne number trOubleshOOt CHARTER mail CHARTER mails cOntact number CHARTERs
custOmer service CHARTER mail number CHARTER phOne suppOrt CHARTER
trOubleshOOting CHARTER mail custOmer care CHARTER mail help desk drivers fOr
CHARTER mails CHARTER technical suppOrt phOne number CHARTER custOmer service
phOne cOntact CHARTER mails CHARTER mail custOmer care number CHARTER help desk
CHARTER Online suppOrt CHARTER custOmer suppOrt phOne number CHARTERs mail
custOmer service CHARTER mail mfc CHARTER mails tech suppOrt phOne number
CHARTER service CHARTERs tech suppOrt CHARTER mails custOmer service phOne
number CHARTER mail install CHARTER laser mails CHARTERs mails suppOrt CHARTER
mail CHARTER mail service centre CHARTER mail updates CHARTER inkjet mail
cOntact CHARTER suppOrt CHARTER tech suppOrt phOne CHARTER lc61 CHARTERs mails
tech suppOrt mails Online cOntact CHARTER mail CHARTERs mail CHARTER label mail
CHARTER custOmer suppOrt phOne CHARTER mails custOmer suppOrt number CHARTER
suppOrt centre CHARTER laser mail CHARTER mail custOmer service suppOrt CHARTER
wireless mail setup buy CHARTER mail Online CHARTER mail tech suppOrt number
CHARTER netwOrk mail CHARTER mails custOmer service number custOmer service fOr
CHARTER mails CHARTER service centre CHARTER wireless mail CHARTER mails
CHARTER custOmer care CHARTER mail Online suppOrt CHARTER mail tOll free number
phOne number fOr CHARTER mails CHARTER mail installatiOn CHARTER mails help
desk CHARTER mail suppOrt phOne service CHARTER CHARTER mfc CHARTER mail
custOmer suppOrt number CHARTER mails technical suppOrt phOne number CHARTER
mail hOtline cOntact number fOr CHARTER mails CHARTER mail CHARTER.cOm suppOrt
cOntact CHARTER mail suppOrt CHARTER mail trOubleshOOt CHARTER telephOne
suppOrt CHARTER mails custOmer suppOrt phOne number CHARTER mail help phOne
number CHARTER custOmer service telephOne number CHARTER mail tech suppOrt
phOne CHARTER.ca suppOrt CHARTER mail Online CHARTER multifunctiOn mail mail
suppOrt CHARTER mail help CHARTER mfc mail technical suppOrt fOr CHARTER mails
CHARTER tech suppOrt number email suppOrt CHARTER mails suppOrt phOne mfc
CHARTER CHARTER hl227Odw CHARTER mails website CHARTER mail suppOrt CHARTER
mails repair repair CHARTER mail CHARTER mails suppOrt CHARTER helpline number
CHARTER scanner mail CHARTER mails service CHARTER mails custOmer service
telephOne number CHARTER mail phOne number custOmer service CHARTER mails
review www.CHARTER.cOm suppOrt fOr CHARTER mail CHARTER mail repair service
CHARTER mail phOne number fOr CHARTER mail suppOrt CHARTER mail website CHARTER
mails custOmer service phOne CHARTER mail prOblems and sOlutiOns CHARTERs mails
custOmer service phOne number custOmer service CHARTER mail sOlutiOn CHARTER
CHARTER fax suppOrt mfc CHARTER mail CHARTER mail custOmer service phOne
CHARTER mail help number CHARTER mfc-846On drivers fOr CHARTER mails CHARTER
technical suppOrt phOne number CHARTER custOmer service phOne cOntact CHARTER
mails CHARTER mail custOmer care number CHARTER help desk CHARTER Online
suppOrt CHARTER custOmer suppOrt phOne number CHARTERs mail custOmer service
CHARTER mail mfc CHARTER mails tech suppOrt phOne number CHARTER service
CHARTERs tech suppOrt CHARTER mails custOmer service phOne number CHARTER mail
install CHARTER laser mails CHARTERs mails suppOrt CHARTER mail CHARTER mail
service centre CHARTER mail updates CHARTER inkjet mail cOntact CHARTER suppOrt
CHARTER tech suppOrt phOne CHARTER lc61 CHARTERs mails tech suppOrt mails
Online cOntact CHARTER mail CHARTERs mail CHARTER label mail CHARTER custOmer
suppOrt phOne CHARTER mails custOmer suppOrt number CHARTER suppOrt centre
CHARTER laser mail CHARTER mail custOmer service suppOrt CHARTER wireless mail
setup buy CHARTER mail Online CHARTER mail tech suppOrt number CHARTER netwOrk
mail CHARTER mails custOmer service number custOmer service fOr CHARTER mails
CHARTER service centre CHARTER wireless mail CHARTER mails CHARTER custOmer
care CHARTER mail Online suppOrt CHARTER mail tOll free number phOne number fOr
CHARTER mails CHARTER mail installatiOn CHARTER mails help desk CHARTER mail
suppOrt phOne service CHARTER CHARTER CHARTER mail custOmer
service/@!!((I+855+681+7208+))!!@CHARTER mail suppOrt phOne number CHARTER mail
tech suppOrt phOne number USA
>From gcc-bugs-return-534448-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 21:38:19 2016
Return-Path: <gcc-bugs-return-534448-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 37587 invoked by alias); 12 Aug 2016 21:38:18 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 37463 invoked by uid 89); 12 Aug 2016 21:38:18 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, U*@@, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 21:38:08 +0000
From: "suraj2809 at mailinator dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75572] New: @%@$$$@^^@1_8OOx681x7208 @^^@@%ZONEALARM A.n.t.i.v.i.r.u.s   t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
Date: Fri, 12 Aug 2016 21:38:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: trans-mem
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: suraj2809 at mailinator dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75572-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01784.txt.bz2
Content-length: 8398

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75572

            Bug ID: 75572
           Summary: @%@$$$@^^@1_8OOx681x7208 @^^@@%ZONEALARM
                    A.n.t.i.v.i.r.u.s   t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e
                    n.u.m.b.e.r
           Product: gcc
           Version: trans-mem
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: suraj2809 at mailinator dot com
  Target Milestone: ---

/@!!((I+855+681+7208+))!!@ZONEALARM antivirus suppOrt phOne number ZONEALARM
antivirus tech suppOrt phOne number USA UST<:::
/@!!((I+855+681+7208+))!!@ZONEALARM antivirus suppOrt phOne number ZONEALARM
antivirus tech suppOrt phOne number USA ZONEALARM antivirus custOmer service
@@@++@@++I+855+681+7208 !!++++@@+++@@@@+ZONEALARM antivirus suppOrt phOne
number ZONEALARM antivirus tech suppOrt phOne number USA JUST<:::
/@!!((I+855+681+7208+))!!@ZONEALARM antivirus suppOrt phOne number ZONEALARM
antivirus tech suppOrt phOne number USA ZONEALARM antivirus custOmer
service@@!!((*I+855+681+7208+))!!@@ZONEALARM antivirus suppOrt phOne number
ZONEALARM antivirus tech suppOrt phOne number USA, ZONEALARM antivirus
technical suppOrt phOne number ZONEALARM antivirus custOmer suppOrt phOne
number ZONEALARM antivirus phOne number ZONEALARM antivirus custOmer care phOne
number brOhter antivirus custOmer care number ZONEALARM antivirus tOll free
phOne number ZONEALARM antivirus suppOrt ZONEALARM suppOrt ZONEALARM antiviruss
suppOrt ZONEALARM custOmer service ZONEALARM antivirus help ZONEALARM tech
suppOrt ZONEALARM antivirus custOmer service ZONEALARM antivirus tech suppOrt
ZONEALARM technical suppOrt ZONEALARM antivirus trOubleshOOting ZONEALARM
antiviruss trOubleshOOting ZONEALARM internatiOnal ZONEALARMs antivirus suppOrt
ZONEALARM custOmer suppOrt ZONEALARM antivirus technical suppOrt ZONEALARM
antivirus repair ZONEALARM antivirus helpline ZONEALARM antiviruss custOmer
service ZONEALARM service center ZONEALARMs antiviruss suppOrt ZONEALARM
helpline ZONEALARM custOmer service phOne number install ZONEALARM antivirus
ZONEALARM antiviruss tech suppOrt ZONEALARM antivirus suppOrt number ZONEALARM
antivirus custOmer suppOrt ZONEALARM antivirus cOntact number ZONEALARM
antivirus prOblems ZONEALARM antiviruss help ZONEALARM antivirus service
ZONEALARM antivirus service center ZONEALARM antivirus cOntact ZONEALARM
custOmer service number ZONEALARM antiviruss helpline ZONEALARM suppOrt number
ZONEALARM antivirus repairs ZONEALARM antivirus scanner ZONEALARM antiviruss
phOne number ZONEALARM antiviruss custOmer suppOrt ZONEALARM suppOrt center
ZONEALARM tech suppOrt phOne number ZONEALARMs antiviruss custOmer service
ZONEALARM antivirus custOmer service number ZONEALARM antiviruss technical
suppOrt ZONEALARM antivirus helpline number ZONEALARM suppOrt phOne number
ZONEALARM suppOrt antivirus ZONEALARM technical suppOrt number ZONEALARM
antiviruss cOntact trOubleshOOting ZONEALARM antivirus ZONEALARM antivirus
phOne suppOrt ZONEALARM antiviruss suppOrt phOne number trOubleshOOt ZONEALARM
antivirus ZONEALARM antiviruss cOntact number ZONEALARMs custOmer service
ZONEALARM antivirus number ZONEALARM phOne suppOrt ZONEALARM trOubleshOOting
ZONEALARM antivirus custOmer care ZONEALARM antivirus help desk drivers fOr
ZONEALARM antiviruss ZONEALARM technical suppOrt phOne number ZONEALARM
custOmer service phOne cOntact ZONEALARM antiviruss ZONEALARM antivirus
custOmer care number ZONEALARM help desk ZONEALARM Online suppOrt ZONEALARM
custOmer suppOrt phOne number ZONEALARMs antivirus custOmer service ZONEALARM
antivirus mfc ZONEALARM antiviruss tech suppOrt phOne number ZONEALARM service
ZONEALARMs tech suppOrt ZONEALARM antiviruss custOmer service phOne number
ZONEALARM antivirus install ZONEALARM laser antiviruss ZONEALARMs antiviruss
suppOrt ZONEALARM antivirus ZONEALARM antivirus service centre ZONEALARM
antivirus updates ZONEALARM inkjet antivirus cOntact ZONEALARM suppOrt
ZONEALARM tech suppOrt phOne ZONEALARM lc61 ZONEALARMs antiviruss tech suppOrt
antiviruss Online cOntact ZONEALARM antivirus ZONEALARMs antivirus ZONEALARM
label antivirus ZONEALARM custOmer suppOrt phOne ZONEALARM antiviruss custOmer
suppOrt number ZONEALARM suppOrt centre ZONEALARM laser antivirus ZONEALARM
antivirus custOmer service suppOrt ZONEALARM wireless antivirus setup buy
ZONEALARM antivirus Online ZONEALARM antivirus tech suppOrt number ZONEALARM
netwOrk antivirus ZONEALARM antiviruss custOmer service number custOmer service
fOr ZONEALARM antiviruss ZONEALARM service centre ZONEALARM wireless antivirus
ZONEALARM antiviruss ZONEALARM custOmer care ZONEALARM antivirus Online suppOrt
ZONEALARM antivirus tOll free number phOne number fOr ZONEALARM antiviruss
ZONEALARM antivirus installatiOn ZONEALARM antiviruss help desk ZONEALARM
antivirus suppOrt phOne service ZONEALARM ZONEALARM mfc ZONEALARM antivirus
custOmer suppOrt number ZONEALARM antiviruss technical suppOrt phOne number
ZONEALARM antivirus hOtline cOntact number fOr ZONEALARM antiviruss ZONEALARM
antivirus ZONEALARM.cOm suppOrt cOntact ZONEALARM antivirus suppOrt ZONEALARM
antivirus trOubleshOOt ZONEALARM telephOne suppOrt ZONEALARM antiviruss
custOmer suppOrt phOne number ZONEALARM antivirus help phOne number ZONEALARM
custOmer service telephOne number ZONEALARM antivirus tech suppOrt phOne
ZONEALARM.ca suppOrt ZONEALARM antivirus Online ZONEALARM multifunctiOn
antivirus antivirus suppOrt ZONEALARM antivirus help ZONEALARM mfc antivirus
technical suppOrt fOr ZONEALARM antiviruss ZONEALARM tech suppOrt number email
suppOrt ZONEALARM antiviruss suppOrt phOne mfc ZONEALARM ZONEALARM hl227Odw
ZONEALARM antiviruss website ZONEALARM antivirus suppOrt ZONEALARM antiviruss
repair repair ZONEALARM antivirus ZONEALARM antiviruss suppOrt ZONEALARM
helpline number ZONEALARM scanner antivirus ZONEALARM antiviruss service
ZONEALARM antiviruss custOmer service telephOne number ZONEALARM antivirus
phOne number custOmer service ZONEALARM antiviruss review www.ZONEALARM.cOm
suppOrt fOr ZONEALARM antivirus ZONEALARM antivirus repair service ZONEALARM
antivirus phOne number fOr ZONEALARM antivirus suppOrt ZONEALARM antivirus
website ZONEALARM antiviruss custOmer service phOne ZONEALARM antivirus
prOblems and sOlutiOns ZONEALARMs antiviruss custOmer service phOne number
custOmer service ZONEALARM antivirus sOlutiOn ZONEALARM ZONEALARM fax suppOrt
mfc ZONEALARM antivirus ZONEALARM antivirus custOmer service phOne ZONEALARM
antivirus help number ZONEALARM mfc-846On drivers fOr ZONEALARM antiviruss
ZONEALARM technical suppOrt phOne number ZONEALARM custOmer service phOne
cOntact ZONEALARM antiviruss ZONEALARM antivirus custOmer care number ZONEALARM
help desk ZONEALARM Online suppOrt ZONEALARM custOmer suppOrt phOne number
ZONEALARMs antivirus custOmer service ZONEALARM antivirus mfc ZONEALARM
antiviruss tech suppOrt phOne number ZONEALARM service ZONEALARMs tech suppOrt
ZONEALARM antiviruss custOmer service phOne number ZONEALARM antivirus install
ZONEALARM laser antiviruss ZONEALARMs antiviruss suppOrt ZONEALARM antivirus
ZONEALARM antivirus service centre ZONEALARM antivirus updates ZONEALARM inkjet
antivirus cOntact ZONEALARM suppOrt ZONEALARM tech suppOrt phOne ZONEALARM lc61
ZONEALARMs antiviruss tech suppOrt antiviruss Online cOntact ZONEALARM
antivirus ZONEALARMs antivirus ZONEALARM label antivirus ZONEALARM custOmer
suppOrt phOne ZONEALARM antiviruss custOmer suppOrt number ZONEALARM suppOrt
centre ZONEALARM laser antivirus ZONEALARM antivirus custOmer service suppOrt
ZONEALARM wireless antivirus setup buy ZONEALARM antivirus Online ZONEALARM
antivirus tech suppOrt number ZONEALARM netwOrk antivirus ZONEALARM antiviruss
custOmer service number custOmer service fOr ZONEALARM antiviruss ZONEALARM
service centre ZONEALARM wireless antivirus ZONEALARM antiviruss ZONEALARM
custOmer care ZONEALARM antivirus Online suppOrt ZONEALARM antivirus tOll free
number phOne number fOr ZONEALARM antiviruss ZONEALARM antivirus installatiOn
ZONEALARM antiviruss help desk ZONEALARM antivirus suppOrt phOne service
ZONEALARM ZONEALARM ZONEALARM antivirus custOmer
service/@!!((I+855+681+7208+))!!@ZONEALARM antivirus suppOrt phOne number
ZONEALARM antivirus tech suppOrt phOne number USA
>From gcc-bugs-return-534450-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 21:39:56 2016
Return-Path: <gcc-bugs-return-534450-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 41127 invoked by alias); 12 Aug 2016 21:39:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 41116 invoked by uid 89); 12 Aug 2016 21:39:55 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, U*@@, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 21:39:45 +0000
From: "suraj2809 at mailinator dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75579] New: @%@$$$@^^@1_8OOx681x7208 @^^@@%VIPRE A.n.t.i.v.i.r.u.s   t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
Date: Fri, 12 Aug 2016 21:39:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: trans-mem
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: suraj2809 at mailinator dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75579-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01786.txt.bz2
Content-length: 7462

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75579

            Bug ID: 75579
           Summary: @%@$$$@^^@1_8OOx681x7208 @^^@@%VIPRE A.n.t.i.v.i.r.u.s
                      t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
           Product: gcc
           Version: trans-mem
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: suraj2809 at mailinator dot com
  Target Milestone: ---

/@!!((I+855+681+7208+))!!@VIPRE antivirus suppOrt phOne number VIPRE antivirus
tech suppOrt phOne number USA UST<::: /@!!((I+855+681+7208+))!!@VIPRE antivirus
suppOrt phOne number VIPRE antivirus tech suppOrt phOne number USA VIPRE
antivirus custOmer service @@@++@@++I+855+681+7208 !!++++@@+++@@@@+VIPRE
antivirus suppOrt phOne number VIPRE antivirus tech suppOrt phOne number USA
JUST<::: /@!!((I+855+681+7208+))!!@VIPRE antivirus suppOrt phOne number VIPRE
antivirus tech suppOrt phOne number USA VIPRE antivirus custOmer
service@@!!((*I+855+681+7208+))!!@@VIPRE antivirus suppOrt phOne number VIPRE
antivirus tech suppOrt phOne number USA, VIPRE antivirus technical suppOrt
phOne number VIPRE antivirus custOmer suppOrt phOne number VIPRE antivirus
phOne number VIPRE antivirus custOmer care phOne number brOhter antivirus
custOmer care number VIPRE antivirus tOll free phOne number VIPRE antivirus
suppOrt VIPRE suppOrt VIPRE antiviruss suppOrt VIPRE custOmer service VIPRE
antivirus help VIPRE tech suppOrt VIPRE antivirus custOmer service VIPRE
antivirus tech suppOrt VIPRE technical suppOrt VIPRE antivirus trOubleshOOting
VIPRE antiviruss trOubleshOOting VIPRE internatiOnal VIPREs antivirus suppOrt
VIPRE custOmer suppOrt VIPRE antivirus technical suppOrt VIPRE antivirus repair
VIPRE antivirus helpline VIPRE antiviruss custOmer service VIPRE service center
VIPREs antiviruss suppOrt VIPRE helpline VIPRE custOmer service phOne number
install VIPRE antivirus VIPRE antiviruss tech suppOrt VIPRE antivirus suppOrt
number VIPRE antivirus custOmer suppOrt VIPRE antivirus cOntact number VIPRE
antivirus prOblems VIPRE antiviruss help VIPRE antivirus service VIPRE
antivirus service center VIPRE antivirus cOntact VIPRE custOmer service number
VIPRE antiviruss helpline VIPRE suppOrt number VIPRE antivirus repairs VIPRE
antivirus scanner VIPRE antiviruss phOne number VIPRE antiviruss custOmer
suppOrt VIPRE suppOrt center VIPRE tech suppOrt phOne number VIPREs antiviruss
custOmer service VIPRE antivirus custOmer service number VIPRE antiviruss
technical suppOrt VIPRE antivirus helpline number VIPRE suppOrt phOne number
VIPRE suppOrt antivirus VIPRE technical suppOrt number VIPRE antiviruss cOntact
trOubleshOOting VIPRE antivirus VIPRE antivirus phOne suppOrt VIPRE antiviruss
suppOrt phOne number trOubleshOOt VIPRE antivirus VIPRE antiviruss cOntact
number VIPREs custOmer service VIPRE antivirus number VIPRE phOne suppOrt VIPRE
trOubleshOOting VIPRE antivirus custOmer care VIPRE antivirus help desk drivers
fOr VIPRE antiviruss VIPRE technical suppOrt phOne number VIPRE custOmer
service phOne cOntact VIPRE antiviruss VIPRE antivirus custOmer care number
VIPRE help desk VIPRE Online suppOrt VIPRE custOmer suppOrt phOne number VIPREs
antivirus custOmer service VIPRE antivirus mfc VIPRE antiviruss tech suppOrt
phOne number VIPRE service VIPREs tech suppOrt VIPRE antiviruss custOmer
service phOne number VIPRE antivirus install VIPRE laser antiviruss VIPREs
antiviruss suppOrt VIPRE antivirus VIPRE antivirus service centre VIPRE
antivirus updates VIPRE inkjet antivirus cOntact VIPRE suppOrt VIPRE tech
suppOrt phOne VIPRE lc61 VIPREs antiviruss tech suppOrt antiviruss Online
cOntact VIPRE antivirus VIPREs antivirus VIPRE label antivirus VIPRE custOmer
suppOrt phOne VIPRE antiviruss custOmer suppOrt number VIPRE suppOrt centre
VIPRE laser antivirus VIPRE antivirus custOmer service suppOrt VIPRE wireless
antivirus setup buy VIPRE antivirus Online VIPRE antivirus tech suppOrt number
VIPRE netwOrk antivirus VIPRE antiviruss custOmer service number custOmer
service fOr VIPRE antiviruss VIPRE service centre VIPRE wireless antivirus
VIPRE antiviruss VIPRE custOmer care VIPRE antivirus Online suppOrt VIPRE
antivirus tOll free number phOne number fOr VIPRE antiviruss VIPRE antivirus
installatiOn VIPRE antiviruss help desk VIPRE antivirus suppOrt phOne service
VIPRE VIPRE mfc VIPRE antivirus custOmer suppOrt number VIPRE antiviruss
technical suppOrt phOne number VIPRE antivirus hOtline cOntact number fOr VIPRE
antiviruss VIPRE antivirus VIPRE.cOm suppOrt cOntact VIPRE antivirus suppOrt
VIPRE antivirus trOubleshOOt VIPRE telephOne suppOrt VIPRE antiviruss custOmer
suppOrt phOne number VIPRE antivirus help phOne number VIPRE custOmer service
telephOne number VIPRE antivirus tech suppOrt phOne VIPRE.ca suppOrt VIPRE
antivirus Online VIPRE multifunctiOn antivirus antivirus suppOrt VIPRE
antivirus help VIPRE mfc antivirus technical suppOrt fOr VIPRE antiviruss VIPRE
tech suppOrt number email suppOrt VIPRE antiviruss suppOrt phOne mfc VIPRE
VIPRE hl227Odw VIPRE antiviruss website VIPRE antivirus suppOrt VIPRE
antiviruss repair repair VIPRE antivirus VIPRE antiviruss suppOrt VIPRE
helpline number VIPRE scanner antivirus VIPRE antiviruss service VIPRE
antiviruss custOmer service telephOne number VIPRE antivirus phOne number
custOmer service VIPRE antiviruss review www.VIPRE.cOm suppOrt fOr VIPRE
antivirus VIPRE antivirus repair service VIPRE antivirus phOne number fOr VIPRE
antivirus suppOrt VIPRE antivirus website VIPRE antiviruss custOmer service
phOne VIPRE antivirus prOblems and sOlutiOns VIPREs antiviruss custOmer service
phOne number custOmer service VIPRE antivirus sOlutiOn VIPRE VIPRE fax suppOrt
mfc VIPRE antivirus VIPRE antivirus custOmer service phOne VIPRE antivirus help
number VIPRE mfc-846On drivers fOr VIPRE antiviruss VIPRE technical suppOrt
phOne number VIPRE custOmer service phOne cOntact VIPRE antiviruss VIPRE
antivirus custOmer care number VIPRE help desk VIPRE Online suppOrt VIPRE
custOmer suppOrt phOne number VIPREs antivirus custOmer service VIPRE antivirus
mfc VIPRE antiviruss tech suppOrt phOne number VIPRE service VIPREs tech
suppOrt VIPRE antiviruss custOmer service phOne number VIPRE antivirus install
VIPRE laser antiviruss VIPREs antiviruss suppOrt VIPRE antivirus VIPRE
antivirus service centre VIPRE antivirus updates VIPRE inkjet antivirus cOntact
VIPRE suppOrt VIPRE tech suppOrt phOne VIPRE lc61 VIPREs antiviruss tech
suppOrt antiviruss Online cOntact VIPRE antivirus VIPREs antivirus VIPRE label
antivirus VIPRE custOmer suppOrt phOne VIPRE antiviruss custOmer suppOrt number
VIPRE suppOrt centre VIPRE laser antivirus VIPRE antivirus custOmer service
suppOrt VIPRE wireless antivirus setup buy VIPRE antivirus Online VIPRE
antivirus tech suppOrt number VIPRE netwOrk antivirus VIPRE antiviruss custOmer
service number custOmer service fOr VIPRE antiviruss VIPRE service centre VIPRE
wireless antivirus VIPRE antiviruss VIPRE custOmer care VIPRE antivirus Online
suppOrt VIPRE antivirus tOll free number phOne number fOr VIPRE antiviruss
VIPRE antivirus installatiOn VIPRE antiviruss help desk VIPRE antivirus suppOrt
phOne service VIPRE VIPRE VIPRE antivirus custOmer
service/@!!((I+855+681+7208+))!!@VIPRE antivirus suppOrt phOne number VIPRE
antivirus tech suppOrt phOne number USA
>From gcc-bugs-return-534451-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 21:40:37 2016
Return-Path: <gcc-bugs-return-534451-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 42647 invoked by alias); 12 Aug 2016 21:40:37 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 42635 invoked by uid 89); 12 Aug 2016 21:40:37 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, U*@@, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 21:40:26 +0000
From: "leeragram at codehot dot co.uk" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug objc++/75591] New: @@%@$$$@^^@1_855x709x2847 @@^^@@%CANON P.r.i.n.t.e.r t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.R
Date: Fri, 12 Aug 2016 21:40:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: objc++
X-Bugzilla-Version: fortran-dev
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: leeragram at codehot dot co.uk
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75591-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01787.txt.bz2
Content-length: 7109

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75591

            Bug ID: 75591
           Summary: @@%@$$$@^^@1_855x709x2847 @@^^@@%CANON P.r.i.n.t.e.r
                    t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.R
           Product: gcc
           Version: fortran-dev
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: objc++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: leeragram at codehot dot co.uk
  Target Milestone: ---

/@!!((I+855+709+2847+))!!@CANON printer suppOrt phOne number CANON printer tech
suppOrt phOne number USA UST<::: /@!!((I+855+709+2847+))!!@CANON printer
suppOrt phOne number CANON printer tech suppOrt phOne number USA CANON printer
custOmer service @@@++@@++I+855+709+2847 !!++++@@+++@@@@+CANON printer suppOrt
phOne number CANON printer tech suppOrt phOne number USA JUST<:::
/@!!((I+855+709+2847+))!!@CANON printer suppOrt phOne number CANON printer tech
suppOrt phOne number USA CANON printer custOmer
service@@!!((*I+855+709+2847+))!!@@CANON printer suppOrt phOne number CANON
printer tech suppOrt phOne number USA, CANON printer technical suppOrt phOne
number CANON printer custOmer suppOrt phOne number CANON printer phOne number
CANON printer custOmer care phOne number brOhter printer custOmer care number
CANON printer tOll free phOne number CANON printer suppOrt CANON suppOrt CANON
printers suppOrt CANON custOmer service CANON printer help CANON tech suppOrt
CANON printer custOmer service CANON printer tech suppOrt CANON technical
suppOrt CANON printer trOubleshOOting CANON printers trOubleshOOting CANON
internatiOnal CANONs printer suppOrt CANON custOmer suppOrt CANON printer
technical suppOrt CANON printer repair CANON printer helpline CANON printers
custOmer service CANON service center CANONs printers suppOrt CANON helpline
CANON custOmer service phOne number install CANON printer CANON printers tech
suppOrt CANON printer suppOrt number CANON printer custOmer suppOrt CANON
printer cOntact number CANON printer prOblems CANON printers help CANON printer
service CANON printer service center CANON printer cOntact CANON custOmer
service number CANON printers helpline CANON suppOrt number CANON printer
repairs CANON printer scanner CANON printers phOne number CANON printers
custOmer suppOrt CANON suppOrt center CANON tech suppOrt phOne number CANONs
printers custOmer service CANON printer custOmer service number CANON printers
technical suppOrt CANON printer helpline number CANON suppOrt phOne number
CANON suppOrt printer CANON technical suppOrt number CANON printers cOntact
trOubleshOOting CANON printer CANON printer phOne suppOrt CANON printers
suppOrt phOne number trOubleshOOt CANON printer CANON printers cOntact number
CANONs custOmer service CANON printer number CANON phOne suppOrt CANON
trOubleshOOting CANON printer custOmer care CANON printer help desk drivers fOr
CANON printers CANON technical suppOrt phOne number CANON custOmer service
phOne cOntact CANON printers CANON printer custOmer care number CANON help desk
CANON Online suppOrt CANON custOmer suppOrt phOne number CANONs printer
custOmer service CANON printer mfc CANON printers tech suppOrt phOne number
CANON service CANONs tech suppOrt CANON printers custOmer service phOne number
CANON printer install CANON laser printers CANONs printers suppOrt CANON
printer CANON printer service centre CANON printer updates CANON inkjet printer
cOntact CANON suppOrt CANON tech suppOrt phOne CANON lc61 CANONs printers tech
suppOrt printers Online cOntact CANON printer CANONs printer CANON label
printer CANON custOmer suppOrt phOne CANON printers custOmer suppOrt number
CANON suppOrt centre CANON laser printer CANON printer custOmer service suppOrt
CANON wireless printer setup buy CANON printer Online CANON printer tech
suppOrt number CANON netwOrk printer CANON printers custOmer service number
custOmer service fOr CANON printers CANON service centre CANON wireless printer
CANON printers CANON custOmer care CANON printer Online suppOrt CANON printer
tOll free number phOne number fOr CANON printers CANON printer installatiOn
CANON printers help desk CANON printer suppOrt phOne service CANON CANON mfc
CANON printer custOmer suppOrt number CANON printers technical suppOrt phOne
number CANON printer hOtline cOntact number fOr CANON printers CANON printer
CANON.cOm suppOrt cOntact CANON printer suppOrt CANON printer trOubleshOOt
CANON telephOne suppOrt CANON printers custOmer suppOrt phOne number CANON
printer help phOne number CANON custOmer service telephOne number CANON printer
tech suppOrt phOne CANON.ca suppOrt CANON printer Online CANON multifunctiOn
printer printer suppOrt CANON printer help CANON mfc printer technical suppOrt
fOr CANON printers CANON tech suppOrt number email suppOrt CANON printers
suppOrt phOne mfc CANON CANON hl227Odw CANON printers website CANON printer
suppOrt CANON printers repair repair CANON printer CANON printers suppOrt CANON
helpline number CANON scanner printer CANON printers service CANON printers
custOmer service telephOne number CANON printer phOne number custOmer service
CANON printers review www.CANON.cOm suppOrt fOr CANON printer CANON printer
repair service CANON printer phOne number fOr CANON printer suppOrt CANON
printer website CANON printers custOmer service phOne CANON printer prOblems
and sOlutiOns CANONs printers custOmer service phOne number custOmer service
CANON printer sOlutiOn CANON CANON fax suppOrt mfc CANON printer CANON printer
custOmer service phOne CANON printer help number CANON mfc-846On drivers fOr
CANON printers CANON technical suppOrt phOne number CANON custOmer service
phOne cOntact CANON printers CANON printer custOmer care number CANON help desk
CANON Online suppOrt CANON custOmer suppOrt phOne number CANONs printer
custOmer service CANON printer mfc CANON printers tech suppOrt phOne number
CANON service CANONs tech suppOrt CANON printers custOmer service phOne number
CANON printer install CANON laser printers CANONs printers suppOrt CANON
printer CANON printer service centre CANON printer updates CANON inkjet printer
cOntact CANON suppOrt CANON tech suppOrt phOne CANON lc61 CANONs printers tech
suppOrt printers Online cOntact CANON printer CANONs printer CANON label
printer CANON custOmer suppOrt phOne CANON printers custOmer suppOrt number
CANON suppOrt centre CANON laser printer CANON printer custOmer service suppOrt
CANON wireless printer setup buy CANON printer Online CANON printer tech
suppOrt number CANON netwOrk printer CANON printers custOmer service number
custOmer service fOr CANON printers CANON service centre CANON wireless printer
CANON printers CANON custOmer care CANON printer Online suppOrt CANON printer
tOll free number phOne number fOr CANON printers CANON printer installatiOn
CANON printers help desk CANON printer suppOrt phOne service CANON CANON CANON
printer custOmer service/@!!((I+855+709+2847+))!!@CANON printer suppOrt phOne
number CANON printer tech suppOrt phOne number USA
>From gcc-bugs-return-534452-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 21:41:30 2016
Return-Path: <gcc-bugs-return-534452-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 43903 invoked by alias); 12 Aug 2016 21:41:30 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 43833 invoked by uid 89); 12 Aug 2016 21:41:22 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, U*@@, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 21:41:12 +0000
From: "devsharmat20 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75594] New: @%@$$$@^^@1_8OOx681x7208 @^^@@%BELLSOUTH M.a.i.lt.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
Date: Fri, 12 Aug 2016 21:41:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: devsharmat20 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75594-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01788.txt.bz2
Content-length: 7523

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75594

            Bug ID: 75594
           Summary: @%@$$$@^^@1_8OOx681x7208 @^^@@%BELLSOUTH
                    M.a.i.lt.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
           Product: gcc
           Version: 6.2.0
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: devsharmat20 at gmail dot com
  Target Milestone: ---

/@!!((I+855+681+7208+))!!@BELLSOUTH mail suppOrt phOne number BELLSOUTH mail
tech suppOrt phOne number USA UST<::: /@!!((I+855+681+7208+))!!@BELLSOUTH mail
suppOrt phOne number BELLSOUTH mail tech suppOrt phOne number USA BELLSOUTH
mail custOmer service @@@++@@++I+855+681+7208 !!++++@@+++@@@@+BELLSOUTH mail
suppOrt phOne number BELLSOUTH mail tech suppOrt phOne number USA JUST<:::
/@!!((I+855+681+7208+))!!@BELLSOUTH mail suppOrt phOne number BELLSOUTH mail
tech suppOrt phOne number USA BELLSOUTH mail custOmer
service@@!!((*I+855+681+7208+))!!@@BELLSOUTH mail suppOrt phOne number
BELLSOUTH mail tech suppOrt phOne number USA, BELLSOUTH mail technical suppOrt
phOne number BELLSOUTH mail custOmer suppOrt phOne number BELLSOUTH mail phOne
number BELLSOUTH mail custOmer care phOne number brOhter mail custOmer care
number BELLSOUTH mail tOll free phOne number BELLSOUTH mail suppOrt BELLSOUTH
suppOrt BELLSOUTH mails suppOrt BELLSOUTH custOmer service BELLSOUTH mail help
BELLSOUTH tech suppOrt BELLSOUTH mail custOmer service BELLSOUTH mail tech
suppOrt BELLSOUTH technical suppOrt BELLSOUTH mail trOubleshOOting BELLSOUTH
mails trOubleshOOting BELLSOUTH internatiOnal BELLSOUTHs mail suppOrt BELLSOUTH
custOmer suppOrt BELLSOUTH mail technical suppOrt BELLSOUTH mail repair
BELLSOUTH mail helpline BELLSOUTH mails custOmer service BELLSOUTH service
center BELLSOUTHs mails suppOrt BELLSOUTH helpline BELLSOUTH custOmer service
phOne number install BELLSOUTH mail BELLSOUTH mails tech suppOrt BELLSOUTH mail
suppOrt number BELLSOUTH mail custOmer suppOrt BELLSOUTH mail cOntact number
BELLSOUTH mail prOblems BELLSOUTH mails help BELLSOUTH mail service BELLSOUTH
mail service center BELLSOUTH mail cOntact BELLSOUTH custOmer service number
BELLSOUTH mails helpline BELLSOUTH suppOrt number BELLSOUTH mail repairs
BELLSOUTH mail scanner BELLSOUTH mails phOne number BELLSOUTH mails custOmer
suppOrt BELLSOUTH suppOrt center BELLSOUTH tech suppOrt phOne number BELLSOUTHs
mails custOmer service BELLSOUTH mail custOmer service number BELLSOUTH mails
technical suppOrt BELLSOUTH mail helpline number BELLSOUTH suppOrt phOne number
BELLSOUTH suppOrt mail BELLSOUTH technical suppOrt number BELLSOUTH mails
cOntact trOubleshOOting BELLSOUTH mail BELLSOUTH mail phOne suppOrt BELLSOUTH
mails suppOrt phOne number trOubleshOOt BELLSOUTH mail BELLSOUTH mails cOntact
number BELLSOUTHs custOmer service BELLSOUTH mail number BELLSOUTH phOne
suppOrt BELLSOUTH trOubleshOOting BELLSOUTH mail custOmer care BELLSOUTH mail
help desk drivers fOr BELLSOUTH mails BELLSOUTH technical suppOrt phOne number
BELLSOUTH custOmer service phOne cOntact BELLSOUTH mails BELLSOUTH mail
custOmer care number BELLSOUTH help desk BELLSOUTH Online suppOrt BELLSOUTH
custOmer suppOrt phOne number BELLSOUTHs mail custOmer service BELLSOUTH mail
mfc BELLSOUTH mails tech suppOrt phOne number BELLSOUTH service BELLSOUTHs tech
suppOrt BELLSOUTH mails custOmer service phOne number BELLSOUTH mail install
BELLSOUTH laser mails BELLSOUTHs mails suppOrt BELLSOUTH mail BELLSOUTH mail
service centre BELLSOUTH mail updates BELLSOUTH inkjet mail cOntact BELLSOUTH
suppOrt BELLSOUTH tech suppOrt phOne BELLSOUTH lc61 BELLSOUTHs mails tech
suppOrt mails Online cOntact BELLSOUTH mail BELLSOUTHs mail BELLSOUTH label
mail BELLSOUTH custOmer suppOrt phOne BELLSOUTH mails custOmer suppOrt number
BELLSOUTH suppOrt centre BELLSOUTH laser mail BELLSOUTH mail custOmer service
suppOrt BELLSOUTH wireless mail setup buy BELLSOUTH mail Online BELLSOUTH mail
tech suppOrt number BELLSOUTH netwOrk mail BELLSOUTH mails custOmer service
number custOmer service fOr BELLSOUTH mails BELLSOUTH service centre BELLSOUTH
wireless mail BELLSOUTH mails BELLSOUTH custOmer care BELLSOUTH mail Online
suppOrt BELLSOUTH mail tOll free number phOne number fOr BELLSOUTH mails
BELLSOUTH mail installatiOn BELLSOUTH mails help desk BELLSOUTH mail suppOrt
phOne service BELLSOUTH BELLSOUTH mfc BELLSOUTH mail custOmer suppOrt number
BELLSOUTH mails technical suppOrt phOne number BELLSOUTH mail hOtline cOntact
number fOr BELLSOUTH mails BELLSOUTH mail BELLSOUTH.cOm suppOrt cOntact
BELLSOUTH mail suppOrt BELLSOUTH mail trOubleshOOt BELLSOUTH telephOne suppOrt
BELLSOUTH mails custOmer suppOrt phOne number BELLSOUTH mail help phOne number
BELLSOUTH custOmer service telephOne number BELLSOUTH mail tech suppOrt phOne
BELLSOUTH.ca suppOrt BELLSOUTH mail Online BELLSOUTH multifunctiOn mail mail
suppOrt BELLSOUTH mail help BELLSOUTH mfc mail technical suppOrt fOr BELLSOUTH
mails BELLSOUTH tech suppOrt number email suppOrt BELLSOUTH mails suppOrt phOne
mfc BELLSOUTH BELLSOUTH hl227Odw BELLSOUTH mails website BELLSOUTH mail suppOrt
BELLSOUTH mails repair repair BELLSOUTH mail BELLSOUTH mails suppOrt BELLSOUTH
helpline number BELLSOUTH scanner mail BELLSOUTH mails service BELLSOUTH mails
custOmer service telephOne number BELLSOUTH mail phOne number custOmer service
BELLSOUTH mails review www.BELLSOUTH.cOm suppOrt fOr BELLSOUTH mail BELLSOUTH
mail repair service BELLSOUTH mail phOne number fOr BELLSOUTH mail suppOrt
BELLSOUTH mail website BELLSOUTH mails custOmer service phOne BELLSOUTH mail
prOblems and sOlutiOns BELLSOUTHs mails custOmer service phOne number custOmer
service BELLSOUTH mail sOlutiOn BELLSOUTH BELLSOUTH fax suppOrt mfc BELLSOUTH
mail BELLSOUTH mail custOmer service phOne BELLSOUTH mail help number BELLSOUTH
mfc-846On drivers fOr BELLSOUTH mails BELLSOUTH technical suppOrt phOne number
BELLSOUTH custOmer service phOne cOntact BELLSOUTH mails BELLSOUTH mail
custOmer care number BELLSOUTH help desk BELLSOUTH Online suppOrt BELLSOUTH
custOmer suppOrt phOne number BELLSOUTHs mail custOmer service BELLSOUTH mail
mfc BELLSOUTH mails tech suppOrt phOne number BELLSOUTH service BELLSOUTHs tech
suppOrt BELLSOUTH mails custOmer service phOne number BELLSOUTH mail install
BELLSOUTH laser mails BELLSOUTHs mails suppOrt BELLSOUTH mail BELLSOUTH mail
service centre BELLSOUTH mail updates BELLSOUTH inkjet mail cOntact BELLSOUTH
suppOrt BELLSOUTH tech suppOrt phOne BELLSOUTH lc61 BELLSOUTHs mails tech
suppOrt mails Online cOntact BELLSOUTH mail BELLSOUTHs mail BELLSOUTH label
mail BELLSOUTH custOmer suppOrt phOne BELLSOUTH mails custOmer suppOrt number
BELLSOUTH suppOrt centre BELLSOUTH laser mail BELLSOUTH mail custOmer service
suppOrt BELLSOUTH wireless mail setup buy BELLSOUTH mail Online BELLSOUTH mail
tech suppOrt number BELLSOUTH netwOrk mail BELLSOUTH mails custOmer service
number custOmer service fOr BELLSOUTH mails BELLSOUTH service centre BELLSOUTH
wireless mail BELLSOUTH mails BELLSOUTH custOmer care BELLSOUTH mail Online
suppOrt BELLSOUTH mail tOll free number phOne number fOr BELLSOUTH mails
BELLSOUTH mail installatiOn BELLSOUTH mails help desk BELLSOUTH mail suppOrt
phOne service BELLSOUTH BELLSOUTH BELLSOUTH mail custOmer
service/@!!((I+855+681+7208+))!!@BELLSOUTH mail suppOrt phOne number BELLSOUTH
mail tech suppOrt phOne number USA
>From gcc-bugs-return-534453-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 21:41:31 2016
Return-Path: <gcc-bugs-return-534453-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 43991 invoked by alias); 12 Aug 2016 21:41:30 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 43895 invoked by uid 89); 12 Aug 2016 21:41:29 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, U*@@, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 21:41:19 +0000
From: "suraj2809 at mailinator dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75596] New: @%@$$$@^^@1_8OOx681x7208 @^^@@%MALWAREBYTES A.n.t.i.v.i.r.u.s   t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
Date: Fri, 12 Aug 2016 21:41:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: trans-mem
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: suraj2809 at mailinator dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75596-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01789.txt.bz2
Content-length: 9106

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75596

            Bug ID: 75596
           Summary: @%@$$$@^^@1_8OOx681x7208 @^^@@%MALWAREBYTES
                    A.n.t.i.v.i.r.u.s   t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e
                    n.u.m.b.e.r
           Product: gcc
           Version: trans-mem
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: suraj2809 at mailinator dot com
  Target Milestone: ---

/@!!((I+855+681+7208+))!!@MALWAREBYTES antivirus suppOrt phOne number
MALWAREBYTES antivirus tech suppOrt phOne number USA UST<:::
/@!!((I+855+681+7208+))!!@MALWAREBYTES antivirus suppOrt phOne number
MALWAREBYTES antivirus tech suppOrt phOne number USA MALWAREBYTES antivirus
custOmer service @@@++@@++I+855+681+7208 !!++++@@+++@@@@+MALWAREBYTES antivirus
suppOrt phOne number MALWAREBYTES antivirus tech suppOrt phOne number USA
JUST<::: /@!!((I+855+681+7208+))!!@MALWAREBYTES antivirus suppOrt phOne number
MALWAREBYTES antivirus tech suppOrt phOne number USA MALWAREBYTES antivirus
custOmer service@@!!((*I+855+681+7208+))!!@@MALWAREBYTES antivirus suppOrt
phOne number MALWAREBYTES antivirus tech suppOrt phOne number USA, MALWAREBYTES
antivirus technical suppOrt phOne number MALWAREBYTES antivirus custOmer
suppOrt phOne number MALWAREBYTES antivirus phOne number MALWAREBYTES antivirus
custOmer care phOne number brOhter antivirus custOmer care number MALWAREBYTES
antivirus tOll free phOne number MALWAREBYTES antivirus suppOrt MALWAREBYTES
suppOrt MALWAREBYTES antiviruss suppOrt MALWAREBYTES custOmer service
MALWAREBYTES antivirus help MALWAREBYTES tech suppOrt MALWAREBYTES antivirus
custOmer service MALWAREBYTES antivirus tech suppOrt MALWAREBYTES technical
suppOrt MALWAREBYTES antivirus trOubleshOOting MALWAREBYTES antiviruss
trOubleshOOting MALWAREBYTES internatiOnal MALWAREBYTESs antivirus suppOrt
MALWAREBYTES custOmer suppOrt MALWAREBYTES antivirus technical suppOrt
MALWAREBYTES antivirus repair MALWAREBYTES antivirus helpline MALWAREBYTES
antiviruss custOmer service MALWAREBYTES service center MALWAREBYTESs
antiviruss suppOrt MALWAREBYTES helpline MALWAREBYTES custOmer service phOne
number install MALWAREBYTES antivirus MALWAREBYTES antiviruss tech suppOrt
MALWAREBYTES antivirus suppOrt number MALWAREBYTES antivirus custOmer suppOrt
MALWAREBYTES antivirus cOntact number MALWAREBYTES antivirus prOblems
MALWAREBYTES antiviruss help MALWAREBYTES antivirus service MALWAREBYTES
antivirus service center MALWAREBYTES antivirus cOntact MALWAREBYTES custOmer
service number MALWAREBYTES antiviruss helpline MALWAREBYTES suppOrt number
MALWAREBYTES antivirus repairs MALWAREBYTES antivirus scanner MALWAREBYTES
antiviruss phOne number MALWAREBYTES antiviruss custOmer suppOrt MALWAREBYTES
suppOrt center MALWAREBYTES tech suppOrt phOne number MALWAREBYTESs antiviruss
custOmer service MALWAREBYTES antivirus custOmer service number MALWAREBYTES
antiviruss technical suppOrt MALWAREBYTES antivirus helpline number
MALWAREBYTES suppOrt phOne number MALWAREBYTES suppOrt antivirus MALWAREBYTES
technical suppOrt number MALWAREBYTES antiviruss cOntact trOubleshOOting
MALWAREBYTES antivirus MALWAREBYTES antivirus phOne suppOrt MALWAREBYTES
antiviruss suppOrt phOne number trOubleshOOt MALWAREBYTES antivirus
MALWAREBYTES antiviruss cOntact number MALWAREBYTESs custOmer service
MALWAREBYTES antivirus number MALWAREBYTES phOne suppOrt MALWAREBYTES
trOubleshOOting MALWAREBYTES antivirus custOmer care MALWAREBYTES antivirus
help desk drivers fOr MALWAREBYTES antiviruss MALWAREBYTES technical suppOrt
phOne number MALWAREBYTES custOmer service phOne cOntact MALWAREBYTES
antiviruss MALWAREBYTES antivirus custOmer care number MALWAREBYTES help desk
MALWAREBYTES Online suppOrt MALWAREBYTES custOmer suppOrt phOne number
MALWAREBYTESs antivirus custOmer service MALWAREBYTES antivirus mfc
MALWAREBYTES antiviruss tech suppOrt phOne number MALWAREBYTES service
MALWAREBYTESs tech suppOrt MALWAREBYTES antiviruss custOmer service phOne
number MALWAREBYTES antivirus install MALWAREBYTES laser antiviruss
MALWAREBYTESs antiviruss suppOrt MALWAREBYTES antivirus MALWAREBYTES antivirus
service centre MALWAREBYTES antivirus updates MALWAREBYTES inkjet antivirus
cOntact MALWAREBYTES suppOrt MALWAREBYTES tech suppOrt phOne MALWAREBYTES lc61
MALWAREBYTESs antiviruss tech suppOrt antiviruss Online cOntact MALWAREBYTES
antivirus MALWAREBYTESs antivirus MALWAREBYTES label antivirus MALWAREBYTES
custOmer suppOrt phOne MALWAREBYTES antiviruss custOmer suppOrt number
MALWAREBYTES suppOrt centre MALWAREBYTES laser antivirus MALWAREBYTES antivirus
custOmer service suppOrt MALWAREBYTES wireless antivirus setup buy MALWAREBYTES
antivirus Online MALWAREBYTES antivirus tech suppOrt number MALWAREBYTES
netwOrk antivirus MALWAREBYTES antiviruss custOmer service number custOmer
service fOr MALWAREBYTES antiviruss MALWAREBYTES service centre MALWAREBYTES
wireless antivirus MALWAREBYTES antiviruss MALWAREBYTES custOmer care
MALWAREBYTES antivirus Online suppOrt MALWAREBYTES antivirus tOll free number
phOne number fOr MALWAREBYTES antiviruss MALWAREBYTES antivirus installatiOn
MALWAREBYTES antiviruss help desk MALWAREBYTES antivirus suppOrt phOne service
MALWAREBYTES MALWAREBYTES mfc MALWAREBYTES antivirus custOmer suppOrt number
MALWAREBYTES antiviruss technical suppOrt phOne number MALWAREBYTES antivirus
hOtline cOntact number fOr MALWAREBYTES antiviruss MALWAREBYTES antivirus
MALWAREBYTES.cOm suppOrt cOntact MALWAREBYTES antivirus suppOrt MALWAREBYTES
antivirus trOubleshOOt MALWAREBYTES telephOne suppOrt MALWAREBYTES antiviruss
custOmer suppOrt phOne number MALWAREBYTES antivirus help phOne number
MALWAREBYTES custOmer service telephOne number MALWAREBYTES antivirus tech
suppOrt phOne MALWAREBYTES.ca suppOrt MALWAREBYTES antivirus Online
MALWAREBYTES multifunctiOn antivirus antivirus suppOrt MALWAREBYTES antivirus
help MALWAREBYTES mfc antivirus technical suppOrt fOr MALWAREBYTES antiviruss
MALWAREBYTES tech suppOrt number email suppOrt MALWAREBYTES antiviruss suppOrt
phOne mfc MALWAREBYTES MALWAREBYTES hl227Odw MALWAREBYTES antiviruss website
MALWAREBYTES antivirus suppOrt MALWAREBYTES antiviruss repair repair
MALWAREBYTES antivirus MALWAREBYTES antiviruss suppOrt MALWAREBYTES helpline
number MALWAREBYTES scanner antivirus MALWAREBYTES antiviruss service
MALWAREBYTES antiviruss custOmer service telephOne number MALWAREBYTES
antivirus phOne number custOmer service MALWAREBYTES antiviruss review
www.MALWAREBYTES.cOm suppOrt fOr MALWAREBYTES antivirus MALWAREBYTES antivirus
repair service MALWAREBYTES antivirus phOne number fOr MALWAREBYTES antivirus
suppOrt MALWAREBYTES antivirus website MALWAREBYTES antiviruss custOmer service
phOne MALWAREBYTES antivirus prOblems and sOlutiOns MALWAREBYTESs antiviruss
custOmer service phOne number custOmer service MALWAREBYTES antivirus sOlutiOn
MALWAREBYTES MALWAREBYTES fax suppOrt mfc MALWAREBYTES antivirus MALWAREBYTES
antivirus custOmer service phOne MALWAREBYTES antivirus help number
MALWAREBYTES mfc-846On drivers fOr MALWAREBYTES antiviruss MALWAREBYTES
technical suppOrt phOne number MALWAREBYTES custOmer service phOne cOntact
MALWAREBYTES antiviruss MALWAREBYTES antivirus custOmer care number
MALWAREBYTES help desk MALWAREBYTES Online suppOrt MALWAREBYTES custOmer
suppOrt phOne number MALWAREBYTESs antivirus custOmer service MALWAREBYTES
antivirus mfc MALWAREBYTES antiviruss tech suppOrt phOne number MALWAREBYTES
service MALWAREBYTESs tech suppOrt MALWAREBYTES antiviruss custOmer service
phOne number MALWAREBYTES antivirus install MALWAREBYTES laser antiviruss
MALWAREBYTESs antiviruss suppOrt MALWAREBYTES antivirus MALWAREBYTES antivirus
service centre MALWAREBYTES antivirus updates MALWAREBYTES inkjet antivirus
cOntact MALWAREBYTES suppOrt MALWAREBYTES tech suppOrt phOne MALWAREBYTES lc61
MALWAREBYTESs antiviruss tech suppOrt antiviruss Online cOntact MALWAREBYTES
antivirus MALWAREBYTESs antivirus MALWAREBYTES label antivirus MALWAREBYTES
custOmer suppOrt phOne MALWAREBYTES antiviruss custOmer suppOrt number
MALWAREBYTES suppOrt centre MALWAREBYTES laser antivirus MALWAREBYTES antivirus
custOmer service suppOrt MALWAREBYTES wireless antivirus setup buy MALWAREBYTES
antivirus Online MALWAREBYTES antivirus tech suppOrt number MALWAREBYTES
netwOrk antivirus MALWAREBYTES antiviruss custOmer service number custOmer
service fOr MALWAREBYTES antiviruss MALWAREBYTES service centre MALWAREBYTES
wireless antivirus MALWAREBYTES antiviruss MALWAREBYTES custOmer care
MALWAREBYTES antivirus Online suppOrt MALWAREBYTES antivirus tOll free number
phOne number fOr MALWAREBYTES antiviruss MALWAREBYTES antivirus installatiOn
MALWAREBYTES antiviruss help desk MALWAREBYTES antivirus suppOrt phOne service
MALWAREBYTES MALWAREBYTES MALWAREBYTES antivirus custOmer
service/@!!((I+855+681+7208+))!!@MALWAREBYTES antivirus suppOrt phOne number
MALWAREBYTES antivirus tech suppOrt phOne number USA
>From gcc-bugs-return-534454-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 21:43:06 2016
Return-Path: <gcc-bugs-return-534454-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 46735 invoked by alias); 12 Aug 2016 21:43:06 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 46720 invoked by uid 89); 12 Aug 2016 21:43:05 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, U*@@, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 21:42:55 +0000
From: "devsharmat20 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75602] New: @%@$$$@^^@1_8OOx681x7208 @^^@@%VERIZON M.a.i.lt.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
Date: Fri, 12 Aug 2016 21:43:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: devsharmat20 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75602-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01790.txt.bz2
Content-length: 7035

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75602

            Bug ID: 75602
           Summary: @%@$$$@^^@1_8OOx681x7208 @^^@@%VERIZON M.a.i.lt.e.c.h.
                    s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
           Product: gcc
           Version: 6.0
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: devsharmat20 at gmail dot com
  Target Milestone: ---

/@!!((I+855+681+7208+))!!@VERIZON mail suppOrt phOne number VERIZON mail tech
suppOrt phOne number USA UST<::: /@!!((I+855+681+7208+))!!@VERIZON mail suppOrt
phOne number VERIZON mail tech suppOrt phOne number USA VERIZON mail custOmer
service @@@++@@++I+855+681+7208 !!++++@@+++@@@@+VERIZON mail suppOrt phOne
number VERIZON mail tech suppOrt phOne number USA JUST<:::
/@!!((I+855+681+7208+))!!@VERIZON mail suppOrt phOne number VERIZON mail tech
suppOrt phOne number USA VERIZON mail custOmer
service@@!!((*I+855+681+7208+))!!@@VERIZON mail suppOrt phOne number VERIZON
mail tech suppOrt phOne number USA, VERIZON mail technical suppOrt phOne number
VERIZON mail custOmer suppOrt phOne number VERIZON mail phOne number VERIZON
mail custOmer care phOne number brOhter mail custOmer care number VERIZON mail
tOll free phOne number VERIZON mail suppOrt VERIZON suppOrt VERIZON mails
suppOrt VERIZON custOmer service VERIZON mail help VERIZON tech suppOrt VERIZON
mail custOmer service VERIZON mail tech suppOrt VERIZON technical suppOrt
VERIZON mail trOubleshOOting VERIZON mails trOubleshOOting VERIZON
internatiOnal VERIZONs mail suppOrt VERIZON custOmer suppOrt VERIZON mail
technical suppOrt VERIZON mail repair VERIZON mail helpline VERIZON mails
custOmer service VERIZON service center VERIZONs mails suppOrt VERIZON helpline
VERIZON custOmer service phOne number install VERIZON mail VERIZON mails tech
suppOrt VERIZON mail suppOrt number VERIZON mail custOmer suppOrt VERIZON mail
cOntact number VERIZON mail prOblems VERIZON mails help VERIZON mail service
VERIZON mail service center VERIZON mail cOntact VERIZON custOmer service
number VERIZON mails helpline VERIZON suppOrt number VERIZON mail repairs
VERIZON mail scanner VERIZON mails phOne number VERIZON mails custOmer suppOrt
VERIZON suppOrt center VERIZON tech suppOrt phOne number VERIZONs mails
custOmer service VERIZON mail custOmer service number VERIZON mails technical
suppOrt VERIZON mail helpline number VERIZON suppOrt phOne number VERIZON
suppOrt mail VERIZON technical suppOrt number VERIZON mails cOntact
trOubleshOOting VERIZON mail VERIZON mail phOne suppOrt VERIZON mails suppOrt
phOne number trOubleshOOt VERIZON mail VERIZON mails cOntact number VERIZONs
custOmer service VERIZON mail number VERIZON phOne suppOrt VERIZON
trOubleshOOting VERIZON mail custOmer care VERIZON mail help desk drivers fOr
VERIZON mails VERIZON technical suppOrt phOne number VERIZON custOmer service
phOne cOntact VERIZON mails VERIZON mail custOmer care number VERIZON help desk
VERIZON Online suppOrt VERIZON custOmer suppOrt phOne number VERIZONs mail
custOmer service VERIZON mail mfc VERIZON mails tech suppOrt phOne number
VERIZON service VERIZONs tech suppOrt VERIZON mails custOmer service phOne
number VERIZON mail install VERIZON laser mails VERIZONs mails suppOrt VERIZON
mail VERIZON mail service centre VERIZON mail updates VERIZON inkjet mail
cOntact VERIZON suppOrt VERIZON tech suppOrt phOne VERIZON lc61 VERIZONs mails
tech suppOrt mails Online cOntact VERIZON mail VERIZONs mail VERIZON label mail
VERIZON custOmer suppOrt phOne VERIZON mails custOmer suppOrt number VERIZON
suppOrt centre VERIZON laser mail VERIZON mail custOmer service suppOrt VERIZON
wireless mail setup buy VERIZON mail Online VERIZON mail tech suppOrt number
VERIZON netwOrk mail VERIZON mails custOmer service number custOmer service fOr
VERIZON mails VERIZON service centre VERIZON wireless mail VERIZON mails
VERIZON custOmer care VERIZON mail Online suppOrt VERIZON mail tOll free number
phOne number fOr VERIZON mails VERIZON mail installatiOn VERIZON mails help
desk VERIZON mail suppOrt phOne service VERIZON VERIZON mfc VERIZON mail
custOmer suppOrt number VERIZON mails technical suppOrt phOne number VERIZON
mail hOtline cOntact number fOr VERIZON mails VERIZON mail VERIZON.cOm suppOrt
cOntact VERIZON mail suppOrt VERIZON mail trOubleshOOt VERIZON telephOne
suppOrt VERIZON mails custOmer suppOrt phOne number VERIZON mail help phOne
number VERIZON custOmer service telephOne number VERIZON mail tech suppOrt
phOne VERIZON.ca suppOrt VERIZON mail Online VERIZON multifunctiOn mail mail
suppOrt VERIZON mail help VERIZON mfc mail technical suppOrt fOr VERIZON mails
VERIZON tech suppOrt number email suppOrt VERIZON mails suppOrt phOne mfc
VERIZON VERIZON hl227Odw VERIZON mails website VERIZON mail suppOrt VERIZON
mails repair repair VERIZON mail VERIZON mails suppOrt VERIZON helpline number
VERIZON scanner mail VERIZON mails service VERIZON mails custOmer service
telephOne number VERIZON mail phOne number custOmer service VERIZON mails
review www.VERIZON.cOm suppOrt fOr VERIZON mail VERIZON mail repair service
VERIZON mail phOne number fOr VERIZON mail suppOrt VERIZON mail website VERIZON
mails custOmer service phOne VERIZON mail prOblems and sOlutiOns VERIZONs mails
custOmer service phOne number custOmer service VERIZON mail sOlutiOn VERIZON
VERIZON fax suppOrt mfc VERIZON mail VERIZON mail custOmer service phOne
VERIZON mail help number VERIZON mfc-846On drivers fOr VERIZON mails VERIZON
technical suppOrt phOne number VERIZON custOmer service phOne cOntact VERIZON
mails VERIZON mail custOmer care number VERIZON help desk VERIZON Online
suppOrt VERIZON custOmer suppOrt phOne number VERIZONs mail custOmer service
VERIZON mail mfc VERIZON mails tech suppOrt phOne number VERIZON service
VERIZONs tech suppOrt VERIZON mails custOmer service phOne number VERIZON mail
install VERIZON laser mails VERIZONs mails suppOrt VERIZON mail VERIZON mail
service centre VERIZON mail updates VERIZON inkjet mail cOntact VERIZON suppOrt
VERIZON tech suppOrt phOne VERIZON lc61 VERIZONs mails tech suppOrt mails
Online cOntact VERIZON mail VERIZONs mail VERIZON label mail VERIZON custOmer
suppOrt phOne VERIZON mails custOmer suppOrt number VERIZON suppOrt centre
VERIZON laser mail VERIZON mail custOmer service suppOrt VERIZON wireless mail
setup buy VERIZON mail Online VERIZON mail tech suppOrt number VERIZON netwOrk
mail VERIZON mails custOmer service number custOmer service fOr VERIZON mails
VERIZON service centre VERIZON wireless mail VERIZON mails VERIZON custOmer
care VERIZON mail Online suppOrt VERIZON mail tOll free number phOne number fOr
VERIZON mails VERIZON mail installatiOn VERIZON mails help desk VERIZON mail
suppOrt phOne service VERIZON VERIZON VERIZON mail custOmer
service/@!!((I+855+681+7208+))!!@VERIZON mail suppOrt phOne number VERIZON mail
tech suppOrt phOne number USA
>From gcc-bugs-return-534455-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 21:45:32 2016
Return-Path: <gcc-bugs-return-534455-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 50013 invoked by alias); 12 Aug 2016 21:45:32 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 49993 invoked by uid 89); 12 Aug 2016 21:45:31 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, U*@@, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 21:45:21 +0000
From: "devsharmat20 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75610] New: @%@$$$@^^@1_8OOx681x7208 @^^@@%YANDEX M.a.i.lt.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
Date: Fri, 12 Aug 2016 21:45:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: tree-ssa
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: devsharmat20 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75610-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01791.txt.bz2
Content-length: 6803

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75610

            Bug ID: 75610
           Summary: @%@$$$@^^@1_8OOx681x7208 @^^@@%YANDEX M.a.i.lt.e.c.h.
                    s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
           Product: gcc
           Version: tree-ssa
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: devsharmat20 at gmail dot com
  Target Milestone: ---

/@!!((I+855+681+7208+))!!@YANDEX mail suppOrt phOne number YANDEX mail tech
suppOrt phOne number USA UST<::: /@!!((I+855+681+7208+))!!@YANDEX mail suppOrt
phOne number YANDEX mail tech suppOrt phOne number USA YANDEX mail custOmer
service @@@++@@++I+855+681+7208 !!++++@@+++@@@@+YANDEX mail suppOrt phOne
number YANDEX mail tech suppOrt phOne number USA JUST<:::
/@!!((I+855+681+7208+))!!@YANDEX mail suppOrt phOne number YANDEX mail tech
suppOrt phOne number USA YANDEX mail custOmer
service@@!!((*I+855+681+7208+))!!@@YANDEX mail suppOrt phOne number YANDEX mail
tech suppOrt phOne number USA, YANDEX mail technical suppOrt phOne number
YANDEX mail custOmer suppOrt phOne number YANDEX mail phOne number YANDEX mail
custOmer care phOne number brOhter mail custOmer care number YANDEX mail tOll
free phOne number YANDEX mail suppOrt YANDEX suppOrt YANDEX mails suppOrt
YANDEX custOmer service YANDEX mail help YANDEX tech suppOrt YANDEX mail
custOmer service YANDEX mail tech suppOrt YANDEX technical suppOrt YANDEX mail
trOubleshOOting YANDEX mails trOubleshOOting YANDEX internatiOnal YANDEXs mail
suppOrt YANDEX custOmer suppOrt YANDEX mail technical suppOrt YANDEX mail
repair YANDEX mail helpline YANDEX mails custOmer service YANDEX service center
YANDEXs mails suppOrt YANDEX helpline YANDEX custOmer service phOne number
install YANDEX mail YANDEX mails tech suppOrt YANDEX mail suppOrt number YANDEX
mail custOmer suppOrt YANDEX mail cOntact number YANDEX mail prOblems YANDEX
mails help YANDEX mail service YANDEX mail service center YANDEX mail cOntact
YANDEX custOmer service number YANDEX mails helpline YANDEX suppOrt number
YANDEX mail repairs YANDEX mail scanner YANDEX mails phOne number YANDEX mails
custOmer suppOrt YANDEX suppOrt center YANDEX tech suppOrt phOne number YANDEXs
mails custOmer service YANDEX mail custOmer service number YANDEX mails
technical suppOrt YANDEX mail helpline number YANDEX suppOrt phOne number
YANDEX suppOrt mail YANDEX technical suppOrt number YANDEX mails cOntact
trOubleshOOting YANDEX mail YANDEX mail phOne suppOrt YANDEX mails suppOrt
phOne number trOubleshOOt YANDEX mail YANDEX mails cOntact number YANDEXs
custOmer service YANDEX mail number YANDEX phOne suppOrt YANDEX trOubleshOOting
YANDEX mail custOmer care YANDEX mail help desk drivers fOr YANDEX mails YANDEX
technical suppOrt phOne number YANDEX custOmer service phOne cOntact YANDEX
mails YANDEX mail custOmer care number YANDEX help desk YANDEX Online suppOrt
YANDEX custOmer suppOrt phOne number YANDEXs mail custOmer service YANDEX mail
mfc YANDEX mails tech suppOrt phOne number YANDEX service YANDEXs tech suppOrt
YANDEX mails custOmer service phOne number YANDEX mail install YANDEX laser
mails YANDEXs mails suppOrt YANDEX mail YANDEX mail service centre YANDEX mail
updates YANDEX inkjet mail cOntact YANDEX suppOrt YANDEX tech suppOrt phOne
YANDEX lc61 YANDEXs mails tech suppOrt mails Online cOntact YANDEX mail YANDEXs
mail YANDEX label mail YANDEX custOmer suppOrt phOne YANDEX mails custOmer
suppOrt number YANDEX suppOrt centre YANDEX laser mail YANDEX mail custOmer
service suppOrt YANDEX wireless mail setup buy YANDEX mail Online YANDEX mail
tech suppOrt number YANDEX netwOrk mail YANDEX mails custOmer service number
custOmer service fOr YANDEX mails YANDEX service centre YANDEX wireless mail
YANDEX mails YANDEX custOmer care YANDEX mail Online suppOrt YANDEX mail tOll
free number phOne number fOr YANDEX mails YANDEX mail installatiOn YANDEX mails
help desk YANDEX mail suppOrt phOne service YANDEX YANDEX mfc YANDEX mail
custOmer suppOrt number YANDEX mails technical suppOrt phOne number YANDEX mail
hOtline cOntact number fOr YANDEX mails YANDEX mail YANDEX.cOm suppOrt cOntact
YANDEX mail suppOrt YANDEX mail trOubleshOOt YANDEX telephOne suppOrt YANDEX
mails custOmer suppOrt phOne number YANDEX mail help phOne number YANDEX
custOmer service telephOne number YANDEX mail tech suppOrt phOne YANDEX.ca
suppOrt YANDEX mail Online YANDEX multifunctiOn mail mail suppOrt YANDEX mail
help YANDEX mfc mail technical suppOrt fOr YANDEX mails YANDEX tech suppOrt
number email suppOrt YANDEX mails suppOrt phOne mfc YANDEX YANDEX hl227Odw
YANDEX mails website YANDEX mail suppOrt YANDEX mails repair repair YANDEX mail
YANDEX mails suppOrt YANDEX helpline number YANDEX scanner mail YANDEX mails
service YANDEX mails custOmer service telephOne number YANDEX mail phOne number
custOmer service YANDEX mails review www.YANDEX.cOm suppOrt fOr YANDEX mail
YANDEX mail repair service YANDEX mail phOne number fOr YANDEX mail suppOrt
YANDEX mail website YANDEX mails custOmer service phOne YANDEX mail prOblems
and sOlutiOns YANDEXs mails custOmer service phOne number custOmer service
YANDEX mail sOlutiOn YANDEX YANDEX fax suppOrt mfc YANDEX mail YANDEX mail
custOmer service phOne YANDEX mail help number YANDEX mfc-846On drivers fOr
YANDEX mails YANDEX technical suppOrt phOne number YANDEX custOmer service
phOne cOntact YANDEX mails YANDEX mail custOmer care number YANDEX help desk
YANDEX Online suppOrt YANDEX custOmer suppOrt phOne number YANDEXs mail
custOmer service YANDEX mail mfc YANDEX mails tech suppOrt phOne number YANDEX
service YANDEXs tech suppOrt YANDEX mails custOmer service phOne number YANDEX
mail install YANDEX laser mails YANDEXs mails suppOrt YANDEX mail YANDEX mail
service centre YANDEX mail updates YANDEX inkjet mail cOntact YANDEX suppOrt
YANDEX tech suppOrt phOne YANDEX lc61 YANDEXs mails tech suppOrt mails Online
cOntact YANDEX mail YANDEXs mail YANDEX label mail YANDEX custOmer suppOrt
phOne YANDEX mails custOmer suppOrt number YANDEX suppOrt centre YANDEX laser
mail YANDEX mail custOmer service suppOrt YANDEX wireless mail setup buy YANDEX
mail Online YANDEX mail tech suppOrt number YANDEX netwOrk mail YANDEX mails
custOmer service number custOmer service fOr YANDEX mails YANDEX service centre
YANDEX wireless mail YANDEX mails YANDEX custOmer care YANDEX mail Online
suppOrt YANDEX mail tOll free number phOne number fOr YANDEX mails YANDEX mail
installatiOn YANDEX mails help desk YANDEX mail suppOrt phOne service YANDEX
YANDEX YANDEX mail custOmer service/@!!((I+855+681+7208+))!!@YANDEX mail
suppOrt phOne number YANDEX mail tech suppOrt phOne number USA
>From gcc-bugs-return-534457-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 21:50:37 2016
Return-Path: <gcc-bugs-return-534457-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 58584 invoked by alias); 12 Aug 2016 21:50:37 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 58571 invoked by uid 89); 12 Aug 2016 21:50:36 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, U*@@, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 21:50:26 +0000
From: "wave5 at codehot dot co.uk" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75622] New: @%@$$$@^^@1_855x709x2847 @@@^^@@@@%EPSON  P.r.i.n.t.e.r t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
Date: Fri, 12 Aug 2016 21:50:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: fortran-dev
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wave5 at codehot dot co.uk
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75622-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01793.txt.bz2
Content-length: 7253

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75622

            Bug ID: 75622
           Summary: @%@$$$@^^@1_855x709x2847 @@@^^@@@@%EPSON
                    P.r.i.n.t.e.r t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e
                    n.u.m.b.e.r
           Product: gcc
           Version: fortran-dev
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: wave5 at codehot dot co.uk
  Target Milestone: ---

re <:::: /@!!((I+855+7O9+2847+))!@#&EPSON printer suppOrt phOne number EPSON
printer technical suppOrt phOne number USA UST<::::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA UST<::: /@!!((I+855+7O9+2847+))!!@EPSON printer
suppOrt phOne number EPSON printer tech suppOrt phOne number USA EPSON printer
custOmer service @@@++@@++I+855+7O9+2847 !!++++@@+++@@@@+EPSON printer suppOrt
phOne number EPSON printer tech suppOrt phOne number USA JUST<:::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA EPSON printer custOmer
service@@!!((*I+855+7O9+2847+))!!@@EPSON printer suppOrt phOne number EPSON
printer tech suppOrt phOne number USA, EPSON printer technical suppOrt phOne
number EPSON printer custOmer suppOrt phOne number EPSON printer phOne number
EPSON printer custOmer care phOne number brOhter printer custOmer care number
EPSON printer tOll free phOne number EPSON printer suppOrt EPSON suppOrt EPSON
printers suppOrt EPSON custOmer service EPSON printer help EPSON tech suppOrt
EPSON printer custOmer service EPSON printer tech suppOrt EPSON technical
suppOrt EPSON printer trOubleshOOting EPSON printers trOubleshOOting EPSON
internatiOnal EPSONs printer suppOrt EPSON custOmer suppOrt EPSON printer
technical suppOrt EPSON printer repair EPSON printer helpline EPSON printers
custOmer service EPSON service center EPSONs printers suppOrt EPSON helpline
EPSON custOmer service phOne number install EPSON printer EPSON printers tech
suppOrt EPSON printer suppOrt number EPSON printer custOmer suppOrt EPSON
printer cOntact number EPSON printer prOblems EPSON printers help EPSON printer
service EPSON printer service center EPSON printer cOntact EPSON custOmer
service number EPSON printers helpline EPSON suppOrt number EPSON printer
repairs EPSON printer scanner EPSON printers phOne number EPSON printers
custOmer suppOrt EPSON suppOrt center EPSON tech suppOrt phOne number EPSONs
printers custOmer service EPSON printer custOmer service number EPSON printers
technical suppOrt EPSON printer helpline number EPSON suppOrt phOne number
EPSON suppOrt printer EPSON technical suppOrt number EPSON printers cOntact
trOubleshOOting EPSON printer EPSON printer phOne suppOrt EPSON printers
suppOrt phOne number trOubleshOOt EPSON printer EPSON printers cOntact number
EPSONs custOmer service EPSON printer number EPSON phOne suppOrt EPSON
trOubleshOOting EPSON printer custOmer care EPSON printer help desk drivers fOr
EPSON printers EPSON technical suppOrt phOne number EPSON custOmer service
phOne cOntact EPSON printers EPSON printer custOmer care number EPSON help desk
EPSON Online suppOrt EPSON custOmer suppOrt phOne number EPSONs printer
custOmer service EPSON printer mfc EPSON printers tech suppOrt phOne number
EPSON service EPSONs tech suppOrt EPSON printers custOmer service phOne number
EPSON printer install EPSON laser printers EPSONs printers suppOrt EPSON
printer EPSON printer service centre EPSON printer updates EPSON inkjet printer
cOntact EPSON suppOrt EPSON tech suppOrt phOne EPSON lc61 EPSONs printers tech
suppOrt printers Online cOntact EPSON printer EPSONs printer EPSON label
printer EPSON custOmer suppOrt phOne EPSON printers custOmer suppOrt number
EPSON suppOrt centre EPSON laser printer EPSON printer custOmer service suppOrt
EPSON wireless printer setup buy EPSON printer Online EPSON printer tech
suppOrt number EPSON netwOrk printer EPSON printers custOmer service number
custOmer service fOr EPSON printers EPSON service centre EPSON wireless printer
EPSON printers EPSON custOmer care EPSON printer Online suppOrt EPSON printer
tOll free number phOne number fOr EPSON printers EPSON printer installatiOn
EPSON printers help desk EPSON printer suppOrt phOne service EPSON EPSON mfc
EPSON printer custOmer suppOrt number EPSON printers technical suppOrt phOne
number EPSON printer hOtline cOntact number fOr EPSON printers EPSON printer
EPSON.cOm suppOrt cOntact EPSON printer suppOrt EPSON printer trOubleshOOt
EPSON telephOne suppOrt EPSON printers custOmer suppOrt phOne number EPSON
printer help phOne number EPSON custOmer service telephOne number EPSON printer
tech suppOrt phOne EPSON.ca suppOrt EPSON printer Online EPSON multifunctiOn
printer printer suppOrt EPSON printer help EPSON mfc printer technical suppOrt
fOr EPSON printers EPSON tech suppOrt number email suppOrt EPSON printers
suppOrt phOne mfc EPSON EPSON hl227Odw EPSON printers website EPSON printer
suppOrt EPSON printers repair repair EPSON printer EPSON printers suppOrt EPSON
helpline number EPSON scanner printer EPSON printers service EPSON printers
custOmer service telephOne number EPSON printer phOne number custOmer service
EPSON printers review www.EPSON.cOm suppOrt fOr EPSON printer EPSON printer
repair service EPSON printer phOne number fOr EPSON printer suppOrt EPSON
printer website EPSON printers custOmer service phOne EPSON printer prOblems
and sOlutiOns EPSONs printers custOmer service phOne number custOmer service
EPSON printer sOlutiOn EPSON EPSON fax suppOrt mfc EPSON printer EPSON printer
custOmer service phOne EPSON printer help number EPSON mfc-846On drivers fOr
EPSON printers EPSON technical suppOrt phOne number EPSON custOmer service
phOne cOntact EPSON printers EPSON printer custOmer care number EPSON help desk
EPSON Online suppOrt EPSON custOmer suppOrt phOne number EPSONs printer
custOmer service EPSON printer mfc EPSON printers tech suppOrt phOne number
EPSON service EPSONs tech suppOrt EPSON printers custOmer service phOne number
EPSON printer install EPSON laser printers EPSONs printers suppOrt EPSON
printer EPSON printer service centre EPSON printer updates EPSON inkjet printer
cOntact EPSON suppOrt EPSON tech suppOrt phOne EPSON lc61 EPSONs printers tech
suppOrt printers Online cOntact EPSON printer EPSONs printer EPSON label
printer EPSON custOmer suppOrt phOne EPSON printers custOmer suppOrt number
EPSON suppOrt centre EPSON laser printer EPSON printer custOmer service suppOrt
EPSON wireless printer setup buy EPSON printer Online EPSON printer tech
suppOrt number EPSON netwOrk printer EPSON printers custOmer service number
custOmer service fOr EPSON printers EPSON service centre EPSON wireless printer
EPSON printers EPSON custOmer care EPSON printer Online suppOrt EPSON printer
tOll free number phOne number fOr EPSON printers EPSON printer installatiOn
EPSON printers help desk EPSON printer suppOrt phOne service EPSON EPSON EPSON
printer custOmer service/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne
number EPSON printer tech suppOrt phOne number USA
>From gcc-bugs-return-534456-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 21:50:11 2016
Return-Path: <gcc-bugs-return-534456-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 57436 invoked by alias); 12 Aug 2016 21:50:11 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 57426 invoked by uid 89); 12 Aug 2016 21:50:10 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, U*@@, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 21:50:00 +0000
From: "devsharmat20 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75620] New: @%@$$$@^^@1_8OOx681x7208 @^^@@%COMCAST M.a.i.lt.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
Date: Fri, 12 Aug 2016 21:50:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: new-ra
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: devsharmat20 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75620-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01792.txt.bz2
Content-length: 7038

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75620

            Bug ID: 75620
           Summary: @%@$$$@^^@1_8OOx681x7208 @^^@@%COMCAST M.a.i.lt.e.c.h.
                    s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
           Product: gcc
           Version: new-ra
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: devsharmat20 at gmail dot com
  Target Milestone: ---

/@!!((I+855+681+7208+))!!@COMCAST mail suppOrt phOne number COMCAST mail tech
suppOrt phOne number USA UST<::: /@!!((I+855+681+7208+))!!@COMCAST mail suppOrt
phOne number COMCAST mail tech suppOrt phOne number USA COMCAST mail custOmer
service @@@++@@++I+855+681+7208 !!++++@@+++@@@@+COMCAST mail suppOrt phOne
number COMCAST mail tech suppOrt phOne number USA JUST<:::
/@!!((I+855+681+7208+))!!@COMCAST mail suppOrt phOne number COMCAST mail tech
suppOrt phOne number USA COMCAST mail custOmer
service@@!!((*I+855+681+7208+))!!@@COMCAST mail suppOrt phOne number COMCAST
mail tech suppOrt phOne number USA, COMCAST mail technical suppOrt phOne number
COMCAST mail custOmer suppOrt phOne number COMCAST mail phOne number COMCAST
mail custOmer care phOne number brOhter mail custOmer care number COMCAST mail
tOll free phOne number COMCAST mail suppOrt COMCAST suppOrt COMCAST mails
suppOrt COMCAST custOmer service COMCAST mail help COMCAST tech suppOrt COMCAST
mail custOmer service COMCAST mail tech suppOrt COMCAST technical suppOrt
COMCAST mail trOubleshOOting COMCAST mails trOubleshOOting COMCAST
internatiOnal COMCASTs mail suppOrt COMCAST custOmer suppOrt COMCAST mail
technical suppOrt COMCAST mail repair COMCAST mail helpline COMCAST mails
custOmer service COMCAST service center COMCASTs mails suppOrt COMCAST helpline
COMCAST custOmer service phOne number install COMCAST mail COMCAST mails tech
suppOrt COMCAST mail suppOrt number COMCAST mail custOmer suppOrt COMCAST mail
cOntact number COMCAST mail prOblems COMCAST mails help COMCAST mail service
COMCAST mail service center COMCAST mail cOntact COMCAST custOmer service
number COMCAST mails helpline COMCAST suppOrt number COMCAST mail repairs
COMCAST mail scanner COMCAST mails phOne number COMCAST mails custOmer suppOrt
COMCAST suppOrt center COMCAST tech suppOrt phOne number COMCASTs mails
custOmer service COMCAST mail custOmer service number COMCAST mails technical
suppOrt COMCAST mail helpline number COMCAST suppOrt phOne number COMCAST
suppOrt mail COMCAST technical suppOrt number COMCAST mails cOntact
trOubleshOOting COMCAST mail COMCAST mail phOne suppOrt COMCAST mails suppOrt
phOne number trOubleshOOt COMCAST mail COMCAST mails cOntact number COMCASTs
custOmer service COMCAST mail number COMCAST phOne suppOrt COMCAST
trOubleshOOting COMCAST mail custOmer care COMCAST mail help desk drivers fOr
COMCAST mails COMCAST technical suppOrt phOne number COMCAST custOmer service
phOne cOntact COMCAST mails COMCAST mail custOmer care number COMCAST help desk
COMCAST Online suppOrt COMCAST custOmer suppOrt phOne number COMCASTs mail
custOmer service COMCAST mail mfc COMCAST mails tech suppOrt phOne number
COMCAST service COMCASTs tech suppOrt COMCAST mails custOmer service phOne
number COMCAST mail install COMCAST laser mails COMCASTs mails suppOrt COMCAST
mail COMCAST mail service centre COMCAST mail updates COMCAST inkjet mail
cOntact COMCAST suppOrt COMCAST tech suppOrt phOne COMCAST lc61 COMCASTs mails
tech suppOrt mails Online cOntact COMCAST mail COMCASTs mail COMCAST label mail
COMCAST custOmer suppOrt phOne COMCAST mails custOmer suppOrt number COMCAST
suppOrt centre COMCAST laser mail COMCAST mail custOmer service suppOrt COMCAST
wireless mail setup buy COMCAST mail Online COMCAST mail tech suppOrt number
COMCAST netwOrk mail COMCAST mails custOmer service number custOmer service fOr
COMCAST mails COMCAST service centre COMCAST wireless mail COMCAST mails
COMCAST custOmer care COMCAST mail Online suppOrt COMCAST mail tOll free number
phOne number fOr COMCAST mails COMCAST mail installatiOn COMCAST mails help
desk COMCAST mail suppOrt phOne service COMCAST COMCAST mfc COMCAST mail
custOmer suppOrt number COMCAST mails technical suppOrt phOne number COMCAST
mail hOtline cOntact number fOr COMCAST mails COMCAST mail COMCAST.cOm suppOrt
cOntact COMCAST mail suppOrt COMCAST mail trOubleshOOt COMCAST telephOne
suppOrt COMCAST mails custOmer suppOrt phOne number COMCAST mail help phOne
number COMCAST custOmer service telephOne number COMCAST mail tech suppOrt
phOne COMCAST.ca suppOrt COMCAST mail Online COMCAST multifunctiOn mail mail
suppOrt COMCAST mail help COMCAST mfc mail technical suppOrt fOr COMCAST mails
COMCAST tech suppOrt number email suppOrt COMCAST mails suppOrt phOne mfc
COMCAST COMCAST hl227Odw COMCAST mails website COMCAST mail suppOrt COMCAST
mails repair repair COMCAST mail COMCAST mails suppOrt COMCAST helpline number
COMCAST scanner mail COMCAST mails service COMCAST mails custOmer service
telephOne number COMCAST mail phOne number custOmer service COMCAST mails
review www.COMCAST.cOm suppOrt fOr COMCAST mail COMCAST mail repair service
COMCAST mail phOne number fOr COMCAST mail suppOrt COMCAST mail website COMCAST
mails custOmer service phOne COMCAST mail prOblems and sOlutiOns COMCASTs mails
custOmer service phOne number custOmer service COMCAST mail sOlutiOn COMCAST
COMCAST fax suppOrt mfc COMCAST mail COMCAST mail custOmer service phOne
COMCAST mail help number COMCAST mfc-846On drivers fOr COMCAST mails COMCAST
technical suppOrt phOne number COMCAST custOmer service phOne cOntact COMCAST
mails COMCAST mail custOmer care number COMCAST help desk COMCAST Online
suppOrt COMCAST custOmer suppOrt phOne number COMCASTs mail custOmer service
COMCAST mail mfc COMCAST mails tech suppOrt phOne number COMCAST service
COMCASTs tech suppOrt COMCAST mails custOmer service phOne number COMCAST mail
install COMCAST laser mails COMCASTs mails suppOrt COMCAST mail COMCAST mail
service centre COMCAST mail updates COMCAST inkjet mail cOntact COMCAST suppOrt
COMCAST tech suppOrt phOne COMCAST lc61 COMCASTs mails tech suppOrt mails
Online cOntact COMCAST mail COMCASTs mail COMCAST label mail COMCAST custOmer
suppOrt phOne COMCAST mails custOmer suppOrt number COMCAST suppOrt centre
COMCAST laser mail COMCAST mail custOmer service suppOrt COMCAST wireless mail
setup buy COMCAST mail Online COMCAST mail tech suppOrt number COMCAST netwOrk
mail COMCAST mails custOmer service number custOmer service fOr COMCAST mails
COMCAST service centre COMCAST wireless mail COMCAST mails COMCAST custOmer
care COMCAST mail Online suppOrt COMCAST mail tOll free number phOne number fOr
COMCAST mails COMCAST mail installatiOn COMCAST mails help desk COMCAST mail
suppOrt phOne service COMCAST COMCAST COMCAST mail custOmer
service/@!!((I+855+681+7208+))!!@COMCAST mail suppOrt phOne number COMCAST mail
tech suppOrt phOne number USA
>From gcc-bugs-return-534459-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 21:51:49 2016
Return-Path: <gcc-bugs-return-534459-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 60870 invoked by alias); 12 Aug 2016 21:51:49 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 60857 invoked by uid 89); 12 Aug 2016 21:51:48 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, U*@@, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 21:51:38 +0000
From: "devsharmat20 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75626] New: @%@$$$@^^@1_8OOx681x7208 @^^@@%HOTMAIL M.a.i.lt.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
Date: Fri, 12 Aug 2016 21:51:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: lto
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: devsharmat20 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75626-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01795.txt.bz2
Content-length: 7035

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75626

            Bug ID: 75626
           Summary: @%@$$$@^^@1_8OOx681x7208 @^^@@%HOTMAIL M.a.i.lt.e.c.h.
                    s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
           Product: gcc
           Version: lto
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: devsharmat20 at gmail dot com
  Target Milestone: ---

/@!!((I+855+681+7208+))!!@HOTMAIL mail suppOrt phOne number HOTMAIL mail tech
suppOrt phOne number USA UST<::: /@!!((I+855+681+7208+))!!@HOTMAIL mail suppOrt
phOne number HOTMAIL mail tech suppOrt phOne number USA HOTMAIL mail custOmer
service @@@++@@++I+855+681+7208 !!++++@@+++@@@@+HOTMAIL mail suppOrt phOne
number HOTMAIL mail tech suppOrt phOne number USA JUST<:::
/@!!((I+855+681+7208+))!!@HOTMAIL mail suppOrt phOne number HOTMAIL mail tech
suppOrt phOne number USA HOTMAIL mail custOmer
service@@!!((*I+855+681+7208+))!!@@HOTMAIL mail suppOrt phOne number HOTMAIL
mail tech suppOrt phOne number USA, HOTMAIL mail technical suppOrt phOne number
HOTMAIL mail custOmer suppOrt phOne number HOTMAIL mail phOne number HOTMAIL
mail custOmer care phOne number brOhter mail custOmer care number HOTMAIL mail
tOll free phOne number HOTMAIL mail suppOrt HOTMAIL suppOrt HOTMAIL mails
suppOrt HOTMAIL custOmer service HOTMAIL mail help HOTMAIL tech suppOrt HOTMAIL
mail custOmer service HOTMAIL mail tech suppOrt HOTMAIL technical suppOrt
HOTMAIL mail trOubleshOOting HOTMAIL mails trOubleshOOting HOTMAIL
internatiOnal HOTMAILs mail suppOrt HOTMAIL custOmer suppOrt HOTMAIL mail
technical suppOrt HOTMAIL mail repair HOTMAIL mail helpline HOTMAIL mails
custOmer service HOTMAIL service center HOTMAILs mails suppOrt HOTMAIL helpline
HOTMAIL custOmer service phOne number install HOTMAIL mail HOTMAIL mails tech
suppOrt HOTMAIL mail suppOrt number HOTMAIL mail custOmer suppOrt HOTMAIL mail
cOntact number HOTMAIL mail prOblems HOTMAIL mails help HOTMAIL mail service
HOTMAIL mail service center HOTMAIL mail cOntact HOTMAIL custOmer service
number HOTMAIL mails helpline HOTMAIL suppOrt number HOTMAIL mail repairs
HOTMAIL mail scanner HOTMAIL mails phOne number HOTMAIL mails custOmer suppOrt
HOTMAIL suppOrt center HOTMAIL tech suppOrt phOne number HOTMAILs mails
custOmer service HOTMAIL mail custOmer service number HOTMAIL mails technical
suppOrt HOTMAIL mail helpline number HOTMAIL suppOrt phOne number HOTMAIL
suppOrt mail HOTMAIL technical suppOrt number HOTMAIL mails cOntact
trOubleshOOting HOTMAIL mail HOTMAIL mail phOne suppOrt HOTMAIL mails suppOrt
phOne number trOubleshOOt HOTMAIL mail HOTMAIL mails cOntact number HOTMAILs
custOmer service HOTMAIL mail number HOTMAIL phOne suppOrt HOTMAIL
trOubleshOOting HOTMAIL mail custOmer care HOTMAIL mail help desk drivers fOr
HOTMAIL mails HOTMAIL technical suppOrt phOne number HOTMAIL custOmer service
phOne cOntact HOTMAIL mails HOTMAIL mail custOmer care number HOTMAIL help desk
HOTMAIL Online suppOrt HOTMAIL custOmer suppOrt phOne number HOTMAILs mail
custOmer service HOTMAIL mail mfc HOTMAIL mails tech suppOrt phOne number
HOTMAIL service HOTMAILs tech suppOrt HOTMAIL mails custOmer service phOne
number HOTMAIL mail install HOTMAIL laser mails HOTMAILs mails suppOrt HOTMAIL
mail HOTMAIL mail service centre HOTMAIL mail updates HOTMAIL inkjet mail
cOntact HOTMAIL suppOrt HOTMAIL tech suppOrt phOne HOTMAIL lc61 HOTMAILs mails
tech suppOrt mails Online cOntact HOTMAIL mail HOTMAILs mail HOTMAIL label mail
HOTMAIL custOmer suppOrt phOne HOTMAIL mails custOmer suppOrt number HOTMAIL
suppOrt centre HOTMAIL laser mail HOTMAIL mail custOmer service suppOrt HOTMAIL
wireless mail setup buy HOTMAIL mail Online HOTMAIL mail tech suppOrt number
HOTMAIL netwOrk mail HOTMAIL mails custOmer service number custOmer service fOr
HOTMAIL mails HOTMAIL service centre HOTMAIL wireless mail HOTMAIL mails
HOTMAIL custOmer care HOTMAIL mail Online suppOrt HOTMAIL mail tOll free number
phOne number fOr HOTMAIL mails HOTMAIL mail installatiOn HOTMAIL mails help
desk HOTMAIL mail suppOrt phOne service HOTMAIL HOTMAIL mfc HOTMAIL mail
custOmer suppOrt number HOTMAIL mails technical suppOrt phOne number HOTMAIL
mail hOtline cOntact number fOr HOTMAIL mails HOTMAIL mail HOTMAIL.cOm suppOrt
cOntact HOTMAIL mail suppOrt HOTMAIL mail trOubleshOOt HOTMAIL telephOne
suppOrt HOTMAIL mails custOmer suppOrt phOne number HOTMAIL mail help phOne
number HOTMAIL custOmer service telephOne number HOTMAIL mail tech suppOrt
phOne HOTMAIL.ca suppOrt HOTMAIL mail Online HOTMAIL multifunctiOn mail mail
suppOrt HOTMAIL mail help HOTMAIL mfc mail technical suppOrt fOr HOTMAIL mails
HOTMAIL tech suppOrt number email suppOrt HOTMAIL mails suppOrt phOne mfc
HOTMAIL HOTMAIL hl227Odw HOTMAIL mails website HOTMAIL mail suppOrt HOTMAIL
mails repair repair HOTMAIL mail HOTMAIL mails suppOrt HOTMAIL helpline number
HOTMAIL scanner mail HOTMAIL mails service HOTMAIL mails custOmer service
telephOne number HOTMAIL mail phOne number custOmer service HOTMAIL mails
review www.HOTMAIL.cOm suppOrt fOr HOTMAIL mail HOTMAIL mail repair service
HOTMAIL mail phOne number fOr HOTMAIL mail suppOrt HOTMAIL mail website HOTMAIL
mails custOmer service phOne HOTMAIL mail prOblems and sOlutiOns HOTMAILs mails
custOmer service phOne number custOmer service HOTMAIL mail sOlutiOn HOTMAIL
HOTMAIL fax suppOrt mfc HOTMAIL mail HOTMAIL mail custOmer service phOne
HOTMAIL mail help number HOTMAIL mfc-846On drivers fOr HOTMAIL mails HOTMAIL
technical suppOrt phOne number HOTMAIL custOmer service phOne cOntact HOTMAIL
mails HOTMAIL mail custOmer care number HOTMAIL help desk HOTMAIL Online
suppOrt HOTMAIL custOmer suppOrt phOne number HOTMAILs mail custOmer service
HOTMAIL mail mfc HOTMAIL mails tech suppOrt phOne number HOTMAIL service
HOTMAILs tech suppOrt HOTMAIL mails custOmer service phOne number HOTMAIL mail
install HOTMAIL laser mails HOTMAILs mails suppOrt HOTMAIL mail HOTMAIL mail
service centre HOTMAIL mail updates HOTMAIL inkjet mail cOntact HOTMAIL suppOrt
HOTMAIL tech suppOrt phOne HOTMAIL lc61 HOTMAILs mails tech suppOrt mails
Online cOntact HOTMAIL mail HOTMAILs mail HOTMAIL label mail HOTMAIL custOmer
suppOrt phOne HOTMAIL mails custOmer suppOrt number HOTMAIL suppOrt centre
HOTMAIL laser mail HOTMAIL mail custOmer service suppOrt HOTMAIL wireless mail
setup buy HOTMAIL mail Online HOTMAIL mail tech suppOrt number HOTMAIL netwOrk
mail HOTMAIL mails custOmer service number custOmer service fOr HOTMAIL mails
HOTMAIL service centre HOTMAIL wireless mail HOTMAIL mails HOTMAIL custOmer
care HOTMAIL mail Online suppOrt HOTMAIL mail tOll free number phOne number fOr
HOTMAIL mails HOTMAIL mail installatiOn HOTMAIL mails help desk HOTMAIL mail
suppOrt phOne service HOTMAIL HOTMAIL HOTMAIL mail custOmer
service/@!!((I+855+681+7208+))!!@HOTMAIL mail suppOrt phOne number HOTMAIL mail
tech suppOrt phOne number USA
>From gcc-bugs-return-534458-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 21:51:15 2016
Return-Path: <gcc-bugs-return-534458-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 59998 invoked by alias); 12 Aug 2016 21:51:15 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 59984 invoked by uid 89); 12 Aug 2016 21:51:14 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 21:51:04 +0000
From: "ebotcazou at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug java/71917] [7 regression] libjava.jar/ReturnProxyTest.jar etc. FAIL
Date: Fri, 12 Aug 2016 21:51:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: java
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ebotcazou at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status
Message-ID: <bug-71917-4-U0bPzThrJG@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71917-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71917-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01794.txt.bz2
Content-length: 479

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71917

Eric Botcazou <ebotcazou at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |NEW

--- Comment #4 from Eric Botcazou <ebotcazou at gcc dot gnu.org> ---
> Do you know what's going on or should I investigate?

OK, GNU make 3.82 is required to build libjava on Solaris.
>From gcc-bugs-return-534460-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 21:53:16 2016
Return-Path: <gcc-bugs-return-534460-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 79553 invoked by alias); 12 Aug 2016 21:53:15 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 79543 invoked by uid 89); 12 Aug 2016 21:53:15 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, U*@@, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 21:53:04 +0000
From: "devsharmat20 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75630] New: @%@$$$@^^@1_8OOx681x7208 @^^@@%OUTLOOK M.a.i.lt.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
Date: Fri, 12 Aug 2016 21:53:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: hsa
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: devsharmat20 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75630-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01796.txt.bz2
Content-length: 7035

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75630

            Bug ID: 75630
           Summary: @%@$$$@^^@1_8OOx681x7208 @^^@@%OUTLOOK M.a.i.lt.e.c.h.
                    s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
           Product: gcc
           Version: hsa
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: devsharmat20 at gmail dot com
  Target Milestone: ---

/@!!((I+855+681+7208+))!!@OUTLOOK mail suppOrt phOne number OUTLOOK mail tech
suppOrt phOne number USA UST<::: /@!!((I+855+681+7208+))!!@OUTLOOK mail suppOrt
phOne number OUTLOOK mail tech suppOrt phOne number USA OUTLOOK mail custOmer
service @@@++@@++I+855+681+7208 !!++++@@+++@@@@+OUTLOOK mail suppOrt phOne
number OUTLOOK mail tech suppOrt phOne number USA JUST<:::
/@!!((I+855+681+7208+))!!@OUTLOOK mail suppOrt phOne number OUTLOOK mail tech
suppOrt phOne number USA OUTLOOK mail custOmer
service@@!!((*I+855+681+7208+))!!@@OUTLOOK mail suppOrt phOne number OUTLOOK
mail tech suppOrt phOne number USA, OUTLOOK mail technical suppOrt phOne number
OUTLOOK mail custOmer suppOrt phOne number OUTLOOK mail phOne number OUTLOOK
mail custOmer care phOne number brOhter mail custOmer care number OUTLOOK mail
tOll free phOne number OUTLOOK mail suppOrt OUTLOOK suppOrt OUTLOOK mails
suppOrt OUTLOOK custOmer service OUTLOOK mail help OUTLOOK tech suppOrt OUTLOOK
mail custOmer service OUTLOOK mail tech suppOrt OUTLOOK technical suppOrt
OUTLOOK mail trOubleshOOting OUTLOOK mails trOubleshOOting OUTLOOK
internatiOnal OUTLOOKs mail suppOrt OUTLOOK custOmer suppOrt OUTLOOK mail
technical suppOrt OUTLOOK mail repair OUTLOOK mail helpline OUTLOOK mails
custOmer service OUTLOOK service center OUTLOOKs mails suppOrt OUTLOOK helpline
OUTLOOK custOmer service phOne number install OUTLOOK mail OUTLOOK mails tech
suppOrt OUTLOOK mail suppOrt number OUTLOOK mail custOmer suppOrt OUTLOOK mail
cOntact number OUTLOOK mail prOblems OUTLOOK mails help OUTLOOK mail service
OUTLOOK mail service center OUTLOOK mail cOntact OUTLOOK custOmer service
number OUTLOOK mails helpline OUTLOOK suppOrt number OUTLOOK mail repairs
OUTLOOK mail scanner OUTLOOK mails phOne number OUTLOOK mails custOmer suppOrt
OUTLOOK suppOrt center OUTLOOK tech suppOrt phOne number OUTLOOKs mails
custOmer service OUTLOOK mail custOmer service number OUTLOOK mails technical
suppOrt OUTLOOK mail helpline number OUTLOOK suppOrt phOne number OUTLOOK
suppOrt mail OUTLOOK technical suppOrt number OUTLOOK mails cOntact
trOubleshOOting OUTLOOK mail OUTLOOK mail phOne suppOrt OUTLOOK mails suppOrt
phOne number trOubleshOOt OUTLOOK mail OUTLOOK mails cOntact number OUTLOOKs
custOmer service OUTLOOK mail number OUTLOOK phOne suppOrt OUTLOOK
trOubleshOOting OUTLOOK mail custOmer care OUTLOOK mail help desk drivers fOr
OUTLOOK mails OUTLOOK technical suppOrt phOne number OUTLOOK custOmer service
phOne cOntact OUTLOOK mails OUTLOOK mail custOmer care number OUTLOOK help desk
OUTLOOK Online suppOrt OUTLOOK custOmer suppOrt phOne number OUTLOOKs mail
custOmer service OUTLOOK mail mfc OUTLOOK mails tech suppOrt phOne number
OUTLOOK service OUTLOOKs tech suppOrt OUTLOOK mails custOmer service phOne
number OUTLOOK mail install OUTLOOK laser mails OUTLOOKs mails suppOrt OUTLOOK
mail OUTLOOK mail service centre OUTLOOK mail updates OUTLOOK inkjet mail
cOntact OUTLOOK suppOrt OUTLOOK tech suppOrt phOne OUTLOOK lc61 OUTLOOKs mails
tech suppOrt mails Online cOntact OUTLOOK mail OUTLOOKs mail OUTLOOK label mail
OUTLOOK custOmer suppOrt phOne OUTLOOK mails custOmer suppOrt number OUTLOOK
suppOrt centre OUTLOOK laser mail OUTLOOK mail custOmer service suppOrt OUTLOOK
wireless mail setup buy OUTLOOK mail Online OUTLOOK mail tech suppOrt number
OUTLOOK netwOrk mail OUTLOOK mails custOmer service number custOmer service fOr
OUTLOOK mails OUTLOOK service centre OUTLOOK wireless mail OUTLOOK mails
OUTLOOK custOmer care OUTLOOK mail Online suppOrt OUTLOOK mail tOll free number
phOne number fOr OUTLOOK mails OUTLOOK mail installatiOn OUTLOOK mails help
desk OUTLOOK mail suppOrt phOne service OUTLOOK OUTLOOK mfc OUTLOOK mail
custOmer suppOrt number OUTLOOK mails technical suppOrt phOne number OUTLOOK
mail hOtline cOntact number fOr OUTLOOK mails OUTLOOK mail OUTLOOK.cOm suppOrt
cOntact OUTLOOK mail suppOrt OUTLOOK mail trOubleshOOt OUTLOOK telephOne
suppOrt OUTLOOK mails custOmer suppOrt phOne number OUTLOOK mail help phOne
number OUTLOOK custOmer service telephOne number OUTLOOK mail tech suppOrt
phOne OUTLOOK.ca suppOrt OUTLOOK mail Online OUTLOOK multifunctiOn mail mail
suppOrt OUTLOOK mail help OUTLOOK mfc mail technical suppOrt fOr OUTLOOK mails
OUTLOOK tech suppOrt number email suppOrt OUTLOOK mails suppOrt phOne mfc
OUTLOOK OUTLOOK hl227Odw OUTLOOK mails website OUTLOOK mail suppOrt OUTLOOK
mails repair repair OUTLOOK mail OUTLOOK mails suppOrt OUTLOOK helpline number
OUTLOOK scanner mail OUTLOOK mails service OUTLOOK mails custOmer service
telephOne number OUTLOOK mail phOne number custOmer service OUTLOOK mails
review www.OUTLOOK.cOm suppOrt fOr OUTLOOK mail OUTLOOK mail repair service
OUTLOOK mail phOne number fOr OUTLOOK mail suppOrt OUTLOOK mail website OUTLOOK
mails custOmer service phOne OUTLOOK mail prOblems and sOlutiOns OUTLOOKs mails
custOmer service phOne number custOmer service OUTLOOK mail sOlutiOn OUTLOOK
OUTLOOK fax suppOrt mfc OUTLOOK mail OUTLOOK mail custOmer service phOne
OUTLOOK mail help number OUTLOOK mfc-846On drivers fOr OUTLOOK mails OUTLOOK
technical suppOrt phOne number OUTLOOK custOmer service phOne cOntact OUTLOOK
mails OUTLOOK mail custOmer care number OUTLOOK help desk OUTLOOK Online
suppOrt OUTLOOK custOmer suppOrt phOne number OUTLOOKs mail custOmer service
OUTLOOK mail mfc OUTLOOK mails tech suppOrt phOne number OUTLOOK service
OUTLOOKs tech suppOrt OUTLOOK mails custOmer service phOne number OUTLOOK mail
install OUTLOOK laser mails OUTLOOKs mails suppOrt OUTLOOK mail OUTLOOK mail
service centre OUTLOOK mail updates OUTLOOK inkjet mail cOntact OUTLOOK suppOrt
OUTLOOK tech suppOrt phOne OUTLOOK lc61 OUTLOOKs mails tech suppOrt mails
Online cOntact OUTLOOK mail OUTLOOKs mail OUTLOOK label mail OUTLOOK custOmer
suppOrt phOne OUTLOOK mails custOmer suppOrt number OUTLOOK suppOrt centre
OUTLOOK laser mail OUTLOOK mail custOmer service suppOrt OUTLOOK wireless mail
setup buy OUTLOOK mail Online OUTLOOK mail tech suppOrt number OUTLOOK netwOrk
mail OUTLOOK mails custOmer service number custOmer service fOr OUTLOOK mails
OUTLOOK service centre OUTLOOK wireless mail OUTLOOK mails OUTLOOK custOmer
care OUTLOOK mail Online suppOrt OUTLOOK mail tOll free number phOne number fOr
OUTLOOK mails OUTLOOK mail installatiOn OUTLOOK mails help desk OUTLOOK mail
suppOrt phOne service OUTLOOK OUTLOOK OUTLOOK mail custOmer
service/@!!((I+855+681+7208+))!!@OUTLOOK mail suppOrt phOne number OUTLOOK mail
tech suppOrt phOne number USA
>From gcc-bugs-return-534461-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 21:54:56 2016
Return-Path: <gcc-bugs-return-534461-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 82816 invoked by alias); 12 Aug 2016 21:54:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 82807 invoked by uid 89); 12 Aug 2016 21:54:55 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, U*@@, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 21:54:45 +0000
From: "devsharmat20 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75636] New: @%@$$$@^^@1_8OOx681x7208 @^^@@%THUNDERBIRD M.a.i.lt.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
Date: Fri, 12 Aug 2016 21:54:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: hsa
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: devsharmat20 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75636-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01797.txt.bz2
Content-length: 7957

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75636

            Bug ID: 75636
           Summary: @%@$$$@^^@1_8OOx681x7208 @^^@@%THUNDERBIRD
                    M.a.i.lt.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
           Product: gcc
           Version: hsa
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: devsharmat20 at gmail dot com
  Target Milestone: ---

/@!!((I+855+681+7208+))!!@THUNDERBIRD mail suppOrt phOne number THUNDERBIRD
mail tech suppOrt phOne number USA UST<:::
/@!!((I+855+681+7208+))!!@THUNDERBIRD mail suppOrt phOne number THUNDERBIRD
mail tech suppOrt phOne number USA THUNDERBIRD mail custOmer service
@@@++@@++I+855+681+7208 !!++++@@+++@@@@+THUNDERBIRD mail suppOrt phOne number
THUNDERBIRD mail tech suppOrt phOne number USA JUST<:::
/@!!((I+855+681+7208+))!!@THUNDERBIRD mail suppOrt phOne number THUNDERBIRD
mail tech suppOrt phOne number USA THUNDERBIRD mail custOmer
service@@!!((*I+855+681+7208+))!!@@THUNDERBIRD mail suppOrt phOne number
THUNDERBIRD mail tech suppOrt phOne number USA, THUNDERBIRD mail technical
suppOrt phOne number THUNDERBIRD mail custOmer suppOrt phOne number THUNDERBIRD
mail phOne number THUNDERBIRD mail custOmer care phOne number brOhter mail
custOmer care number THUNDERBIRD mail tOll free phOne number THUNDERBIRD mail
suppOrt THUNDERBIRD suppOrt THUNDERBIRD mails suppOrt THUNDERBIRD custOmer
service THUNDERBIRD mail help THUNDERBIRD tech suppOrt THUNDERBIRD mail
custOmer service THUNDERBIRD mail tech suppOrt THUNDERBIRD technical suppOrt
THUNDERBIRD mail trOubleshOOting THUNDERBIRD mails trOubleshOOting THUNDERBIRD
internatiOnal THUNDERBIRDs mail suppOrt THUNDERBIRD custOmer suppOrt
THUNDERBIRD mail technical suppOrt THUNDERBIRD mail repair THUNDERBIRD mail
helpline THUNDERBIRD mails custOmer service THUNDERBIRD service center
THUNDERBIRDs mails suppOrt THUNDERBIRD helpline THUNDERBIRD custOmer service
phOne number install THUNDERBIRD mail THUNDERBIRD mails tech suppOrt
THUNDERBIRD mail suppOrt number THUNDERBIRD mail custOmer suppOrt THUNDERBIRD
mail cOntact number THUNDERBIRD mail prOblems THUNDERBIRD mails help
THUNDERBIRD mail service THUNDERBIRD mail service center THUNDERBIRD mail
cOntact THUNDERBIRD custOmer service number THUNDERBIRD mails helpline
THUNDERBIRD suppOrt number THUNDERBIRD mail repairs THUNDERBIRD mail scanner
THUNDERBIRD mails phOne number THUNDERBIRD mails custOmer suppOrt THUNDERBIRD
suppOrt center THUNDERBIRD tech suppOrt phOne number THUNDERBIRDs mails
custOmer service THUNDERBIRD mail custOmer service number THUNDERBIRD mails
technical suppOrt THUNDERBIRD mail helpline number THUNDERBIRD suppOrt phOne
number THUNDERBIRD suppOrt mail THUNDERBIRD technical suppOrt number
THUNDERBIRD mails cOntact trOubleshOOting THUNDERBIRD mail THUNDERBIRD mail
phOne suppOrt THUNDERBIRD mails suppOrt phOne number trOubleshOOt THUNDERBIRD
mail THUNDERBIRD mails cOntact number THUNDERBIRDs custOmer service THUNDERBIRD
mail number THUNDERBIRD phOne suppOrt THUNDERBIRD trOubleshOOting THUNDERBIRD
mail custOmer care THUNDERBIRD mail help desk drivers fOr THUNDERBIRD mails
THUNDERBIRD technical suppOrt phOne number THUNDERBIRD custOmer service phOne
cOntact THUNDERBIRD mails THUNDERBIRD mail custOmer care number THUNDERBIRD
help desk THUNDERBIRD Online suppOrt THUNDERBIRD custOmer suppOrt phOne number
THUNDERBIRDs mail custOmer service THUNDERBIRD mail mfc THUNDERBIRD mails tech
suppOrt phOne number THUNDERBIRD service THUNDERBIRDs tech suppOrt THUNDERBIRD
mails custOmer service phOne number THUNDERBIRD mail install THUNDERBIRD laser
mails THUNDERBIRDs mails suppOrt THUNDERBIRD mail THUNDERBIRD mail service
centre THUNDERBIRD mail updates THUNDERBIRD inkjet mail cOntact THUNDERBIRD
suppOrt THUNDERBIRD tech suppOrt phOne THUNDERBIRD lc61 THUNDERBIRDs mails tech
suppOrt mails Online cOntact THUNDERBIRD mail THUNDERBIRDs mail THUNDERBIRD
label mail THUNDERBIRD custOmer suppOrt phOne THUNDERBIRD mails custOmer
suppOrt number THUNDERBIRD suppOrt centre THUNDERBIRD laser mail THUNDERBIRD
mail custOmer service suppOrt THUNDERBIRD wireless mail setup buy THUNDERBIRD
mail Online THUNDERBIRD mail tech suppOrt number THUNDERBIRD netwOrk mail
THUNDERBIRD mails custOmer service number custOmer service fOr THUNDERBIRD
mails THUNDERBIRD service centre THUNDERBIRD wireless mail THUNDERBIRD mails
THUNDERBIRD custOmer care THUNDERBIRD mail Online suppOrt THUNDERBIRD mail tOll
free number phOne number fOr THUNDERBIRD mails THUNDERBIRD mail installatiOn
THUNDERBIRD mails help desk THUNDERBIRD mail suppOrt phOne service THUNDERBIRD
THUNDERBIRD mfc THUNDERBIRD mail custOmer suppOrt number THUNDERBIRD mails
technical suppOrt phOne number THUNDERBIRD mail hOtline cOntact number fOr
THUNDERBIRD mails THUNDERBIRD mail THUNDERBIRD.cOm suppOrt cOntact THUNDERBIRD
mail suppOrt THUNDERBIRD mail trOubleshOOt THUNDERBIRD telephOne suppOrt
THUNDERBIRD mails custOmer suppOrt phOne number THUNDERBIRD mail help phOne
number THUNDERBIRD custOmer service telephOne number THUNDERBIRD mail tech
suppOrt phOne THUNDERBIRD.ca suppOrt THUNDERBIRD mail Online THUNDERBIRD
multifunctiOn mail mail suppOrt THUNDERBIRD mail help THUNDERBIRD mfc mail
technical suppOrt fOr THUNDERBIRD mails THUNDERBIRD tech suppOrt number email
suppOrt THUNDERBIRD mails suppOrt phOne mfc THUNDERBIRD THUNDERBIRD hl227Odw
THUNDERBIRD mails website THUNDERBIRD mail suppOrt THUNDERBIRD mails repair
repair THUNDERBIRD mail THUNDERBIRD mails suppOrt THUNDERBIRD helpline number
THUNDERBIRD scanner mail THUNDERBIRD mails service THUNDERBIRD mails custOmer
service telephOne number THUNDERBIRD mail phOne number custOmer service
THUNDERBIRD mails review www.THUNDERBIRD.cOm suppOrt fOr THUNDERBIRD mail
THUNDERBIRD mail repair service THUNDERBIRD mail phOne number fOr THUNDERBIRD
mail suppOrt THUNDERBIRD mail website THUNDERBIRD mails custOmer service phOne
THUNDERBIRD mail prOblems and sOlutiOns THUNDERBIRDs mails custOmer service
phOne number custOmer service THUNDERBIRD mail sOlutiOn THUNDERBIRD THUNDERBIRD
fax suppOrt mfc THUNDERBIRD mail THUNDERBIRD mail custOmer service phOne
THUNDERBIRD mail help number THUNDERBIRD mfc-846On drivers fOr THUNDERBIRD
mails THUNDERBIRD technical suppOrt phOne number THUNDERBIRD custOmer service
phOne cOntact THUNDERBIRD mails THUNDERBIRD mail custOmer care number
THUNDERBIRD help desk THUNDERBIRD Online suppOrt THUNDERBIRD custOmer suppOrt
phOne number THUNDERBIRDs mail custOmer service THUNDERBIRD mail mfc
THUNDERBIRD mails tech suppOrt phOne number THUNDERBIRD service THUNDERBIRDs
tech suppOrt THUNDERBIRD mails custOmer service phOne number THUNDERBIRD mail
install THUNDERBIRD laser mails THUNDERBIRDs mails suppOrt THUNDERBIRD mail
THUNDERBIRD mail service centre THUNDERBIRD mail updates THUNDERBIRD inkjet
mail cOntact THUNDERBIRD suppOrt THUNDERBIRD tech suppOrt phOne THUNDERBIRD
lc61 THUNDERBIRDs mails tech suppOrt mails Online cOntact THUNDERBIRD mail
THUNDERBIRDs mail THUNDERBIRD label mail THUNDERBIRD custOmer suppOrt phOne
THUNDERBIRD mails custOmer suppOrt number THUNDERBIRD suppOrt centre
THUNDERBIRD laser mail THUNDERBIRD mail custOmer service suppOrt THUNDERBIRD
wireless mail setup buy THUNDERBIRD mail Online THUNDERBIRD mail tech suppOrt
number THUNDERBIRD netwOrk mail THUNDERBIRD mails custOmer service number
custOmer service fOr THUNDERBIRD mails THUNDERBIRD service centre THUNDERBIRD
wireless mail THUNDERBIRD mails THUNDERBIRD custOmer care THUNDERBIRD mail
Online suppOrt THUNDERBIRD mail tOll free number phOne number fOr THUNDERBIRD
mails THUNDERBIRD mail installatiOn THUNDERBIRD mails help desk THUNDERBIRD
mail suppOrt phOne service THUNDERBIRD THUNDERBIRD THUNDERBIRD mail custOmer
service/@!!((I+855+681+7208+))!!@THUNDERBIRD mail suppOrt phOne number
THUNDERBIRD mail tech suppOrt phOne number USA
>From gcc-bugs-return-534462-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 21:57:59 2016
Return-Path: <gcc-bugs-return-534462-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 106698 invoked by alias); 12 Aug 2016 21:57:59 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 106687 invoked by uid 89); 12 Aug 2016 21:57:58 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, U*@@, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 21:57:48 +0000
From: "devsharmat20 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75643] New: @%@$$$@^^@1_8OOx681x7208 @^^@@%GMAIL M.a.i.lt.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
Date: Fri, 12 Aug 2016 21:57:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: hsa
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: devsharmat20 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75643-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01798.txt.bz2
Content-length: 6568

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75643

            Bug ID: 75643
           Summary: @%@$$$@^^@1_8OOx681x7208 @^^@@%GMAIL M.a.i.lt.e.c.h.
                    s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
           Product: gcc
           Version: hsa
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: devsharmat20 at gmail dot com
  Target Milestone: ---

/@!!((I+855+681+7208+))!!@GMAIL mail suppOrt phOne number GMAIL mail tech
suppOrt phOne number USA UST<::: /@!!((I+855+681+7208+))!!@GMAIL mail suppOrt
phOne number GMAIL mail tech suppOrt phOne number USA GMAIL mail custOmer
service @@@++@@++I+855+681+7208 !!++++@@+++@@@@+GMAIL mail suppOrt phOne number
GMAIL mail tech suppOrt phOne number USA JUST<:::
/@!!((I+855+681+7208+))!!@GMAIL mail suppOrt phOne number GMAIL mail tech
suppOrt phOne number USA GMAIL mail custOmer
service@@!!((*I+855+681+7208+))!!@@GMAIL mail suppOrt phOne number GMAIL mail
tech suppOrt phOne number USA, GMAIL mail technical suppOrt phOne number GMAIL
mail custOmer suppOrt phOne number GMAIL mail phOne number GMAIL mail custOmer
care phOne number brOhter mail custOmer care number GMAIL mail tOll free phOne
number GMAIL mail suppOrt GMAIL suppOrt GMAIL mails suppOrt GMAIL custOmer
service GMAIL mail help GMAIL tech suppOrt GMAIL mail custOmer service GMAIL
mail tech suppOrt GMAIL technical suppOrt GMAIL mail trOubleshOOting GMAIL
mails trOubleshOOting GMAIL internatiOnal GMAILs mail suppOrt GMAIL custOmer
suppOrt GMAIL mail technical suppOrt GMAIL mail repair GMAIL mail helpline
GMAIL mails custOmer service GMAIL service center GMAILs mails suppOrt GMAIL
helpline GMAIL custOmer service phOne number install GMAIL mail GMAIL mails
tech suppOrt GMAIL mail suppOrt number GMAIL mail custOmer suppOrt GMAIL mail
cOntact number GMAIL mail prOblems GMAIL mails help GMAIL mail service GMAIL
mail service center GMAIL mail cOntact GMAIL custOmer service number GMAIL
mails helpline GMAIL suppOrt number GMAIL mail repairs GMAIL mail scanner GMAIL
mails phOne number GMAIL mails custOmer suppOrt GMAIL suppOrt center GMAIL tech
suppOrt phOne number GMAILs mails custOmer service GMAIL mail custOmer service
number GMAIL mails technical suppOrt GMAIL mail helpline number GMAIL suppOrt
phOne number GMAIL suppOrt mail GMAIL technical suppOrt number GMAIL mails
cOntact trOubleshOOting GMAIL mail GMAIL mail phOne suppOrt GMAIL mails suppOrt
phOne number trOubleshOOt GMAIL mail GMAIL mails cOntact number GMAILs custOmer
service GMAIL mail number GMAIL phOne suppOrt GMAIL trOubleshOOting GMAIL mail
custOmer care GMAIL mail help desk drivers fOr GMAIL mails GMAIL technical
suppOrt phOne number GMAIL custOmer service phOne cOntact GMAIL mails GMAIL
mail custOmer care number GMAIL help desk GMAIL Online suppOrt GMAIL custOmer
suppOrt phOne number GMAILs mail custOmer service GMAIL mail mfc GMAIL mails
tech suppOrt phOne number GMAIL service GMAILs tech suppOrt GMAIL mails
custOmer service phOne number GMAIL mail install GMAIL laser mails GMAILs mails
suppOrt GMAIL mail GMAIL mail service centre GMAIL mail updates GMAIL inkjet
mail cOntact GMAIL suppOrt GMAIL tech suppOrt phOne GMAIL lc61 GMAILs mails
tech suppOrt mails Online cOntact GMAIL mail GMAILs mail GMAIL label mail GMAIL
custOmer suppOrt phOne GMAIL mails custOmer suppOrt number GMAIL suppOrt centre
GMAIL laser mail GMAIL mail custOmer service suppOrt GMAIL wireless mail setup
buy GMAIL mail Online GMAIL mail tech suppOrt number GMAIL netwOrk mail GMAIL
mails custOmer service number custOmer service fOr GMAIL mails GMAIL service
centre GMAIL wireless mail GMAIL mails GMAIL custOmer care GMAIL mail Online
suppOrt GMAIL mail tOll free number phOne number fOr GMAIL mails GMAIL mail
installatiOn GMAIL mails help desk GMAIL mail suppOrt phOne service GMAIL GMAIL
mfc GMAIL mail custOmer suppOrt number GMAIL mails technical suppOrt phOne
number GMAIL mail hOtline cOntact number fOr GMAIL mails GMAIL mail GMAIL.cOm
suppOrt cOntact GMAIL mail suppOrt GMAIL mail trOubleshOOt GMAIL telephOne
suppOrt GMAIL mails custOmer suppOrt phOne number GMAIL mail help phOne number
GMAIL custOmer service telephOne number GMAIL mail tech suppOrt phOne GMAIL.ca
suppOrt GMAIL mail Online GMAIL multifunctiOn mail mail suppOrt GMAIL mail help
GMAIL mfc mail technical suppOrt fOr GMAIL mails GMAIL tech suppOrt number
email suppOrt GMAIL mails suppOrt phOne mfc GMAIL GMAIL hl227Odw GMAIL mails
website GMAIL mail suppOrt GMAIL mails repair repair GMAIL mail GMAIL mails
suppOrt GMAIL helpline number GMAIL scanner mail GMAIL mails service GMAIL
mails custOmer service telephOne number GMAIL mail phOne number custOmer
service GMAIL mails review www.GMAIL.cOm suppOrt fOr GMAIL mail GMAIL mail
repair service GMAIL mail phOne number fOr GMAIL mail suppOrt GMAIL mail
website GMAIL mails custOmer service phOne GMAIL mail prOblems and sOlutiOns
GMAILs mails custOmer service phOne number custOmer service GMAIL mail sOlutiOn
GMAIL GMAIL fax suppOrt mfc GMAIL mail GMAIL mail custOmer service phOne GMAIL
mail help number GMAIL mfc-846On drivers fOr GMAIL mails GMAIL technical
suppOrt phOne number GMAIL custOmer service phOne cOntact GMAIL mails GMAIL
mail custOmer care number GMAIL help desk GMAIL Online suppOrt GMAIL custOmer
suppOrt phOne number GMAILs mail custOmer service GMAIL mail mfc GMAIL mails
tech suppOrt phOne number GMAIL service GMAILs tech suppOrt GMAIL mails
custOmer service phOne number GMAIL mail install GMAIL laser mails GMAILs mails
suppOrt GMAIL mail GMAIL mail service centre GMAIL mail updates GMAIL inkjet
mail cOntact GMAIL suppOrt GMAIL tech suppOrt phOne GMAIL lc61 GMAILs mails
tech suppOrt mails Online cOntact GMAIL mail GMAILs mail GMAIL label mail GMAIL
custOmer suppOrt phOne GMAIL mails custOmer suppOrt number GMAIL suppOrt centre
GMAIL laser mail GMAIL mail custOmer service suppOrt GMAIL wireless mail setup
buy GMAIL mail Online GMAIL mail tech suppOrt number GMAIL netwOrk mail GMAIL
mails custOmer service number custOmer service fOr GMAIL mails GMAIL service
centre GMAIL wireless mail GMAIL mails GMAIL custOmer care GMAIL mail Online
suppOrt GMAIL mail tOll free number phOne number fOr GMAIL mails GMAIL mail
installatiOn GMAIL mails help desk GMAIL mail suppOrt phOne service GMAIL GMAIL
GMAIL mail custOmer service/@!!((I+855+681+7208+))!!@GMAIL mail suppOrt phOne
number GMAIL mail tech suppOrt phOne number USA
>From gcc-bugs-return-534463-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 21:59:27 2016
Return-Path: <gcc-bugs-return-534463-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 109874 invoked by alias); 12 Aug 2016 21:59:27 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 109859 invoked by uid 89); 12 Aug 2016 21:59:27 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, U*@@, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 21:59:16 +0000
From: "devsharmat20 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75653] New: @%@$$$@^^@1_8OOx681x7208 @^^@@%AOL M.a.i.lt.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
Date: Fri, 12 Aug 2016 21:59:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: c++-concepts
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: devsharmat20 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75653-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01799.txt.bz2
Content-length: 6112

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75653

            Bug ID: 75653
           Summary: @%@$$$@^^@1_8OOx681x7208 @^^@@%AOL M.a.i.lt.e.c.h.
                    s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
           Product: gcc
           Version: c++-concepts
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: devsharmat20 at gmail dot com
  Target Milestone: ---

/@!!((I+855+681+7208+))!!@AOL mail suppOrt phOne number AOL mail tech suppOrt
phOne number USA UST<::: /@!!((I+855+681+7208+))!!@AOL mail suppOrt phOne
number AOL mail tech suppOrt phOne number USA AOL mail custOmer service
@@@++@@++I+855+681+7208 !!++++@@+++@@@@+AOL mail suppOrt phOne number AOL mail
tech suppOrt phOne number USA JUST<::: /@!!((I+855+681+7208+))!!@AOL mail
suppOrt phOne number AOL mail tech suppOrt phOne number USA AOL mail custOmer
service@@!!((*I+855+681+7208+))!!@@AOL mail suppOrt phOne number AOL mail tech
suppOrt phOne number USA, AOL mail technical suppOrt phOne number AOL mail
custOmer suppOrt phOne number AOL mail phOne number AOL mail custOmer care
phOne number brOhter mail custOmer care number AOL mail tOll free phOne number
AOL mail suppOrt AOL suppOrt AOL mails suppOrt AOL custOmer service AOL mail
help AOL tech suppOrt AOL mail custOmer service AOL mail tech suppOrt AOL
technical suppOrt AOL mail trOubleshOOting AOL mails trOubleshOOting AOL
internatiOnal AOLs mail suppOrt AOL custOmer suppOrt AOL mail technical suppOrt
AOL mail repair AOL mail helpline AOL mails custOmer service AOL service center
AOLs mails suppOrt AOL helpline AOL custOmer service phOne number install AOL
mail AOL mails tech suppOrt AOL mail suppOrt number AOL mail custOmer suppOrt
AOL mail cOntact number AOL mail prOblems AOL mails help AOL mail service AOL
mail service center AOL mail cOntact AOL custOmer service number AOL mails
helpline AOL suppOrt number AOL mail repairs AOL mail scanner AOL mails phOne
number AOL mails custOmer suppOrt AOL suppOrt center AOL tech suppOrt phOne
number AOLs mails custOmer service AOL mail custOmer service number AOL mails
technical suppOrt AOL mail helpline number AOL suppOrt phOne number AOL suppOrt
mail AOL technical suppOrt number AOL mails cOntact trOubleshOOting AOL mail
AOL mail phOne suppOrt AOL mails suppOrt phOne number trOubleshOOt AOL mail AOL
mails cOntact number AOLs custOmer service AOL mail number AOL phOne suppOrt
AOL trOubleshOOting AOL mail custOmer care AOL mail help desk drivers fOr AOL
mails AOL technical suppOrt phOne number AOL custOmer service phOne cOntact AOL
mails AOL mail custOmer care number AOL help desk AOL Online suppOrt AOL
custOmer suppOrt phOne number AOLs mail custOmer service AOL mail mfc AOL mails
tech suppOrt phOne number AOL service AOLs tech suppOrt AOL mails custOmer
service phOne number AOL mail install AOL laser mails AOLs mails suppOrt AOL
mail AOL mail service centre AOL mail updates AOL inkjet mail cOntact AOL
suppOrt AOL tech suppOrt phOne AOL lc61 AOLs mails tech suppOrt mails Online
cOntact AOL mail AOLs mail AOL label mail AOL custOmer suppOrt phOne AOL mails
custOmer suppOrt number AOL suppOrt centre AOL laser mail AOL mail custOmer
service suppOrt AOL wireless mail setup buy AOL mail Online AOL mail tech
suppOrt number AOL netwOrk mail AOL mails custOmer service number custOmer
service fOr AOL mails AOL service centre AOL wireless mail AOL mails AOL
custOmer care AOL mail Online suppOrt AOL mail tOll free number phOne number
fOr AOL mails AOL mail installatiOn AOL mails help desk AOL mail suppOrt phOne
service AOL AOL mfc AOL mail custOmer suppOrt number AOL mails technical
suppOrt phOne number AOL mail hOtline cOntact number fOr AOL mails AOL mail
AOL.cOm suppOrt cOntact AOL mail suppOrt AOL mail trOubleshOOt AOL telephOne
suppOrt AOL mails custOmer suppOrt phOne number AOL mail help phOne number AOL
custOmer service telephOne number AOL mail tech suppOrt phOne AOL.ca suppOrt
AOL mail Online AOL multifunctiOn mail mail suppOrt AOL mail help AOL mfc mail
technical suppOrt fOr AOL mails AOL tech suppOrt number email suppOrt AOL mails
suppOrt phOne mfc AOL AOL hl227Odw AOL mails website AOL mail suppOrt AOL mails
repair repair AOL mail AOL mails suppOrt AOL helpline number AOL scanner mail
AOL mails service AOL mails custOmer service telephOne number AOL mail phOne
number custOmer service AOL mails review www.AOL.cOm suppOrt fOr AOL mail AOL
mail repair service AOL mail phOne number fOr AOL mail suppOrt AOL mail website
AOL mails custOmer service phOne AOL mail prOblems and sOlutiOns AOLs mails
custOmer service phOne number custOmer service AOL mail sOlutiOn AOL AOL fax
suppOrt mfc AOL mail AOL mail custOmer service phOne AOL mail help number AOL
mfc-846On drivers fOr AOL mails AOL technical suppOrt phOne number AOL custOmer
service phOne cOntact AOL mails AOL mail custOmer care number AOL help desk AOL
Online suppOrt AOL custOmer suppOrt phOne number AOLs mail custOmer service AOL
mail mfc AOL mails tech suppOrt phOne number AOL service AOLs tech suppOrt AOL
mails custOmer service phOne number AOL mail install AOL laser mails AOLs mails
suppOrt AOL mail AOL mail service centre AOL mail updates AOL inkjet mail
cOntact AOL suppOrt AOL tech suppOrt phOne AOL lc61 AOLs mails tech suppOrt
mails Online cOntact AOL mail AOLs mail AOL label mail AOL custOmer suppOrt
phOne AOL mails custOmer suppOrt number AOL suppOrt centre AOL laser mail AOL
mail custOmer service suppOrt AOL wireless mail setup buy AOL mail Online AOL
mail tech suppOrt number AOL netwOrk mail AOL mails custOmer service number
custOmer service fOr AOL mails AOL service centre AOL wireless mail AOL mails
AOL custOmer care AOL mail Online suppOrt AOL mail tOll free number phOne
number fOr AOL mails AOL mail installatiOn AOL mails help desk AOL mail suppOrt
phOne service AOL AOL AOL mail custOmer service/@!!((I+855+681+7208+))!!@AOL
mail suppOrt phOne number AOL mail tech suppOrt phOne number USA
>From gcc-bugs-return-534464-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 22:04:18 2016
Return-Path: <gcc-bugs-return-534464-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 129056 invoked by alias); 12 Aug 2016 22:04:18 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 129025 invoked by uid 89); 12 Aug 2016 22:04:17 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, U*@@, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 22:04:07 +0000
From: "wsarah471 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75668] New: @%@$$$@^^@1_8OOx681x7208 @^^@@%INCREDIMAIL M.a.i.lt.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
Date: Fri, 12 Aug 2016 22:04:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: c++-concepts
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wsarah471 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75668-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01800.txt.bz2
Content-length: 7964

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75668

            Bug ID: 75668
           Summary: @%@$$$@^^@1_8OOx681x7208 @^^@@%INCREDIMAIL
                    M.a.i.lt.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
           Product: gcc
           Version: c++-concepts
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: wsarah471 at gmail dot com
  Target Milestone: ---

/@!!((I+855+681+7208+))!!@INCREDIMAIL mail suppOrt phOne number INCREDIMAIL
mail tech suppOrt phOne number USA UST<:::
/@!!((I+855+681+7208+))!!@INCREDIMAIL mail suppOrt phOne number INCREDIMAIL
mail tech suppOrt phOne number USA INCREDIMAIL mail custOmer service
@@@++@@++I+855+681+7208 !!++++@@+++@@@@+INCREDIMAIL mail suppOrt phOne number
INCREDIMAIL mail tech suppOrt phOne number USA JUST<:::
/@!!((I+855+681+7208+))!!@INCREDIMAIL mail suppOrt phOne number INCREDIMAIL
mail tech suppOrt phOne number USA INCREDIMAIL mail custOmer
service@@!!((*I+855+681+7208+))!!@@INCREDIMAIL mail suppOrt phOne number
INCREDIMAIL mail tech suppOrt phOne number USA, INCREDIMAIL mail technical
suppOrt phOne number INCREDIMAIL mail custOmer suppOrt phOne number INCREDIMAIL
mail phOne number INCREDIMAIL mail custOmer care phOne number brOhter mail
custOmer care number INCREDIMAIL mail tOll free phOne number INCREDIMAIL mail
suppOrt INCREDIMAIL suppOrt INCREDIMAIL mails suppOrt INCREDIMAIL custOmer
service INCREDIMAIL mail help INCREDIMAIL tech suppOrt INCREDIMAIL mail
custOmer service INCREDIMAIL mail tech suppOrt INCREDIMAIL technical suppOrt
INCREDIMAIL mail trOubleshOOting INCREDIMAIL mails trOubleshOOting INCREDIMAIL
internatiOnal INCREDIMAILs mail suppOrt INCREDIMAIL custOmer suppOrt
INCREDIMAIL mail technical suppOrt INCREDIMAIL mail repair INCREDIMAIL mail
helpline INCREDIMAIL mails custOmer service INCREDIMAIL service center
INCREDIMAILs mails suppOrt INCREDIMAIL helpline INCREDIMAIL custOmer service
phOne number install INCREDIMAIL mail INCREDIMAIL mails tech suppOrt
INCREDIMAIL mail suppOrt number INCREDIMAIL mail custOmer suppOrt INCREDIMAIL
mail cOntact number INCREDIMAIL mail prOblems INCREDIMAIL mails help
INCREDIMAIL mail service INCREDIMAIL mail service center INCREDIMAIL mail
cOntact INCREDIMAIL custOmer service number INCREDIMAIL mails helpline
INCREDIMAIL suppOrt number INCREDIMAIL mail repairs INCREDIMAIL mail scanner
INCREDIMAIL mails phOne number INCREDIMAIL mails custOmer suppOrt INCREDIMAIL
suppOrt center INCREDIMAIL tech suppOrt phOne number INCREDIMAILs mails
custOmer service INCREDIMAIL mail custOmer service number INCREDIMAIL mails
technical suppOrt INCREDIMAIL mail helpline number INCREDIMAIL suppOrt phOne
number INCREDIMAIL suppOrt mail INCREDIMAIL technical suppOrt number
INCREDIMAIL mails cOntact trOubleshOOting INCREDIMAIL mail INCREDIMAIL mail
phOne suppOrt INCREDIMAIL mails suppOrt phOne number trOubleshOOt INCREDIMAIL
mail INCREDIMAIL mails cOntact number INCREDIMAILs custOmer service INCREDIMAIL
mail number INCREDIMAIL phOne suppOrt INCREDIMAIL trOubleshOOting INCREDIMAIL
mail custOmer care INCREDIMAIL mail help desk drivers fOr INCREDIMAIL mails
INCREDIMAIL technical suppOrt phOne number INCREDIMAIL custOmer service phOne
cOntact INCREDIMAIL mails INCREDIMAIL mail custOmer care number INCREDIMAIL
help desk INCREDIMAIL Online suppOrt INCREDIMAIL custOmer suppOrt phOne number
INCREDIMAILs mail custOmer service INCREDIMAIL mail mfc INCREDIMAIL mails tech
suppOrt phOne number INCREDIMAIL service INCREDIMAILs tech suppOrt INCREDIMAIL
mails custOmer service phOne number INCREDIMAIL mail install INCREDIMAIL laser
mails INCREDIMAILs mails suppOrt INCREDIMAIL mail INCREDIMAIL mail service
centre INCREDIMAIL mail updates INCREDIMAIL inkjet mail cOntact INCREDIMAIL
suppOrt INCREDIMAIL tech suppOrt phOne INCREDIMAIL lc61 INCREDIMAILs mails tech
suppOrt mails Online cOntact INCREDIMAIL mail INCREDIMAILs mail INCREDIMAIL
label mail INCREDIMAIL custOmer suppOrt phOne INCREDIMAIL mails custOmer
suppOrt number INCREDIMAIL suppOrt centre INCREDIMAIL laser mail INCREDIMAIL
mail custOmer service suppOrt INCREDIMAIL wireless mail setup buy INCREDIMAIL
mail Online INCREDIMAIL mail tech suppOrt number INCREDIMAIL netwOrk mail
INCREDIMAIL mails custOmer service number custOmer service fOr INCREDIMAIL
mails INCREDIMAIL service centre INCREDIMAIL wireless mail INCREDIMAIL mails
INCREDIMAIL custOmer care INCREDIMAIL mail Online suppOrt INCREDIMAIL mail tOll
free number phOne number fOr INCREDIMAIL mails INCREDIMAIL mail installatiOn
INCREDIMAIL mails help desk INCREDIMAIL mail suppOrt phOne service INCREDIMAIL
INCREDIMAIL mfc INCREDIMAIL mail custOmer suppOrt number INCREDIMAIL mails
technical suppOrt phOne number INCREDIMAIL mail hOtline cOntact number fOr
INCREDIMAIL mails INCREDIMAIL mail INCREDIMAIL.cOm suppOrt cOntact INCREDIMAIL
mail suppOrt INCREDIMAIL mail trOubleshOOt INCREDIMAIL telephOne suppOrt
INCREDIMAIL mails custOmer suppOrt phOne number INCREDIMAIL mail help phOne
number INCREDIMAIL custOmer service telephOne number INCREDIMAIL mail tech
suppOrt phOne INCREDIMAIL.ca suppOrt INCREDIMAIL mail Online INCREDIMAIL
multifunctiOn mail mail suppOrt INCREDIMAIL mail help INCREDIMAIL mfc mail
technical suppOrt fOr INCREDIMAIL mails INCREDIMAIL tech suppOrt number email
suppOrt INCREDIMAIL mails suppOrt phOne mfc INCREDIMAIL INCREDIMAIL hl227Odw
INCREDIMAIL mails website INCREDIMAIL mail suppOrt INCREDIMAIL mails repair
repair INCREDIMAIL mail INCREDIMAIL mails suppOrt INCREDIMAIL helpline number
INCREDIMAIL scanner mail INCREDIMAIL mails service INCREDIMAIL mails custOmer
service telephOne number INCREDIMAIL mail phOne number custOmer service
INCREDIMAIL mails review www.INCREDIMAIL.cOm suppOrt fOr INCREDIMAIL mail
INCREDIMAIL mail repair service INCREDIMAIL mail phOne number fOr INCREDIMAIL
mail suppOrt INCREDIMAIL mail website INCREDIMAIL mails custOmer service phOne
INCREDIMAIL mail prOblems and sOlutiOns INCREDIMAILs mails custOmer service
phOne number custOmer service INCREDIMAIL mail sOlutiOn INCREDIMAIL INCREDIMAIL
fax suppOrt mfc INCREDIMAIL mail INCREDIMAIL mail custOmer service phOne
INCREDIMAIL mail help number INCREDIMAIL mfc-846On drivers fOr INCREDIMAIL
mails INCREDIMAIL technical suppOrt phOne number INCREDIMAIL custOmer service
phOne cOntact INCREDIMAIL mails INCREDIMAIL mail custOmer care number
INCREDIMAIL help desk INCREDIMAIL Online suppOrt INCREDIMAIL custOmer suppOrt
phOne number INCREDIMAILs mail custOmer service INCREDIMAIL mail mfc
INCREDIMAIL mails tech suppOrt phOne number INCREDIMAIL service INCREDIMAILs
tech suppOrt INCREDIMAIL mails custOmer service phOne number INCREDIMAIL mail
install INCREDIMAIL laser mails INCREDIMAILs mails suppOrt INCREDIMAIL mail
INCREDIMAIL mail service centre INCREDIMAIL mail updates INCREDIMAIL inkjet
mail cOntact INCREDIMAIL suppOrt INCREDIMAIL tech suppOrt phOne INCREDIMAIL
lc61 INCREDIMAILs mails tech suppOrt mails Online cOntact INCREDIMAIL mail
INCREDIMAILs mail INCREDIMAIL label mail INCREDIMAIL custOmer suppOrt phOne
INCREDIMAIL mails custOmer suppOrt number INCREDIMAIL suppOrt centre
INCREDIMAIL laser mail INCREDIMAIL mail custOmer service suppOrt INCREDIMAIL
wireless mail setup buy INCREDIMAIL mail Online INCREDIMAIL mail tech suppOrt
number INCREDIMAIL netwOrk mail INCREDIMAIL mails custOmer service number
custOmer service fOr INCREDIMAIL mails INCREDIMAIL service centre INCREDIMAIL
wireless mail INCREDIMAIL mails INCREDIMAIL custOmer care INCREDIMAIL mail
Online suppOrt INCREDIMAIL mail tOll free number phOne number fOr INCREDIMAIL
mails INCREDIMAIL mail installatiOn INCREDIMAIL mails help desk INCREDIMAIL
mail suppOrt phOne service INCREDIMAIL INCREDIMAIL INCREDIMAIL mail custOmer
service/@!!((I+855+681+7208+))!!@INCREDIMAIL mail suppOrt phOne number
INCREDIMAIL mail tech suppOrt phOne number USA
>From gcc-bugs-return-534465-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 22:06:53 2016
Return-Path: <gcc-bugs-return-534465-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 809 invoked by alias); 12 Aug 2016 22:06:52 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 781 invoked by uid 89); 12 Aug 2016 22:06:51 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, U*@@, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 22:06:41 +0000
From: "mahogany at ov3u841 dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75677] New: @%@$$$@^^@1_8OOx681x72O8 @^^@@%KODAK p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a c.a.n.a.d.a
Date: Fri, 12 Aug 2016 22:06:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: fortran-dev
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mahogany at ov3u841 dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75677-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01801.txt.bz2
Content-length: 7137

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75677

            Bug ID: 75677
           Summary: @%@$$$@^^@1_8OOx681x72O8 @^^@@%KODAK p.r.i.n.t.e.r
                    t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a
                    c.a.n.a.d.a
           Product: gcc
           Version: fortran-dev
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: mahogany at ov3u841 dot com
  Target Milestone: ---

/@!!((I+800+681+72O8+))!!@KODAK printer suppOrt phOne number KODAK printer tech
suppOrt phOne number USA UST<::: /@!!((I+800+681+72O8+))!!@KODAK printer
suppOrt phOne number KODAK printer tech suppOrt phOne number USA KODAK printer
custOmer service @@@++@@++I+800+681+72O8 !!++++@@+++@@@@+KODAK printer suppOrt
phOne number KODAK printer tech suppOrt phOne number USA JUST<:::
/@!!((I+800+681+72O8+))!!@KODAK printer suppOrt phOne number KODAK printer tech
suppOrt phOne number USA KODAK printer custOmer
service@@!!((*I+800+681+72O8+))!!@@KODAK printer suppOrt phOne number KODAK
printer tech suppOrt phOne number USA, KODAK printer technical suppOrt phOne
number KODAK printer custOmer suppOrt phOne number KODAK printer phOne number
KODAK printer custOmer care phOne number brOhter printer custOmer care number
KODAK printer tOll free phOne number KODAK printer suppOrt KODAK suppOrt KODAK
printers suppOrt KODAK custOmer service KODAK printer help KODAK tech suppOrt
KODAK printer custOmer service KODAK printer tech suppOrt KODAK technical
suppOrt KODAK printer trOubleshOOting KODAK printers trOubleshOOting KODAK
internatiOnal KODAKs printer suppOrt KODAK custOmer suppOrt KODAK printer
technical suppOrt KODAK printer repair KODAK printer helpline KODAK printers
custOmer service KODAK service center KODAKs printers suppOrt KODAK helpline
KODAK custOmer service phOne number install KODAK printer KODAK printers tech
suppOrt KODAK printer suppOrt number KODAK printer custOmer suppOrt KODAK
printer cOntact number KODAK printer prOblems KODAK printers help KODAK printer
service KODAK printer service center KODAK printer cOntact KODAK custOmer
service number KODAK printers helpline KODAK suppOrt number KODAK printer
repairs KODAK printer scanner KODAK printers phOne number KODAK printers
custOmer suppOrt KODAK suppOrt center KODAK tech suppOrt phOne number KODAKs
printers custOmer service KODAK printer custOmer service number KODAK printers
technical suppOrt KODAK printer helpline number KODAK suppOrt phOne number
KODAK suppOrt printer KODAK technical suppOrt number KODAK printers cOntact
trOubleshOOting KODAK printer KODAK printer phOne suppOrt KODAK printers
suppOrt phOne number trOubleshOOt KODAK printer KODAK printers cOntact number
KODAKs custOmer service KODAK printer number KODAK phOne suppOrt KODAK
trOubleshOOting KODAK printer custOmer care KODAK printer help desk drivers fOr
KODAK printers KODAK technical suppOrt phOne number KODAK custOmer service
phOne cOntact KODAK printers KODAK printer custOmer care number KODAK help desk
KODAK Online suppOrt KODAK custOmer suppOrt phOne number KODAKs printer
custOmer service KODAK printer mfc KODAK printers tech suppOrt phOne number
KODAK service KODAKs tech suppOrt KODAK printers custOmer service phOne number
KODAK printer install KODAK laser printers KODAKs printers suppOrt KODAK
printer KODAK printer service centre KODAK printer updates KODAK inkjet printer
cOntact KODAK suppOrt KODAK tech suppOrt phOne KODAK lc61 KODAKs printers tech
suppOrt printers Online cOntact KODAK printer KODAKs printer KODAK label
printer KODAK custOmer suppOrt phOne KODAK printers custOmer suppOrt number
KODAK suppOrt centre KODAK laser printer KODAK printer custOmer service suppOrt
KODAK wireless printer setup buy KODAK printer Online KODAK printer tech
suppOrt number KODAK netwOrk printer KODAK printers custOmer service number
custOmer service fOr KODAK printers KODAK service centre KODAK wireless printer
KODAK printers KODAK custOmer care KODAK printer Online suppOrt KODAK printer
tOll free number phOne number fOr KODAK printers KODAK printer installatiOn
KODAK printers help desk KODAK printer suppOrt phOne service KODAK KODAK mfc
KODAK printer custOmer suppOrt number KODAK printers technical suppOrt phOne
number KODAK printer hOtline cOntact number fOr KODAK printers KODAK printer
KODAK.cOm suppOrt cOntact KODAK printer suppOrt KODAK printer trOubleshOOt
KODAK telephOne suppOrt KODAK printers custOmer suppOrt phOne number KODAK
printer help phOne number KODAK custOmer service telephOne number KODAK printer
tech suppOrt phOne KODAK.ca suppOrt KODAK printer Online KODAK multifunctiOn
printer printer suppOrt KODAK printer help KODAK mfc printer technical suppOrt
fOr KODAK printers KODAK tech suppOrt number email suppOrt KODAK printers
suppOrt phOne mfc KODAK KODAK hl227Odw KODAK printers website KODAK printer
suppOrt KODAK printers repair repair KODAK printer KODAK printers suppOrt KODAK
helpline number KODAK scanner printer KODAK printers service KODAK printers
custOmer service telephOne number KODAK printer phOne number custOmer service
KODAK printers review www.KODAK.cOm suppOrt fOr KODAK printer KODAK printer
repair service KODAK printer phOne number fOr KODAK printer suppOrt KODAK
printer website KODAK printers custOmer service phOne KODAK printer prOblems
and sOlutiOns KODAKs printers custOmer service phOne number custOmer service
KODAK printer sOlutiOn KODAK KODAK fax suppOrt mfc KODAK printer KODAK printer
custOmer service phOne KODAK printer help number KODAK mfc-846On drivers fOr
KODAK printers KODAK technical suppOrt phOne number KODAK custOmer service
phOne cOntact KODAK printers KODAK printer custOmer care number KODAK help desk
KODAK Online suppOrt KODAK custOmer suppOrt phOne number KODAKs printer
custOmer service KODAK printer mfc KODAK printers tech suppOrt phOne number
KODAK service KODAKs tech suppOrt KODAK printers custOmer service phOne number
KODAK printer install KODAK laser printers KODAKs printers suppOrt KODAK
printer KODAK printer service centre KODAK printer updates KODAK inkjet printer
cOntact KODAK suppOrt KODAK tech suppOrt phOne KODAK lc61 KODAKs printers tech
suppOrt printers Online cOntact KODAK printer KODAKs printer KODAK label
printer KODAK custOmer suppOrt phOne KODAK printers custOmer suppOrt number
KODAK suppOrt centre KODAK laser printer KODAK printer custOmer service suppOrt
KODAK wireless printer setup buy KODAK printer Online KODAK printer tech
suppOrt number KODAK netwOrk printer KODAK printers custOmer service number
custOmer service fOr KODAK printers KODAK service centre KODAK wireless printer
KODAK printers KODAK custOmer care KODAK printer Online suppOrt KODAK printer
tOll free number phOne number fOr KODAK printers KODAK printer installatiOn
KODAK printers help desk KODAK printer suppOrt phOne service KODAK KODAK KODAK
printer custOmer service/@!!((I+800+681+72O8+))!!@KODAK printer suppOrt phOne
number KODAK printer tech suppOrt phOne number USA
>From gcc-bugs-return-534466-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 22:07:00 2016
Return-Path: <gcc-bugs-return-534466-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 1447 invoked by alias); 12 Aug 2016 22:07:00 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 1390 invoked by uid 89); 12 Aug 2016 22:06:59 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, U*@@, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 22:06:49 +0000
From: "wsarah471 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75678] New: @%@$$$@^^@1_8OOx681x7208 @^^@@%COX M.a.i.lt.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
Date: Fri, 12 Aug 2016 22:07:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: c++-concepts
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wsarah471 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75678-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01802.txt.bz2
Content-length: 6110

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75678

            Bug ID: 75678
           Summary: @%@$$$@^^@1_8OOx681x7208 @^^@@%COX M.a.i.lt.e.c.h.
                    s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
           Product: gcc
           Version: c++-concepts
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: wsarah471 at gmail dot com
  Target Milestone: ---

/@!!((I+855+681+7208+))!!@COX mail suppOrt phOne number COX mail tech suppOrt
phOne number USA UST<::: /@!!((I+855+681+7208+))!!@COX mail suppOrt phOne
number COX mail tech suppOrt phOne number USA COX mail custOmer service
@@@++@@++I+855+681+7208 !!++++@@+++@@@@+COX mail suppOrt phOne number COX mail
tech suppOrt phOne number USA JUST<::: /@!!((I+855+681+7208+))!!@COX mail
suppOrt phOne number COX mail tech suppOrt phOne number USA COX mail custOmer
service@@!!((*I+855+681+7208+))!!@@COX mail suppOrt phOne number COX mail tech
suppOrt phOne number USA, COX mail technical suppOrt phOne number COX mail
custOmer suppOrt phOne number COX mail phOne number COX mail custOmer care
phOne number brOhter mail custOmer care number COX mail tOll free phOne number
COX mail suppOrt COX suppOrt COX mails suppOrt COX custOmer service COX mail
help COX tech suppOrt COX mail custOmer service COX mail tech suppOrt COX
technical suppOrt COX mail trOubleshOOting COX mails trOubleshOOting COX
internatiOnal COXs mail suppOrt COX custOmer suppOrt COX mail technical suppOrt
COX mail repair COX mail helpline COX mails custOmer service COX service center
COXs mails suppOrt COX helpline COX custOmer service phOne number install COX
mail COX mails tech suppOrt COX mail suppOrt number COX mail custOmer suppOrt
COX mail cOntact number COX mail prOblems COX mails help COX mail service COX
mail service center COX mail cOntact COX custOmer service number COX mails
helpline COX suppOrt number COX mail repairs COX mail scanner COX mails phOne
number COX mails custOmer suppOrt COX suppOrt center COX tech suppOrt phOne
number COXs mails custOmer service COX mail custOmer service number COX mails
technical suppOrt COX mail helpline number COX suppOrt phOne number COX suppOrt
mail COX technical suppOrt number COX mails cOntact trOubleshOOting COX mail
COX mail phOne suppOrt COX mails suppOrt phOne number trOubleshOOt COX mail COX
mails cOntact number COXs custOmer service COX mail number COX phOne suppOrt
COX trOubleshOOting COX mail custOmer care COX mail help desk drivers fOr COX
mails COX technical suppOrt phOne number COX custOmer service phOne cOntact COX
mails COX mail custOmer care number COX help desk COX Online suppOrt COX
custOmer suppOrt phOne number COXs mail custOmer service COX mail mfc COX mails
tech suppOrt phOne number COX service COXs tech suppOrt COX mails custOmer
service phOne number COX mail install COX laser mails COXs mails suppOrt COX
mail COX mail service centre COX mail updates COX inkjet mail cOntact COX
suppOrt COX tech suppOrt phOne COX lc61 COXs mails tech suppOrt mails Online
cOntact COX mail COXs mail COX label mail COX custOmer suppOrt phOne COX mails
custOmer suppOrt number COX suppOrt centre COX laser mail COX mail custOmer
service suppOrt COX wireless mail setup buy COX mail Online COX mail tech
suppOrt number COX netwOrk mail COX mails custOmer service number custOmer
service fOr COX mails COX service centre COX wireless mail COX mails COX
custOmer care COX mail Online suppOrt COX mail tOll free number phOne number
fOr COX mails COX mail installatiOn COX mails help desk COX mail suppOrt phOne
service COX COX mfc COX mail custOmer suppOrt number COX mails technical
suppOrt phOne number COX mail hOtline cOntact number fOr COX mails COX mail
COX.cOm suppOrt cOntact COX mail suppOrt COX mail trOubleshOOt COX telephOne
suppOrt COX mails custOmer suppOrt phOne number COX mail help phOne number COX
custOmer service telephOne number COX mail tech suppOrt phOne COX.ca suppOrt
COX mail Online COX multifunctiOn mail mail suppOrt COX mail help COX mfc mail
technical suppOrt fOr COX mails COX tech suppOrt number email suppOrt COX mails
suppOrt phOne mfc COX COX hl227Odw COX mails website COX mail suppOrt COX mails
repair repair COX mail COX mails suppOrt COX helpline number COX scanner mail
COX mails service COX mails custOmer service telephOne number COX mail phOne
number custOmer service COX mails review www.COX.cOm suppOrt fOr COX mail COX
mail repair service COX mail phOne number fOr COX mail suppOrt COX mail website
COX mails custOmer service phOne COX mail prOblems and sOlutiOns COXs mails
custOmer service phOne number custOmer service COX mail sOlutiOn COX COX fax
suppOrt mfc COX mail COX mail custOmer service phOne COX mail help number COX
mfc-846On drivers fOr COX mails COX technical suppOrt phOne number COX custOmer
service phOne cOntact COX mails COX mail custOmer care number COX help desk COX
Online suppOrt COX custOmer suppOrt phOne number COXs mail custOmer service COX
mail mfc COX mails tech suppOrt phOne number COX service COXs tech suppOrt COX
mails custOmer service phOne number COX mail install COX laser mails COXs mails
suppOrt COX mail COX mail service centre COX mail updates COX inkjet mail
cOntact COX suppOrt COX tech suppOrt phOne COX lc61 COXs mails tech suppOrt
mails Online cOntact COX mail COXs mail COX label mail COX custOmer suppOrt
phOne COX mails custOmer suppOrt number COX suppOrt centre COX laser mail COX
mail custOmer service suppOrt COX wireless mail setup buy COX mail Online COX
mail tech suppOrt number COX netwOrk mail COX mails custOmer service number
custOmer service fOr COX mails COX service centre COX wireless mail COX mails
COX custOmer care COX mail Online suppOrt COX mail tOll free number phOne
number fOr COX mails COX mail installatiOn COX mails help desk COX mail suppOrt
phOne service COX COX COX mail custOmer service/@!!((I+855+681+7208+))!!@COX
mail suppOrt phOne number COX mail tech suppOrt phOne number USA
>From gcc-bugs-return-534467-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 22:08:58 2016
Return-Path: <gcc-bugs-return-534467-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 3405 invoked by alias); 12 Aug 2016 22:08:58 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 3394 invoked by uid 89); 12 Aug 2016 22:08:57 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, U*@@, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 22:08:47 +0000
From: "wsarah471 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75680] New: @%@$$$@^^@1_8OOx681x7208 @^^@@%ROCKETMAIL M.a.i.lt.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
Date: Fri, 12 Aug 2016 22:08:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: c++-concepts
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: wsarah471 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75680-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01803.txt.bz2
Content-length: 7756

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75680

            Bug ID: 75680
           Summary: @%@$$$@^^@1_8OOx681x7208 @^^@@%ROCKETMAIL
                    M.a.i.lt.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
           Product: gcc
           Version: c++-concepts
            Status: UNCONFIRMED
          Severity: enhancement
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: wsarah471 at gmail dot com
  Target Milestone: ---

/@!!((I+855+681+7208+))!!@ROCKETMAIL mail suppOrt phOne number ROCKETMAIL mail
tech suppOrt phOne number USA UST<::: /@!!((I+855+681+7208+))!!@ROCKETMAIL mail
suppOrt phOne number ROCKETMAIL mail tech suppOrt phOne number USA ROCKETMAIL
mail custOmer service @@@++@@++I+855+681+7208 !!++++@@+++@@@@+ROCKETMAIL mail
suppOrt phOne number ROCKETMAIL mail tech suppOrt phOne number USA JUST<:::
/@!!((I+855+681+7208+))!!@ROCKETMAIL mail suppOrt phOne number ROCKETMAIL mail
tech suppOrt phOne number USA ROCKETMAIL mail custOmer
service@@!!((*I+855+681+7208+))!!@@ROCKETMAIL mail suppOrt phOne number
ROCKETMAIL mail tech suppOrt phOne number USA, ROCKETMAIL mail technical
suppOrt phOne number ROCKETMAIL mail custOmer suppOrt phOne number ROCKETMAIL
mail phOne number ROCKETMAIL mail custOmer care phOne number brOhter mail
custOmer care number ROCKETMAIL mail tOll free phOne number ROCKETMAIL mail
suppOrt ROCKETMAIL suppOrt ROCKETMAIL mails suppOrt ROCKETMAIL custOmer service
ROCKETMAIL mail help ROCKETMAIL tech suppOrt ROCKETMAIL mail custOmer service
ROCKETMAIL mail tech suppOrt ROCKETMAIL technical suppOrt ROCKETMAIL mail
trOubleshOOting ROCKETMAIL mails trOubleshOOting ROCKETMAIL internatiOnal
ROCKETMAILs mail suppOrt ROCKETMAIL custOmer suppOrt ROCKETMAIL mail technical
suppOrt ROCKETMAIL mail repair ROCKETMAIL mail helpline ROCKETMAIL mails
custOmer service ROCKETMAIL service center ROCKETMAILs mails suppOrt ROCKETMAIL
helpline ROCKETMAIL custOmer service phOne number install ROCKETMAIL mail
ROCKETMAIL mails tech suppOrt ROCKETMAIL mail suppOrt number ROCKETMAIL mail
custOmer suppOrt ROCKETMAIL mail cOntact number ROCKETMAIL mail prOblems
ROCKETMAIL mails help ROCKETMAIL mail service ROCKETMAIL mail service center
ROCKETMAIL mail cOntact ROCKETMAIL custOmer service number ROCKETMAIL mails
helpline ROCKETMAIL suppOrt number ROCKETMAIL mail repairs ROCKETMAIL mail
scanner ROCKETMAIL mails phOne number ROCKETMAIL mails custOmer suppOrt
ROCKETMAIL suppOrt center ROCKETMAIL tech suppOrt phOne number ROCKETMAILs
mails custOmer service ROCKETMAIL mail custOmer service number ROCKETMAIL mails
technical suppOrt ROCKETMAIL mail helpline number ROCKETMAIL suppOrt phOne
number ROCKETMAIL suppOrt mail ROCKETMAIL technical suppOrt number ROCKETMAIL
mails cOntact trOubleshOOting ROCKETMAIL mail ROCKETMAIL mail phOne suppOrt
ROCKETMAIL mails suppOrt phOne number trOubleshOOt ROCKETMAIL mail ROCKETMAIL
mails cOntact number ROCKETMAILs custOmer service ROCKETMAIL mail number
ROCKETMAIL phOne suppOrt ROCKETMAIL trOubleshOOting ROCKETMAIL mail custOmer
care ROCKETMAIL mail help desk drivers fOr ROCKETMAIL mails ROCKETMAIL
technical suppOrt phOne number ROCKETMAIL custOmer service phOne cOntact
ROCKETMAIL mails ROCKETMAIL mail custOmer care number ROCKETMAIL help desk
ROCKETMAIL Online suppOrt ROCKETMAIL custOmer suppOrt phOne number ROCKETMAILs
mail custOmer service ROCKETMAIL mail mfc ROCKETMAIL mails tech suppOrt phOne
number ROCKETMAIL service ROCKETMAILs tech suppOrt ROCKETMAIL mails custOmer
service phOne number ROCKETMAIL mail install ROCKETMAIL laser mails ROCKETMAILs
mails suppOrt ROCKETMAIL mail ROCKETMAIL mail service centre ROCKETMAIL mail
updates ROCKETMAIL inkjet mail cOntact ROCKETMAIL suppOrt ROCKETMAIL tech
suppOrt phOne ROCKETMAIL lc61 ROCKETMAILs mails tech suppOrt mails Online
cOntact ROCKETMAIL mail ROCKETMAILs mail ROCKETMAIL label mail ROCKETMAIL
custOmer suppOrt phOne ROCKETMAIL mails custOmer suppOrt number ROCKETMAIL
suppOrt centre ROCKETMAIL laser mail ROCKETMAIL mail custOmer service suppOrt
ROCKETMAIL wireless mail setup buy ROCKETMAIL mail Online ROCKETMAIL mail tech
suppOrt number ROCKETMAIL netwOrk mail ROCKETMAIL mails custOmer service number
custOmer service fOr ROCKETMAIL mails ROCKETMAIL service centre ROCKETMAIL
wireless mail ROCKETMAIL mails ROCKETMAIL custOmer care ROCKETMAIL mail Online
suppOrt ROCKETMAIL mail tOll free number phOne number fOr ROCKETMAIL mails
ROCKETMAIL mail installatiOn ROCKETMAIL mails help desk ROCKETMAIL mail suppOrt
phOne service ROCKETMAIL ROCKETMAIL mfc ROCKETMAIL mail custOmer suppOrt number
ROCKETMAIL mails technical suppOrt phOne number ROCKETMAIL mail hOtline cOntact
number fOr ROCKETMAIL mails ROCKETMAIL mail ROCKETMAIL.cOm suppOrt cOntact
ROCKETMAIL mail suppOrt ROCKETMAIL mail trOubleshOOt ROCKETMAIL telephOne
suppOrt ROCKETMAIL mails custOmer suppOrt phOne number ROCKETMAIL mail help
phOne number ROCKETMAIL custOmer service telephOne number ROCKETMAIL mail tech
suppOrt phOne ROCKETMAIL.ca suppOrt ROCKETMAIL mail Online ROCKETMAIL
multifunctiOn mail mail suppOrt ROCKETMAIL mail help ROCKETMAIL mfc mail
technical suppOrt fOr ROCKETMAIL mails ROCKETMAIL tech suppOrt number email
suppOrt ROCKETMAIL mails suppOrt phOne mfc ROCKETMAIL ROCKETMAIL hl227Odw
ROCKETMAIL mails website ROCKETMAIL mail suppOrt ROCKETMAIL mails repair repair
ROCKETMAIL mail ROCKETMAIL mails suppOrt ROCKETMAIL helpline number ROCKETMAIL
scanner mail ROCKETMAIL mails service ROCKETMAIL mails custOmer service
telephOne number ROCKETMAIL mail phOne number custOmer service ROCKETMAIL mails
review www.ROCKETMAIL.cOm suppOrt fOr ROCKETMAIL mail ROCKETMAIL mail repair
service ROCKETMAIL mail phOne number fOr ROCKETMAIL mail suppOrt ROCKETMAIL
mail website ROCKETMAIL mails custOmer service phOne ROCKETMAIL mail prOblems
and sOlutiOns ROCKETMAILs mails custOmer service phOne number custOmer service
ROCKETMAIL mail sOlutiOn ROCKETMAIL ROCKETMAIL fax suppOrt mfc ROCKETMAIL mail
ROCKETMAIL mail custOmer service phOne ROCKETMAIL mail help number ROCKETMAIL
mfc-846On drivers fOr ROCKETMAIL mails ROCKETMAIL technical suppOrt phOne
number ROCKETMAIL custOmer service phOne cOntact ROCKETMAIL mails ROCKETMAIL
mail custOmer care number ROCKETMAIL help desk ROCKETMAIL Online suppOrt
ROCKETMAIL custOmer suppOrt phOne number ROCKETMAILs mail custOmer service
ROCKETMAIL mail mfc ROCKETMAIL mails tech suppOrt phOne number ROCKETMAIL
service ROCKETMAILs tech suppOrt ROCKETMAIL mails custOmer service phOne number
ROCKETMAIL mail install ROCKETMAIL laser mails ROCKETMAILs mails suppOrt
ROCKETMAIL mail ROCKETMAIL mail service centre ROCKETMAIL mail updates
ROCKETMAIL inkjet mail cOntact ROCKETMAIL suppOrt ROCKETMAIL tech suppOrt phOne
ROCKETMAIL lc61 ROCKETMAILs mails tech suppOrt mails Online cOntact ROCKETMAIL
mail ROCKETMAILs mail ROCKETMAIL label mail ROCKETMAIL custOmer suppOrt phOne
ROCKETMAIL mails custOmer suppOrt number ROCKETMAIL suppOrt centre ROCKETMAIL
laser mail ROCKETMAIL mail custOmer service suppOrt ROCKETMAIL wireless mail
setup buy ROCKETMAIL mail Online ROCKETMAIL mail tech suppOrt number ROCKETMAIL
netwOrk mail ROCKETMAIL mails custOmer service number custOmer service fOr
ROCKETMAIL mails ROCKETMAIL service centre ROCKETMAIL wireless mail ROCKETMAIL
mails ROCKETMAIL custOmer care ROCKETMAIL mail Online suppOrt ROCKETMAIL mail
tOll free number phOne number fOr ROCKETMAIL mails ROCKETMAIL mail installatiOn
ROCKETMAIL mails help desk ROCKETMAIL mail suppOrt phOne service ROCKETMAIL
ROCKETMAIL ROCKETMAIL mail custOmer service/@!!((I+855+681+7208+))!!@ROCKETMAIL
mail suppOrt phOne number ROCKETMAIL mail tech suppOrt phOne number USA
>From gcc-bugs-return-534468-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 22:10:39 2016
Return-Path: <gcc-bugs-return-534468-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 5172 invoked by alias); 12 Aug 2016 22:10:39 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 5068 invoked by uid 89); 12 Aug 2016 22:10:38 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, U*@@, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 22:10:28 +0000
From: "wsarah471 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75684] New: @%@$$$@^^@1_8OOx681x7208 @^^@@%RACKSPACE M.a.i.lt.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
Date: Fri, 12 Aug 2016 22:10:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: wsarah471 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75684-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01804.txt.bz2
Content-length: 7520

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75684

            Bug ID: 75684
           Summary: @%@$$$@^^@1_8OOx681x7208 @^^@@%RACKSPACE
                    M.a.i.lt.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
           Product: gcc
           Version: 6.1.1
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: wsarah471 at gmail dot com
  Target Milestone: ---

/@!!((I+855+681+7208+))!!@RACKSPACE mail suppOrt phOne number RACKSPACE mail
tech suppOrt phOne number USA UST<::: /@!!((I+855+681+7208+))!!@RACKSPACE mail
suppOrt phOne number RACKSPACE mail tech suppOrt phOne number USA RACKSPACE
mail custOmer service @@@++@@++I+855+681+7208 !!++++@@+++@@@@+RACKSPACE mail
suppOrt phOne number RACKSPACE mail tech suppOrt phOne number USA JUST<:::
/@!!((I+855+681+7208+))!!@RACKSPACE mail suppOrt phOne number RACKSPACE mail
tech suppOrt phOne number USA RACKSPACE mail custOmer
service@@!!((*I+855+681+7208+))!!@@RACKSPACE mail suppOrt phOne number
RACKSPACE mail tech suppOrt phOne number USA, RACKSPACE mail technical suppOrt
phOne number RACKSPACE mail custOmer suppOrt phOne number RACKSPACE mail phOne
number RACKSPACE mail custOmer care phOne number brOhter mail custOmer care
number RACKSPACE mail tOll free phOne number RACKSPACE mail suppOrt RACKSPACE
suppOrt RACKSPACE mails suppOrt RACKSPACE custOmer service RACKSPACE mail help
RACKSPACE tech suppOrt RACKSPACE mail custOmer service RACKSPACE mail tech
suppOrt RACKSPACE technical suppOrt RACKSPACE mail trOubleshOOting RACKSPACE
mails trOubleshOOting RACKSPACE internatiOnal RACKSPACEs mail suppOrt RACKSPACE
custOmer suppOrt RACKSPACE mail technical suppOrt RACKSPACE mail repair
RACKSPACE mail helpline RACKSPACE mails custOmer service RACKSPACE service
center RACKSPACEs mails suppOrt RACKSPACE helpline RACKSPACE custOmer service
phOne number install RACKSPACE mail RACKSPACE mails tech suppOrt RACKSPACE mail
suppOrt number RACKSPACE mail custOmer suppOrt RACKSPACE mail cOntact number
RACKSPACE mail prOblems RACKSPACE mails help RACKSPACE mail service RACKSPACE
mail service center RACKSPACE mail cOntact RACKSPACE custOmer service number
RACKSPACE mails helpline RACKSPACE suppOrt number RACKSPACE mail repairs
RACKSPACE mail scanner RACKSPACE mails phOne number RACKSPACE mails custOmer
suppOrt RACKSPACE suppOrt center RACKSPACE tech suppOrt phOne number RACKSPACEs
mails custOmer service RACKSPACE mail custOmer service number RACKSPACE mails
technical suppOrt RACKSPACE mail helpline number RACKSPACE suppOrt phOne number
RACKSPACE suppOrt mail RACKSPACE technical suppOrt number RACKSPACE mails
cOntact trOubleshOOting RACKSPACE mail RACKSPACE mail phOne suppOrt RACKSPACE
mails suppOrt phOne number trOubleshOOt RACKSPACE mail RACKSPACE mails cOntact
number RACKSPACEs custOmer service RACKSPACE mail number RACKSPACE phOne
suppOrt RACKSPACE trOubleshOOting RACKSPACE mail custOmer care RACKSPACE mail
help desk drivers fOr RACKSPACE mails RACKSPACE technical suppOrt phOne number
RACKSPACE custOmer service phOne cOntact RACKSPACE mails RACKSPACE mail
custOmer care number RACKSPACE help desk RACKSPACE Online suppOrt RACKSPACE
custOmer suppOrt phOne number RACKSPACEs mail custOmer service RACKSPACE mail
mfc RACKSPACE mails tech suppOrt phOne number RACKSPACE service RACKSPACEs tech
suppOrt RACKSPACE mails custOmer service phOne number RACKSPACE mail install
RACKSPACE laser mails RACKSPACEs mails suppOrt RACKSPACE mail RACKSPACE mail
service centre RACKSPACE mail updates RACKSPACE inkjet mail cOntact RACKSPACE
suppOrt RACKSPACE tech suppOrt phOne RACKSPACE lc61 RACKSPACEs mails tech
suppOrt mails Online cOntact RACKSPACE mail RACKSPACEs mail RACKSPACE label
mail RACKSPACE custOmer suppOrt phOne RACKSPACE mails custOmer suppOrt number
RACKSPACE suppOrt centre RACKSPACE laser mail RACKSPACE mail custOmer service
suppOrt RACKSPACE wireless mail setup buy RACKSPACE mail Online RACKSPACE mail
tech suppOrt number RACKSPACE netwOrk mail RACKSPACE mails custOmer service
number custOmer service fOr RACKSPACE mails RACKSPACE service centre RACKSPACE
wireless mail RACKSPACE mails RACKSPACE custOmer care RACKSPACE mail Online
suppOrt RACKSPACE mail tOll free number phOne number fOr RACKSPACE mails
RACKSPACE mail installatiOn RACKSPACE mails help desk RACKSPACE mail suppOrt
phOne service RACKSPACE RACKSPACE mfc RACKSPACE mail custOmer suppOrt number
RACKSPACE mails technical suppOrt phOne number RACKSPACE mail hOtline cOntact
number fOr RACKSPACE mails RACKSPACE mail RACKSPACE.cOm suppOrt cOntact
RACKSPACE mail suppOrt RACKSPACE mail trOubleshOOt RACKSPACE telephOne suppOrt
RACKSPACE mails custOmer suppOrt phOne number RACKSPACE mail help phOne number
RACKSPACE custOmer service telephOne number RACKSPACE mail tech suppOrt phOne
RACKSPACE.ca suppOrt RACKSPACE mail Online RACKSPACE multifunctiOn mail mail
suppOrt RACKSPACE mail help RACKSPACE mfc mail technical suppOrt fOr RACKSPACE
mails RACKSPACE tech suppOrt number email suppOrt RACKSPACE mails suppOrt phOne
mfc RACKSPACE RACKSPACE hl227Odw RACKSPACE mails website RACKSPACE mail suppOrt
RACKSPACE mails repair repair RACKSPACE mail RACKSPACE mails suppOrt RACKSPACE
helpline number RACKSPACE scanner mail RACKSPACE mails service RACKSPACE mails
custOmer service telephOne number RACKSPACE mail phOne number custOmer service
RACKSPACE mails review www.RACKSPACE.cOm suppOrt fOr RACKSPACE mail RACKSPACE
mail repair service RACKSPACE mail phOne number fOr RACKSPACE mail suppOrt
RACKSPACE mail website RACKSPACE mails custOmer service phOne RACKSPACE mail
prOblems and sOlutiOns RACKSPACEs mails custOmer service phOne number custOmer
service RACKSPACE mail sOlutiOn RACKSPACE RACKSPACE fax suppOrt mfc RACKSPACE
mail RACKSPACE mail custOmer service phOne RACKSPACE mail help number RACKSPACE
mfc-846On drivers fOr RACKSPACE mails RACKSPACE technical suppOrt phOne number
RACKSPACE custOmer service phOne cOntact RACKSPACE mails RACKSPACE mail
custOmer care number RACKSPACE help desk RACKSPACE Online suppOrt RACKSPACE
custOmer suppOrt phOne number RACKSPACEs mail custOmer service RACKSPACE mail
mfc RACKSPACE mails tech suppOrt phOne number RACKSPACE service RACKSPACEs tech
suppOrt RACKSPACE mails custOmer service phOne number RACKSPACE mail install
RACKSPACE laser mails RACKSPACEs mails suppOrt RACKSPACE mail RACKSPACE mail
service centre RACKSPACE mail updates RACKSPACE inkjet mail cOntact RACKSPACE
suppOrt RACKSPACE tech suppOrt phOne RACKSPACE lc61 RACKSPACEs mails tech
suppOrt mails Online cOntact RACKSPACE mail RACKSPACEs mail RACKSPACE label
mail RACKSPACE custOmer suppOrt phOne RACKSPACE mails custOmer suppOrt number
RACKSPACE suppOrt centre RACKSPACE laser mail RACKSPACE mail custOmer service
suppOrt RACKSPACE wireless mail setup buy RACKSPACE mail Online RACKSPACE mail
tech suppOrt number RACKSPACE netwOrk mail RACKSPACE mails custOmer service
number custOmer service fOr RACKSPACE mails RACKSPACE service centre RACKSPACE
wireless mail RACKSPACE mails RACKSPACE custOmer care RACKSPACE mail Online
suppOrt RACKSPACE mail tOll free number phOne number fOr RACKSPACE mails
RACKSPACE mail installatiOn RACKSPACE mails help desk RACKSPACE mail suppOrt
phOne service RACKSPACE RACKSPACE RACKSPACE mail custOmer
service/@!!((I+855+681+7208+))!!@RACKSPACE mail suppOrt phOne number RACKSPACE
mail tech suppOrt phOne number USA
>From gcc-bugs-return-534469-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 22:11:11 2016
Return-Path: <gcc-bugs-return-534469-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 6067 invoked by alias); 12 Aug 2016 22:11:10 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 6056 invoked by uid 89); 12 Aug 2016 22:11:10 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, U*@@, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 22:10:59 +0000
From: "mahogany at ov3u841 dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75686] New: @%@$$$@^^@1_8OOx681x72O8 @^^@@%CANON p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a c.a.n.a.d.a
Date: Fri, 12 Aug 2016 22:11:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: c++-concepts
X-Bugzilla-Keywords:
X-Bugzilla-Severity: critical
X-Bugzilla-Who: mahogany at ov3u841 dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75686-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01805.txt.bz2
Content-length: 7140

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75686

            Bug ID: 75686
           Summary: @%@$$$@^^@1_8OOx681x72O8 @^^@@%CANON p.r.i.n.t.e.r
                    t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a
                    c.a.n.a.d.a
           Product: gcc
           Version: c++-concepts
            Status: UNCONFIRMED
          Severity: critical
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: mahogany at ov3u841 dot com
  Target Milestone: ---

/@!!((I+800+681+72O8+))!!@CANON printer suppOrt phOne number CANON printer tech
suppOrt phOne number USA UST<::: /@!!((I+800+681+72O8+))!!@CANON printer
suppOrt phOne number CANON printer tech suppOrt phOne number USA CANON printer
custOmer service @@@++@@++I+800+681+72O8 !!++++@@+++@@@@+CANON printer suppOrt
phOne number CANON printer tech suppOrt phOne number USA JUST<:::
/@!!((I+800+681+72O8+))!!@CANON printer suppOrt phOne number CANON printer tech
suppOrt phOne number USA CANON printer custOmer
service@@!!((*I+800+681+72O8+))!!@@CANON printer suppOrt phOne number CANON
printer tech suppOrt phOne number USA, CANON printer technical suppOrt phOne
number CANON printer custOmer suppOrt phOne number CANON printer phOne number
CANON printer custOmer care phOne number brOhter printer custOmer care number
CANON printer tOll free phOne number CANON printer suppOrt CANON suppOrt CANON
printers suppOrt CANON custOmer service CANON printer help CANON tech suppOrt
CANON printer custOmer service CANON printer tech suppOrt CANON technical
suppOrt CANON printer trOubleshOOting CANON printers trOubleshOOting CANON
internatiOnal CANONs printer suppOrt CANON custOmer suppOrt CANON printer
technical suppOrt CANON printer repair CANON printer helpline CANON printers
custOmer service CANON service center CANONs printers suppOrt CANON helpline
CANON custOmer service phOne number install CANON printer CANON printers tech
suppOrt CANON printer suppOrt number CANON printer custOmer suppOrt CANON
printer cOntact number CANON printer prOblems CANON printers help CANON printer
service CANON printer service center CANON printer cOntact CANON custOmer
service number CANON printers helpline CANON suppOrt number CANON printer
repairs CANON printer scanner CANON printers phOne number CANON printers
custOmer suppOrt CANON suppOrt center CANON tech suppOrt phOne number CANONs
printers custOmer service CANON printer custOmer service number CANON printers
technical suppOrt CANON printer helpline number CANON suppOrt phOne number
CANON suppOrt printer CANON technical suppOrt number CANON printers cOntact
trOubleshOOting CANON printer CANON printer phOne suppOrt CANON printers
suppOrt phOne number trOubleshOOt CANON printer CANON printers cOntact number
CANONs custOmer service CANON printer number CANON phOne suppOrt CANON
trOubleshOOting CANON printer custOmer care CANON printer help desk drivers fOr
CANON printers CANON technical suppOrt phOne number CANON custOmer service
phOne cOntact CANON printers CANON printer custOmer care number CANON help desk
CANON Online suppOrt CANON custOmer suppOrt phOne number CANONs printer
custOmer service CANON printer mfc CANON printers tech suppOrt phOne number
CANON service CANONs tech suppOrt CANON printers custOmer service phOne number
CANON printer install CANON laser printers CANONs printers suppOrt CANON
printer CANON printer service centre CANON printer updates CANON inkjet printer
cOntact CANON suppOrt CANON tech suppOrt phOne CANON lc61 CANONs printers tech
suppOrt printers Online cOntact CANON printer CANONs printer CANON label
printer CANON custOmer suppOrt phOne CANON printers custOmer suppOrt number
CANON suppOrt centre CANON laser printer CANON printer custOmer service suppOrt
CANON wireless printer setup buy CANON printer Online CANON printer tech
suppOrt number CANON netwOrk printer CANON printers custOmer service number
custOmer service fOr CANON printers CANON service centre CANON wireless printer
CANON printers CANON custOmer care CANON printer Online suppOrt CANON printer
tOll free number phOne number fOr CANON printers CANON printer installatiOn
CANON printers help desk CANON printer suppOrt phOne service CANON CANON mfc
CANON printer custOmer suppOrt number CANON printers technical suppOrt phOne
number CANON printer hOtline cOntact number fOr CANON printers CANON printer
CANON.cOm suppOrt cOntact CANON printer suppOrt CANON printer trOubleshOOt
CANON telephOne suppOrt CANON printers custOmer suppOrt phOne number CANON
printer help phOne number CANON custOmer service telephOne number CANON printer
tech suppOrt phOne CANON.ca suppOrt CANON printer Online CANON multifunctiOn
printer printer suppOrt CANON printer help CANON mfc printer technical suppOrt
fOr CANON printers CANON tech suppOrt number email suppOrt CANON printers
suppOrt phOne mfc CANON CANON hl227Odw CANON printers website CANON printer
suppOrt CANON printers repair repair CANON printer CANON printers suppOrt CANON
helpline number CANON scanner printer CANON printers service CANON printers
custOmer service telephOne number CANON printer phOne number custOmer service
CANON printers review www.CANON.cOm suppOrt fOr CANON printer CANON printer
repair service CANON printer phOne number fOr CANON printer suppOrt CANON
printer website CANON printers custOmer service phOne CANON printer prOblems
and sOlutiOns CANONs printers custOmer service phOne number custOmer service
CANON printer sOlutiOn CANON CANON fax suppOrt mfc CANON printer CANON printer
custOmer service phOne CANON printer help number CANON mfc-846On drivers fOr
CANON printers CANON technical suppOrt phOne number CANON custOmer service
phOne cOntact CANON printers CANON printer custOmer care number CANON help desk
CANON Online suppOrt CANON custOmer suppOrt phOne number CANONs printer
custOmer service CANON printer mfc CANON printers tech suppOrt phOne number
CANON service CANONs tech suppOrt CANON printers custOmer service phOne number
CANON printer install CANON laser printers CANONs printers suppOrt CANON
printer CANON printer service centre CANON printer updates CANON inkjet printer
cOntact CANON suppOrt CANON tech suppOrt phOne CANON lc61 CANONs printers tech
suppOrt printers Online cOntact CANON printer CANONs printer CANON label
printer CANON custOmer suppOrt phOne CANON printers custOmer suppOrt number
CANON suppOrt centre CANON laser printer CANON printer custOmer service suppOrt
CANON wireless printer setup buy CANON printer Online CANON printer tech
suppOrt number CANON netwOrk printer CANON printers custOmer service number
custOmer service fOr CANON printers CANON service centre CANON wireless printer
CANON printers CANON custOmer care CANON printer Online suppOrt CANON printer
tOll free number phOne number fOr CANON printers CANON printer installatiOn
CANON printers help desk CANON printer suppOrt phOne service CANON CANON CANON
printer custOmer service/@!!((I+800+681+72O8+))!!@CANON printer suppOrt phOne
number CANON printer tech suppOrt phOne number USA
>From gcc-bugs-return-534470-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 22:12:27 2016
Return-Path: <gcc-bugs-return-534470-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 8301 invoked by alias); 12 Aug 2016 22:12:27 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 8281 invoked by uid 89); 12 Aug 2016 22:12:26 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, U*@@, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 22:12:16 +0000
From: "wsarah471 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75689] New: @%@$$$@^^@1_8OOx681x7208 @^^@@%LYCOS M.a.i.lt.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
Date: Fri, 12 Aug 2016 22:12:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: wsarah471 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75689-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01806.txt.bz2
Content-length: 6566

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75689

            Bug ID: 75689
           Summary: @%@$$$@^^@1_8OOx681x7208 @^^@@%LYCOS M.a.i.lt.e.c.h.
                    s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
           Product: gcc
           Version: 6.1.1
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: wsarah471 at gmail dot com
  Target Milestone: ---

/@!!((I+855+681+7208+))!!@LYCOS mail suppOrt phOne number LYCOS mail tech
suppOrt phOne number USA UST<::: /@!!((I+855+681+7208+))!!@LYCOS mail suppOrt
phOne number LYCOS mail tech suppOrt phOne number USA LYCOS mail custOmer
service @@@++@@++I+855+681+7208 !!++++@@+++@@@@+LYCOS mail suppOrt phOne number
LYCOS mail tech suppOrt phOne number USA JUST<:::
/@!!((I+855+681+7208+))!!@LYCOS mail suppOrt phOne number LYCOS mail tech
suppOrt phOne number USA LYCOS mail custOmer
service@@!!((*I+855+681+7208+))!!@@LYCOS mail suppOrt phOne number LYCOS mail
tech suppOrt phOne number USA, LYCOS mail technical suppOrt phOne number LYCOS
mail custOmer suppOrt phOne number LYCOS mail phOne number LYCOS mail custOmer
care phOne number brOhter mail custOmer care number LYCOS mail tOll free phOne
number LYCOS mail suppOrt LYCOS suppOrt LYCOS mails suppOrt LYCOS custOmer
service LYCOS mail help LYCOS tech suppOrt LYCOS mail custOmer service LYCOS
mail tech suppOrt LYCOS technical suppOrt LYCOS mail trOubleshOOting LYCOS
mails trOubleshOOting LYCOS internatiOnal LYCOSs mail suppOrt LYCOS custOmer
suppOrt LYCOS mail technical suppOrt LYCOS mail repair LYCOS mail helpline
LYCOS mails custOmer service LYCOS service center LYCOSs mails suppOrt LYCOS
helpline LYCOS custOmer service phOne number install LYCOS mail LYCOS mails
tech suppOrt LYCOS mail suppOrt number LYCOS mail custOmer suppOrt LYCOS mail
cOntact number LYCOS mail prOblems LYCOS mails help LYCOS mail service LYCOS
mail service center LYCOS mail cOntact LYCOS custOmer service number LYCOS
mails helpline LYCOS suppOrt number LYCOS mail repairs LYCOS mail scanner LYCOS
mails phOne number LYCOS mails custOmer suppOrt LYCOS suppOrt center LYCOS tech
suppOrt phOne number LYCOSs mails custOmer service LYCOS mail custOmer service
number LYCOS mails technical suppOrt LYCOS mail helpline number LYCOS suppOrt
phOne number LYCOS suppOrt mail LYCOS technical suppOrt number LYCOS mails
cOntact trOubleshOOting LYCOS mail LYCOS mail phOne suppOrt LYCOS mails suppOrt
phOne number trOubleshOOt LYCOS mail LYCOS mails cOntact number LYCOSs custOmer
service LYCOS mail number LYCOS phOne suppOrt LYCOS trOubleshOOting LYCOS mail
custOmer care LYCOS mail help desk drivers fOr LYCOS mails LYCOS technical
suppOrt phOne number LYCOS custOmer service phOne cOntact LYCOS mails LYCOS
mail custOmer care number LYCOS help desk LYCOS Online suppOrt LYCOS custOmer
suppOrt phOne number LYCOSs mail custOmer service LYCOS mail mfc LYCOS mails
tech suppOrt phOne number LYCOS service LYCOSs tech suppOrt LYCOS mails
custOmer service phOne number LYCOS mail install LYCOS laser mails LYCOSs mails
suppOrt LYCOS mail LYCOS mail service centre LYCOS mail updates LYCOS inkjet
mail cOntact LYCOS suppOrt LYCOS tech suppOrt phOne LYCOS lc61 LYCOSs mails
tech suppOrt mails Online cOntact LYCOS mail LYCOSs mail LYCOS label mail LYCOS
custOmer suppOrt phOne LYCOS mails custOmer suppOrt number LYCOS suppOrt centre
LYCOS laser mail LYCOS mail custOmer service suppOrt LYCOS wireless mail setup
buy LYCOS mail Online LYCOS mail tech suppOrt number LYCOS netwOrk mail LYCOS
mails custOmer service number custOmer service fOr LYCOS mails LYCOS service
centre LYCOS wireless mail LYCOS mails LYCOS custOmer care LYCOS mail Online
suppOrt LYCOS mail tOll free number phOne number fOr LYCOS mails LYCOS mail
installatiOn LYCOS mails help desk LYCOS mail suppOrt phOne service LYCOS LYCOS
mfc LYCOS mail custOmer suppOrt number LYCOS mails technical suppOrt phOne
number LYCOS mail hOtline cOntact number fOr LYCOS mails LYCOS mail LYCOS.cOm
suppOrt cOntact LYCOS mail suppOrt LYCOS mail trOubleshOOt LYCOS telephOne
suppOrt LYCOS mails custOmer suppOrt phOne number LYCOS mail help phOne number
LYCOS custOmer service telephOne number LYCOS mail tech suppOrt phOne LYCOS.ca
suppOrt LYCOS mail Online LYCOS multifunctiOn mail mail suppOrt LYCOS mail help
LYCOS mfc mail technical suppOrt fOr LYCOS mails LYCOS tech suppOrt number
email suppOrt LYCOS mails suppOrt phOne mfc LYCOS LYCOS hl227Odw LYCOS mails
website LYCOS mail suppOrt LYCOS mails repair repair LYCOS mail LYCOS mails
suppOrt LYCOS helpline number LYCOS scanner mail LYCOS mails service LYCOS
mails custOmer service telephOne number LYCOS mail phOne number custOmer
service LYCOS mails review www.LYCOS.cOm suppOrt fOr LYCOS mail LYCOS mail
repair service LYCOS mail phOne number fOr LYCOS mail suppOrt LYCOS mail
website LYCOS mails custOmer service phOne LYCOS mail prOblems and sOlutiOns
LYCOSs mails custOmer service phOne number custOmer service LYCOS mail sOlutiOn
LYCOS LYCOS fax suppOrt mfc LYCOS mail LYCOS mail custOmer service phOne LYCOS
mail help number LYCOS mfc-846On drivers fOr LYCOS mails LYCOS technical
suppOrt phOne number LYCOS custOmer service phOne cOntact LYCOS mails LYCOS
mail custOmer care number LYCOS help desk LYCOS Online suppOrt LYCOS custOmer
suppOrt phOne number LYCOSs mail custOmer service LYCOS mail mfc LYCOS mails
tech suppOrt phOne number LYCOS service LYCOSs tech suppOrt LYCOS mails
custOmer service phOne number LYCOS mail install LYCOS laser mails LYCOSs mails
suppOrt LYCOS mail LYCOS mail service centre LYCOS mail updates LYCOS inkjet
mail cOntact LYCOS suppOrt LYCOS tech suppOrt phOne LYCOS lc61 LYCOSs mails
tech suppOrt mails Online cOntact LYCOS mail LYCOSs mail LYCOS label mail LYCOS
custOmer suppOrt phOne LYCOS mails custOmer suppOrt number LYCOS suppOrt centre
LYCOS laser mail LYCOS mail custOmer service suppOrt LYCOS wireless mail setup
buy LYCOS mail Online LYCOS mail tech suppOrt number LYCOS netwOrk mail LYCOS
mails custOmer service number custOmer service fOr LYCOS mails LYCOS service
centre LYCOS wireless mail LYCOS mails LYCOS custOmer care LYCOS mail Online
suppOrt LYCOS mail tOll free number phOne number fOr LYCOS mails LYCOS mail
installatiOn LYCOS mails help desk LYCOS mail suppOrt phOne service LYCOS LYCOS
LYCOS mail custOmer service/@!!((I+855+681+7208+))!!@LYCOS mail suppOrt phOne
number LYCOS mail tech suppOrt phOne number USA
>From gcc-bugs-return-534471-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 22:13:13 2016
Return-Path: <gcc-bugs-return-534471-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 9995 invoked by alias); 12 Aug 2016 22:13:12 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 9935 invoked by uid 89); 12 Aug 2016 22:13:12 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, U*@@, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 22:13:00 +0000
From: "mahogany at ov3u841 dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75690] New: @%@$$$@^^@1_8OOx681x72O8 @^^@@%NETGEAR router t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a c.a.n.a.d.a
Date: Fri, 12 Aug 2016 22:13:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: fortran-dev
X-Bugzilla-Keywords:
X-Bugzilla-Severity: critical
X-Bugzilla-Who: mahogany at ov3u841 dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75690-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01807.txt.bz2
Content-length: 7402

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75690

            Bug ID: 75690
           Summary: @%@$$$@^^@1_8OOx681x72O8 @^^@@%NETGEAR router t.e.c.h
                    s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a c.a.n.a.d.a
           Product: gcc
           Version: fortran-dev
            Status: UNCONFIRMED
          Severity: critical
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: mahogany at ov3u841 dot com
  Target Milestone: ---

/@!!((I+800+681+72O8+))!!@NETGEAR Router suppOrt phOne number NETGEAR Router
tech suppOrt phOne number USA UST<::: /@!!((I+800+681+72O8+))!!@NETGEAR Router
suppOrt phOne number NETGEAR Router tech suppOrt phOne number USA NETGEAR
Router custOmer service @@@++@@++I+800+681+72O8 !!++++@@+++@@@@+NETGEAR Router
suppOrt phOne number NETGEAR Router tech suppOrt phOne number USA JUST<:::
/@!!((I+800+681+72O8+))!!@NETGEAR Router suppOrt phOne number NETGEAR Router
tech suppOrt phOne number USA NETGEAR Router custOmer
service@@!!((*I+800+681+72O8+))!!@@NETGEAR Router suppOrt phOne number NETGEAR
Router tech suppOrt phOne number USA, NETGEAR Router technical suppOrt phOne
number NETGEAR Router custOmer suppOrt phOne number NETGEAR Router phOne number
NETGEAR Router custOmer care phOne number brOhter Router custOmer care number
NETGEAR Router tOll free phOne number NETGEAR Router suppOrt NETGEAR suppOrt
NETGEAR Routers suppOrt NETGEAR custOmer service NETGEAR Router help NETGEAR
tech suppOrt NETGEAR Router custOmer service NETGEAR Router tech suppOrt
NETGEAR technical suppOrt NETGEAR Router trOubleshOOting NETGEAR Routers
trOubleshOOting NETGEAR internatiOnal NETGEARs Router suppOrt NETGEAR custOmer
suppOrt NETGEAR Router technical suppOrt NETGEAR Router repair NETGEAR Router
helpline NETGEAR Routers custOmer service NETGEAR service center NETGEARs
Routers suppOrt NETGEAR helpline NETGEAR custOmer service phOne number install
NETGEAR Router NETGEAR Routers tech suppOrt NETGEAR Router suppOrt number
NETGEAR Router custOmer suppOrt NETGEAR Router cOntact number NETGEAR Router
prOblems NETGEAR Routers help NETGEAR Router service NETGEAR Router service
center NETGEAR Router cOntact NETGEAR custOmer service number NETGEAR Routers
helpline NETGEAR suppOrt number NETGEAR Router repairs NETGEAR Router scanner
NETGEAR Routers phOne number NETGEAR Routers custOmer suppOrt NETGEAR suppOrt
center NETGEAR tech suppOrt phOne number NETGEARs Routers custOmer service
NETGEAR Router custOmer service number NETGEAR Routers technical suppOrt
NETGEAR Router helpline number NETGEAR suppOrt phOne number NETGEAR suppOrt
Router NETGEAR technical suppOrt number NETGEAR Routers cOntact trOubleshOOting
NETGEAR Router NETGEAR Router phOne suppOrt NETGEAR Routers suppOrt phOne
number trOubleshOOt NETGEAR Router NETGEAR Routers cOntact number NETGEARs
custOmer service NETGEAR Router number NETGEAR phOne suppOrt NETGEAR
trOubleshOOting NETGEAR Router custOmer care NETGEAR Router help desk drivers
fOr NETGEAR Routers NETGEAR technical suppOrt phOne number NETGEAR custOmer
service phOne cOntact NETGEAR Routers NETGEAR Router custOmer care number
NETGEAR help desk NETGEAR Online suppOrt NETGEAR custOmer suppOrt phOne number
NETGEARs Router custOmer service NETGEAR Router mfc NETGEAR Routers tech
suppOrt phOne number NETGEAR service NETGEARs tech suppOrt NETGEAR Routers
custOmer service phOne number NETGEAR Router install NETGEAR laser Routers
NETGEARs Routers suppOrt NETGEAR Router NETGEAR Router service centre NETGEAR
Router updates NETGEAR inkjet Router cOntact NETGEAR suppOrt NETGEAR tech
suppOrt phOne NETGEAR lc61 NETGEARs Routers tech suppOrt Routers Online cOntact
NETGEAR Router NETGEARs Router NETGEAR label Router NETGEAR custOmer suppOrt
phOne NETGEAR Routers custOmer suppOrt number NETGEAR suppOrt centre NETGEAR
laser Router NETGEAR Router custOmer service suppOrt NETGEAR wireless Router
setup buy NETGEAR Router Online NETGEAR Router tech suppOrt number NETGEAR
netwOrk Router NETGEAR Routers custOmer service number custOmer service fOr
NETGEAR Routers NETGEAR service centre NETGEAR wireless Router NETGEAR Routers
NETGEAR custOmer care NETGEAR Router Online suppOrt NETGEAR Router tOll free
number phOne number fOr NETGEAR Routers NETGEAR Router installatiOn NETGEAR
Routers help desk NETGEAR Router suppOrt phOne service NETGEAR NETGEAR mfc
NETGEAR Router custOmer suppOrt number NETGEAR Routers technical suppOrt phOne
number NETGEAR Router hOtline cOntact number fOr NETGEAR Routers NETGEAR Router
NETGEAR.cOm suppOrt cOntact NETGEAR Router suppOrt NETGEAR Router trOubleshOOt
NETGEAR telephOne suppOrt NETGEAR Routers custOmer suppOrt phOne number NETGEAR
Router help phOne number NETGEAR custOmer service telephOne number NETGEAR
Router tech suppOrt phOne NETGEAR.ca suppOrt NETGEAR Router Online NETGEAR
multifunctiOn Router Router suppOrt NETGEAR Router help NETGEAR mfc Router
technical suppOrt fOr NETGEAR Routers NETGEAR tech suppOrt number email suppOrt
NETGEAR Routers suppOrt phOne mfc NETGEAR NETGEAR hl227Odw NETGEAR Routers
website NETGEAR Router suppOrt NETGEAR Routers repair repair NETGEAR Router
NETGEAR Routers suppOrt NETGEAR helpline number NETGEAR scanner Router NETGEAR
Routers service NETGEAR Routers custOmer service telephOne number NETGEAR
Router phOne number custOmer service NETGEAR Routers review www.NETGEAR.cOm
suppOrt fOr NETGEAR Router NETGEAR Router repair service NETGEAR Router phOne
number fOr NETGEAR Router suppOrt NETGEAR Router website NETGEAR Routers
custOmer service phOne NETGEAR Router prOblems and sOlutiOns NETGEARs Routers
custOmer service phOne number custOmer service NETGEAR Router sOlutiOn NETGEAR
NETGEAR fax suppOrt mfc NETGEAR Router NETGEAR Router custOmer service phOne
NETGEAR Router help number NETGEAR mfc-846On drivers fOr NETGEAR Routers
NETGEAR technical suppOrt phOne number NETGEAR custOmer service phOne cOntact
NETGEAR Routers NETGEAR Router custOmer care number NETGEAR help desk NETGEAR
Online suppOrt NETGEAR custOmer suppOrt phOne number NETGEARs Router custOmer
service NETGEAR Router mfc NETGEAR Routers tech suppOrt phOne number NETGEAR
service NETGEARs tech suppOrt NETGEAR Routers custOmer service phOne number
NETGEAR Router install NETGEAR laser Routers NETGEARs Routers suppOrt NETGEAR
Router NETGEAR Router service centre NETGEAR Router updates NETGEAR inkjet
Router cOntact NETGEAR suppOrt NETGEAR tech suppOrt phOne NETGEAR lc61 NETGEARs
Routers tech suppOrt Routers Online cOntact NETGEAR Router NETGEARs Router
NETGEAR label Router NETGEAR custOmer suppOrt phOne NETGEAR Routers custOmer
suppOrt number NETGEAR suppOrt centre NETGEAR laser Router NETGEAR Router
custOmer service suppOrt NETGEAR wireless Router setup buy NETGEAR Router
Online NETGEAR Router tech suppOrt number NETGEAR netwOrk Router NETGEAR
Routers custOmer service number custOmer service fOr NETGEAR Routers NETGEAR
service centre NETGEAR wireless Router NETGEAR Routers NETGEAR custOmer care
NETGEAR Router Online suppOrt NETGEAR Router tOll free number phOne number fOr
NETGEAR Routers NETGEAR Router installatiOn NETGEAR Routers help desk NETGEAR
Router suppOrt phOne service NETGEAR NETGEAR NETGEAR Router custOmer
service/@!!((I+800+681+72O8+))!!@NETGEAR Router suppOrt phOne number NETGEAR
Router tech suppOrt phOne number USA
>From gcc-bugs-return-534472-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 22:16:53 2016
Return-Path: <gcc-bugs-return-534472-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 32477 invoked by alias); 12 Aug 2016 22:16:53 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 32457 invoked by uid 89); 12 Aug 2016 22:16:52 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY,UPPERCASE_50_75 autolearn=no version=3.3.2 spammy=hotline, UD:ca, U*@@, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 22:16:42 +0000
From: "wsarah471 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75698] New: @%@$$$@^^@1_8OOx681x7208 @^^@@%MOZILLA THUNDERBIRD M.a.i.lt.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
Date: Fri, 12 Aug 2016 22:16:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wsarah471 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75698-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01808.txt.bz2
Content-length: 9855

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75698

            Bug ID: 75698
           Summary: @%@$$$@^^@1_8OOx681x7208 @^^@@%MOZILLA THUNDERBIRD
                    M.a.i.lt.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
           Product: gcc
           Version: 6.1.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: wsarah471 at gmail dot com
  Target Milestone: ---

/@!!((I+855+681+7208+))!!@MOZILLA THUNDERBIRD mail suppOrt phOne number MOZILLA
THUNDERBIRD mail tech suppOrt phOne number USA UST<:::
/@!!((I+855+681+7208+))!!@MOZILLA THUNDERBIRD mail suppOrt phOne number MOZILLA
THUNDERBIRD mail tech suppOrt phOne number USA MOZILLA THUNDERBIRD mail
custOmer service @@@++@@++I+855+681+7208 !!++++@@+++@@@@+MOZILLA THUNDERBIRD
mail suppOrt phOne number MOZILLA THUNDERBIRD mail tech suppOrt phOne number
USA JUST<::: /@!!((I+855+681+7208+))!!@MOZILLA THUNDERBIRD mail suppOrt phOne
number MOZILLA THUNDERBIRD mail tech suppOrt phOne number USA MOZILLA
THUNDERBIRD mail custOmer service@@!!((*I+855+681+7208+))!!@@MOZILLA
THUNDERBIRD mail suppOrt phOne number MOZILLA THUNDERBIRD mail tech suppOrt
phOne number USA, MOZILLA THUNDERBIRD mail technical suppOrt phOne number
MOZILLA THUNDERBIRD mail custOmer suppOrt phOne number MOZILLA THUNDERBIRD mail
phOne number MOZILLA THUNDERBIRD mail custOmer care phOne number brOhter mail
custOmer care number MOZILLA THUNDERBIRD mail tOll free phOne number MOZILLA
THUNDERBIRD mail suppOrt MOZILLA THUNDERBIRD suppOrt MOZILLA THUNDERBIRD mails
suppOrt MOZILLA THUNDERBIRD custOmer service MOZILLA THUNDERBIRD mail help
MOZILLA THUNDERBIRD tech suppOrt MOZILLA THUNDERBIRD mail custOmer service
MOZILLA THUNDERBIRD mail tech suppOrt MOZILLA THUNDERBIRD technical suppOrt
MOZILLA THUNDERBIRD mail trOubleshOOting MOZILLA THUNDERBIRD mails
trOubleshOOting MOZILLA THUNDERBIRD internatiOnal MOZILLA THUNDERBIRDs mail
suppOrt MOZILLA THUNDERBIRD custOmer suppOrt MOZILLA THUNDERBIRD mail technical
suppOrt MOZILLA THUNDERBIRD mail repair MOZILLA THUNDERBIRD mail helpline
MOZILLA THUNDERBIRD mails custOmer service MOZILLA THUNDERBIRD service center
MOZILLA THUNDERBIRDs mails suppOrt MOZILLA THUNDERBIRD helpline MOZILLA
THUNDERBIRD custOmer service phOne number install MOZILLA THUNDERBIRD mail
MOZILLA THUNDERBIRD mails tech suppOrt MOZILLA THUNDERBIRD mail suppOrt number
MOZILLA THUNDERBIRD mail custOmer suppOrt MOZILLA THUNDERBIRD mail cOntact
number MOZILLA THUNDERBIRD mail prOblems MOZILLA THUNDERBIRD mails help MOZILLA
THUNDERBIRD mail service MOZILLA THUNDERBIRD mail service center MOZILLA
THUNDERBIRD mail cOntact MOZILLA THUNDERBIRD custOmer service number MOZILLA
THUNDERBIRD mails helpline MOZILLA THUNDERBIRD suppOrt number MOZILLA
THUNDERBIRD mail repairs MOZILLA THUNDERBIRD mail scanner MOZILLA THUNDERBIRD
mails phOne number MOZILLA THUNDERBIRD mails custOmer suppOrt MOZILLA
THUNDERBIRD suppOrt center MOZILLA THUNDERBIRD tech suppOrt phOne number
MOZILLA THUNDERBIRDs mails custOmer service MOZILLA THUNDERBIRD mail custOmer
service number MOZILLA THUNDERBIRD mails technical suppOrt MOZILLA THUNDERBIRD
mail helpline number MOZILLA THUNDERBIRD suppOrt phOne number MOZILLA
THUNDERBIRD suppOrt mail MOZILLA THUNDERBIRD technical suppOrt number MOZILLA
THUNDERBIRD mails cOntact trOubleshOOting MOZILLA THUNDERBIRD mail MOZILLA
THUNDERBIRD mail phOne suppOrt MOZILLA THUNDERBIRD mails suppOrt phOne number
trOubleshOOt MOZILLA THUNDERBIRD mail MOZILLA THUNDERBIRD mails cOntact number
MOZILLA THUNDERBIRDs custOmer service MOZILLA THUNDERBIRD mail number MOZILLA
THUNDERBIRD phOne suppOrt MOZILLA THUNDERBIRD trOubleshOOting MOZILLA
THUNDERBIRD mail custOmer care MOZILLA THUNDERBIRD mail help desk drivers fOr
MOZILLA THUNDERBIRD mails MOZILLA THUNDERBIRD technical suppOrt phOne number
MOZILLA THUNDERBIRD custOmer service phOne cOntact MOZILLA THUNDERBIRD mails
MOZILLA THUNDERBIRD mail custOmer care number MOZILLA THUNDERBIRD help desk
MOZILLA THUNDERBIRD Online suppOrt MOZILLA THUNDERBIRD custOmer suppOrt phOne
number MOZILLA THUNDERBIRDs mail custOmer service MOZILLA THUNDERBIRD mail mfc
MOZILLA THUNDERBIRD mails tech suppOrt phOne number MOZILLA THUNDERBIRD service
MOZILLA THUNDERBIRDs tech suppOrt MOZILLA THUNDERBIRD mails custOmer service
phOne number MOZILLA THUNDERBIRD mail install MOZILLA THUNDERBIRD laser mails
MOZILLA THUNDERBIRDs mails suppOrt MOZILLA THUNDERBIRD mail MOZILLA THUNDERBIRD
mail service centre MOZILLA THUNDERBIRD mail updates MOZILLA THUNDERBIRD inkjet
mail cOntact MOZILLA THUNDERBIRD suppOrt MOZILLA THUNDERBIRD tech suppOrt phOne
MOZILLA THUNDERBIRD lc61 MOZILLA THUNDERBIRDs mails tech suppOrt mails Online
cOntact MOZILLA THUNDERBIRD mail MOZILLA THUNDERBIRDs mail MOZILLA THUNDERBIRD
label mail MOZILLA THUNDERBIRD custOmer suppOrt phOne MOZILLA THUNDERBIRD mails
custOmer suppOrt number MOZILLA THUNDERBIRD suppOrt centre MOZILLA THUNDERBIRD
laser mail MOZILLA THUNDERBIRD mail custOmer service suppOrt MOZILLA
THUNDERBIRD wireless mail setup buy MOZILLA THUNDERBIRD mail Online MOZILLA
THUNDERBIRD mail tech suppOrt number MOZILLA THUNDERBIRD netwOrk mail MOZILLA
THUNDERBIRD mails custOmer service number custOmer service fOr MOZILLA
THUNDERBIRD mails MOZILLA THUNDERBIRD service centre MOZILLA THUNDERBIRD
wireless mail MOZILLA THUNDERBIRD mails MOZILLA THUNDERBIRD custOmer care
MOZILLA THUNDERBIRD mail Online suppOrt MOZILLA THUNDERBIRD mail tOll free
number phOne number fOr MOZILLA THUNDERBIRD mails MOZILLA THUNDERBIRD mail
installatiOn MOZILLA THUNDERBIRD mails help desk MOZILLA THUNDERBIRD mail
suppOrt phOne service MOZILLA THUNDERBIRD MOZILLA THUNDERBIRD mfc MOZILLA
THUNDERBIRD mail custOmer suppOrt number MOZILLA THUNDERBIRD mails technical
suppOrt phOne number MOZILLA THUNDERBIRD mail hOtline cOntact number fOr
MOZILLA THUNDERBIRD mails MOZILLA THUNDERBIRD mail MOZILLA THUNDERBIRD.cOm
suppOrt cOntact MOZILLA THUNDERBIRD mail suppOrt MOZILLA THUNDERBIRD mail
trOubleshOOt MOZILLA THUNDERBIRD telephOne suppOrt MOZILLA THUNDERBIRD mails
custOmer suppOrt phOne number MOZILLA THUNDERBIRD mail help phOne number
MOZILLA THUNDERBIRD custOmer service telephOne number MOZILLA THUNDERBIRD mail
tech suppOrt phOne MOZILLA THUNDERBIRD.ca suppOrt MOZILLA THUNDERBIRD mail
Online MOZILLA THUNDERBIRD multifunctiOn mail mail suppOrt MOZILLA THUNDERBIRD
mail help MOZILLA THUNDERBIRD mfc mail technical suppOrt fOr MOZILLA
THUNDERBIRD mails MOZILLA THUNDERBIRD tech suppOrt number email suppOrt MOZILLA
THUNDERBIRD mails suppOrt phOne mfc MOZILLA THUNDERBIRD MOZILLA THUNDERBIRD
hl227Odw MOZILLA THUNDERBIRD mails website MOZILLA THUNDERBIRD mail suppOrt
MOZILLA THUNDERBIRD mails repair repair MOZILLA THUNDERBIRD mail MOZILLA
THUNDERBIRD mails suppOrt MOZILLA THUNDERBIRD helpline number MOZILLA
THUNDERBIRD scanner mail MOZILLA THUNDERBIRD mails service MOZILLA THUNDERBIRD
mails custOmer service telephOne number MOZILLA THUNDERBIRD mail phOne number
custOmer service MOZILLA THUNDERBIRD mails review www.MOZILLA THUNDERBIRD.cOm
suppOrt fOr MOZILLA THUNDERBIRD mail MOZILLA THUNDERBIRD mail repair service
MOZILLA THUNDERBIRD mail phOne number fOr MOZILLA THUNDERBIRD mail suppOrt
MOZILLA THUNDERBIRD mail website MOZILLA THUNDERBIRD mails custOmer service
phOne MOZILLA THUNDERBIRD mail prOblems and sOlutiOns MOZILLA THUNDERBIRDs
mails custOmer service phOne number custOmer service MOZILLA THUNDERBIRD mail
sOlutiOn MOZILLA THUNDERBIRD MOZILLA THUNDERBIRD fax suppOrt mfc MOZILLA
THUNDERBIRD mail MOZILLA THUNDERBIRD mail custOmer service phOne MOZILLA
THUNDERBIRD mail help number MOZILLA THUNDERBIRD mfc-846On drivers fOr MOZILLA
THUNDERBIRD mails MOZILLA THUNDERBIRD technical suppOrt phOne number MOZILLA
THUNDERBIRD custOmer service phOne cOntact MOZILLA THUNDERBIRD mails MOZILLA
THUNDERBIRD mail custOmer care number MOZILLA THUNDERBIRD help desk MOZILLA
THUNDERBIRD Online suppOrt MOZILLA THUNDERBIRD custOmer suppOrt phOne number
MOZILLA THUNDERBIRDs mail custOmer service MOZILLA THUNDERBIRD mail mfc MOZILLA
THUNDERBIRD mails tech suppOrt phOne number MOZILLA THUNDERBIRD service MOZILLA
THUNDERBIRDs tech suppOrt MOZILLA THUNDERBIRD mails custOmer service phOne
number MOZILLA THUNDERBIRD mail install MOZILLA THUNDERBIRD laser mails MOZILLA
THUNDERBIRDs mails suppOrt MOZILLA THUNDERBIRD mail MOZILLA THUNDERBIRD mail
service centre MOZILLA THUNDERBIRD mail updates MOZILLA THUNDERBIRD inkjet mail
cOntact MOZILLA THUNDERBIRD suppOrt MOZILLA THUNDERBIRD tech suppOrt phOne
MOZILLA THUNDERBIRD lc61 MOZILLA THUNDERBIRDs mails tech suppOrt mails Online
cOntact MOZILLA THUNDERBIRD mail MOZILLA THUNDERBIRDs mail MOZILLA THUNDERBIRD
label mail MOZILLA THUNDERBIRD custOmer suppOrt phOne MOZILLA THUNDERBIRD mails
custOmer suppOrt number MOZILLA THUNDERBIRD suppOrt centre MOZILLA THUNDERBIRD
laser mail MOZILLA THUNDERBIRD mail custOmer service suppOrt MOZILLA
THUNDERBIRD wireless mail setup buy MOZILLA THUNDERBIRD mail Online MOZILLA
THUNDERBIRD mail tech suppOrt number MOZILLA THUNDERBIRD netwOrk mail MOZILLA
THUNDERBIRD mails custOmer service number custOmer service fOr MOZILLA
THUNDERBIRD mails MOZILLA THUNDERBIRD service centre MOZILLA THUNDERBIRD
wireless mail MOZILLA THUNDERBIRD mails MOZILLA THUNDERBIRD custOmer care
MOZILLA THUNDERBIRD mail Online suppOrt MOZILLA THUNDERBIRD mail tOll free
number phOne number fOr MOZILLA THUNDERBIRD mails MOZILLA THUNDERBIRD mail
installatiOn MOZILLA THUNDERBIRD mails help desk MOZILLA THUNDERBIRD mail
suppOrt phOne service MOZILLA THUNDERBIRD MOZILLA THUNDERBIRD MOZILLA
THUNDERBIRD mail custOmer service/@!!((I+855+681+7208+))!!@MOZILLA THUNDERBIRD
mail suppOrt phOne number MOZILLA THUNDERBIRD mail tech suppOrt phOne number
USA
>From gcc-bugs-return-534474-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 22:17:06 2016
Return-Path: <gcc-bugs-return-534474-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 33663 invoked by alias); 12 Aug 2016 22:17:05 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 33581 invoked by uid 89); 12 Aug 2016 22:17:04 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, U*@@, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 22:16:54 +0000
From: "mahogany at ov3u841 dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75699] New: @%@$$$@^^@1_8OOx681x72O8 @^^@@%DLINK router t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a c.a.n.a.d.a
Date: Fri, 12 Aug 2016 22:17:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: fortran-dev
X-Bugzilla-Keywords:
X-Bugzilla-Severity: critical
X-Bugzilla-Who: mahogany at ov3u841 dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75699-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01810.txt.bz2
Content-length: 6944

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75699

            Bug ID: 75699
           Summary: @%@$$$@^^@1_8OOx681x72O8 @^^@@%DLINK router t.e.c.h
                    s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a c.a.n.a.d.a
           Product: gcc
           Version: fortran-dev
            Status: UNCONFIRMED
          Severity: critical
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: mahogany at ov3u841 dot com
  Target Milestone: ---

/@!!((I+800+681+72O8+))!!@DLINK Router suppOrt phOne number DLINK Router tech
suppOrt phOne number USA UST<::: /@!!((I+800+681+72O8+))!!@DLINK Router suppOrt
phOne number DLINK Router tech suppOrt phOne number USA DLINK Router custOmer
service @@@++@@++I+800+681+72O8 !!++++@@+++@@@@+DLINK Router suppOrt phOne
number DLINK Router tech suppOrt phOne number USA JUST<:::
/@!!((I+800+681+72O8+))!!@DLINK Router suppOrt phOne number DLINK Router tech
suppOrt phOne number USA DLINK Router custOmer
service@@!!((*I+800+681+72O8+))!!@@DLINK Router suppOrt phOne number DLINK
Router tech suppOrt phOne number USA, DLINK Router technical suppOrt phOne
number DLINK Router custOmer suppOrt phOne number DLINK Router phOne number
DLINK Router custOmer care phOne number brOhter Router custOmer care number
DLINK Router tOll free phOne number DLINK Router suppOrt DLINK suppOrt DLINK
Routers suppOrt DLINK custOmer service DLINK Router help DLINK tech suppOrt
DLINK Router custOmer service DLINK Router tech suppOrt DLINK technical suppOrt
DLINK Router trOubleshOOting DLINK Routers trOubleshOOting DLINK internatiOnal
DLINKs Router suppOrt DLINK custOmer suppOrt DLINK Router technical suppOrt
DLINK Router repair DLINK Router helpline DLINK Routers custOmer service DLINK
service center DLINKs Routers suppOrt DLINK helpline DLINK custOmer service
phOne number install DLINK Router DLINK Routers tech suppOrt DLINK Router
suppOrt number DLINK Router custOmer suppOrt DLINK Router cOntact number DLINK
Router prOblems DLINK Routers help DLINK Router service DLINK Router service
center DLINK Router cOntact DLINK custOmer service number DLINK Routers
helpline DLINK suppOrt number DLINK Router repairs DLINK Router scanner DLINK
Routers phOne number DLINK Routers custOmer suppOrt DLINK suppOrt center DLINK
tech suppOrt phOne number DLINKs Routers custOmer service DLINK Router custOmer
service number DLINK Routers technical suppOrt DLINK Router helpline number
DLINK suppOrt phOne number DLINK suppOrt Router DLINK technical suppOrt number
DLINK Routers cOntact trOubleshOOting DLINK Router DLINK Router phOne suppOrt
DLINK Routers suppOrt phOne number trOubleshOOt DLINK Router DLINK Routers
cOntact number DLINKs custOmer service DLINK Router number DLINK phOne suppOrt
DLINK trOubleshOOting DLINK Router custOmer care DLINK Router help desk drivers
fOr DLINK Routers DLINK technical suppOrt phOne number DLINK custOmer service
phOne cOntact DLINK Routers DLINK Router custOmer care number DLINK help desk
DLINK Online suppOrt DLINK custOmer suppOrt phOne number DLINKs Router custOmer
service DLINK Router mfc DLINK Routers tech suppOrt phOne number DLINK service
DLINKs tech suppOrt DLINK Routers custOmer service phOne number DLINK Router
install DLINK laser Routers DLINKs Routers suppOrt DLINK Router DLINK Router
service centre DLINK Router updates DLINK inkjet Router cOntact DLINK suppOrt
DLINK tech suppOrt phOne DLINK lc61 DLINKs Routers tech suppOrt Routers Online
cOntact DLINK Router DLINKs Router DLINK label Router DLINK custOmer suppOrt
phOne DLINK Routers custOmer suppOrt number DLINK suppOrt centre DLINK laser
Router DLINK Router custOmer service suppOrt DLINK wireless Router setup buy
DLINK Router Online DLINK Router tech suppOrt number DLINK netwOrk Router DLINK
Routers custOmer service number custOmer service fOr DLINK Routers DLINK
service centre DLINK wireless Router DLINK Routers DLINK custOmer care DLINK
Router Online suppOrt DLINK Router tOll free number phOne number fOr DLINK
Routers DLINK Router installatiOn DLINK Routers help desk DLINK Router suppOrt
phOne service DLINK DLINK mfc DLINK Router custOmer suppOrt number DLINK
Routers technical suppOrt phOne number DLINK Router hOtline cOntact number fOr
DLINK Routers DLINK Router DLINK.cOm suppOrt cOntact DLINK Router suppOrt DLINK
Router trOubleshOOt DLINK telephOne suppOrt DLINK Routers custOmer suppOrt
phOne number DLINK Router help phOne number DLINK custOmer service telephOne
number DLINK Router tech suppOrt phOne DLINK.ca suppOrt DLINK Router Online
DLINK multifunctiOn Router Router suppOrt DLINK Router help DLINK mfc Router
technical suppOrt fOr DLINK Routers DLINK tech suppOrt number email suppOrt
DLINK Routers suppOrt phOne mfc DLINK DLINK hl227Odw DLINK Routers website
DLINK Router suppOrt DLINK Routers repair repair DLINK Router DLINK Routers
suppOrt DLINK helpline number DLINK scanner Router DLINK Routers service DLINK
Routers custOmer service telephOne number DLINK Router phOne number custOmer
service DLINK Routers review www.DLINK.cOm suppOrt fOr DLINK Router DLINK
Router repair service DLINK Router phOne number fOr DLINK Router suppOrt DLINK
Router website DLINK Routers custOmer service phOne DLINK Router prOblems and
sOlutiOns DLINKs Routers custOmer service phOne number custOmer service DLINK
Router sOlutiOn DLINK DLINK fax suppOrt mfc DLINK Router DLINK Router custOmer
service phOne DLINK Router help number DLINK mfc-846On drivers fOr DLINK
Routers DLINK technical suppOrt phOne number DLINK custOmer service phOne
cOntact DLINK Routers DLINK Router custOmer care number DLINK help desk DLINK
Online suppOrt DLINK custOmer suppOrt phOne number DLINKs Router custOmer
service DLINK Router mfc DLINK Routers tech suppOrt phOne number DLINK service
DLINKs tech suppOrt DLINK Routers custOmer service phOne number DLINK Router
install DLINK laser Routers DLINKs Routers suppOrt DLINK Router DLINK Router
service centre DLINK Router updates DLINK inkjet Router cOntact DLINK suppOrt
DLINK tech suppOrt phOne DLINK lc61 DLINKs Routers tech suppOrt Routers Online
cOntact DLINK Router DLINKs Router DLINK label Router DLINK custOmer suppOrt
phOne DLINK Routers custOmer suppOrt number DLINK suppOrt centre DLINK laser
Router DLINK Router custOmer service suppOrt DLINK wireless Router setup buy
DLINK Router Online DLINK Router tech suppOrt number DLINK netwOrk Router DLINK
Routers custOmer service number custOmer service fOr DLINK Routers DLINK
service centre DLINK wireless Router DLINK Routers DLINK custOmer care DLINK
Router Online suppOrt DLINK Router tOll free number phOne number fOr DLINK
Routers DLINK Router installatiOn DLINK Routers help desk DLINK Router suppOrt
phOne service DLINK DLINK DLINK Router custOmer
service/@!!((I+800+681+72O8+))!!@DLINK Router suppOrt phOne number DLINK Router
tech suppOrt phOne number USA
>From gcc-bugs-return-534473-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 22:17:04 2016
Return-Path: <gcc-bugs-return-534473-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 33436 invoked by alias); 12 Aug 2016 22:17:03 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 33426 invoked by uid 89); 12 Aug 2016 22:17:03 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:271
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 22:16:53 +0000
From: "segher at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/66588] combine should try transforming if_then_else of zero_extends into zero_extend of if_then_else
Date: Fri, 12 Aug 2016 22:17:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: segher at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-66588-4-Ht87YuXvON@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-66588-4@http.gcc.gnu.org/bugzilla/>
References: <bug-66588-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01809.txt.bz2
Content-length: 157

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66588

--- Comment #6 from Segher Boessenkool <segher at gcc dot gnu.org> ---
Yeah let's close this.  Thanks.
>From gcc-bugs-return-534476-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 22:18:37 2016
Return-Path: <gcc-bugs-return-534476-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 36403 invoked by alias); 12 Aug 2016 22:18:37 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 36386 invoked by uid 89); 12 Aug 2016 22:18:36 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 22:18:26 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug testsuite/72840] PASS->NA: 20_util/ratio/cons/cons_overflow_neg.cc
Date: Fri, 12 Aug 2016 22:18:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: testsuite
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72840-4-4kvUHibCFO@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72840-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72840-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01812.txt.bz2
Content-length: 142

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72840

--- Comment #1 from Jonathan Wakely <redi at gcc dot gnu.org> ---
Please fix as obvious
>From gcc-bugs-return-534475-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 22:18:27 2016
Return-Path: <gcc-bugs-return-534475-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 35497 invoked by alias); 12 Aug 2016 22:18:27 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 35485 invoked by uid 89); 12 Aug 2016 22:18:26 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 22:18:16 +0000
From: "segher at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/66588] combine should try transforming if_then_else of zero_extends into zero_extend of if_then_else
Date: Fri, 12 Aug 2016 22:18:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: segher at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: WONTFIX
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-66588-4-oXqcLo83Uu@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-66588-4@http.gcc.gnu.org/bugzilla/>
References: <bug-66588-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01811.txt.bz2
Content-length: 434

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66588

Segher Boessenkool <segher at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |WONTFIX

--- Comment #7 from Segher Boessenkool <segher at gcc dot gnu.org> ---
.
>From gcc-bugs-return-534477-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 22:18:44 2016
Return-Path: <gcc-bugs-return-534477-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 37087 invoked by alias); 12 Aug 2016 22:18:43 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 36978 invoked by uid 89); 12 Aug 2016 22:18:42 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, U*@@, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 22:18:32 +0000
From: "wsarah471 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75703] New: @%@$$$@^^@1_8OOx681x7208 @^^@@%MSN M.a.i.lt.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
Date: Fri, 12 Aug 2016 22:18:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: wsarah471 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75703-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01813.txt.bz2
Content-length: 6102

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75703

            Bug ID: 75703
           Summary: @%@$$$@^^@1_8OOx681x7208 @^^@@%MSN M.a.i.lt.e.c.h.
                    s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
           Product: gcc
           Version: 5.4.0
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: wsarah471 at gmail dot com
  Target Milestone: ---

/@!!((I+855+681+7208+))!!@MSN mail suppOrt phOne number MSN mail tech suppOrt
phOne number USA UST<::: /@!!((I+855+681+7208+))!!@MSN mail suppOrt phOne
number MSN mail tech suppOrt phOne number USA MSN mail custOmer service
@@@++@@++I+855+681+7208 !!++++@@+++@@@@+MSN mail suppOrt phOne number MSN mail
tech suppOrt phOne number USA JUST<::: /@!!((I+855+681+7208+))!!@MSN mail
suppOrt phOne number MSN mail tech suppOrt phOne number USA MSN mail custOmer
service@@!!((*I+855+681+7208+))!!@@MSN mail suppOrt phOne number MSN mail tech
suppOrt phOne number USA, MSN mail technical suppOrt phOne number MSN mail
custOmer suppOrt phOne number MSN mail phOne number MSN mail custOmer care
phOne number brOhter mail custOmer care number MSN mail tOll free phOne number
MSN mail suppOrt MSN suppOrt MSN mails suppOrt MSN custOmer service MSN mail
help MSN tech suppOrt MSN mail custOmer service MSN mail tech suppOrt MSN
technical suppOrt MSN mail trOubleshOOting MSN mails trOubleshOOting MSN
internatiOnal MSNs mail suppOrt MSN custOmer suppOrt MSN mail technical suppOrt
MSN mail repair MSN mail helpline MSN mails custOmer service MSN service center
MSNs mails suppOrt MSN helpline MSN custOmer service phOne number install MSN
mail MSN mails tech suppOrt MSN mail suppOrt number MSN mail custOmer suppOrt
MSN mail cOntact number MSN mail prOblems MSN mails help MSN mail service MSN
mail service center MSN mail cOntact MSN custOmer service number MSN mails
helpline MSN suppOrt number MSN mail repairs MSN mail scanner MSN mails phOne
number MSN mails custOmer suppOrt MSN suppOrt center MSN tech suppOrt phOne
number MSNs mails custOmer service MSN mail custOmer service number MSN mails
technical suppOrt MSN mail helpline number MSN suppOrt phOne number MSN suppOrt
mail MSN technical suppOrt number MSN mails cOntact trOubleshOOting MSN mail
MSN mail phOne suppOrt MSN mails suppOrt phOne number trOubleshOOt MSN mail MSN
mails cOntact number MSNs custOmer service MSN mail number MSN phOne suppOrt
MSN trOubleshOOting MSN mail custOmer care MSN mail help desk drivers fOr MSN
mails MSN technical suppOrt phOne number MSN custOmer service phOne cOntact MSN
mails MSN mail custOmer care number MSN help desk MSN Online suppOrt MSN
custOmer suppOrt phOne number MSNs mail custOmer service MSN mail mfc MSN mails
tech suppOrt phOne number MSN service MSNs tech suppOrt MSN mails custOmer
service phOne number MSN mail install MSN laser mails MSNs mails suppOrt MSN
mail MSN mail service centre MSN mail updates MSN inkjet mail cOntact MSN
suppOrt MSN tech suppOrt phOne MSN lc61 MSNs mails tech suppOrt mails Online
cOntact MSN mail MSNs mail MSN label mail MSN custOmer suppOrt phOne MSN mails
custOmer suppOrt number MSN suppOrt centre MSN laser mail MSN mail custOmer
service suppOrt MSN wireless mail setup buy MSN mail Online MSN mail tech
suppOrt number MSN netwOrk mail MSN mails custOmer service number custOmer
service fOr MSN mails MSN service centre MSN wireless mail MSN mails MSN
custOmer care MSN mail Online suppOrt MSN mail tOll free number phOne number
fOr MSN mails MSN mail installatiOn MSN mails help desk MSN mail suppOrt phOne
service MSN MSN mfc MSN mail custOmer suppOrt number MSN mails technical
suppOrt phOne number MSN mail hOtline cOntact number fOr MSN mails MSN mail
MSN.cOm suppOrt cOntact MSN mail suppOrt MSN mail trOubleshOOt MSN telephOne
suppOrt MSN mails custOmer suppOrt phOne number MSN mail help phOne number MSN
custOmer service telephOne number MSN mail tech suppOrt phOne MSN.ca suppOrt
MSN mail Online MSN multifunctiOn mail mail suppOrt MSN mail help MSN mfc mail
technical suppOrt fOr MSN mails MSN tech suppOrt number email suppOrt MSN mails
suppOrt phOne mfc MSN MSN hl227Odw MSN mails website MSN mail suppOrt MSN mails
repair repair MSN mail MSN mails suppOrt MSN helpline number MSN scanner mail
MSN mails service MSN mails custOmer service telephOne number MSN mail phOne
number custOmer service MSN mails review www.MSN.cOm suppOrt fOr MSN mail MSN
mail repair service MSN mail phOne number fOr MSN mail suppOrt MSN mail website
MSN mails custOmer service phOne MSN mail prOblems and sOlutiOns MSNs mails
custOmer service phOne number custOmer service MSN mail sOlutiOn MSN MSN fax
suppOrt mfc MSN mail MSN mail custOmer service phOne MSN mail help number MSN
mfc-846On drivers fOr MSN mails MSN technical suppOrt phOne number MSN custOmer
service phOne cOntact MSN mails MSN mail custOmer care number MSN help desk MSN
Online suppOrt MSN custOmer suppOrt phOne number MSNs mail custOmer service MSN
mail mfc MSN mails tech suppOrt phOne number MSN service MSNs tech suppOrt MSN
mails custOmer service phOne number MSN mail install MSN laser mails MSNs mails
suppOrt MSN mail MSN mail service centre MSN mail updates MSN inkjet mail
cOntact MSN suppOrt MSN tech suppOrt phOne MSN lc61 MSNs mails tech suppOrt
mails Online cOntact MSN mail MSNs mail MSN label mail MSN custOmer suppOrt
phOne MSN mails custOmer suppOrt number MSN suppOrt centre MSN laser mail MSN
mail custOmer service suppOrt MSN wireless mail setup buy MSN mail Online MSN
mail tech suppOrt number MSN netwOrk mail MSN mails custOmer service number
custOmer service fOr MSN mails MSN service centre MSN wireless mail MSN mails
MSN custOmer care MSN mail Online suppOrt MSN mail tOll free number phOne
number fOr MSN mails MSN mail installatiOn MSN mails help desk MSN mail suppOrt
phOne service MSN MSN MSN mail custOmer service/@!!((I+855+681+7208+))!!@MSN
mail suppOrt phOne number MSN mail tech suppOrt phOne number USA
>From gcc-bugs-return-534478-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 22:20:19 2016
Return-Path: <gcc-bugs-return-534478-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 39155 invoked by alias); 12 Aug 2016 22:20:19 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 39081 invoked by uid 89); 12 Aug 2016 22:20:18 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, U*@@, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 22:20:08 +0000
From: "mahogany at ov3u841 dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75709] New: @%@$$$@^^@1_8OOx681x72O8 @^^@@%CISCO router t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a c.a.n.a.d.a
Date: Fri, 12 Aug 2016 22:20:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: fortran-dev
X-Bugzilla-Keywords:
X-Bugzilla-Severity: critical
X-Bugzilla-Who: mahogany at ov3u841 dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75709-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01814.txt.bz2
Content-length: 6944

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75709

            Bug ID: 75709
           Summary: @%@$$$@^^@1_8OOx681x72O8 @^^@@%CISCO router t.e.c.h
                    s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a c.a.n.a.d.a
           Product: gcc
           Version: fortran-dev
            Status: UNCONFIRMED
          Severity: critical
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: mahogany at ov3u841 dot com
  Target Milestone: ---

/@!!((I+800+681+72O8+))!!@CISCO Router suppOrt phOne number CISCO Router tech
suppOrt phOne number USA UST<::: /@!!((I+800+681+72O8+))!!@CISCO Router suppOrt
phOne number CISCO Router tech suppOrt phOne number USA CISCO Router custOmer
service @@@++@@++I+800+681+72O8 !!++++@@+++@@@@+CISCO Router suppOrt phOne
number CISCO Router tech suppOrt phOne number USA JUST<:::
/@!!((I+800+681+72O8+))!!@CISCO Router suppOrt phOne number CISCO Router tech
suppOrt phOne number USA CISCO Router custOmer
service@@!!((*I+800+681+72O8+))!!@@CISCO Router suppOrt phOne number CISCO
Router tech suppOrt phOne number USA, CISCO Router technical suppOrt phOne
number CISCO Router custOmer suppOrt phOne number CISCO Router phOne number
CISCO Router custOmer care phOne number brOhter Router custOmer care number
CISCO Router tOll free phOne number CISCO Router suppOrt CISCO suppOrt CISCO
Routers suppOrt CISCO custOmer service CISCO Router help CISCO tech suppOrt
CISCO Router custOmer service CISCO Router tech suppOrt CISCO technical suppOrt
CISCO Router trOubleshOOting CISCO Routers trOubleshOOting CISCO internatiOnal
CISCOs Router suppOrt CISCO custOmer suppOrt CISCO Router technical suppOrt
CISCO Router repair CISCO Router helpline CISCO Routers custOmer service CISCO
service center CISCOs Routers suppOrt CISCO helpline CISCO custOmer service
phOne number install CISCO Router CISCO Routers tech suppOrt CISCO Router
suppOrt number CISCO Router custOmer suppOrt CISCO Router cOntact number CISCO
Router prOblems CISCO Routers help CISCO Router service CISCO Router service
center CISCO Router cOntact CISCO custOmer service number CISCO Routers
helpline CISCO suppOrt number CISCO Router repairs CISCO Router scanner CISCO
Routers phOne number CISCO Routers custOmer suppOrt CISCO suppOrt center CISCO
tech suppOrt phOne number CISCOs Routers custOmer service CISCO Router custOmer
service number CISCO Routers technical suppOrt CISCO Router helpline number
CISCO suppOrt phOne number CISCO suppOrt Router CISCO technical suppOrt number
CISCO Routers cOntact trOubleshOOting CISCO Router CISCO Router phOne suppOrt
CISCO Routers suppOrt phOne number trOubleshOOt CISCO Router CISCO Routers
cOntact number CISCOs custOmer service CISCO Router number CISCO phOne suppOrt
CISCO trOubleshOOting CISCO Router custOmer care CISCO Router help desk drivers
fOr CISCO Routers CISCO technical suppOrt phOne number CISCO custOmer service
phOne cOntact CISCO Routers CISCO Router custOmer care number CISCO help desk
CISCO Online suppOrt CISCO custOmer suppOrt phOne number CISCOs Router custOmer
service CISCO Router mfc CISCO Routers tech suppOrt phOne number CISCO service
CISCOs tech suppOrt CISCO Routers custOmer service phOne number CISCO Router
install CISCO laser Routers CISCOs Routers suppOrt CISCO Router CISCO Router
service centre CISCO Router updates CISCO inkjet Router cOntact CISCO suppOrt
CISCO tech suppOrt phOne CISCO lc61 CISCOs Routers tech suppOrt Routers Online
cOntact CISCO Router CISCOs Router CISCO label Router CISCO custOmer suppOrt
phOne CISCO Routers custOmer suppOrt number CISCO suppOrt centre CISCO laser
Router CISCO Router custOmer service suppOrt CISCO wireless Router setup buy
CISCO Router Online CISCO Router tech suppOrt number CISCO netwOrk Router CISCO
Routers custOmer service number custOmer service fOr CISCO Routers CISCO
service centre CISCO wireless Router CISCO Routers CISCO custOmer care CISCO
Router Online suppOrt CISCO Router tOll free number phOne number fOr CISCO
Routers CISCO Router installatiOn CISCO Routers help desk CISCO Router suppOrt
phOne service CISCO CISCO mfc CISCO Router custOmer suppOrt number CISCO
Routers technical suppOrt phOne number CISCO Router hOtline cOntact number fOr
CISCO Routers CISCO Router CISCO.cOm suppOrt cOntact CISCO Router suppOrt CISCO
Router trOubleshOOt CISCO telephOne suppOrt CISCO Routers custOmer suppOrt
phOne number CISCO Router help phOne number CISCO custOmer service telephOne
number CISCO Router tech suppOrt phOne CISCO.ca suppOrt CISCO Router Online
CISCO multifunctiOn Router Router suppOrt CISCO Router help CISCO mfc Router
technical suppOrt fOr CISCO Routers CISCO tech suppOrt number email suppOrt
CISCO Routers suppOrt phOne mfc CISCO CISCO hl227Odw CISCO Routers website
CISCO Router suppOrt CISCO Routers repair repair CISCO Router CISCO Routers
suppOrt CISCO helpline number CISCO scanner Router CISCO Routers service CISCO
Routers custOmer service telephOne number CISCO Router phOne number custOmer
service CISCO Routers review www.CISCO.cOm suppOrt fOr CISCO Router CISCO
Router repair service CISCO Router phOne number fOr CISCO Router suppOrt CISCO
Router website CISCO Routers custOmer service phOne CISCO Router prOblems and
sOlutiOns CISCOs Routers custOmer service phOne number custOmer service CISCO
Router sOlutiOn CISCO CISCO fax suppOrt mfc CISCO Router CISCO Router custOmer
service phOne CISCO Router help number CISCO mfc-846On drivers fOr CISCO
Routers CISCO technical suppOrt phOne number CISCO custOmer service phOne
cOntact CISCO Routers CISCO Router custOmer care number CISCO help desk CISCO
Online suppOrt CISCO custOmer suppOrt phOne number CISCOs Router custOmer
service CISCO Router mfc CISCO Routers tech suppOrt phOne number CISCO service
CISCOs tech suppOrt CISCO Routers custOmer service phOne number CISCO Router
install CISCO laser Routers CISCOs Routers suppOrt CISCO Router CISCO Router
service centre CISCO Router updates CISCO inkjet Router cOntact CISCO suppOrt
CISCO tech suppOrt phOne CISCO lc61 CISCOs Routers tech suppOrt Routers Online
cOntact CISCO Router CISCOs Router CISCO label Router CISCO custOmer suppOrt
phOne CISCO Routers custOmer suppOrt number CISCO suppOrt centre CISCO laser
Router CISCO Router custOmer service suppOrt CISCO wireless Router setup buy
CISCO Router Online CISCO Router tech suppOrt number CISCO netwOrk Router CISCO
Routers custOmer service number custOmer service fOr CISCO Routers CISCO
service centre CISCO wireless Router CISCO Routers CISCO custOmer care CISCO
Router Online suppOrt CISCO Router tOll free number phOne number fOr CISCO
Routers CISCO Router installatiOn CISCO Routers help desk CISCO Router suppOrt
phOne service CISCO CISCO CISCO Router custOmer
service/@!!((I+800+681+72O8+))!!@CISCO Router suppOrt phOne number CISCO Router
tech suppOrt phOne number USA
>From gcc-bugs-return-534479-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 22:21:26 2016
Return-Path: <gcc-bugs-return-534479-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 47191 invoked by alias); 12 Aug 2016 22:21:26 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 47180 invoked by uid 89); 12 Aug 2016 22:21:25 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, U*@@, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 22:21:15 +0000
From: "wsarah471 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75712] New: @%@$$$@^^@1_8OOx681x7208 @^^@@%AIM M.a.i.lt.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
Date: Fri, 12 Aug 2016 22:21:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: trans-mem
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: wsarah471 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75712-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01815.txt.bz2
Content-length: 6106

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75712

            Bug ID: 75712
           Summary: @%@$$$@^^@1_8OOx681x7208 @^^@@%AIM M.a.i.lt.e.c.h.
                    s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
           Product: gcc
           Version: trans-mem
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: wsarah471 at gmail dot com
  Target Milestone: ---

/@!!((I+855+681+7208+))!!@AIM mail suppOrt phOne number AIM mail tech suppOrt
phOne number USA UST<::: /@!!((I+855+681+7208+))!!@AIM mail suppOrt phOne
number AIM mail tech suppOrt phOne number USA AIM mail custOmer service
@@@++@@++I+855+681+7208 !!++++@@+++@@@@+AIM mail suppOrt phOne number AIM mail
tech suppOrt phOne number USA JUST<::: /@!!((I+855+681+7208+))!!@AIM mail
suppOrt phOne number AIM mail tech suppOrt phOne number USA AIM mail custOmer
service@@!!((*I+855+681+7208+))!!@@AIM mail suppOrt phOne number AIM mail tech
suppOrt phOne number USA, AIM mail technical suppOrt phOne number AIM mail
custOmer suppOrt phOne number AIM mail phOne number AIM mail custOmer care
phOne number brOhter mail custOmer care number AIM mail tOll free phOne number
AIM mail suppOrt AIM suppOrt AIM mails suppOrt AIM custOmer service AIM mail
help AIM tech suppOrt AIM mail custOmer service AIM mail tech suppOrt AIM
technical suppOrt AIM mail trOubleshOOting AIM mails trOubleshOOting AIM
internatiOnal AIMs mail suppOrt AIM custOmer suppOrt AIM mail technical suppOrt
AIM mail repair AIM mail helpline AIM mails custOmer service AIM service center
AIMs mails suppOrt AIM helpline AIM custOmer service phOne number install AIM
mail AIM mails tech suppOrt AIM mail suppOrt number AIM mail custOmer suppOrt
AIM mail cOntact number AIM mail prOblems AIM mails help AIM mail service AIM
mail service center AIM mail cOntact AIM custOmer service number AIM mails
helpline AIM suppOrt number AIM mail repairs AIM mail scanner AIM mails phOne
number AIM mails custOmer suppOrt AIM suppOrt center AIM tech suppOrt phOne
number AIMs mails custOmer service AIM mail custOmer service number AIM mails
technical suppOrt AIM mail helpline number AIM suppOrt phOne number AIM suppOrt
mail AIM technical suppOrt number AIM mails cOntact trOubleshOOting AIM mail
AIM mail phOne suppOrt AIM mails suppOrt phOne number trOubleshOOt AIM mail AIM
mails cOntact number AIMs custOmer service AIM mail number AIM phOne suppOrt
AIM trOubleshOOting AIM mail custOmer care AIM mail help desk drivers fOr AIM
mails AIM technical suppOrt phOne number AIM custOmer service phOne cOntact AIM
mails AIM mail custOmer care number AIM help desk AIM Online suppOrt AIM
custOmer suppOrt phOne number AIMs mail custOmer service AIM mail mfc AIM mails
tech suppOrt phOne number AIM service AIMs tech suppOrt AIM mails custOmer
service phOne number AIM mail install AIM laser mails AIMs mails suppOrt AIM
mail AIM mail service centre AIM mail updates AIM inkjet mail cOntact AIM
suppOrt AIM tech suppOrt phOne AIM lc61 AIMs mails tech suppOrt mails Online
cOntact AIM mail AIMs mail AIM label mail AIM custOmer suppOrt phOne AIM mails
custOmer suppOrt number AIM suppOrt centre AIM laser mail AIM mail custOmer
service suppOrt AIM wireless mail setup buy AIM mail Online AIM mail tech
suppOrt number AIM netwOrk mail AIM mails custOmer service number custOmer
service fOr AIM mails AIM service centre AIM wireless mail AIM mails AIM
custOmer care AIM mail Online suppOrt AIM mail tOll free number phOne number
fOr AIM mails AIM mail installatiOn AIM mails help desk AIM mail suppOrt phOne
service AIM AIM mfc AIM mail custOmer suppOrt number AIM mails technical
suppOrt phOne number AIM mail hOtline cOntact number fOr AIM mails AIM mail
AIM.cOm suppOrt cOntact AIM mail suppOrt AIM mail trOubleshOOt AIM telephOne
suppOrt AIM mails custOmer suppOrt phOne number AIM mail help phOne number AIM
custOmer service telephOne number AIM mail tech suppOrt phOne AIM.ca suppOrt
AIM mail Online AIM multifunctiOn mail mail suppOrt AIM mail help AIM mfc mail
technical suppOrt fOr AIM mails AIM tech suppOrt number email suppOrt AIM mails
suppOrt phOne mfc AIM AIM hl227Odw AIM mails website AIM mail suppOrt AIM mails
repair repair AIM mail AIM mails suppOrt AIM helpline number AIM scanner mail
AIM mails service AIM mails custOmer service telephOne number AIM mail phOne
number custOmer service AIM mails review www.AIM.cOm suppOrt fOr AIM mail AIM
mail repair service AIM mail phOne number fOr AIM mail suppOrt AIM mail website
AIM mails custOmer service phOne AIM mail prOblems and sOlutiOns AIMs mails
custOmer service phOne number custOmer service AIM mail sOlutiOn AIM AIM fax
suppOrt mfc AIM mail AIM mail custOmer service phOne AIM mail help number AIM
mfc-846On drivers fOr AIM mails AIM technical suppOrt phOne number AIM custOmer
service phOne cOntact AIM mails AIM mail custOmer care number AIM help desk AIM
Online suppOrt AIM custOmer suppOrt phOne number AIMs mail custOmer service AIM
mail mfc AIM mails tech suppOrt phOne number AIM service AIMs tech suppOrt AIM
mails custOmer service phOne number AIM mail install AIM laser mails AIMs mails
suppOrt AIM mail AIM mail service centre AIM mail updates AIM inkjet mail
cOntact AIM suppOrt AIM tech suppOrt phOne AIM lc61 AIMs mails tech suppOrt
mails Online cOntact AIM mail AIMs mail AIM label mail AIM custOmer suppOrt
phOne AIM mails custOmer suppOrt number AIM suppOrt centre AIM laser mail AIM
mail custOmer service suppOrt AIM wireless mail setup buy AIM mail Online AIM
mail tech suppOrt number AIM netwOrk mail AIM mails custOmer service number
custOmer service fOr AIM mails AIM service centre AIM wireless mail AIM mails
AIM custOmer care AIM mail Online suppOrt AIM mail tOll free number phOne
number fOr AIM mails AIM mail installatiOn AIM mails help desk AIM mail suppOrt
phOne service AIM AIM AIM mail custOmer service/@!!((I+855+681+7208+))!!@AIM
mail suppOrt phOne number AIM mail tech suppOrt phOne number USA
>From gcc-bugs-return-534480-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 22:21:45 2016
Return-Path: <gcc-bugs-return-534480-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 48062 invoked by alias); 12 Aug 2016 22:21:45 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 48047 invoked by uid 89); 12 Aug 2016 22:21:43 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, U*@@, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 22:21:32 +0000
From: "mahogany at ov3u841 dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75713] New: @%@$$$@^^@1_8OOx681x72O8 @^^@@%LINKSYS router t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a c.a.n.a.d.a
Date: Fri, 12 Aug 2016 22:21:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: fortran-dev
X-Bugzilla-Keywords:
X-Bugzilla-Severity: critical
X-Bugzilla-Who: mahogany at ov3u841 dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75713-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01816.txt.bz2
Content-length: 7402

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75713

            Bug ID: 75713
           Summary: @%@$$$@^^@1_8OOx681x72O8 @^^@@%LINKSYS router t.e.c.h
                    s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a c.a.n.a.d.a
           Product: gcc
           Version: fortran-dev
            Status: UNCONFIRMED
          Severity: critical
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: mahogany at ov3u841 dot com
  Target Milestone: ---

/@!!((I+800+681+72O8+))!!@LINKSYS Router suppOrt phOne number LINKSYS Router
tech suppOrt phOne number USA UST<::: /@!!((I+800+681+72O8+))!!@LINKSYS Router
suppOrt phOne number LINKSYS Router tech suppOrt phOne number USA LINKSYS
Router custOmer service @@@++@@++I+800+681+72O8 !!++++@@+++@@@@+LINKSYS Router
suppOrt phOne number LINKSYS Router tech suppOrt phOne number USA JUST<:::
/@!!((I+800+681+72O8+))!!@LINKSYS Router suppOrt phOne number LINKSYS Router
tech suppOrt phOne number USA LINKSYS Router custOmer
service@@!!((*I+800+681+72O8+))!!@@LINKSYS Router suppOrt phOne number LINKSYS
Router tech suppOrt phOne number USA, LINKSYS Router technical suppOrt phOne
number LINKSYS Router custOmer suppOrt phOne number LINKSYS Router phOne number
LINKSYS Router custOmer care phOne number brOhter Router custOmer care number
LINKSYS Router tOll free phOne number LINKSYS Router suppOrt LINKSYS suppOrt
LINKSYS Routers suppOrt LINKSYS custOmer service LINKSYS Router help LINKSYS
tech suppOrt LINKSYS Router custOmer service LINKSYS Router tech suppOrt
LINKSYS technical suppOrt LINKSYS Router trOubleshOOting LINKSYS Routers
trOubleshOOting LINKSYS internatiOnal LINKSYSs Router suppOrt LINKSYS custOmer
suppOrt LINKSYS Router technical suppOrt LINKSYS Router repair LINKSYS Router
helpline LINKSYS Routers custOmer service LINKSYS service center LINKSYSs
Routers suppOrt LINKSYS helpline LINKSYS custOmer service phOne number install
LINKSYS Router LINKSYS Routers tech suppOrt LINKSYS Router suppOrt number
LINKSYS Router custOmer suppOrt LINKSYS Router cOntact number LINKSYS Router
prOblems LINKSYS Routers help LINKSYS Router service LINKSYS Router service
center LINKSYS Router cOntact LINKSYS custOmer service number LINKSYS Routers
helpline LINKSYS suppOrt number LINKSYS Router repairs LINKSYS Router scanner
LINKSYS Routers phOne number LINKSYS Routers custOmer suppOrt LINKSYS suppOrt
center LINKSYS tech suppOrt phOne number LINKSYSs Routers custOmer service
LINKSYS Router custOmer service number LINKSYS Routers technical suppOrt
LINKSYS Router helpline number LINKSYS suppOrt phOne number LINKSYS suppOrt
Router LINKSYS technical suppOrt number LINKSYS Routers cOntact trOubleshOOting
LINKSYS Router LINKSYS Router phOne suppOrt LINKSYS Routers suppOrt phOne
number trOubleshOOt LINKSYS Router LINKSYS Routers cOntact number LINKSYSs
custOmer service LINKSYS Router number LINKSYS phOne suppOrt LINKSYS
trOubleshOOting LINKSYS Router custOmer care LINKSYS Router help desk drivers
fOr LINKSYS Routers LINKSYS technical suppOrt phOne number LINKSYS custOmer
service phOne cOntact LINKSYS Routers LINKSYS Router custOmer care number
LINKSYS help desk LINKSYS Online suppOrt LINKSYS custOmer suppOrt phOne number
LINKSYSs Router custOmer service LINKSYS Router mfc LINKSYS Routers tech
suppOrt phOne number LINKSYS service LINKSYSs tech suppOrt LINKSYS Routers
custOmer service phOne number LINKSYS Router install LINKSYS laser Routers
LINKSYSs Routers suppOrt LINKSYS Router LINKSYS Router service centre LINKSYS
Router updates LINKSYS inkjet Router cOntact LINKSYS suppOrt LINKSYS tech
suppOrt phOne LINKSYS lc61 LINKSYSs Routers tech suppOrt Routers Online cOntact
LINKSYS Router LINKSYSs Router LINKSYS label Router LINKSYS custOmer suppOrt
phOne LINKSYS Routers custOmer suppOrt number LINKSYS suppOrt centre LINKSYS
laser Router LINKSYS Router custOmer service suppOrt LINKSYS wireless Router
setup buy LINKSYS Router Online LINKSYS Router tech suppOrt number LINKSYS
netwOrk Router LINKSYS Routers custOmer service number custOmer service fOr
LINKSYS Routers LINKSYS service centre LINKSYS wireless Router LINKSYS Routers
LINKSYS custOmer care LINKSYS Router Online suppOrt LINKSYS Router tOll free
number phOne number fOr LINKSYS Routers LINKSYS Router installatiOn LINKSYS
Routers help desk LINKSYS Router suppOrt phOne service LINKSYS LINKSYS mfc
LINKSYS Router custOmer suppOrt number LINKSYS Routers technical suppOrt phOne
number LINKSYS Router hOtline cOntact number fOr LINKSYS Routers LINKSYS Router
LINKSYS.cOm suppOrt cOntact LINKSYS Router suppOrt LINKSYS Router trOubleshOOt
LINKSYS telephOne suppOrt LINKSYS Routers custOmer suppOrt phOne number LINKSYS
Router help phOne number LINKSYS custOmer service telephOne number LINKSYS
Router tech suppOrt phOne LINKSYS.ca suppOrt LINKSYS Router Online LINKSYS
multifunctiOn Router Router suppOrt LINKSYS Router help LINKSYS mfc Router
technical suppOrt fOr LINKSYS Routers LINKSYS tech suppOrt number email suppOrt
LINKSYS Routers suppOrt phOne mfc LINKSYS LINKSYS hl227Odw LINKSYS Routers
website LINKSYS Router suppOrt LINKSYS Routers repair repair LINKSYS Router
LINKSYS Routers suppOrt LINKSYS helpline number LINKSYS scanner Router LINKSYS
Routers service LINKSYS Routers custOmer service telephOne number LINKSYS
Router phOne number custOmer service LINKSYS Routers review www.LINKSYS.cOm
suppOrt fOr LINKSYS Router LINKSYS Router repair service LINKSYS Router phOne
number fOr LINKSYS Router suppOrt LINKSYS Router website LINKSYS Routers
custOmer service phOne LINKSYS Router prOblems and sOlutiOns LINKSYSs Routers
custOmer service phOne number custOmer service LINKSYS Router sOlutiOn LINKSYS
LINKSYS fax suppOrt mfc LINKSYS Router LINKSYS Router custOmer service phOne
LINKSYS Router help number LINKSYS mfc-846On drivers fOr LINKSYS Routers
LINKSYS technical suppOrt phOne number LINKSYS custOmer service phOne cOntact
LINKSYS Routers LINKSYS Router custOmer care number LINKSYS help desk LINKSYS
Online suppOrt LINKSYS custOmer suppOrt phOne number LINKSYSs Router custOmer
service LINKSYS Router mfc LINKSYS Routers tech suppOrt phOne number LINKSYS
service LINKSYSs tech suppOrt LINKSYS Routers custOmer service phOne number
LINKSYS Router install LINKSYS laser Routers LINKSYSs Routers suppOrt LINKSYS
Router LINKSYS Router service centre LINKSYS Router updates LINKSYS inkjet
Router cOntact LINKSYS suppOrt LINKSYS tech suppOrt phOne LINKSYS lc61 LINKSYSs
Routers tech suppOrt Routers Online cOntact LINKSYS Router LINKSYSs Router
LINKSYS label Router LINKSYS custOmer suppOrt phOne LINKSYS Routers custOmer
suppOrt number LINKSYS suppOrt centre LINKSYS laser Router LINKSYS Router
custOmer service suppOrt LINKSYS wireless Router setup buy LINKSYS Router
Online LINKSYS Router tech suppOrt number LINKSYS netwOrk Router LINKSYS
Routers custOmer service number custOmer service fOr LINKSYS Routers LINKSYS
service centre LINKSYS wireless Router LINKSYS Routers LINKSYS custOmer care
LINKSYS Router Online suppOrt LINKSYS Router tOll free number phOne number fOr
LINKSYS Routers LINKSYS Router installatiOn LINKSYS Routers help desk LINKSYS
Router suppOrt phOne service LINKSYS LINKSYS LINKSYS Router custOmer
service/@!!((I+800+681+72O8+))!!@LINKSYS Router suppOrt phOne number LINKSYS
Router tech suppOrt phOne number USA
>From gcc-bugs-return-534481-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 22:23:10 2016
Return-Path: <gcc-bugs-return-534481-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 51510 invoked by alias); 12 Aug 2016 22:23:09 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 51496 invoked by uid 89); 12 Aug 2016 22:23:08 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, @@@, U*@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 22:22:58 +0000
From: "mahogany at ov3u841 dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75717] New: @%@$$$@^^@1_8OOx681x72O8 @^^@@%BELKIN router t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a c.a.n.a.d.a
Date: Fri, 12 Aug 2016 22:23:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: fortran-dev
X-Bugzilla-Keywords:
X-Bugzilla-Severity: critical
X-Bugzilla-Who: mahogany at ov3u841 dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75717-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01817.txt.bz2
Content-length: 7171

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75717

            Bug ID: 75717
           Summary: @%@$$$@^^@1_8OOx681x72O8 @^^@@%BELKIN router t.e.c.h
                    s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a c.a.n.a.d.a
           Product: gcc
           Version: fortran-dev
            Status: UNCONFIRMED
          Severity: critical
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: mahogany at ov3u841 dot com
  Target Milestone: ---

/@!!((I+800+681+72O8+))!!@BELKIN Router suppOrt phOne number BELKIN Router tech
suppOrt phOne number USA UST<::: /@!!((I+800+681+72O8+))!!@BELKIN Router
suppOrt phOne number BELKIN Router tech suppOrt phOne number USA BELKIN Router
custOmer service @@@++@@++I+800+681+72O8 !!++++@@+++@@@@+BELKIN Router suppOrt
phOne number BELKIN Router tech suppOrt phOne number USA JUST<:::
/@!!((I+800+681+72O8+))!!@BELKIN Router suppOrt phOne number BELKIN Router tech
suppOrt phOne number USA BELKIN Router custOmer
service@@!!((*I+800+681+72O8+))!!@@BELKIN Router suppOrt phOne number BELKIN
Router tech suppOrt phOne number USA, BELKIN Router technical suppOrt phOne
number BELKIN Router custOmer suppOrt phOne number BELKIN Router phOne number
BELKIN Router custOmer care phOne number brOhter Router custOmer care number
BELKIN Router tOll free phOne number BELKIN Router suppOrt BELKIN suppOrt
BELKIN Routers suppOrt BELKIN custOmer service BELKIN Router help BELKIN tech
suppOrt BELKIN Router custOmer service BELKIN Router tech suppOrt BELKIN
technical suppOrt BELKIN Router trOubleshOOting BELKIN Routers trOubleshOOting
BELKIN internatiOnal BELKINs Router suppOrt BELKIN custOmer suppOrt BELKIN
Router technical suppOrt BELKIN Router repair BELKIN Router helpline BELKIN
Routers custOmer service BELKIN service center BELKINs Routers suppOrt BELKIN
helpline BELKIN custOmer service phOne number install BELKIN Router BELKIN
Routers tech suppOrt BELKIN Router suppOrt number BELKIN Router custOmer
suppOrt BELKIN Router cOntact number BELKIN Router prOblems BELKIN Routers help
BELKIN Router service BELKIN Router service center BELKIN Router cOntact BELKIN
custOmer service number BELKIN Routers helpline BELKIN suppOrt number BELKIN
Router repairs BELKIN Router scanner BELKIN Routers phOne number BELKIN Routers
custOmer suppOrt BELKIN suppOrt center BELKIN tech suppOrt phOne number BELKINs
Routers custOmer service BELKIN Router custOmer service number BELKIN Routers
technical suppOrt BELKIN Router helpline number BELKIN suppOrt phOne number
BELKIN suppOrt Router BELKIN technical suppOrt number BELKIN Routers cOntact
trOubleshOOting BELKIN Router BELKIN Router phOne suppOrt BELKIN Routers
suppOrt phOne number trOubleshOOt BELKIN Router BELKIN Routers cOntact number
BELKINs custOmer service BELKIN Router number BELKIN phOne suppOrt BELKIN
trOubleshOOting BELKIN Router custOmer care BELKIN Router help desk drivers fOr
BELKIN Routers BELKIN technical suppOrt phOne number BELKIN custOmer service
phOne cOntact BELKIN Routers BELKIN Router custOmer care number BELKIN help
desk BELKIN Online suppOrt BELKIN custOmer suppOrt phOne number BELKINs Router
custOmer service BELKIN Router mfc BELKIN Routers tech suppOrt phOne number
BELKIN service BELKINs tech suppOrt BELKIN Routers custOmer service phOne
number BELKIN Router install BELKIN laser Routers BELKINs Routers suppOrt
BELKIN Router BELKIN Router service centre BELKIN Router updates BELKIN inkjet
Router cOntact BELKIN suppOrt BELKIN tech suppOrt phOne BELKIN lc61 BELKINs
Routers tech suppOrt Routers Online cOntact BELKIN Router BELKINs Router BELKIN
label Router BELKIN custOmer suppOrt phOne BELKIN Routers custOmer suppOrt
number BELKIN suppOrt centre BELKIN laser Router BELKIN Router custOmer service
suppOrt BELKIN wireless Router setup buy BELKIN Router Online BELKIN Router
tech suppOrt number BELKIN netwOrk Router BELKIN Routers custOmer service
number custOmer service fOr BELKIN Routers BELKIN service centre BELKIN
wireless Router BELKIN Routers BELKIN custOmer care BELKIN Router Online
suppOrt BELKIN Router tOll free number phOne number fOr BELKIN Routers BELKIN
Router installatiOn BELKIN Routers help desk BELKIN Router suppOrt phOne
service BELKIN BELKIN mfc BELKIN Router custOmer suppOrt number BELKIN Routers
technical suppOrt phOne number BELKIN Router hOtline cOntact number fOr BELKIN
Routers BELKIN Router BELKIN.cOm suppOrt cOntact BELKIN Router suppOrt BELKIN
Router trOubleshOOt BELKIN telephOne suppOrt BELKIN Routers custOmer suppOrt
phOne number BELKIN Router help phOne number BELKIN custOmer service telephOne
number BELKIN Router tech suppOrt phOne BELKIN.ca suppOrt BELKIN Router Online
BELKIN multifunctiOn Router Router suppOrt BELKIN Router help BELKIN mfc Router
technical suppOrt fOr BELKIN Routers BELKIN tech suppOrt number email suppOrt
BELKIN Routers suppOrt phOne mfc BELKIN BELKIN hl227Odw BELKIN Routers website
BELKIN Router suppOrt BELKIN Routers repair repair BELKIN Router BELKIN Routers
suppOrt BELKIN helpline number BELKIN scanner Router BELKIN Routers service
BELKIN Routers custOmer service telephOne number BELKIN Router phOne number
custOmer service BELKIN Routers review www.BELKIN.cOm suppOrt fOr BELKIN Router
BELKIN Router repair service BELKIN Router phOne number fOr BELKIN Router
suppOrt BELKIN Router website BELKIN Routers custOmer service phOne BELKIN
Router prOblems and sOlutiOns BELKINs Routers custOmer service phOne number
custOmer service BELKIN Router sOlutiOn BELKIN BELKIN fax suppOrt mfc BELKIN
Router BELKIN Router custOmer service phOne BELKIN Router help number BELKIN
mfc-846On drivers fOr BELKIN Routers BELKIN technical suppOrt phOne number
BELKIN custOmer service phOne cOntact BELKIN Routers BELKIN Router custOmer
care number BELKIN help desk BELKIN Online suppOrt BELKIN custOmer suppOrt
phOne number BELKINs Router custOmer service BELKIN Router mfc BELKIN Routers
tech suppOrt phOne number BELKIN service BELKINs tech suppOrt BELKIN Routers
custOmer service phOne number BELKIN Router install BELKIN laser Routers
BELKINs Routers suppOrt BELKIN Router BELKIN Router service centre BELKIN
Router updates BELKIN inkjet Router cOntact BELKIN suppOrt BELKIN tech suppOrt
phOne BELKIN lc61 BELKINs Routers tech suppOrt Routers Online cOntact BELKIN
Router BELKINs Router BELKIN label Router BELKIN custOmer suppOrt phOne BELKIN
Routers custOmer suppOrt number BELKIN suppOrt centre BELKIN laser Router
BELKIN Router custOmer service suppOrt BELKIN wireless Router setup buy BELKIN
Router Online BELKIN Router tech suppOrt number BELKIN netwOrk Router BELKIN
Routers custOmer service number custOmer service fOr BELKIN Routers BELKIN
service centre BELKIN wireless Router BELKIN Routers BELKIN custOmer care
BELKIN Router Online suppOrt BELKIN Router tOll free number phOne number fOr
BELKIN Routers BELKIN Router installatiOn BELKIN Routers help desk BELKIN
Router suppOrt phOne service BELKIN BELKIN BELKIN Router custOmer
service/@!!((I+800+681+72O8+))!!@BELKIN Router suppOrt phOne number BELKIN
Router tech suppOrt phOne number USA
>From gcc-bugs-return-534482-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 22:23:19 2016
Return-Path: <gcc-bugs-return-534482-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 52317 invoked by alias); 12 Aug 2016 22:23:18 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 52301 invoked by uid 89); 12 Aug 2016 22:23:18 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, @@@, U*@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 22:23:08 +0000
From: "wsarah471 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75718] New: @%@$$$@^^@1_8OOx681x7208 @^^@@%ROGERS M.a.i.lt.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
Date: Fri, 12 Aug 2016 22:23:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: lno
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: wsarah471 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75718-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01818.txt.bz2
Content-length: 6795

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75718

            Bug ID: 75718
           Summary: @%@$$$@^^@1_8OOx681x7208 @^^@@%ROGERS M.a.i.lt.e.c.h.
                    s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
           Product: gcc
           Version: lno
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: wsarah471 at gmail dot com
  Target Milestone: ---

/@!!((I+855+681+7208+))!!@ROGERS mail suppOrt phOne number ROGERS mail tech
suppOrt phOne number USA UST<::: /@!!((I+855+681+7208+))!!@ROGERS mail suppOrt
phOne number ROGERS mail tech suppOrt phOne number USA ROGERS mail custOmer
service @@@++@@++I+855+681+7208 !!++++@@+++@@@@+ROGERS mail suppOrt phOne
number ROGERS mail tech suppOrt phOne number USA JUST<:::
/@!!((I+855+681+7208+))!!@ROGERS mail suppOrt phOne number ROGERS mail tech
suppOrt phOne number USA ROGERS mail custOmer
service@@!!((*I+855+681+7208+))!!@@ROGERS mail suppOrt phOne number ROGERS mail
tech suppOrt phOne number USA, ROGERS mail technical suppOrt phOne number
ROGERS mail custOmer suppOrt phOne number ROGERS mail phOne number ROGERS mail
custOmer care phOne number brOhter mail custOmer care number ROGERS mail tOll
free phOne number ROGERS mail suppOrt ROGERS suppOrt ROGERS mails suppOrt
ROGERS custOmer service ROGERS mail help ROGERS tech suppOrt ROGERS mail
custOmer service ROGERS mail tech suppOrt ROGERS technical suppOrt ROGERS mail
trOubleshOOting ROGERS mails trOubleshOOting ROGERS internatiOnal ROGERSs mail
suppOrt ROGERS custOmer suppOrt ROGERS mail technical suppOrt ROGERS mail
repair ROGERS mail helpline ROGERS mails custOmer service ROGERS service center
ROGERSs mails suppOrt ROGERS helpline ROGERS custOmer service phOne number
install ROGERS mail ROGERS mails tech suppOrt ROGERS mail suppOrt number ROGERS
mail custOmer suppOrt ROGERS mail cOntact number ROGERS mail prOblems ROGERS
mails help ROGERS mail service ROGERS mail service center ROGERS mail cOntact
ROGERS custOmer service number ROGERS mails helpline ROGERS suppOrt number
ROGERS mail repairs ROGERS mail scanner ROGERS mails phOne number ROGERS mails
custOmer suppOrt ROGERS suppOrt center ROGERS tech suppOrt phOne number ROGERSs
mails custOmer service ROGERS mail custOmer service number ROGERS mails
technical suppOrt ROGERS mail helpline number ROGERS suppOrt phOne number
ROGERS suppOrt mail ROGERS technical suppOrt number ROGERS mails cOntact
trOubleshOOting ROGERS mail ROGERS mail phOne suppOrt ROGERS mails suppOrt
phOne number trOubleshOOt ROGERS mail ROGERS mails cOntact number ROGERSs
custOmer service ROGERS mail number ROGERS phOne suppOrt ROGERS trOubleshOOting
ROGERS mail custOmer care ROGERS mail help desk drivers fOr ROGERS mails ROGERS
technical suppOrt phOne number ROGERS custOmer service phOne cOntact ROGERS
mails ROGERS mail custOmer care number ROGERS help desk ROGERS Online suppOrt
ROGERS custOmer suppOrt phOne number ROGERSs mail custOmer service ROGERS mail
mfc ROGERS mails tech suppOrt phOne number ROGERS service ROGERSs tech suppOrt
ROGERS mails custOmer service phOne number ROGERS mail install ROGERS laser
mails ROGERSs mails suppOrt ROGERS mail ROGERS mail service centre ROGERS mail
updates ROGERS inkjet mail cOntact ROGERS suppOrt ROGERS tech suppOrt phOne
ROGERS lc61 ROGERSs mails tech suppOrt mails Online cOntact ROGERS mail ROGERSs
mail ROGERS label mail ROGERS custOmer suppOrt phOne ROGERS mails custOmer
suppOrt number ROGERS suppOrt centre ROGERS laser mail ROGERS mail custOmer
service suppOrt ROGERS wireless mail setup buy ROGERS mail Online ROGERS mail
tech suppOrt number ROGERS netwOrk mail ROGERS mails custOmer service number
custOmer service fOr ROGERS mails ROGERS service centre ROGERS wireless mail
ROGERS mails ROGERS custOmer care ROGERS mail Online suppOrt ROGERS mail tOll
free number phOne number fOr ROGERS mails ROGERS mail installatiOn ROGERS mails
help desk ROGERS mail suppOrt phOne service ROGERS ROGERS mfc ROGERS mail
custOmer suppOrt number ROGERS mails technical suppOrt phOne number ROGERS mail
hOtline cOntact number fOr ROGERS mails ROGERS mail ROGERS.cOm suppOrt cOntact
ROGERS mail suppOrt ROGERS mail trOubleshOOt ROGERS telephOne suppOrt ROGERS
mails custOmer suppOrt phOne number ROGERS mail help phOne number ROGERS
custOmer service telephOne number ROGERS mail tech suppOrt phOne ROGERS.ca
suppOrt ROGERS mail Online ROGERS multifunctiOn mail mail suppOrt ROGERS mail
help ROGERS mfc mail technical suppOrt fOr ROGERS mails ROGERS tech suppOrt
number email suppOrt ROGERS mails suppOrt phOne mfc ROGERS ROGERS hl227Odw
ROGERS mails website ROGERS mail suppOrt ROGERS mails repair repair ROGERS mail
ROGERS mails suppOrt ROGERS helpline number ROGERS scanner mail ROGERS mails
service ROGERS mails custOmer service telephOne number ROGERS mail phOne number
custOmer service ROGERS mails review www.ROGERS.cOm suppOrt fOr ROGERS mail
ROGERS mail repair service ROGERS mail phOne number fOr ROGERS mail suppOrt
ROGERS mail website ROGERS mails custOmer service phOne ROGERS mail prOblems
and sOlutiOns ROGERSs mails custOmer service phOne number custOmer service
ROGERS mail sOlutiOn ROGERS ROGERS fax suppOrt mfc ROGERS mail ROGERS mail
custOmer service phOne ROGERS mail help number ROGERS mfc-846On drivers fOr
ROGERS mails ROGERS technical suppOrt phOne number ROGERS custOmer service
phOne cOntact ROGERS mails ROGERS mail custOmer care number ROGERS help desk
ROGERS Online suppOrt ROGERS custOmer suppOrt phOne number ROGERSs mail
custOmer service ROGERS mail mfc ROGERS mails tech suppOrt phOne number ROGERS
service ROGERSs tech suppOrt ROGERS mails custOmer service phOne number ROGERS
mail install ROGERS laser mails ROGERSs mails suppOrt ROGERS mail ROGERS mail
service centre ROGERS mail updates ROGERS inkjet mail cOntact ROGERS suppOrt
ROGERS tech suppOrt phOne ROGERS lc61 ROGERSs mails tech suppOrt mails Online
cOntact ROGERS mail ROGERSs mail ROGERS label mail ROGERS custOmer suppOrt
phOne ROGERS mails custOmer suppOrt number ROGERS suppOrt centre ROGERS laser
mail ROGERS mail custOmer service suppOrt ROGERS wireless mail setup buy ROGERS
mail Online ROGERS mail tech suppOrt number ROGERS netwOrk mail ROGERS mails
custOmer service number custOmer service fOr ROGERS mails ROGERS service centre
ROGERS wireless mail ROGERS mails ROGERS custOmer care ROGERS mail Online
suppOrt ROGERS mail tOll free number phOne number fOr ROGERS mails ROGERS mail
installatiOn ROGERS mails help desk ROGERS mail suppOrt phOne service ROGERS
ROGERS ROGERS mail custOmer service/@!!((I+855+681+7208+))!!@ROGERS mail
suppOrt phOne number ROGERS mail tech suppOrt phOne number USA
>From gcc-bugs-return-534483-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 22:25:09 2016
Return-Path: <gcc-bugs-return-534483-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 54886 invoked by alias); 12 Aug 2016 22:25:09 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 54875 invoked by uid 89); 12 Aug 2016 22:25:08 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, @@@, U*@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 22:24:58 +0000
From: "ravi2 at codehot dot co.uk" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75722] New: @%@$$$@^^@1_855x7O9x2847 @@^^@@%CANON P.r.i.n.t.e.r t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
Date: Fri, 12 Aug 2016 22:25:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: c++-concepts
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ravi2 at codehot dot co.uk
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75722-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01819.txt.bz2
Content-length: 7231

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75722

            Bug ID: 75722
           Summary: @%@$$$@^^@1_855x7O9x2847 @@^^@@%CANON P.r.i.n.t.e.r
                    t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
           Product: gcc
           Version: c++-concepts
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: ravi2 at codehot dot co.uk
  Target Milestone: ---

re <:::: /@!!((I+855+7O9+2847+))!@#&CANON printer suppOrt phOne number CANON
printer technical suppOrt phOne number USA UST<::::
/@!!((I+855+7O9+2847+))!!@CANON printer suppOrt phOne number CANON printer tech
suppOrt phOne number USA UST<::: /@!!((I+855+7O9+2847+))!!@CANON printer
suppOrt phOne number CANON printer tech suppOrt phOne number USA CANON printer
custOmer service @@@++@@++I+855+7O9+2847 !!++++@@+++@@@@+CANON printer suppOrt
phOne number CANON printer tech suppOrt phOne number USA JUST<:::
/@!!((I+855+7O9+2847+))!!@CANON printer suppOrt phOne number CANON printer tech
suppOrt phOne number USA CANON printer custOmer
service@@!!((*I+855+7O9+2847+))!!@@CANON printer suppOrt phOne number CANON
printer tech suppOrt phOne number USA, CANON printer technical suppOrt phOne
number CANON printer custOmer suppOrt phOne number CANON printer phOne number
CANON printer custOmer care phOne number brOhter printer custOmer care number
CANON printer tOll free phOne number CANON printer suppOrt CANON suppOrt CANON
printers suppOrt CANON custOmer service CANON printer help CANON tech suppOrt
CANON printer custOmer service CANON printer tech suppOrt CANON technical
suppOrt CANON printer trOubleshOOting CANON printers trOubleshOOting CANON
internatiOnal CANONs printer suppOrt CANON custOmer suppOrt CANON printer
technical suppOrt CANON printer repair CANON printer helpline CANON printers
custOmer service CANON service center CANONs printers suppOrt CANON helpline
CANON custOmer service phOne number install CANON printer CANON printers tech
suppOrt CANON printer suppOrt number CANON printer custOmer suppOrt CANON
printer cOntact number CANON printer prOblems CANON printers help CANON printer
service CANON printer service center CANON printer cOntact CANON custOmer
service number CANON printers helpline CANON suppOrt number CANON printer
repairs CANON printer scanner CANON printers phOne number CANON printers
custOmer suppOrt CANON suppOrt center CANON tech suppOrt phOne number CANONs
printers custOmer service CANON printer custOmer service number CANON printers
technical suppOrt CANON printer helpline number CANON suppOrt phOne number
CANON suppOrt printer CANON technical suppOrt number CANON printers cOntact
trOubleshOOting CANON printer CANON printer phOne suppOrt CANON printers
suppOrt phOne number trOubleshOOt CANON printer CANON printers cOntact number
CANONs custOmer service CANON printer number CANON phOne suppOrt CANON
trOubleshOOting CANON printer custOmer care CANON printer help desk drivers fOr
CANON printers CANON technical suppOrt phOne number CANON custOmer service
phOne cOntact CANON printers CANON printer custOmer care number CANON help desk
CANON Online suppOrt CANON custOmer suppOrt phOne number CANONs printer
custOmer service CANON printer mfc CANON printers tech suppOrt phOne number
CANON service CANONs tech suppOrt CANON printers custOmer service phOne number
CANON printer install CANON laser printers CANONs printers suppOrt CANON
printer CANON printer service centre CANON printer updates CANON inkjet printer
cOntact CANON suppOrt CANON tech suppOrt phOne CANON lc61 CANONs printers tech
suppOrt printers Online cOntact CANON printer CANONs printer CANON label
printer CANON custOmer suppOrt phOne CANON printers custOmer suppOrt number
CANON suppOrt centre CANON laser printer CANON printer custOmer service suppOrt
CANON wireless printer setup buy CANON printer Online CANON printer tech
suppOrt number CANON netwOrk printer CANON printers custOmer service number
custOmer service fOr CANON printers CANON service centre CANON wireless printer
CANON printers CANON custOmer care CANON printer Online suppOrt CANON printer
tOll free number phOne number fOr CANON printers CANON printer installatiOn
CANON printers help desk CANON printer suppOrt phOne service CANON CANON mfc
CANON printer custOmer suppOrt number CANON printers technical suppOrt phOne
number CANON printer hOtline cOntact number fOr CANON printers CANON printer
CANON.cOm suppOrt cOntact CANON printer suppOrt CANON printer trOubleshOOt
CANON telephOne suppOrt CANON printers custOmer suppOrt phOne number CANON
printer help phOne number CANON custOmer service telephOne number CANON printer
tech suppOrt phOne CANON.ca suppOrt CANON printer Online CANON multifunctiOn
printer printer suppOrt CANON printer help CANON mfc printer technical suppOrt
fOr CANON printers CANON tech suppOrt number email suppOrt CANON printers
suppOrt phOne mfc CANON CANON hl227Odw CANON printers website CANON printer
suppOrt CANON printers repair repair CANON printer CANON printers suppOrt CANON
helpline number CANON scanner printer CANON printers service CANON printers
custOmer service telephOne number CANON printer phOne number custOmer service
CANON printers review www.CANON.cOm suppOrt fOr CANON printer CANON printer
repair service CANON printer phOne number fOr CANON printer suppOrt CANON
printer website CANON printers custOmer service phOne CANON printer prOblems
and sOlutiOns CANONs printers custOmer service phOne number custOmer service
CANON printer sOlutiOn CANON CANON fax suppOrt mfc CANON printer CANON printer
custOmer service phOne CANON printer help number CANON mfc-846On drivers fOr
CANON printers CANON technical suppOrt phOne number CANON custOmer service
phOne cOntact CANON printers CANON printer custOmer care number CANON help desk
CANON Online suppOrt CANON custOmer suppOrt phOne number CANONs printer
custOmer service CANON printer mfc CANON printers tech suppOrt phOne number
CANON service CANONs tech suppOrt CANON printers custOmer service phOne number
CANON printer install CANON laser printers CANONs printers suppOrt CANON
printer CANON printer service centre CANON printer updates CANON inkjet printer
cOntact CANON suppOrt CANON tech suppOrt phOne CANON lc61 CANONs printers tech
suppOrt printers Online cOntact CANON printer CANONs printer CANON label
printer CANON custOmer suppOrt phOne CANON printers custOmer suppOrt number
CANON suppOrt centre CANON laser printer CANON printer custOmer service suppOrt
CANON wireless printer setup buy CANON printer Online CANON printer tech
suppOrt number CANON netwOrk printer CANON printers custOmer service number
custOmer service fOr CANON printers CANON service centre CANON wireless printer
CANON printers CANON custOmer care CANON printer Online suppOrt CANON printer
tOll free number phOne number fOr CANON printers CANON printer installatiOn
CANON printers help desk CANON printer suppOrt phOne service CANON CANON CANON
printer custOmer service/@!!((I+855+7O9+2847+))!!@CANON printer suppOrt phOne
number CANON printer tech suppOrt phOne number USA
>From gcc-bugs-return-534484-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 22:26:22 2016
Return-Path: <gcc-bugs-return-534484-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 56559 invoked by alias); 12 Aug 2016 22:26:22 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 56547 invoked by uid 89); 12 Aug 2016 22:26:21 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, @@@, U*@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 22:26:11 +0000
From: "ravi2 at codehot dot co.uk" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75725] New: @%@$$$@^^@1_855x7O9x2847 @@^^@@%HP P.r.i.n.t.e.r t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
Date: Fri, 12 Aug 2016 22:26:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: lto
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ravi2 at codehot dot co.uk
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-75725-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01820.txt.bz2
Content-length: 6831

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75725

            Bug ID: 75725
           Summary: @%@$$$@^^@1_855x7O9x2847 @@^^@@%HP P.r.i.n.t.e.r
                    t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
           Product: gcc
           Version: lto
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: ravi2 at codehot dot co.uk
  Target Milestone: ---

Created attachment 39360
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39360&action=edit
re <:::: /@!!((I+855+7O9+2847+))!@#&HP printer suppOrt phOne number HP printer
technical suppOrt phOne number USA UST<:::: /@!!((I+855+7O9+2847+))!!@HP
printer suppOrt phOne number HP printer tech sup

re <:::: /@!!((I+855+7O9+2847+))!@#&HP printer suppOrt phOne number HP printer
technical suppOrt phOne number USA UST<:::: /@!!((I+855+7O9+2847+))!!@HP
printer suppOrt phOne number HP printer tech suppOrt phOne number USA UST<:::
/@!!((I+855+7O9+2847+))!!@HP printer suppOrt phOne number HP printer tech
suppOrt phOne number USA HP printer custOmer service @@@++@@++I+855+7O9+2847
!!++++@@+++@@@@+HP printer suppOrt phOne number HP printer tech suppOrt phOne
number USA JUST<::: /@!!((I+855+7O9+2847+))!!@HP printer suppOrt phOne number
HP printer tech suppOrt phOne number USA HP printer custOmer
service@@!!((*I+855+7O9+2847+))!!@@HP printer suppOrt phOne number HP printer
tech suppOrt phOne number USA, HP printer technical suppOrt phOne number HP
printer custOmer suppOrt phOne number HP printer phOne number HP printer
custOmer care phOne number brOhter printer custOmer care number HP printer tOll
free phOne number HP printer suppOrt HP suppOrt HP printers suppOrt HP custOmer
service HP printer help HP tech suppOrt HP printer custOmer service HP printer
tech suppOrt HP technical suppOrt HP printer trOubleshOOting HP printers
trOubleshOOting HP internatiOnal HPs printer suppOrt HP custOmer suppOrt HP
printer technical suppOrt HP printer repair HP printer helpline HP printers
custOmer service HP service center HPs printers suppOrt HP helpline HP custOmer
service phOne number install HP printer HP printers tech suppOrt HP printer
suppOrt number HP printer custOmer suppOrt HP printer cOntact number HP printer
prOblems HP printers help HP printer service HP printer service center HP
printer cOntact HP custOmer service number HP printers helpline HP suppOrt
number HP printer repairs HP printer scanner HP printers phOne number HP
printers custOmer suppOrt HP suppOrt center HP tech suppOrt phOne number HPs
printers custOmer service HP printer custOmer service number HP printers
technical suppOrt HP printer helpline number HP suppOrt phOne number HP suppOrt
printer HP technical suppOrt number HP printers cOntact trOubleshOOting HP
printer HP printer phOne suppOrt HP printers suppOrt phOne number trOubleshOOt
HP printer HP printers cOntact number HPs custOmer service HP printer number HP
phOne suppOrt HP trOubleshOOting HP printer custOmer care HP printer help desk
drivers fOr HP printers HP technical suppOrt phOne number HP custOmer service
phOne cOntact HP printers HP printer custOmer care number HP help desk HP
Online suppOrt HP custOmer suppOrt phOne number HPs printer custOmer service HP
printer mfc HP printers tech suppOrt phOne number HP service HPs tech suppOrt
HP printers custOmer service phOne number HP printer install HP laser printers
HPs printers suppOrt HP printer HP printer service centre HP printer updates HP
inkjet printer cOntact HP suppOrt HP tech suppOrt phOne HP lc61 HPs printers
tech suppOrt printers Online cOntact HP printer HPs printer HP label printer HP
custOmer suppOrt phOne HP printers custOmer suppOrt number HP suppOrt centre HP
laser printer HP printer custOmer service suppOrt HP wireless printer setup buy
HP printer Online HP printer tech suppOrt number HP netwOrk printer HP printers
custOmer service number custOmer service fOr HP printers HP service centre HP
wireless printer HP printers HP custOmer care HP printer Online suppOrt HP
printer tOll free number phOne number fOr HP printers HP printer installatiOn
HP printers help desk HP printer suppOrt phOne service HP HP mfc HP printer
custOmer suppOrt number HP printers technical suppOrt phOne number HP printer
hOtline cOntact number fOr HP printers HP printer HP.cOm suppOrt cOntact HP
printer suppOrt HP printer trOubleshOOt HP telephOne suppOrt HP printers
custOmer suppOrt phOne number HP printer help phOne number HP custOmer service
telephOne number HP printer tech suppOrt phOne HP.ca suppOrt HP printer Online
HP multifunctiOn printer printer suppOrt HP printer help HP mfc printer
technical suppOrt fOr HP printers HP tech suppOrt number email suppOrt HP
printers suppOrt phOne mfc HP HP hl227Odw HP printers website HP printer
suppOrt HP printers repair repair HP printer HP printers suppOrt HP helpline
number HP scanner printer HP printers service HP printers custOmer service
telephOne number HP printer phOne number custOmer service HP printers review
www.HP.cOm suppOrt fOr HP printer HP printer repair service HP printer phOne
number fOr HP printer suppOrt HP printer website HP printers custOmer service
phOne HP printer prOblems and sOlutiOns HPs printers custOmer service phOne
number custOmer service HP printer sOlutiOn HP HP fax suppOrt mfc HP printer HP
printer custOmer service phOne HP printer help number HP mfc-846On drivers fOr
HP printers HP technical suppOrt phOne number HP custOmer service phOne cOntact
HP printers HP printer custOmer care number HP help desk HP Online suppOrt HP
custOmer suppOrt phOne number HPs printer custOmer service HP printer mfc HP
printers tech suppOrt phOne number HP service HPs tech suppOrt HP printers
custOmer service phOne number HP printer install HP laser printers HPs printers
suppOrt HP printer HP printer service centre HP printer updates HP inkjet
printer cOntact HP suppOrt HP tech suppOrt phOne HP lc61 HPs printers tech
suppOrt printers Online cOntact HP printer HPs printer HP label printer HP
custOmer suppOrt phOne HP printers custOmer suppOrt number HP suppOrt centre HP
laser printer HP printer custOmer service suppOrt HP wireless printer setup buy
HP printer Online HP printer tech suppOrt number HP netwOrk printer HP printers
custOmer service number custOmer service fOr HP printers HP service centre HP
wireless printer HP printers HP custOmer care HP printer Online suppOrt HP
printer tOll free number phOne number fOr HP printers HP printer installatiOn
HP printers help desk HP printer suppOrt phOne service HP HP HP printer
custOmer service/@!!((I+855+7O9+2847+))!!@HP printer suppOrt phOne number HP
printer tech suppOrt phOne number USA
>From gcc-bugs-return-534485-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 22:26:45 2016
Return-Path: <gcc-bugs-return-534485-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 57491 invoked by alias); 12 Aug 2016 22:26:45 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 57470 invoked by uid 89); 12 Aug 2016 22:26:44 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:COM, UD:ca, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 22:26:34 +0000
From: "wsarah471 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75727] New: @%@$$$@^^@1_8OOx681x7208 @^^@@%INBOX.COM M.a.i.lt.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
Date: Fri, 12 Aug 2016 22:26:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: lno
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: wsarah471 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75727-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01821.txt.bz2
Content-length: 7518

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75727

            Bug ID: 75727
           Summary: @%@$$$@^^@1_8OOx681x7208 @^^@@%INBOX.COM
                    M.a.i.lt.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
           Product: gcc
           Version: lno
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: wsarah471 at gmail dot com
  Target Milestone: ---

/@!!((I+855+681+7208+))!!@INBOX.COM mail suppOrt phOne number INBOX.COM mail
tech suppOrt phOne number USA UST<::: /@!!((I+855+681+7208+))!!@INBOX.COM mail
suppOrt phOne number INBOX.COM mail tech suppOrt phOne number USA INBOX.COM
mail custOmer service @@@++@@++I+855+681+7208 !!++++@@+++@@@@+INBOX.COM mail
suppOrt phOne number INBOX.COM mail tech suppOrt phOne number USA JUST<:::
/@!!((I+855+681+7208+))!!@INBOX.COM mail suppOrt phOne number INBOX.COM mail
tech suppOrt phOne number USA INBOX.COM mail custOmer
service@@!!((*I+855+681+7208+))!!@@INBOX.COM mail suppOrt phOne number
INBOX.COM mail tech suppOrt phOne number USA, INBOX.COM mail technical suppOrt
phOne number INBOX.COM mail custOmer suppOrt phOne number INBOX.COM mail phOne
number INBOX.COM mail custOmer care phOne number brOhter mail custOmer care
number INBOX.COM mail tOll free phOne number INBOX.COM mail suppOrt INBOX.COM
suppOrt INBOX.COM mails suppOrt INBOX.COM custOmer service INBOX.COM mail help
INBOX.COM tech suppOrt INBOX.COM mail custOmer service INBOX.COM mail tech
suppOrt INBOX.COM technical suppOrt INBOX.COM mail trOubleshOOting INBOX.COM
mails trOubleshOOting INBOX.COM internatiOnal INBOX.COMs mail suppOrt INBOX.COM
custOmer suppOrt INBOX.COM mail technical suppOrt INBOX.COM mail repair
INBOX.COM mail helpline INBOX.COM mails custOmer service INBOX.COM service
center INBOX.COMs mails suppOrt INBOX.COM helpline INBOX.COM custOmer service
phOne number install INBOX.COM mail INBOX.COM mails tech suppOrt INBOX.COM mail
suppOrt number INBOX.COM mail custOmer suppOrt INBOX.COM mail cOntact number
INBOX.COM mail prOblems INBOX.COM mails help INBOX.COM mail service INBOX.COM
mail service center INBOX.COM mail cOntact INBOX.COM custOmer service number
INBOX.COM mails helpline INBOX.COM suppOrt number INBOX.COM mail repairs
INBOX.COM mail scanner INBOX.COM mails phOne number INBOX.COM mails custOmer
suppOrt INBOX.COM suppOrt center INBOX.COM tech suppOrt phOne number INBOX.COMs
mails custOmer service INBOX.COM mail custOmer service number INBOX.COM mails
technical suppOrt INBOX.COM mail helpline number INBOX.COM suppOrt phOne number
INBOX.COM suppOrt mail INBOX.COM technical suppOrt number INBOX.COM mails
cOntact trOubleshOOting INBOX.COM mail INBOX.COM mail phOne suppOrt INBOX.COM
mails suppOrt phOne number trOubleshOOt INBOX.COM mail INBOX.COM mails cOntact
number INBOX.COMs custOmer service INBOX.COM mail number INBOX.COM phOne
suppOrt INBOX.COM trOubleshOOting INBOX.COM mail custOmer care INBOX.COM mail
help desk drivers fOr INBOX.COM mails INBOX.COM technical suppOrt phOne number
INBOX.COM custOmer service phOne cOntact INBOX.COM mails INBOX.COM mail
custOmer care number INBOX.COM help desk INBOX.COM Online suppOrt INBOX.COM
custOmer suppOrt phOne number INBOX.COMs mail custOmer service INBOX.COM mail
mfc INBOX.COM mails tech suppOrt phOne number INBOX.COM service INBOX.COMs tech
suppOrt INBOX.COM mails custOmer service phOne number INBOX.COM mail install
INBOX.COM laser mails INBOX.COMs mails suppOrt INBOX.COM mail INBOX.COM mail
service centre INBOX.COM mail updates INBOX.COM inkjet mail cOntact INBOX.COM
suppOrt INBOX.COM tech suppOrt phOne INBOX.COM lc61 INBOX.COMs mails tech
suppOrt mails Online cOntact INBOX.COM mail INBOX.COMs mail INBOX.COM label
mail INBOX.COM custOmer suppOrt phOne INBOX.COM mails custOmer suppOrt number
INBOX.COM suppOrt centre INBOX.COM laser mail INBOX.COM mail custOmer service
suppOrt INBOX.COM wireless mail setup buy INBOX.COM mail Online INBOX.COM mail
tech suppOrt number INBOX.COM netwOrk mail INBOX.COM mails custOmer service
number custOmer service fOr INBOX.COM mails INBOX.COM service centre INBOX.COM
wireless mail INBOX.COM mails INBOX.COM custOmer care INBOX.COM mail Online
suppOrt INBOX.COM mail tOll free number phOne number fOr INBOX.COM mails
INBOX.COM mail installatiOn INBOX.COM mails help desk INBOX.COM mail suppOrt
phOne service INBOX.COM INBOX.COM mfc INBOX.COM mail custOmer suppOrt number
INBOX.COM mails technical suppOrt phOne number INBOX.COM mail hOtline cOntact
number fOr INBOX.COM mails INBOX.COM mail INBOX.COM.cOm suppOrt cOntact
INBOX.COM mail suppOrt INBOX.COM mail trOubleshOOt INBOX.COM telephOne suppOrt
INBOX.COM mails custOmer suppOrt phOne number INBOX.COM mail help phOne number
INBOX.COM custOmer service telephOne number INBOX.COM mail tech suppOrt phOne
INBOX.COM.ca suppOrt INBOX.COM mail Online INBOX.COM multifunctiOn mail mail
suppOrt INBOX.COM mail help INBOX.COM mfc mail technical suppOrt fOr INBOX.COM
mails INBOX.COM tech suppOrt number email suppOrt INBOX.COM mails suppOrt phOne
mfc INBOX.COM INBOX.COM hl227Odw INBOX.COM mails website INBOX.COM mail suppOrt
INBOX.COM mails repair repair INBOX.COM mail INBOX.COM mails suppOrt INBOX.COM
helpline number INBOX.COM scanner mail INBOX.COM mails service INBOX.COM mails
custOmer service telephOne number INBOX.COM mail phOne number custOmer service
INBOX.COM mails review www.INBOX.COM.cOm suppOrt fOr INBOX.COM mail INBOX.COM
mail repair service INBOX.COM mail phOne number fOr INBOX.COM mail suppOrt
INBOX.COM mail website INBOX.COM mails custOmer service phOne INBOX.COM mail
prOblems and sOlutiOns INBOX.COMs mails custOmer service phOne number custOmer
service INBOX.COM mail sOlutiOn INBOX.COM INBOX.COM fax suppOrt mfc INBOX.COM
mail INBOX.COM mail custOmer service phOne INBOX.COM mail help number INBOX.COM
mfc-846On drivers fOr INBOX.COM mails INBOX.COM technical suppOrt phOne number
INBOX.COM custOmer service phOne cOntact INBOX.COM mails INBOX.COM mail
custOmer care number INBOX.COM help desk INBOX.COM Online suppOrt INBOX.COM
custOmer suppOrt phOne number INBOX.COMs mail custOmer service INBOX.COM mail
mfc INBOX.COM mails tech suppOrt phOne number INBOX.COM service INBOX.COMs tech
suppOrt INBOX.COM mails custOmer service phOne number INBOX.COM mail install
INBOX.COM laser mails INBOX.COMs mails suppOrt INBOX.COM mail INBOX.COM mail
service centre INBOX.COM mail updates INBOX.COM inkjet mail cOntact INBOX.COM
suppOrt INBOX.COM tech suppOrt phOne INBOX.COM lc61 INBOX.COMs mails tech
suppOrt mails Online cOntact INBOX.COM mail INBOX.COMs mail INBOX.COM label
mail INBOX.COM custOmer suppOrt phOne INBOX.COM mails custOmer suppOrt number
INBOX.COM suppOrt centre INBOX.COM laser mail INBOX.COM mail custOmer service
suppOrt INBOX.COM wireless mail setup buy INBOX.COM mail Online INBOX.COM mail
tech suppOrt number INBOX.COM netwOrk mail INBOX.COM mails custOmer service
number custOmer service fOr INBOX.COM mails INBOX.COM service centre INBOX.COM
wireless mail INBOX.COM mails INBOX.COM custOmer care INBOX.COM mail Online
suppOrt INBOX.COM mail tOll free number phOne number fOr INBOX.COM mails
INBOX.COM mail installatiOn INBOX.COM mails help desk INBOX.COM mail suppOrt
phOne service INBOX.COM INBOX.COM INBOX.COM mail custOmer
service/@!!((I+855+681+7208+))!!@INBOX.COM mail suppOrt phOne number INBOX.COM
mail tech suppOrt phOne number USA
>From gcc-bugs-return-534486-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 22:27:18 2016
Return-Path: <gcc-bugs-return-534486-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 58948 invoked by alias); 12 Aug 2016 22:27:17 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 58932 invoked by uid 89); 12 Aug 2016 22:27:16 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, brothers, UD:ca, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 22:27:06 +0000
From: "attecght at codehot dot co.uk" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug objc++/75728] New: @%@$$$@^^@1_855x709x2847 @^^@@%BROTHER p.r.i.n.t.e.r t.e.c.hnical s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a c.a.n.a.d.a
Date: Fri, 12 Aug 2016 22:27:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: objc++
X-Bugzilla-Version: fortran-dev
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: attecght at codehot dot co.uk
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75728-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01822.txt.bz2
Content-length: 7632

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75728

            Bug ID: 75728
           Summary: @%@$$$@^^@1_855x709x2847 @^^@@%BROTHER p.r.i.n.t.e.r
                    t.e.c.hnical s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a
                    c.a.n.a.d.a
           Product: gcc
           Version: fortran-dev
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: objc++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: attecght at codehot dot co.uk
  Target Milestone: ---

/@!!((I+855+709+2847+))!!@BROTHER printer suppOrt phOne number BROTHER printer
technical suppOrt phOne number USA UST<::: /@!!((I+855+709+2847+))!!@BROTHER
printer suppOrt phOne number BROTHER printer tech suppOrt phOne number USA
BROTHER printer custOmer service @@@++@@++I+855+709+2847
!!++++@@+++@@@@+BROTHER printer suppOrt phOne number BROTHER printer tech
suppOrt phOne number USA JUST<::: /@!!((I+855+709+2847+))!!@BROTHER printer
suppOrt phOne number BROTHER printer tech suppOrt phOne number USA BROTHER
printer custOmer service@@!!((*I+855+709+2847+))!!@@BROTHER printer suppOrt
phOne number BROTHER printer tech suppOrt phOne number USA, BROTHER printer
technical suppOrt phOne number BROTHER printer custOmer suppOrt phOne number
BROTHER printer phOne number BROTHER printer custOmer care phOne number brOhter
printer custOmer care number BROTHER printer tOll free phOne number BROTHER
printer suppOrt BROTHER suppOrt BROTHER printers suppOrt BROTHER custOmer
service BROTHER printer help BROTHER tech suppOrt BROTHER printer custOmer
service BROTHER printer tech suppOrt BROTHER technical suppOrt BROTHER printer
trOubleshOOting BROTHER printers trOubleshOOting BROTHER internatiOnal BROTHERs
printer suppOrt BROTHER custOmer suppOrt BROTHER printer technical suppOrt
BROTHER printer repair BROTHER printer helpline BROTHER printers custOmer
service BROTHER service center BROTHERs printers suppOrt BROTHER helpline
BROTHER custOmer service phOne number install BROTHER printer BROTHER printers
tech suppOrt BROTHER printer suppOrt number BROTHER printer custOmer suppOrt
BROTHER printer cOntact number BROTHER printer prOblems BROTHER printers help
BROTHER printer service BROTHER printer service center BROTHER printer cOntact
BROTHER custOmer service number BROTHER printers helpline BROTHER suppOrt
number BROTHER printer repairs BROTHER printer scanner BROTHER printers phOne
number BROTHER printers custOmer suppOrt BROTHER suppOrt center BROTHER tech
suppOrt phOne number BROTHERs printers custOmer service BROTHER printer
custOmer service number BROTHER printers technical suppOrt BROTHER printer
helpline number BROTHER suppOrt phOne number BROTHER suppOrt printer BROTHER
technical suppOrt number BROTHER printers cOntact trOubleshOOting BROTHER
printer BROTHER printer phOne suppOrt BROTHER printers suppOrt phOne number
trOubleshOOt BROTHER printer BROTHER printers cOntact number BROTHERs custOmer
service BROTHER printer number BROTHER phOne suppOrt BROTHER trOubleshOOting
BROTHER printer custOmer care BROTHER printer help desk drivers fOr BROTHER
printers BROTHER technical suppOrt phOne number BROTHER custOmer service phOne
cOntact BROTHER printers BROTHER printer custOmer care number BROTHER help desk
BROTHER Online suppOrt BROTHER custOmer suppOrt phOne number BROTHERs printer
custOmer service BROTHER printer mfc BROTHER printers tech suppOrt phOne number
BROTHER service BROTHERs tech suppOrt BROTHER printers custOmer service phOne
number BROTHER printer install BROTHER laser printers BROTHERs printers suppOrt
BROTHER printer BROTHER printer service centre BROTHER printer updates BROTHER
inkjet printer cOntact BROTHER suppOrt BROTHER tech suppOrt phOne BROTHER lc61
BROTHERs printers tech suppOrt printers Online cOntact BROTHER printer BROTHERs
printer BROTHER label printer BROTHER custOmer suppOrt phOne BROTHER printers
custOmer suppOrt number BROTHER suppOrt centre BROTHER laser printer BROTHER
printer custOmer service suppOrt BROTHER wireless printer setup buy BROTHER
printer Online BROTHER printer tech suppOrt number BROTHER netwOrk printer
BROTHER printers custOmer service number custOmer service fOr BROTHER printers
BROTHER service centre BROTHER wireless printer BROTHER printers BROTHER
custOmer care BROTHER printer Online suppOrt BROTHER printer tOll free number
phOne number fOr BROTHER printers BROTHER printer installatiOn BROTHER printers
help desk BROTHER printer suppOrt phOne service BROTHER BROTHER mfc BROTHER
printer custOmer suppOrt number BROTHER printers technical suppOrt phOne number
BROTHER printer hOtline cOntact number fOr BROTHER printers BROTHER printer
BROTHER.cOm suppOrt cOntact BROTHER printer suppOrt BROTHER printer
trOubleshOOt BROTHER telephOne suppOrt BROTHER printers custOmer suppOrt phOne
number BROTHER printer help phOne number BROTHER custOmer service telephOne
number BROTHER printer tech suppOrt phOne BROTHER.ca suppOrt BROTHER printer
Online BROTHER multifunctiOn printer printer suppOrt BROTHER printer help
BROTHER mfc printer technical suppOrt fOr BROTHER printers BROTHER tech suppOrt
number email suppOrt BROTHER printers suppOrt phOne mfc BROTHER BROTHER
hl227Odw BROTHER printers website BROTHER printer suppOrt BROTHER printers
repair repair BROTHER printer BROTHER printers suppOrt BROTHER helpline number
BROTHER scanner printer BROTHER printers service BROTHER printers custOmer
service telephOne number BROTHER printer phOne number custOmer service BROTHER
printers review www.BROTHER.cOm suppOrt fOr BROTHER printer BROTHER printer
repair service BROTHER printer phOne number fOr BROTHER printer suppOrt BROTHER
printer website BROTHER printers custOmer service phOne BROTHER printer
prOblems and sOlutiOns BROTHERs printers custOmer service phOne number custOmer
service BROTHER printer sOlutiOn BROTHER BROTHER fax suppOrt mfc BROTHER
printer BROTHER printer custOmer service phOne BROTHER printer help number
BROTHER mfc-846On drivers fOr BROTHER printers BROTHER technical suppOrt phOne
number BROTHER custOmer service phOne cOntact BROTHER printers BROTHER printer
custOmer care number BROTHER help desk BROTHER Online suppOrt BROTHER custOmer
suppOrt phOne number BROTHERs printer custOmer service BROTHER printer mfc
BROTHER printers tech suppOrt phOne number BROTHER service BROTHERs tech
suppOrt BROTHER printers custOmer service phOne number BROTHER printer install
BROTHER laser printers BROTHERs printers suppOrt BROTHER printer BROTHER
printer service centre BROTHER printer updates BROTHER inkjet printer cOntact
BROTHER suppOrt BROTHER tech suppOrt phOne BROTHER lc61 BROTHERs printers tech
suppOrt printers Online cOntact BROTHER printer BROTHERs printer BROTHER label
printer BROTHER custOmer suppOrt phOne BROTHER printers custOmer suppOrt number
BROTHER suppOrt centre BROTHER laser printer BROTHER printer custOmer service
suppOrt BROTHER wireless printer setup buy BROTHER printer Online BROTHER
printer tech suppOrt number BROTHER netwOrk printer BROTHER printers custOmer
service number custOmer service fOr BROTHER printers BROTHER service centre
BROTHER wireless printer BROTHER printers BROTHER custOmer care BROTHER printer
Online suppOrt BROTHER printer tOll free number phOne number fOr BROTHER
printers BROTHER printer installatiOn BROTHER printers help desk BROTHER
printer suppOrt phOne service BROTHER BROTHER BROTHER printer custOmer
service/@!!((I+855+709+2847+))!!@BROTHER printer suppOrt phOne number BROTHER
printer tech suppOrt phOne number USA
>From gcc-bugs-return-534488-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 22:31:28 2016
Return-Path: <gcc-bugs-return-534488-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 64240 invoked by alias); 12 Aug 2016 22:31:27 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 64221 invoked by uid 89); 12 Aug 2016 22:31:27 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:COM, UD:ca, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 22:31:23 +0000
From: "wsarah471 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75745] New: @%@$$$@^^@1_8OOx681x7208 @^^@@%ATT.COM M.a.i.lt.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
Date: Fri, 12 Aug 2016 22:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: c++-concepts
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: wsarah471 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75745-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01824.txt.bz2
Content-length: 7041

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75745

            Bug ID: 75745
           Summary: @%@$$$@^^@1_8OOx681x7208 @^^@@%ATT.COM M.a.i.lt.e.c.h.
                    s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
           Product: gcc
           Version: c++-concepts
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: wsarah471 at gmail dot com
  Target Milestone: ---

/@!!((I+855+681+7208+))!!@ATT.COM mail suppOrt phOne number ATT.COM mail tech
suppOrt phOne number USA UST<::: /@!!((I+855+681+7208+))!!@ATT.COM mail suppOrt
phOne number ATT.COM mail tech suppOrt phOne number USA ATT.COM mail custOmer
service @@@++@@++I+855+681+7208 !!++++@@+++@@@@+ATT.COM mail suppOrt phOne
number ATT.COM mail tech suppOrt phOne number USA JUST<:::
/@!!((I+855+681+7208+))!!@ATT.COM mail suppOrt phOne number ATT.COM mail tech
suppOrt phOne number USA ATT.COM mail custOmer
service@@!!((*I+855+681+7208+))!!@@ATT.COM mail suppOrt phOne number ATT.COM
mail tech suppOrt phOne number USA, ATT.COM mail technical suppOrt phOne number
ATT.COM mail custOmer suppOrt phOne number ATT.COM mail phOne number ATT.COM
mail custOmer care phOne number brOhter mail custOmer care number ATT.COM mail
tOll free phOne number ATT.COM mail suppOrt ATT.COM suppOrt ATT.COM mails
suppOrt ATT.COM custOmer service ATT.COM mail help ATT.COM tech suppOrt ATT.COM
mail custOmer service ATT.COM mail tech suppOrt ATT.COM technical suppOrt
ATT.COM mail trOubleshOOting ATT.COM mails trOubleshOOting ATT.COM
internatiOnal ATT.COMs mail suppOrt ATT.COM custOmer suppOrt ATT.COM mail
technical suppOrt ATT.COM mail repair ATT.COM mail helpline ATT.COM mails
custOmer service ATT.COM service center ATT.COMs mails suppOrt ATT.COM helpline
ATT.COM custOmer service phOne number install ATT.COM mail ATT.COM mails tech
suppOrt ATT.COM mail suppOrt number ATT.COM mail custOmer suppOrt ATT.COM mail
cOntact number ATT.COM mail prOblems ATT.COM mails help ATT.COM mail service
ATT.COM mail service center ATT.COM mail cOntact ATT.COM custOmer service
number ATT.COM mails helpline ATT.COM suppOrt number ATT.COM mail repairs
ATT.COM mail scanner ATT.COM mails phOne number ATT.COM mails custOmer suppOrt
ATT.COM suppOrt center ATT.COM tech suppOrt phOne number ATT.COMs mails
custOmer service ATT.COM mail custOmer service number ATT.COM mails technical
suppOrt ATT.COM mail helpline number ATT.COM suppOrt phOne number ATT.COM
suppOrt mail ATT.COM technical suppOrt number ATT.COM mails cOntact
trOubleshOOting ATT.COM mail ATT.COM mail phOne suppOrt ATT.COM mails suppOrt
phOne number trOubleshOOt ATT.COM mail ATT.COM mails cOntact number ATT.COMs
custOmer service ATT.COM mail number ATT.COM phOne suppOrt ATT.COM
trOubleshOOting ATT.COM mail custOmer care ATT.COM mail help desk drivers fOr
ATT.COM mails ATT.COM technical suppOrt phOne number ATT.COM custOmer service
phOne cOntact ATT.COM mails ATT.COM mail custOmer care number ATT.COM help desk
ATT.COM Online suppOrt ATT.COM custOmer suppOrt phOne number ATT.COMs mail
custOmer service ATT.COM mail mfc ATT.COM mails tech suppOrt phOne number
ATT.COM service ATT.COMs tech suppOrt ATT.COM mails custOmer service phOne
number ATT.COM mail install ATT.COM laser mails ATT.COMs mails suppOrt ATT.COM
mail ATT.COM mail service centre ATT.COM mail updates ATT.COM inkjet mail
cOntact ATT.COM suppOrt ATT.COM tech suppOrt phOne ATT.COM lc61 ATT.COMs mails
tech suppOrt mails Online cOntact ATT.COM mail ATT.COMs mail ATT.COM label mail
ATT.COM custOmer suppOrt phOne ATT.COM mails custOmer suppOrt number ATT.COM
suppOrt centre ATT.COM laser mail ATT.COM mail custOmer service suppOrt ATT.COM
wireless mail setup buy ATT.COM mail Online ATT.COM mail tech suppOrt number
ATT.COM netwOrk mail ATT.COM mails custOmer service number custOmer service fOr
ATT.COM mails ATT.COM service centre ATT.COM wireless mail ATT.COM mails
ATT.COM custOmer care ATT.COM mail Online suppOrt ATT.COM mail tOll free number
phOne number fOr ATT.COM mails ATT.COM mail installatiOn ATT.COM mails help
desk ATT.COM mail suppOrt phOne service ATT.COM ATT.COM mfc ATT.COM mail
custOmer suppOrt number ATT.COM mails technical suppOrt phOne number ATT.COM
mail hOtline cOntact number fOr ATT.COM mails ATT.COM mail ATT.COM.cOm suppOrt
cOntact ATT.COM mail suppOrt ATT.COM mail trOubleshOOt ATT.COM telephOne
suppOrt ATT.COM mails custOmer suppOrt phOne number ATT.COM mail help phOne
number ATT.COM custOmer service telephOne number ATT.COM mail tech suppOrt
phOne ATT.COM.ca suppOrt ATT.COM mail Online ATT.COM multifunctiOn mail mail
suppOrt ATT.COM mail help ATT.COM mfc mail technical suppOrt fOr ATT.COM mails
ATT.COM tech suppOrt number email suppOrt ATT.COM mails suppOrt phOne mfc
ATT.COM ATT.COM hl227Odw ATT.COM mails website ATT.COM mail suppOrt ATT.COM
mails repair repair ATT.COM mail ATT.COM mails suppOrt ATT.COM helpline number
ATT.COM scanner mail ATT.COM mails service ATT.COM mails custOmer service
telephOne number ATT.COM mail phOne number custOmer service ATT.COM mails
review www.ATT.COM.cOm suppOrt fOr ATT.COM mail ATT.COM mail repair service
ATT.COM mail phOne number fOr ATT.COM mail suppOrt ATT.COM mail website ATT.COM
mails custOmer service phOne ATT.COM mail prOblems and sOlutiOns ATT.COMs mails
custOmer service phOne number custOmer service ATT.COM mail sOlutiOn ATT.COM
ATT.COM fax suppOrt mfc ATT.COM mail ATT.COM mail custOmer service phOne
ATT.COM mail help number ATT.COM mfc-846On drivers fOr ATT.COM mails ATT.COM
technical suppOrt phOne number ATT.COM custOmer service phOne cOntact ATT.COM
mails ATT.COM mail custOmer care number ATT.COM help desk ATT.COM Online
suppOrt ATT.COM custOmer suppOrt phOne number ATT.COMs mail custOmer service
ATT.COM mail mfc ATT.COM mails tech suppOrt phOne number ATT.COM service
ATT.COMs tech suppOrt ATT.COM mails custOmer service phOne number ATT.COM mail
install ATT.COM laser mails ATT.COMs mails suppOrt ATT.COM mail ATT.COM mail
service centre ATT.COM mail updates ATT.COM inkjet mail cOntact ATT.COM suppOrt
ATT.COM tech suppOrt phOne ATT.COM lc61 ATT.COMs mails tech suppOrt mails
Online cOntact ATT.COM mail ATT.COMs mail ATT.COM label mail ATT.COM custOmer
suppOrt phOne ATT.COM mails custOmer suppOrt number ATT.COM suppOrt centre
ATT.COM laser mail ATT.COM mail custOmer service suppOrt ATT.COM wireless mail
setup buy ATT.COM mail Online ATT.COM mail tech suppOrt number ATT.COM netwOrk
mail ATT.COM mails custOmer service number custOmer service fOr ATT.COM mails
ATT.COM service centre ATT.COM wireless mail ATT.COM mails ATT.COM custOmer
care ATT.COM mail Online suppOrt ATT.COM mail tOll free number phOne number fOr
ATT.COM mails ATT.COM mail installatiOn ATT.COM mails help desk ATT.COM mail
suppOrt phOne service ATT.COM ATT.COM ATT.COM mail custOmer
service/@!!((I+855+681+7208+))!!@ATT.COM mail suppOrt phOne number ATT.COM mail
tech suppOrt phOne number USA
>From gcc-bugs-return-534489-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 22:31:28 2016
Return-Path: <gcc-bugs-return-534489-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 64248 invoked by alias); 12 Aug 2016 22:31:28 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 64222 invoked by uid 89); 12 Aug 2016 22:31:27 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:COM, UD:ca, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 22:31:17 +0000
From: "wsarah471 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75743] New: @%@$$$@^^@1_8OOx681x7208 @^^@@%ATT.COM M.a.i.lt.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
Date: Fri, 12 Aug 2016 22:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: c++-concepts
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: wsarah471 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75743-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01825.txt.bz2
Content-length: 7041

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75743

            Bug ID: 75743
           Summary: @%@$$$@^^@1_8OOx681x7208 @^^@@%ATT.COM M.a.i.lt.e.c.h.
                    s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
           Product: gcc
           Version: c++-concepts
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: wsarah471 at gmail dot com
  Target Milestone: ---

/@!!((I+855+681+7208+))!!@ATT.COM mail suppOrt phOne number ATT.COM mail tech
suppOrt phOne number USA UST<::: /@!!((I+855+681+7208+))!!@ATT.COM mail suppOrt
phOne number ATT.COM mail tech suppOrt phOne number USA ATT.COM mail custOmer
service @@@++@@++I+855+681+7208 !!++++@@+++@@@@+ATT.COM mail suppOrt phOne
number ATT.COM mail tech suppOrt phOne number USA JUST<:::
/@!!((I+855+681+7208+))!!@ATT.COM mail suppOrt phOne number ATT.COM mail tech
suppOrt phOne number USA ATT.COM mail custOmer
service@@!!((*I+855+681+7208+))!!@@ATT.COM mail suppOrt phOne number ATT.COM
mail tech suppOrt phOne number USA, ATT.COM mail technical suppOrt phOne number
ATT.COM mail custOmer suppOrt phOne number ATT.COM mail phOne number ATT.COM
mail custOmer care phOne number brOhter mail custOmer care number ATT.COM mail
tOll free phOne number ATT.COM mail suppOrt ATT.COM suppOrt ATT.COM mails
suppOrt ATT.COM custOmer service ATT.COM mail help ATT.COM tech suppOrt ATT.COM
mail custOmer service ATT.COM mail tech suppOrt ATT.COM technical suppOrt
ATT.COM mail trOubleshOOting ATT.COM mails trOubleshOOting ATT.COM
internatiOnal ATT.COMs mail suppOrt ATT.COM custOmer suppOrt ATT.COM mail
technical suppOrt ATT.COM mail repair ATT.COM mail helpline ATT.COM mails
custOmer service ATT.COM service center ATT.COMs mails suppOrt ATT.COM helpline
ATT.COM custOmer service phOne number install ATT.COM mail ATT.COM mails tech
suppOrt ATT.COM mail suppOrt number ATT.COM mail custOmer suppOrt ATT.COM mail
cOntact number ATT.COM mail prOblems ATT.COM mails help ATT.COM mail service
ATT.COM mail service center ATT.COM mail cOntact ATT.COM custOmer service
number ATT.COM mails helpline ATT.COM suppOrt number ATT.COM mail repairs
ATT.COM mail scanner ATT.COM mails phOne number ATT.COM mails custOmer suppOrt
ATT.COM suppOrt center ATT.COM tech suppOrt phOne number ATT.COMs mails
custOmer service ATT.COM mail custOmer service number ATT.COM mails technical
suppOrt ATT.COM mail helpline number ATT.COM suppOrt phOne number ATT.COM
suppOrt mail ATT.COM technical suppOrt number ATT.COM mails cOntact
trOubleshOOting ATT.COM mail ATT.COM mail phOne suppOrt ATT.COM mails suppOrt
phOne number trOubleshOOt ATT.COM mail ATT.COM mails cOntact number ATT.COMs
custOmer service ATT.COM mail number ATT.COM phOne suppOrt ATT.COM
trOubleshOOting ATT.COM mail custOmer care ATT.COM mail help desk drivers fOr
ATT.COM mails ATT.COM technical suppOrt phOne number ATT.COM custOmer service
phOne cOntact ATT.COM mails ATT.COM mail custOmer care number ATT.COM help desk
ATT.COM Online suppOrt ATT.COM custOmer suppOrt phOne number ATT.COMs mail
custOmer service ATT.COM mail mfc ATT.COM mails tech suppOrt phOne number
ATT.COM service ATT.COMs tech suppOrt ATT.COM mails custOmer service phOne
number ATT.COM mail install ATT.COM laser mails ATT.COMs mails suppOrt ATT.COM
mail ATT.COM mail service centre ATT.COM mail updates ATT.COM inkjet mail
cOntact ATT.COM suppOrt ATT.COM tech suppOrt phOne ATT.COM lc61 ATT.COMs mails
tech suppOrt mails Online cOntact ATT.COM mail ATT.COMs mail ATT.COM label mail
ATT.COM custOmer suppOrt phOne ATT.COM mails custOmer suppOrt number ATT.COM
suppOrt centre ATT.COM laser mail ATT.COM mail custOmer service suppOrt ATT.COM
wireless mail setup buy ATT.COM mail Online ATT.COM mail tech suppOrt number
ATT.COM netwOrk mail ATT.COM mails custOmer service number custOmer service fOr
ATT.COM mails ATT.COM service centre ATT.COM wireless mail ATT.COM mails
ATT.COM custOmer care ATT.COM mail Online suppOrt ATT.COM mail tOll free number
phOne number fOr ATT.COM mails ATT.COM mail installatiOn ATT.COM mails help
desk ATT.COM mail suppOrt phOne service ATT.COM ATT.COM mfc ATT.COM mail
custOmer suppOrt number ATT.COM mails technical suppOrt phOne number ATT.COM
mail hOtline cOntact number fOr ATT.COM mails ATT.COM mail ATT.COM.cOm suppOrt
cOntact ATT.COM mail suppOrt ATT.COM mail trOubleshOOt ATT.COM telephOne
suppOrt ATT.COM mails custOmer suppOrt phOne number ATT.COM mail help phOne
number ATT.COM custOmer service telephOne number ATT.COM mail tech suppOrt
phOne ATT.COM.ca suppOrt ATT.COM mail Online ATT.COM multifunctiOn mail mail
suppOrt ATT.COM mail help ATT.COM mfc mail technical suppOrt fOr ATT.COM mails
ATT.COM tech suppOrt number email suppOrt ATT.COM mails suppOrt phOne mfc
ATT.COM ATT.COM hl227Odw ATT.COM mails website ATT.COM mail suppOrt ATT.COM
mails repair repair ATT.COM mail ATT.COM mails suppOrt ATT.COM helpline number
ATT.COM scanner mail ATT.COM mails service ATT.COM mails custOmer service
telephOne number ATT.COM mail phOne number custOmer service ATT.COM mails
review www.ATT.COM.cOm suppOrt fOr ATT.COM mail ATT.COM mail repair service
ATT.COM mail phOne number fOr ATT.COM mail suppOrt ATT.COM mail website ATT.COM
mails custOmer service phOne ATT.COM mail prOblems and sOlutiOns ATT.COMs mails
custOmer service phOne number custOmer service ATT.COM mail sOlutiOn ATT.COM
ATT.COM fax suppOrt mfc ATT.COM mail ATT.COM mail custOmer service phOne
ATT.COM mail help number ATT.COM mfc-846On drivers fOr ATT.COM mails ATT.COM
technical suppOrt phOne number ATT.COM custOmer service phOne cOntact ATT.COM
mails ATT.COM mail custOmer care number ATT.COM help desk ATT.COM Online
suppOrt ATT.COM custOmer suppOrt phOne number ATT.COMs mail custOmer service
ATT.COM mail mfc ATT.COM mails tech suppOrt phOne number ATT.COM service
ATT.COMs tech suppOrt ATT.COM mails custOmer service phOne number ATT.COM mail
install ATT.COM laser mails ATT.COMs mails suppOrt ATT.COM mail ATT.COM mail
service centre ATT.COM mail updates ATT.COM inkjet mail cOntact ATT.COM suppOrt
ATT.COM tech suppOrt phOne ATT.COM lc61 ATT.COMs mails tech suppOrt mails
Online cOntact ATT.COM mail ATT.COMs mail ATT.COM label mail ATT.COM custOmer
suppOrt phOne ATT.COM mails custOmer suppOrt number ATT.COM suppOrt centre
ATT.COM laser mail ATT.COM mail custOmer service suppOrt ATT.COM wireless mail
setup buy ATT.COM mail Online ATT.COM mail tech suppOrt number ATT.COM netwOrk
mail ATT.COM mails custOmer service number custOmer service fOr ATT.COM mails
ATT.COM service centre ATT.COM wireless mail ATT.COM mails ATT.COM custOmer
care ATT.COM mail Online suppOrt ATT.COM mail tOll free number phOne number fOr
ATT.COM mails ATT.COM mail installatiOn ATT.COM mails help desk ATT.COM mail
suppOrt phOne service ATT.COM ATT.COM ATT.COM mail custOmer
service/@!!((I+855+681+7208+))!!@ATT.COM mail suppOrt phOne number ATT.COM mail
tech suppOrt phOne number USA
>From gcc-bugs-return-534487-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 22:31:16 2016
Return-Path: <gcc-bugs-return-534487-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 63469 invoked by alias); 12 Aug 2016 22:31:15 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 63454 invoked by uid 89); 12 Aug 2016 22:31:15 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, @@@, U*@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 22:31:05 +0000
From: "mahogany at ov3u841 dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75742] New: @%@$$$@^^@1_8OOx681x72O8 @^^@@%BUFFALO router t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a c.a.n.a.d.a
Date: Fri, 12 Aug 2016 22:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: fortran-dev
X-Bugzilla-Keywords:
X-Bugzilla-Severity: critical
X-Bugzilla-Who: mahogany at ov3u841 dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75742-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01823.txt.bz2
Content-length: 7402

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75742

            Bug ID: 75742
           Summary: @%@$$$@^^@1_8OOx681x72O8 @^^@@%BUFFALO router t.e.c.h
                    s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a c.a.n.a.d.a
           Product: gcc
           Version: fortran-dev
            Status: UNCONFIRMED
          Severity: critical
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: mahogany at ov3u841 dot com
  Target Milestone: ---

/@!!((I+800+681+72O8+))!!@BUFFALO Router suppOrt phOne number BUFFALO Router
tech suppOrt phOne number USA UST<::: /@!!((I+800+681+72O8+))!!@BUFFALO Router
suppOrt phOne number BUFFALO Router tech suppOrt phOne number USA BUFFALO
Router custOmer service @@@++@@++I+800+681+72O8 !!++++@@+++@@@@+BUFFALO Router
suppOrt phOne number BUFFALO Router tech suppOrt phOne number USA JUST<:::
/@!!((I+800+681+72O8+))!!@BUFFALO Router suppOrt phOne number BUFFALO Router
tech suppOrt phOne number USA BUFFALO Router custOmer
service@@!!((*I+800+681+72O8+))!!@@BUFFALO Router suppOrt phOne number BUFFALO
Router tech suppOrt phOne number USA, BUFFALO Router technical suppOrt phOne
number BUFFALO Router custOmer suppOrt phOne number BUFFALO Router phOne number
BUFFALO Router custOmer care phOne number brOhter Router custOmer care number
BUFFALO Router tOll free phOne number BUFFALO Router suppOrt BUFFALO suppOrt
BUFFALO Routers suppOrt BUFFALO custOmer service BUFFALO Router help BUFFALO
tech suppOrt BUFFALO Router custOmer service BUFFALO Router tech suppOrt
BUFFALO technical suppOrt BUFFALO Router trOubleshOOting BUFFALO Routers
trOubleshOOting BUFFALO internatiOnal BUFFALOs Router suppOrt BUFFALO custOmer
suppOrt BUFFALO Router technical suppOrt BUFFALO Router repair BUFFALO Router
helpline BUFFALO Routers custOmer service BUFFALO service center BUFFALOs
Routers suppOrt BUFFALO helpline BUFFALO custOmer service phOne number install
BUFFALO Router BUFFALO Routers tech suppOrt BUFFALO Router suppOrt number
BUFFALO Router custOmer suppOrt BUFFALO Router cOntact number BUFFALO Router
prOblems BUFFALO Routers help BUFFALO Router service BUFFALO Router service
center BUFFALO Router cOntact BUFFALO custOmer service number BUFFALO Routers
helpline BUFFALO suppOrt number BUFFALO Router repairs BUFFALO Router scanner
BUFFALO Routers phOne number BUFFALO Routers custOmer suppOrt BUFFALO suppOrt
center BUFFALO tech suppOrt phOne number BUFFALOs Routers custOmer service
BUFFALO Router custOmer service number BUFFALO Routers technical suppOrt
BUFFALO Router helpline number BUFFALO suppOrt phOne number BUFFALO suppOrt
Router BUFFALO technical suppOrt number BUFFALO Routers cOntact trOubleshOOting
BUFFALO Router BUFFALO Router phOne suppOrt BUFFALO Routers suppOrt phOne
number trOubleshOOt BUFFALO Router BUFFALO Routers cOntact number BUFFALOs
custOmer service BUFFALO Router number BUFFALO phOne suppOrt BUFFALO
trOubleshOOting BUFFALO Router custOmer care BUFFALO Router help desk drivers
fOr BUFFALO Routers BUFFALO technical suppOrt phOne number BUFFALO custOmer
service phOne cOntact BUFFALO Routers BUFFALO Router custOmer care number
BUFFALO help desk BUFFALO Online suppOrt BUFFALO custOmer suppOrt phOne number
BUFFALOs Router custOmer service BUFFALO Router mfc BUFFALO Routers tech
suppOrt phOne number BUFFALO service BUFFALOs tech suppOrt BUFFALO Routers
custOmer service phOne number BUFFALO Router install BUFFALO laser Routers
BUFFALOs Routers suppOrt BUFFALO Router BUFFALO Router service centre BUFFALO
Router updates BUFFALO inkjet Router cOntact BUFFALO suppOrt BUFFALO tech
suppOrt phOne BUFFALO lc61 BUFFALOs Routers tech suppOrt Routers Online cOntact
BUFFALO Router BUFFALOs Router BUFFALO label Router BUFFALO custOmer suppOrt
phOne BUFFALO Routers custOmer suppOrt number BUFFALO suppOrt centre BUFFALO
laser Router BUFFALO Router custOmer service suppOrt BUFFALO wireless Router
setup buy BUFFALO Router Online BUFFALO Router tech suppOrt number BUFFALO
netwOrk Router BUFFALO Routers custOmer service number custOmer service fOr
BUFFALO Routers BUFFALO service centre BUFFALO wireless Router BUFFALO Routers
BUFFALO custOmer care BUFFALO Router Online suppOrt BUFFALO Router tOll free
number phOne number fOr BUFFALO Routers BUFFALO Router installatiOn BUFFALO
Routers help desk BUFFALO Router suppOrt phOne service BUFFALO BUFFALO mfc
BUFFALO Router custOmer suppOrt number BUFFALO Routers technical suppOrt phOne
number BUFFALO Router hOtline cOntact number fOr BUFFALO Routers BUFFALO Router
BUFFALO.cOm suppOrt cOntact BUFFALO Router suppOrt BUFFALO Router trOubleshOOt
BUFFALO telephOne suppOrt BUFFALO Routers custOmer suppOrt phOne number BUFFALO
Router help phOne number BUFFALO custOmer service telephOne number BUFFALO
Router tech suppOrt phOne BUFFALO.ca suppOrt BUFFALO Router Online BUFFALO
multifunctiOn Router Router suppOrt BUFFALO Router help BUFFALO mfc Router
technical suppOrt fOr BUFFALO Routers BUFFALO tech suppOrt number email suppOrt
BUFFALO Routers suppOrt phOne mfc BUFFALO BUFFALO hl227Odw BUFFALO Routers
website BUFFALO Router suppOrt BUFFALO Routers repair repair BUFFALO Router
BUFFALO Routers suppOrt BUFFALO helpline number BUFFALO scanner Router BUFFALO
Routers service BUFFALO Routers custOmer service telephOne number BUFFALO
Router phOne number custOmer service BUFFALO Routers review www.BUFFALO.cOm
suppOrt fOr BUFFALO Router BUFFALO Router repair service BUFFALO Router phOne
number fOr BUFFALO Router suppOrt BUFFALO Router website BUFFALO Routers
custOmer service phOne BUFFALO Router prOblems and sOlutiOns BUFFALOs Routers
custOmer service phOne number custOmer service BUFFALO Router sOlutiOn BUFFALO
BUFFALO fax suppOrt mfc BUFFALO Router BUFFALO Router custOmer service phOne
BUFFALO Router help number BUFFALO mfc-846On drivers fOr BUFFALO Routers
BUFFALO technical suppOrt phOne number BUFFALO custOmer service phOne cOntact
BUFFALO Routers BUFFALO Router custOmer care number BUFFALO help desk BUFFALO
Online suppOrt BUFFALO custOmer suppOrt phOne number BUFFALOs Router custOmer
service BUFFALO Router mfc BUFFALO Routers tech suppOrt phOne number BUFFALO
service BUFFALOs tech suppOrt BUFFALO Routers custOmer service phOne number
BUFFALO Router install BUFFALO laser Routers BUFFALOs Routers suppOrt BUFFALO
Router BUFFALO Router service centre BUFFALO Router updates BUFFALO inkjet
Router cOntact BUFFALO suppOrt BUFFALO tech suppOrt phOne BUFFALO lc61 BUFFALOs
Routers tech suppOrt Routers Online cOntact BUFFALO Router BUFFALOs Router
BUFFALO label Router BUFFALO custOmer suppOrt phOne BUFFALO Routers custOmer
suppOrt number BUFFALO suppOrt centre BUFFALO laser Router BUFFALO Router
custOmer service suppOrt BUFFALO wireless Router setup buy BUFFALO Router
Online BUFFALO Router tech suppOrt number BUFFALO netwOrk Router BUFFALO
Routers custOmer service number custOmer service fOr BUFFALO Routers BUFFALO
service centre BUFFALO wireless Router BUFFALO Routers BUFFALO custOmer care
BUFFALO Router Online suppOrt BUFFALO Router tOll free number phOne number fOr
BUFFALO Routers BUFFALO Router installatiOn BUFFALO Routers help desk BUFFALO
Router suppOrt phOne service BUFFALO BUFFALO BUFFALO Router custOmer
service/@!!((I+800+681+72O8+))!!@BUFFALO Router suppOrt phOne number BUFFALO
Router tech suppOrt phOne number USA
>From gcc-bugs-return-534490-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 22:33:19 2016
Return-Path: <gcc-bugs-return-534490-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 66425 invoked by alias); 12 Aug 2016 22:33:18 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 66352 invoked by uid 89); 12 Aug 2016 22:33:17 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, @@@, U*@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 22:33:07 +0000
From: "wsarah471 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75749] New: @%@$$$@^^@1_8OOx681x7208 @^^@@%ONEDRIVE M.a.i.lt.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
Date: Fri, 12 Aug 2016 22:33:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: wsarah471 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75749-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01826.txt.bz2
Content-length: 7271

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75749

            Bug ID: 75749
           Summary: @%@$$$@^^@1_8OOx681x7208 @^^@@%ONEDRIVE
                    M.a.i.lt.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: wsarah471 at gmail dot com
  Target Milestone: ---

/@!!((I+855+681+7208+))!!@ONEDRIVE mail suppOrt phOne number ONEDRIVE mail tech
suppOrt phOne number USA UST<::: /@!!((I+855+681+7208+))!!@ONEDRIVE mail
suppOrt phOne number ONEDRIVE mail tech suppOrt phOne number USA ONEDRIVE mail
custOmer service @@@++@@++I+855+681+7208 !!++++@@+++@@@@+ONEDRIVE mail suppOrt
phOne number ONEDRIVE mail tech suppOrt phOne number USA JUST<:::
/@!!((I+855+681+7208+))!!@ONEDRIVE mail suppOrt phOne number ONEDRIVE mail tech
suppOrt phOne number USA ONEDRIVE mail custOmer
service@@!!((*I+855+681+7208+))!!@@ONEDRIVE mail suppOrt phOne number ONEDRIVE
mail tech suppOrt phOne number USA, ONEDRIVE mail technical suppOrt phOne
number ONEDRIVE mail custOmer suppOrt phOne number ONEDRIVE mail phOne number
ONEDRIVE mail custOmer care phOne number brOhter mail custOmer care number
ONEDRIVE mail tOll free phOne number ONEDRIVE mail suppOrt ONEDRIVE suppOrt
ONEDRIVE mails suppOrt ONEDRIVE custOmer service ONEDRIVE mail help ONEDRIVE
tech suppOrt ONEDRIVE mail custOmer service ONEDRIVE mail tech suppOrt ONEDRIVE
technical suppOrt ONEDRIVE mail trOubleshOOting ONEDRIVE mails trOubleshOOting
ONEDRIVE internatiOnal ONEDRIVEs mail suppOrt ONEDRIVE custOmer suppOrt
ONEDRIVE mail technical suppOrt ONEDRIVE mail repair ONEDRIVE mail helpline
ONEDRIVE mails custOmer service ONEDRIVE service center ONEDRIVEs mails suppOrt
ONEDRIVE helpline ONEDRIVE custOmer service phOne number install ONEDRIVE mail
ONEDRIVE mails tech suppOrt ONEDRIVE mail suppOrt number ONEDRIVE mail custOmer
suppOrt ONEDRIVE mail cOntact number ONEDRIVE mail prOblems ONEDRIVE mails help
ONEDRIVE mail service ONEDRIVE mail service center ONEDRIVE mail cOntact
ONEDRIVE custOmer service number ONEDRIVE mails helpline ONEDRIVE suppOrt
number ONEDRIVE mail repairs ONEDRIVE mail scanner ONEDRIVE mails phOne number
ONEDRIVE mails custOmer suppOrt ONEDRIVE suppOrt center ONEDRIVE tech suppOrt
phOne number ONEDRIVEs mails custOmer service ONEDRIVE mail custOmer service
number ONEDRIVE mails technical suppOrt ONEDRIVE mail helpline number ONEDRIVE
suppOrt phOne number ONEDRIVE suppOrt mail ONEDRIVE technical suppOrt number
ONEDRIVE mails cOntact trOubleshOOting ONEDRIVE mail ONEDRIVE mail phOne
suppOrt ONEDRIVE mails suppOrt phOne number trOubleshOOt ONEDRIVE mail ONEDRIVE
mails cOntact number ONEDRIVEs custOmer service ONEDRIVE mail number ONEDRIVE
phOne suppOrt ONEDRIVE trOubleshOOting ONEDRIVE mail custOmer care ONEDRIVE
mail help desk drivers fOr ONEDRIVE mails ONEDRIVE technical suppOrt phOne
number ONEDRIVE custOmer service phOne cOntact ONEDRIVE mails ONEDRIVE mail
custOmer care number ONEDRIVE help desk ONEDRIVE Online suppOrt ONEDRIVE
custOmer suppOrt phOne number ONEDRIVEs mail custOmer service ONEDRIVE mail mfc
ONEDRIVE mails tech suppOrt phOne number ONEDRIVE service ONEDRIVEs tech
suppOrt ONEDRIVE mails custOmer service phOne number ONEDRIVE mail install
ONEDRIVE laser mails ONEDRIVEs mails suppOrt ONEDRIVE mail ONEDRIVE mail
service centre ONEDRIVE mail updates ONEDRIVE inkjet mail cOntact ONEDRIVE
suppOrt ONEDRIVE tech suppOrt phOne ONEDRIVE lc61 ONEDRIVEs mails tech suppOrt
mails Online cOntact ONEDRIVE mail ONEDRIVEs mail ONEDRIVE label mail ONEDRIVE
custOmer suppOrt phOne ONEDRIVE mails custOmer suppOrt number ONEDRIVE suppOrt
centre ONEDRIVE laser mail ONEDRIVE mail custOmer service suppOrt ONEDRIVE
wireless mail setup buy ONEDRIVE mail Online ONEDRIVE mail tech suppOrt number
ONEDRIVE netwOrk mail ONEDRIVE mails custOmer service number custOmer service
fOr ONEDRIVE mails ONEDRIVE service centre ONEDRIVE wireless mail ONEDRIVE
mails ONEDRIVE custOmer care ONEDRIVE mail Online suppOrt ONEDRIVE mail tOll
free number phOne number fOr ONEDRIVE mails ONEDRIVE mail installatiOn ONEDRIVE
mails help desk ONEDRIVE mail suppOrt phOne service ONEDRIVE ONEDRIVE mfc
ONEDRIVE mail custOmer suppOrt number ONEDRIVE mails technical suppOrt phOne
number ONEDRIVE mail hOtline cOntact number fOr ONEDRIVE mails ONEDRIVE mail
ONEDRIVE.cOm suppOrt cOntact ONEDRIVE mail suppOrt ONEDRIVE mail trOubleshOOt
ONEDRIVE telephOne suppOrt ONEDRIVE mails custOmer suppOrt phOne number
ONEDRIVE mail help phOne number ONEDRIVE custOmer service telephOne number
ONEDRIVE mail tech suppOrt phOne ONEDRIVE.ca suppOrt ONEDRIVE mail Online
ONEDRIVE multifunctiOn mail mail suppOrt ONEDRIVE mail help ONEDRIVE mfc mail
technical suppOrt fOr ONEDRIVE mails ONEDRIVE tech suppOrt number email suppOrt
ONEDRIVE mails suppOrt phOne mfc ONEDRIVE ONEDRIVE hl227Odw ONEDRIVE mails
website ONEDRIVE mail suppOrt ONEDRIVE mails repair repair ONEDRIVE mail
ONEDRIVE mails suppOrt ONEDRIVE helpline number ONEDRIVE scanner mail ONEDRIVE
mails service ONEDRIVE mails custOmer service telephOne number ONEDRIVE mail
phOne number custOmer service ONEDRIVE mails review www.ONEDRIVE.cOm suppOrt
fOr ONEDRIVE mail ONEDRIVE mail repair service ONEDRIVE mail phOne number fOr
ONEDRIVE mail suppOrt ONEDRIVE mail website ONEDRIVE mails custOmer service
phOne ONEDRIVE mail prOblems and sOlutiOns ONEDRIVEs mails custOmer service
phOne number custOmer service ONEDRIVE mail sOlutiOn ONEDRIVE ONEDRIVE fax
suppOrt mfc ONEDRIVE mail ONEDRIVE mail custOmer service phOne ONEDRIVE mail
help number ONEDRIVE mfc-846On drivers fOr ONEDRIVE mails ONEDRIVE technical
suppOrt phOne number ONEDRIVE custOmer service phOne cOntact ONEDRIVE mails
ONEDRIVE mail custOmer care number ONEDRIVE help desk ONEDRIVE Online suppOrt
ONEDRIVE custOmer suppOrt phOne number ONEDRIVEs mail custOmer service ONEDRIVE
mail mfc ONEDRIVE mails tech suppOrt phOne number ONEDRIVE service ONEDRIVEs
tech suppOrt ONEDRIVE mails custOmer service phOne number ONEDRIVE mail install
ONEDRIVE laser mails ONEDRIVEs mails suppOrt ONEDRIVE mail ONEDRIVE mail
service centre ONEDRIVE mail updates ONEDRIVE inkjet mail cOntact ONEDRIVE
suppOrt ONEDRIVE tech suppOrt phOne ONEDRIVE lc61 ONEDRIVEs mails tech suppOrt
mails Online cOntact ONEDRIVE mail ONEDRIVEs mail ONEDRIVE label mail ONEDRIVE
custOmer suppOrt phOne ONEDRIVE mails custOmer suppOrt number ONEDRIVE suppOrt
centre ONEDRIVE laser mail ONEDRIVE mail custOmer service suppOrt ONEDRIVE
wireless mail setup buy ONEDRIVE mail Online ONEDRIVE mail tech suppOrt number
ONEDRIVE netwOrk mail ONEDRIVE mails custOmer service number custOmer service
fOr ONEDRIVE mails ONEDRIVE service centre ONEDRIVE wireless mail ONEDRIVE
mails ONEDRIVE custOmer care ONEDRIVE mail Online suppOrt ONEDRIVE mail tOll
free number phOne number fOr ONEDRIVE mails ONEDRIVE mail installatiOn ONEDRIVE
mails help desk ONEDRIVE mail suppOrt phOne service ONEDRIVE ONEDRIVE ONEDRIVE
mail custOmer service/@!!((I+855+681+7208+))!!@ONEDRIVE mail suppOrt phOne
number ONEDRIVE mail tech suppOrt phOne number USA
>From gcc-bugs-return-534492-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 22:34:55 2016
Return-Path: <gcc-bugs-return-534492-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 68912 invoked by alias); 12 Aug 2016 22:34:54 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 68829 invoked by uid 89); 12 Aug 2016 22:34:54 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, @@@, U*@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 22:34:43 +0000
From: "wsarah471 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75757] New: @%@$$$@^^@1_8OOx681x7208 @^^@@%EMBARQ M.a.i.lt.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
Date: Fri, 12 Aug 2016 22:34:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: wsarah471 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75757-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01828.txt.bz2
Content-length: 6797

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75757

            Bug ID: 75757
           Summary: @%@$$$@^^@1_8OOx681x7208 @^^@@%EMBARQ M.a.i.lt.e.c.h.
                    s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
           Product: gcc
           Version: 6.2.0
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: wsarah471 at gmail dot com
  Target Milestone: ---

/@!!((I+855+681+7208+))!!@EMBARQ mail suppOrt phOne number EMBARQ mail tech
suppOrt phOne number USA UST<::: /@!!((I+855+681+7208+))!!@EMBARQ mail suppOrt
phOne number EMBARQ mail tech suppOrt phOne number USA EMBARQ mail custOmer
service @@@++@@++I+855+681+7208 !!++++@@+++@@@@+EMBARQ mail suppOrt phOne
number EMBARQ mail tech suppOrt phOne number USA JUST<:::
/@!!((I+855+681+7208+))!!@EMBARQ mail suppOrt phOne number EMBARQ mail tech
suppOrt phOne number USA EMBARQ mail custOmer
service@@!!((*I+855+681+7208+))!!@@EMBARQ mail suppOrt phOne number EMBARQ mail
tech suppOrt phOne number USA, EMBARQ mail technical suppOrt phOne number
EMBARQ mail custOmer suppOrt phOne number EMBARQ mail phOne number EMBARQ mail
custOmer care phOne number brOhter mail custOmer care number EMBARQ mail tOll
free phOne number EMBARQ mail suppOrt EMBARQ suppOrt EMBARQ mails suppOrt
EMBARQ custOmer service EMBARQ mail help EMBARQ tech suppOrt EMBARQ mail
custOmer service EMBARQ mail tech suppOrt EMBARQ technical suppOrt EMBARQ mail
trOubleshOOting EMBARQ mails trOubleshOOting EMBARQ internatiOnal EMBARQs mail
suppOrt EMBARQ custOmer suppOrt EMBARQ mail technical suppOrt EMBARQ mail
repair EMBARQ mail helpline EMBARQ mails custOmer service EMBARQ service center
EMBARQs mails suppOrt EMBARQ helpline EMBARQ custOmer service phOne number
install EMBARQ mail EMBARQ mails tech suppOrt EMBARQ mail suppOrt number EMBARQ
mail custOmer suppOrt EMBARQ mail cOntact number EMBARQ mail prOblems EMBARQ
mails help EMBARQ mail service EMBARQ mail service center EMBARQ mail cOntact
EMBARQ custOmer service number EMBARQ mails helpline EMBARQ suppOrt number
EMBARQ mail repairs EMBARQ mail scanner EMBARQ mails phOne number EMBARQ mails
custOmer suppOrt EMBARQ suppOrt center EMBARQ tech suppOrt phOne number EMBARQs
mails custOmer service EMBARQ mail custOmer service number EMBARQ mails
technical suppOrt EMBARQ mail helpline number EMBARQ suppOrt phOne number
EMBARQ suppOrt mail EMBARQ technical suppOrt number EMBARQ mails cOntact
trOubleshOOting EMBARQ mail EMBARQ mail phOne suppOrt EMBARQ mails suppOrt
phOne number trOubleshOOt EMBARQ mail EMBARQ mails cOntact number EMBARQs
custOmer service EMBARQ mail number EMBARQ phOne suppOrt EMBARQ trOubleshOOting
EMBARQ mail custOmer care EMBARQ mail help desk drivers fOr EMBARQ mails EMBARQ
technical suppOrt phOne number EMBARQ custOmer service phOne cOntact EMBARQ
mails EMBARQ mail custOmer care number EMBARQ help desk EMBARQ Online suppOrt
EMBARQ custOmer suppOrt phOne number EMBARQs mail custOmer service EMBARQ mail
mfc EMBARQ mails tech suppOrt phOne number EMBARQ service EMBARQs tech suppOrt
EMBARQ mails custOmer service phOne number EMBARQ mail install EMBARQ laser
mails EMBARQs mails suppOrt EMBARQ mail EMBARQ mail service centre EMBARQ mail
updates EMBARQ inkjet mail cOntact EMBARQ suppOrt EMBARQ tech suppOrt phOne
EMBARQ lc61 EMBARQs mails tech suppOrt mails Online cOntact EMBARQ mail EMBARQs
mail EMBARQ label mail EMBARQ custOmer suppOrt phOne EMBARQ mails custOmer
suppOrt number EMBARQ suppOrt centre EMBARQ laser mail EMBARQ mail custOmer
service suppOrt EMBARQ wireless mail setup buy EMBARQ mail Online EMBARQ mail
tech suppOrt number EMBARQ netwOrk mail EMBARQ mails custOmer service number
custOmer service fOr EMBARQ mails EMBARQ service centre EMBARQ wireless mail
EMBARQ mails EMBARQ custOmer care EMBARQ mail Online suppOrt EMBARQ mail tOll
free number phOne number fOr EMBARQ mails EMBARQ mail installatiOn EMBARQ mails
help desk EMBARQ mail suppOrt phOne service EMBARQ EMBARQ mfc EMBARQ mail
custOmer suppOrt number EMBARQ mails technical suppOrt phOne number EMBARQ mail
hOtline cOntact number fOr EMBARQ mails EMBARQ mail EMBARQ.cOm suppOrt cOntact
EMBARQ mail suppOrt EMBARQ mail trOubleshOOt EMBARQ telephOne suppOrt EMBARQ
mails custOmer suppOrt phOne number EMBARQ mail help phOne number EMBARQ
custOmer service telephOne number EMBARQ mail tech suppOrt phOne EMBARQ.ca
suppOrt EMBARQ mail Online EMBARQ multifunctiOn mail mail suppOrt EMBARQ mail
help EMBARQ mfc mail technical suppOrt fOr EMBARQ mails EMBARQ tech suppOrt
number email suppOrt EMBARQ mails suppOrt phOne mfc EMBARQ EMBARQ hl227Odw
EMBARQ mails website EMBARQ mail suppOrt EMBARQ mails repair repair EMBARQ mail
EMBARQ mails suppOrt EMBARQ helpline number EMBARQ scanner mail EMBARQ mails
service EMBARQ mails custOmer service telephOne number EMBARQ mail phOne number
custOmer service EMBARQ mails review www.EMBARQ.cOm suppOrt fOr EMBARQ mail
EMBARQ mail repair service EMBARQ mail phOne number fOr EMBARQ mail suppOrt
EMBARQ mail website EMBARQ mails custOmer service phOne EMBARQ mail prOblems
and sOlutiOns EMBARQs mails custOmer service phOne number custOmer service
EMBARQ mail sOlutiOn EMBARQ EMBARQ fax suppOrt mfc EMBARQ mail EMBARQ mail
custOmer service phOne EMBARQ mail help number EMBARQ mfc-846On drivers fOr
EMBARQ mails EMBARQ technical suppOrt phOne number EMBARQ custOmer service
phOne cOntact EMBARQ mails EMBARQ mail custOmer care number EMBARQ help desk
EMBARQ Online suppOrt EMBARQ custOmer suppOrt phOne number EMBARQs mail
custOmer service EMBARQ mail mfc EMBARQ mails tech suppOrt phOne number EMBARQ
service EMBARQs tech suppOrt EMBARQ mails custOmer service phOne number EMBARQ
mail install EMBARQ laser mails EMBARQs mails suppOrt EMBARQ mail EMBARQ mail
service centre EMBARQ mail updates EMBARQ inkjet mail cOntact EMBARQ suppOrt
EMBARQ tech suppOrt phOne EMBARQ lc61 EMBARQs mails tech suppOrt mails Online
cOntact EMBARQ mail EMBARQs mail EMBARQ label mail EMBARQ custOmer suppOrt
phOne EMBARQ mails custOmer suppOrt number EMBARQ suppOrt centre EMBARQ laser
mail EMBARQ mail custOmer service suppOrt EMBARQ wireless mail setup buy EMBARQ
mail Online EMBARQ mail tech suppOrt number EMBARQ netwOrk mail EMBARQ mails
custOmer service number custOmer service fOr EMBARQ mails EMBARQ service centre
EMBARQ wireless mail EMBARQ mails EMBARQ custOmer care EMBARQ mail Online
suppOrt EMBARQ mail tOll free number phOne number fOr EMBARQ mails EMBARQ mail
installatiOn EMBARQ mails help desk EMBARQ mail suppOrt phOne service EMBARQ
EMBARQ EMBARQ mail custOmer service/@!!((I+855+681+7208+))!!@EMBARQ mail
suppOrt phOne number EMBARQ mail tech suppOrt phOne number USA
>From gcc-bugs-return-534491-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 22:34:52 2016
Return-Path: <gcc-bugs-return-534491-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 68577 invoked by alias); 12 Aug 2016 22:34:52 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 68556 invoked by uid 89); 12 Aug 2016 22:34:51 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, brothers, UD:ca, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 22:34:41 +0000
From: "attecght at codehot dot co.uk" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug objc++/75756] New: @%@$$$@^^@1_855x709x2847 @^^@@%BROTHER p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e  technical support phone n.u.m.b.e.r u.s.a c.a.n.a.d.a
Date: Fri, 12 Aug 2016 22:34:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: objc++
X-Bugzilla-Version: fortran-dev
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: attecght at codehot dot co.uk
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-75756-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01827.txt.bz2
Content-length: 7956

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75756

            Bug ID: 75756
           Summary: @%@$$$@^^@1_855x709x2847 @^^@@%BROTHER p.r.i.n.t.e.r
                    t.e.c.h s.u.p.p.o.r.t p.h.o.n.e  technical support
                    phone n.u.m.b.e.r u.s.a c.a.n.a.d.a
           Product: gcc
           Version: fortran-dev
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: objc++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: attecght at codehot dot co.uk
  Target Milestone: ---

Created attachment 39362
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39362&action=edit
/@!!((I+855+709+2847+))!!@BROTHER printer suppOrt phOne number BROTHER printer
technical suppOrt phOne number USA UST<::: /@!!((I+855+709+2847+))!!@BROTHER
printer suppOrt phOne number BROTHER printer

/@!!((I+855+709+2847+))!!@BROTHER printer suppOrt phOne number BROTHER printer
technical suppOrt phOne number USA UST<::: /@!!((I+855+709+2847+))!!@BROTHER
printer suppOrt phOne number BROTHER printer tech suppOrt phOne number USA
BROTHER printer custOmer service @@@++@@++I+855+709+2847
!!++++@@+++@@@@+BROTHER printer suppOrt phOne number BROTHER printer tech
suppOrt phOne number USA JUST<::: /@!!((I+855+709+2847+))!!@BROTHER printer
suppOrt phOne number BROTHER printer tech suppOrt phOne number USA BROTHER
printer custOmer service@@!!((*I+855+709+2847+))!!@@BROTHER printer suppOrt
phOne number BROTHER printer tech suppOrt phOne number USA, BROTHER printer
technical suppOrt phOne number BROTHER printer custOmer suppOrt phOne number
BROTHER printer phOne number BROTHER printer custOmer care phOne number brOhter
printer custOmer care number BROTHER printer tOll free phOne number BROTHER
printer suppOrt BROTHER suppOrt BROTHER printers suppOrt BROTHER custOmer
service BROTHER printer help BROTHER tech suppOrt BROTHER printer custOmer
service BROTHER printer tech suppOrt BROTHER technical suppOrt BROTHER printer
trOubleshOOting BROTHER printers trOubleshOOting BROTHER internatiOnal BROTHERs
printer suppOrt BROTHER custOmer suppOrt BROTHER printer technical suppOrt
BROTHER printer repair BROTHER printer helpline BROTHER printers custOmer
service BROTHER service center BROTHERs printers suppOrt BROTHER helpline
BROTHER custOmer service phOne number install BROTHER printer BROTHER printers
tech suppOrt BROTHER printer suppOrt number BROTHER printer custOmer suppOrt
BROTHER printer cOntact number BROTHER printer prOblems BROTHER printers help
BROTHER printer service BROTHER printer service center BROTHER printer cOntact
BROTHER custOmer service number BROTHER printers helpline BROTHER suppOrt
number BROTHER printer repairs BROTHER printer scanner BROTHER printers phOne
number BROTHER printers custOmer suppOrt BROTHER suppOrt center BROTHER tech
suppOrt phOne number BROTHERs printers custOmer service BROTHER printer
custOmer service number BROTHER printers technical suppOrt BROTHER printer
helpline number BROTHER suppOrt phOne number BROTHER suppOrt printer BROTHER
technical suppOrt number BROTHER printers cOntact trOubleshOOting BROTHER
printer BROTHER printer phOne suppOrt BROTHER printers suppOrt phOne number
trOubleshOOt BROTHER printer BROTHER printers cOntact number BROTHERs custOmer
service BROTHER printer number BROTHER phOne suppOrt BROTHER trOubleshOOting
BROTHER printer custOmer care BROTHER printer help desk drivers fOr BROTHER
printers BROTHER technical suppOrt phOne number BROTHER custOmer service phOne
cOntact BROTHER printers BROTHER printer custOmer care number BROTHER help desk
BROTHER Online suppOrt BROTHER custOmer suppOrt phOne number BROTHERs printer
custOmer service BROTHER printer mfc BROTHER printers tech suppOrt phOne number
BROTHER service BROTHERs tech suppOrt BROTHER printers custOmer service phOne
number BROTHER printer install BROTHER laser printers BROTHERs printers suppOrt
BROTHER printer BROTHER printer service centre BROTHER printer updates BROTHER
inkjet printer cOntact BROTHER suppOrt BROTHER tech suppOrt phOne BROTHER lc61
BROTHERs printers tech suppOrt printers Online cOntact BROTHER printer BROTHERs
printer BROTHER label printer BROTHER custOmer suppOrt phOne BROTHER printers
custOmer suppOrt number BROTHER suppOrt centre BROTHER laser printer BROTHER
printer custOmer service suppOrt BROTHER wireless printer setup buy BROTHER
printer Online BROTHER printer tech suppOrt number BROTHER netwOrk printer
BROTHER printers custOmer service number custOmer service fOr BROTHER printers
BROTHER service centre BROTHER wireless printer BROTHER printers BROTHER
custOmer care BROTHER printer Online suppOrt BROTHER printer tOll free number
phOne number fOr BROTHER printers BROTHER printer installatiOn BROTHER printers
help desk BROTHER printer suppOrt phOne service BROTHER BROTHER mfc BROTHER
printer custOmer suppOrt number BROTHER printers technical suppOrt phOne number
BROTHER printer hOtline cOntact number fOr BROTHER printers BROTHER printer
BROTHER.cOm suppOrt cOntact BROTHER printer suppOrt BROTHER printer
trOubleshOOt BROTHER telephOne suppOrt BROTHER printers custOmer suppOrt phOne
number BROTHER printer help phOne number BROTHER custOmer service telephOne
number BROTHER printer tech suppOrt phOne BROTHER.ca suppOrt BROTHER printer
Online BROTHER multifunctiOn printer printer suppOrt BROTHER printer help
BROTHER mfc printer technical suppOrt fOr BROTHER printers BROTHER tech suppOrt
number email suppOrt BROTHER printers suppOrt phOne mfc BROTHER BROTHER
hl227Odw BROTHER printers website BROTHER printer suppOrt BROTHER printers
repair repair BROTHER printer BROTHER printers suppOrt BROTHER helpline number
BROTHER scanner printer BROTHER printers service BROTHER printers custOmer
service telephOne number BROTHER printer phOne number custOmer service BROTHER
printers review www.BROTHER.cOm suppOrt fOr BROTHER printer BROTHER printer
repair service BROTHER printer phOne number fOr BROTHER printer suppOrt BROTHER
printer website BROTHER printers custOmer service phOne BROTHER printer
prOblems and sOlutiOns BROTHERs printers custOmer service phOne number custOmer
service BROTHER printer sOlutiOn BROTHER BROTHER fax suppOrt mfc BROTHER
printer BROTHER printer custOmer service phOne BROTHER printer help number
BROTHER mfc-846On drivers fOr BROTHER printers BROTHER technical suppOrt phOne
number BROTHER custOmer service phOne cOntact BROTHER printers BROTHER printer
custOmer care number BROTHER help desk BROTHER Online suppOrt BROTHER custOmer
suppOrt phOne number BROTHERs printer custOmer service BROTHER printer mfc
BROTHER printers tech suppOrt phOne number BROTHER service BROTHERs tech
suppOrt BROTHER printers custOmer service phOne number BROTHER printer install
BROTHER laser printers BROTHERs printers suppOrt BROTHER printer BROTHER
printer service centre BROTHER printer updates BROTHER inkjet printer cOntact
BROTHER suppOrt BROTHER tech suppOrt phOne BROTHER lc61 BROTHERs printers tech
suppOrt printers Online cOntact BROTHER printer BROTHERs printer BROTHER label
printer BROTHER custOmer suppOrt phOne BROTHER printers custOmer suppOrt number
BROTHER suppOrt centre BROTHER laser printer BROTHER printer custOmer service
suppOrt BROTHER wireless printer setup buy BROTHER printer Online BROTHER
printer tech suppOrt number BROTHER netwOrk printer BROTHER printers custOmer
service number custOmer service fOr BROTHER printers BROTHER service centre
BROTHER wireless printer BROTHER printers BROTHER custOmer care BROTHER printer
Online suppOrt BROTHER printer tOll free number phOne number fOr BROTHER
printers BROTHER printer installatiOn BROTHER printers help desk BROTHER
printer suppOrt phOne service BROTHER BROTHER BROTHER printer custOmer
service/@!!((I+855+709+2847+))!!@BROTHER printer suppOrt phOne number BROTHER
printer tech suppOrt phOne number USA
>From gcc-bugs-return-534493-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 22:43:22 2016
Return-Path: <gcc-bugs-return-534493-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 91230 invoked by alias); 12 Aug 2016 22:43:21 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 91220 invoked by uid 89); 12 Aug 2016 22:43:21 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=3.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT autolearn=no version=3.3.2 spammy=yahoo, @1_8oox681x7208, 1_8OOx681x7208, @1_8OOx681x7208
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 22:43:10 +0000
From: "wsarah471 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75773] New: @%@$$$@^^@1_8OOx681x7208 @^^@@%YAHOO M.a.i.lt.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
Date: Fri, 12 Aug 2016 22:43:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.3.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: wsarah471 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75773-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01829.txt.bz2
Content-length: 486

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75773

            Bug ID: 75773
           Summary: @%@$$$@^^@1_8OOx681x7208 @^^@@%YAHOO M.a.i.lt.e.c.h.
                    s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
           Product: gcc
           Version: 5.3.0
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: wsarah471 at gmail dot com
  Target Milestone: ---
>From gcc-bugs-return-534494-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 22:43:39 2016
Return-Path: <gcc-bugs-return-534494-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 92089 invoked by alias); 12 Aug 2016 22:43:39 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 92077 invoked by uid 89); 12 Aug 2016 22:43:38 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, yahoo, UD:ca, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 22:43:28 +0000
From: "wsarah471 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75774] New: @%@$$$@^^@1_8OOx681x7208 @^^@@%YAHOO M.a.i.lt.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
Date: Fri, 12 Aug 2016 22:43:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.3.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: wsarah471 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75774-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01830.txt.bz2
Content-length: 6566

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75774

            Bug ID: 75774
           Summary: @%@$$$@^^@1_8OOx681x7208 @^^@@%YAHOO M.a.i.lt.e.c.h.
                    s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.r
           Product: gcc
           Version: 5.3.0
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: wsarah471 at gmail dot com
  Target Milestone: ---

/@!!((I+855+681+7208+))!!@YAHOO mail suppOrt phOne number YAHOO mail tech
suppOrt phOne number USA UST<::: /@!!((I+855+681+7208+))!!@YAHOO mail suppOrt
phOne number YAHOO mail tech suppOrt phOne number USA YAHOO mail custOmer
service @@@++@@++I+855+681+7208 !!++++@@+++@@@@+YAHOO mail suppOrt phOne number
YAHOO mail tech suppOrt phOne number USA JUST<:::
/@!!((I+855+681+7208+))!!@YAHOO mail suppOrt phOne number YAHOO mail tech
suppOrt phOne number USA YAHOO mail custOmer
service@@!!((*I+855+681+7208+))!!@@YAHOO mail suppOrt phOne number YAHOO mail
tech suppOrt phOne number USA, YAHOO mail technical suppOrt phOne number YAHOO
mail custOmer suppOrt phOne number YAHOO mail phOne number YAHOO mail custOmer
care phOne number brOhter mail custOmer care number YAHOO mail tOll free phOne
number YAHOO mail suppOrt YAHOO suppOrt YAHOO mails suppOrt YAHOO custOmer
service YAHOO mail help YAHOO tech suppOrt YAHOO mail custOmer service YAHOO
mail tech suppOrt YAHOO technical suppOrt YAHOO mail trOubleshOOting YAHOO
mails trOubleshOOting YAHOO internatiOnal YAHOOs mail suppOrt YAHOO custOmer
suppOrt YAHOO mail technical suppOrt YAHOO mail repair YAHOO mail helpline
YAHOO mails custOmer service YAHOO service center YAHOOs mails suppOrt YAHOO
helpline YAHOO custOmer service phOne number install YAHOO mail YAHOO mails
tech suppOrt YAHOO mail suppOrt number YAHOO mail custOmer suppOrt YAHOO mail
cOntact number YAHOO mail prOblems YAHOO mails help YAHOO mail service YAHOO
mail service center YAHOO mail cOntact YAHOO custOmer service number YAHOO
mails helpline YAHOO suppOrt number YAHOO mail repairs YAHOO mail scanner YAHOO
mails phOne number YAHOO mails custOmer suppOrt YAHOO suppOrt center YAHOO tech
suppOrt phOne number YAHOOs mails custOmer service YAHOO mail custOmer service
number YAHOO mails technical suppOrt YAHOO mail helpline number YAHOO suppOrt
phOne number YAHOO suppOrt mail YAHOO technical suppOrt number YAHOO mails
cOntact trOubleshOOting YAHOO mail YAHOO mail phOne suppOrt YAHOO mails suppOrt
phOne number trOubleshOOt YAHOO mail YAHOO mails cOntact number YAHOOs custOmer
service YAHOO mail number YAHOO phOne suppOrt YAHOO trOubleshOOting YAHOO mail
custOmer care YAHOO mail help desk drivers fOr YAHOO mails YAHOO technical
suppOrt phOne number YAHOO custOmer service phOne cOntact YAHOO mails YAHOO
mail custOmer care number YAHOO help desk YAHOO Online suppOrt YAHOO custOmer
suppOrt phOne number YAHOOs mail custOmer service YAHOO mail mfc YAHOO mails
tech suppOrt phOne number YAHOO service YAHOOs tech suppOrt YAHOO mails
custOmer service phOne number YAHOO mail install YAHOO laser mails YAHOOs mails
suppOrt YAHOO mail YAHOO mail service centre YAHOO mail updates YAHOO inkjet
mail cOntact YAHOO suppOrt YAHOO tech suppOrt phOne YAHOO lc61 YAHOOs mails
tech suppOrt mails Online cOntact YAHOO mail YAHOOs mail YAHOO label mail YAHOO
custOmer suppOrt phOne YAHOO mails custOmer suppOrt number YAHOO suppOrt centre
YAHOO laser mail YAHOO mail custOmer service suppOrt YAHOO wireless mail setup
buy YAHOO mail Online YAHOO mail tech suppOrt number YAHOO netwOrk mail YAHOO
mails custOmer service number custOmer service fOr YAHOO mails YAHOO service
centre YAHOO wireless mail YAHOO mails YAHOO custOmer care YAHOO mail Online
suppOrt YAHOO mail tOll free number phOne number fOr YAHOO mails YAHOO mail
installatiOn YAHOO mails help desk YAHOO mail suppOrt phOne service YAHOO YAHOO
mfc YAHOO mail custOmer suppOrt number YAHOO mails technical suppOrt phOne
number YAHOO mail hOtline cOntact number fOr YAHOO mails YAHOO mail YAHOO.cOm
suppOrt cOntact YAHOO mail suppOrt YAHOO mail trOubleshOOt YAHOO telephOne
suppOrt YAHOO mails custOmer suppOrt phOne number YAHOO mail help phOne number
YAHOO custOmer service telephOne number YAHOO mail tech suppOrt phOne YAHOO.ca
suppOrt YAHOO mail Online YAHOO multifunctiOn mail mail suppOrt YAHOO mail help
YAHOO mfc mail technical suppOrt fOr YAHOO mails YAHOO tech suppOrt number
email suppOrt YAHOO mails suppOrt phOne mfc YAHOO YAHOO hl227Odw YAHOO mails
website YAHOO mail suppOrt YAHOO mails repair repair YAHOO mail YAHOO mails
suppOrt YAHOO helpline number YAHOO scanner mail YAHOO mails service YAHOO
mails custOmer service telephOne number YAHOO mail phOne number custOmer
service YAHOO mails review www.YAHOO.cOm suppOrt fOr YAHOO mail YAHOO mail
repair service YAHOO mail phOne number fOr YAHOO mail suppOrt YAHOO mail
website YAHOO mails custOmer service phOne YAHOO mail prOblems and sOlutiOns
YAHOOs mails custOmer service phOne number custOmer service YAHOO mail sOlutiOn
YAHOO YAHOO fax suppOrt mfc YAHOO mail YAHOO mail custOmer service phOne YAHOO
mail help number YAHOO mfc-846On drivers fOr YAHOO mails YAHOO technical
suppOrt phOne number YAHOO custOmer service phOne cOntact YAHOO mails YAHOO
mail custOmer care number YAHOO help desk YAHOO Online suppOrt YAHOO custOmer
suppOrt phOne number YAHOOs mail custOmer service YAHOO mail mfc YAHOO mails
tech suppOrt phOne number YAHOO service YAHOOs tech suppOrt YAHOO mails
custOmer service phOne number YAHOO mail install YAHOO laser mails YAHOOs mails
suppOrt YAHOO mail YAHOO mail service centre YAHOO mail updates YAHOO inkjet
mail cOntact YAHOO suppOrt YAHOO tech suppOrt phOne YAHOO lc61 YAHOOs mails
tech suppOrt mails Online cOntact YAHOO mail YAHOOs mail YAHOO label mail YAHOO
custOmer suppOrt phOne YAHOO mails custOmer suppOrt number YAHOO suppOrt centre
YAHOO laser mail YAHOO mail custOmer service suppOrt YAHOO wireless mail setup
buy YAHOO mail Online YAHOO mail tech suppOrt number YAHOO netwOrk mail YAHOO
mails custOmer service number custOmer service fOr YAHOO mails YAHOO service
centre YAHOO wireless mail YAHOO mails YAHOO custOmer care YAHOO mail Online
suppOrt YAHOO mail tOll free number phOne number fOr YAHOO mails YAHOO mail
installatiOn YAHOO mails help desk YAHOO mail suppOrt phOne service YAHOO YAHOO
YAHOO mail custOmer service/@!!((I+855+681+7208+))!!@YAHOO mail suppOrt phOne
number YAHOO mail tech suppOrt phOne number USA
>From gcc-bugs-return-534495-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 12 23:05:52 2016
Return-Path: <gcc-bugs-return-534495-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 55304 invoked by alias); 12 Aug 2016 23:05:51 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 55295 invoked by uid 89); 12 Aug 2016 23:05:51 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 12 Aug 2016 23:05:41 +0000
From: "ebotcazou at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug java/71917] [7 regression] libjava.jar/ReturnProxyTest.jar etc. FAIL
Date: Fri, 12 Aug 2016 23:05:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: java
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ebotcazou at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: ebotcazou at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status assigned_to
Message-ID: <bug-71917-4-6CEfOhnM1S@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71917-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71917-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01831.txt.bz2
Content-length: 471

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71917

Eric Botcazou <ebotcazou at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED
           Assignee|unassigned at gcc dot gnu.org      |ebotcazou at gcc dot gnu.org

--- Comment #5 from Eric Botcazou <ebotcazou at gcc dot gnu.org> ---
Investigating.
>From gcc-bugs-return-534496-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 00:23:09 2016
Return-Path: <gcc-bugs-return-534496-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 16928 invoked by alias); 13 Aug 2016 00:23:08 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 16915 invoked by uid 89); 13 Aug 2016 00:23:08 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=tile, architectures, SPARC
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 00:22:57 +0000
From: "ebotcazou at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug java/71917] [7 regression] libjava.jar/ReturnProxyTest.jar etc. FAIL
Date: Sat, 13 Aug 2016 00:23:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: java
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ebotcazou at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: ebotcazou at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71917-4-VaQTlw2IgP@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71917-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71917-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01832.txt.bz2
Content-length: 1251

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71917

--- Comment #6 from Eric Botcazou <ebotcazou at gcc dot gnu.org> ---
> Sorry for the bugs, I am however tempted to say this will turn out to be a
> libffi bug. You have described the same failure mode as I fixed for MIPS but
> libjava is now following the ffi return type rules so my assumption is that
> it is sparc ffi that is not. I've had a quick read of sparc ffi code and it
> seems there is a chance that integer return types are not being promoted to
> word size. I.e. following the ffi rule that integers smaller than a word are
> returned as type ffi_arg.

No, integer return types are of course promoted to word size as per the ABI.

It looks like the issue comes from FFI_SIZEOF_ARG not being defined for SPARC,
but it's not defined for many architectures as of this writing:

./tile/ffitarget.h:# define FFI_SIZEOF_ARG 8
./tile/ffitarget.h:# define FFI_SIZEOF_ARG 4
./mips/ffitarget.h:#  define FFI_SIZEOF_ARG    4
./mips/ffitarget.h:#  define FFI_SIZEOF_ARG    8
./x86/ffitarget.h:#define FFI_SIZEOF_ARG 8
./x86/ffitarget.h:#define FFI_SIZEOF_ARG 8
./aarch64/ffitarget.h:#define FFI_SIZEOF_ARG 8

so your change will probably break some others (64-bit PA comes to mind).
>From gcc-bugs-return-534497-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 00:46:40 2016
Return-Path: <gcc-bugs-return-534497-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 84511 invoked by alias); 13 Aug 2016 00:46:40 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 83975 invoked by uid 89); 13 Aug 2016 00:46:39 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 00:46:29 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: =?UTF-8?B?W0J1ZyBydGwtb3B0aW1pemF0aW9uLzcyODczXSBlcnJvcjog4oCYYXNt4oCZ?= =?UTF-8?B?IG9wZXJhbmQgaGFzIGltcG9zc2libGUgY29uc3RyYWludHM=?Date: Sat, 13 Aug 2016 00:46:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72873-4-u2ZT9doKgO@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72873-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72873-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01833.txt.bz2
Content-length: 277

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72873

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
I don't see why you think this is a bug.

Though I can see that the m should be able to handle reg+imm and then there are
only really two registers used.
>From gcc-bugs-return-534498-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 05:22:48 2016
Return-Path: <gcc-bugs-return-534498-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 3035 invoked by alias); 13 Aug 2016 05:22:46 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 3024 invoked by uid 89); 13 Aug 2016 05:22:45 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 05:22:35 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug lto/75194] -flto loses .debug_macro section
Date: Sat, 13 Aug 2016 05:22:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: lto
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-75194-4-zovMK5e4Uz@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-75194-4@http.gcc.gnu.org/bugzilla/>
References: <bug-75194-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01834.txt.bz2
Content-length: 174

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75194

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
This might be fixed for GCC 6 with early debug info.
>From gcc-bugs-return-534499-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 05:32:27 2016
Return-Path: <gcc-bugs-return-534499-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 17755 invoked by alias); 13 Aug 2016 05:32:26 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 17715 invoked by uid 89); 13 Aug 2016 05:32:18 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=tracer
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 05:32:08 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/67606] Missing optimization: load possible return value before early-out test
Date: Sat, 13 Aug 2016 05:32:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 5.2.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-67606-4-qxc5lc4Wb2@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67606-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67606-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01835.txt.bz2
Content-length: 1140

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67606

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Note -O2 is fine, it is just -O3 which is worse.
-O2 with the trunk 4 days ago on aarch64-linux-gnu:
f:
        mov     x4, x0
        cmp     w1, 0
        ble     .L5
        mov     x2, 0
        mov     w0, 0
        .p2align 3
.L4:
        ldr     w3, [x4, x2, lsl 2]
        add     x2, x2, 1
        cmp     w3, 6
        cinc    w0, w0, ge
        cmp     w1, w2
        bgt     .L4
        ret
        .p2align 3
.L5:
        mov     w0, 0
        ret

-O3 -fno-tree-vectorize :
f:
        mov     x4, x0
        cmp     w1, 0
        ble     .L7
        mov     x2, 0
        mov     w0, 0
        .p2align 3
.L3:
        ldr     w3, [x4, x2, lsl 2]
        add     x2, x2, 1
        cmp     w3, 5
        ble     .L4
        add     w0, w0, 1
        cmp     w1, w2
        bgt     .L3
        ret
        .p2align 3
.L4:
        cmp     w1, w2
        bgt     .L3
        ret
        .p2align 3
.L7:
        mov     w0, 0
        ret

Oh it is worse since tracer happens at -O3 but ifconvert happens later.
>From gcc-bugs-return-534500-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 05:40:50 2016
Return-Path: <gcc-bugs-return-534500-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 22311 invoked by alias); 13 Aug 2016 05:40:49 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 22188 invoked by uid 89); 13 Aug 2016 05:40:29 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:541
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 05:40:19 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/73450] [7 Regression] wrong code at -Os and above on x86_64-linux-gnu in both 32-bit and 64-bit modes (executable hangs)
Date: Sat, 13 Aug 2016 05:40:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: DUPLICATE
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_status resolution
Message-ID: <bug-73450-4-HDTGz5Ys26@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73450-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73450-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01836.txt.bz2
Content-length: 556

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73450

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |wrong-code
             Status|NEW                         |RESOLVED
         Resolution|---                         |DUPLICATE

--- Comment #3 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Dup then.

*** This bug has been marked as a duplicate of bug 72817 ***
>From gcc-bugs-return-534502-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 05:43:03 2016
Return-Path: <gcc-bugs-return-534502-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 24466 invoked by alias); 13 Aug 2016 05:43:03 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 24302 invoked by uid 89); 13 Aug 2016 05:42:54 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 05:42:44 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/72817] [7 Regression] wrong code at -O3 on x86_64-linux-gnu (in both 32-bit and 64-bit modes)
Date: Sat, 13 Aug 2016 05:43:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: amker at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-72817-4-bkQSjBPXwM@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72817-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72817-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01838.txt.bz2
Content-length: 450

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72817

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |chengniansun at gmail dot com

--- Comment #3 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
*** Bug 73450 has been marked as a duplicate of this bug. ***
>From gcc-bugs-return-534501-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 05:43:03 2016
Return-Path: <gcc-bugs-return-534501-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 24455 invoked by alias); 13 Aug 2016 05:43:02 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 24303 invoked by uid 89); 13 Aug 2016 05:42:54 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:320, 2016812, 2016-8-12
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 05:42:45 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ipa/59948] Optimize std::function
Date: Sat, 13 Aug 2016 05:43:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ipa
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cf_reconfirmed_on bug_severity
Message-ID: <bug-59948-4-8JwcmdyDUe@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-59948-4@http.gcc.gnu.org/bugzilla/>
References: <bug-59948-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01837.txt.bz2
Content-length: 359

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=59948

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Last reconfirmed|2014-01-29 00:00:00         |2016-8-12
           Severity|normal                      |enhancement
>From gcc-bugs-return-534503-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 06:00:09 2016
Return-Path: <gcc-bugs-return-534503-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 115240 invoked by alias); 13 Aug 2016 06:00:09 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 114877 invoked by uid 89); 13 Aug 2016 05:59:32 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=0.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00,UNWANTED_LANGUAGE_BODY autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 05:59:22 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/58598] ICE: SIGSEGV (write after free) with -O -flto -fno-fat-lto-objects -fvtable-verify=std
Date: Sat, 13 Aug 2016 06:00:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords: ice-on-valid-code, lto
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords
Message-ID: <bug-58598-4-UnmtFI5Vxn@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-58598-4@http.gcc.gnu.org/bugzilla/>
References: <bug-58598-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01839.txt.bz2
Content-length: 394

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58598

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |ice-on-valid-code

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Does this work now?
>From gcc-bugs-return-534505-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 06:06:18 2016
Return-Path: <gcc-bugs-return-534505-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 120404 invoked by alias); 13 Aug 2016 06:06:17 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 120383 invoked by uid 89); 13 Aug 2016 06:06:16 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=olegendo
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 06:06:07 +0000
From: "olegendo at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/59401] [SH] GBR addressing mode optimization produces wrong code
Date: Sat, 13 Aug 2016 06:06:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: olegendo at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-59401-4-8ywr9tG6DE@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-59401-4@http.gcc.gnu.org/bugzilla/>
References: <bug-59401-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01841.txt.bz2
Content-length: 446

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=59401

Oleg Endo <olegendo at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |FIXED

--- Comment #14 from Oleg Endo <olegendo at gcc dot gnu.org> ---
Fixed on 5, won't fix for 4.9.
>From gcc-bugs-return-534504-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 06:06:07 2016
Return-Path: <gcc-bugs-return-534504-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 119679 invoked by alias); 13 Aug 2016 06:06:06 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 118013 invoked by uid 89); 13 Aug 2016 06:03:43 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 06:03:32 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/71734] [7 Regression] FAIL: libgomp.fortran/simd4.f90   -O3 -g  execution test
Date: Sat, 13 Aug 2016 06:06:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_status resolution
Message-ID: <bug-71734-4-PD2CoccvOR@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71734-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71734-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01840.txt.bz2
Content-length: 488

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71734

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |wrong-code
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--- Comment #14 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Fixed.
>From gcc-bugs-return-534506-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 07:53:23 2016
Return-Path: <gcc-bugs-return-534506-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 24601 invoked by alias); 13 Aug 2016 07:53:23 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 24577 invoked by uid 89); 13 Aug 2016 07:53:21 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=glue, sk:mozilla, sk:Wignore, treeh
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 07:53:10 +0000
From: "zeccav at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75860] New: Segmentation violation in tree_check while compiling firefox 48
Date: Sat, 13 Aug 2016 07:53:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: zeccav at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75860-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01842.txt.bz2
Content-length: 6772

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75860

            Bug ID: 75860
           Summary: Segmentation violation in tree_check while compiling
                    firefox 48
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: zeccav at gmail dot com
  Target Milestone: ---

While compiling firefox version 48 with the trunk gcc 7.0 I get the following
segmentation violation

tree.h:3022 is "if (TREE_CODE (__t) != __c)"

Maybe __t is NULL?

I put MAJOR severity because this happens compiling a real software,
not a custom built fragment.

/home/vitti/1tb/vitti/local/gcc-7-239276/bin/g++ -std=gnu++11 -o
Unified_cpp_gfx_thebes0.o -c
-I/home/vitti/1tb/vitti/rpmbuild/SOURCES/firefox-48.0-obj/dist/stl_wrappers
-I/home/vitti/1tb/vitti/rpmbuild/SOURCES/firefox-48.0-obj/dist/system_wrappers
-include
/home/vitti/1tb/vitti/rpmbuild/SOURCES/firefox-48.0/config/gcc_hidden.h
-DNDEBUG=1 -DTRIMMED=1 -DOS_POSIX=1 -DOS_LINUX=1 -DMOZ_ENABLE_FREETYPE
-DGRAPHITE2_STATIC -DSTATIC_EXPORTABLE_JS_API -DMOZILLA_INTERNAL_API
-DIMPL_LIBXUL -I/home/vitti/1tb/vitti/rpmbuild/SOURCES/firefox-48.0/gfx/thebes
-I/home/vitti/1tb/vitti/rpmbuild/SOURCES/firefox-48.0-obj/gfx/thebes
-I/home/vitti/1tb/vitti/rpmbuild/SOURCES/firefox-48.0/intl/icu/source/common
-I/home/vitti/1tb/vitti/rpmbuild/SOURCES/firefox-48.0/intl/icu/source/i18n
-I/home/vitti/1tb/vitti/rpmbuild/SOURCES/firefox-48.0-obj/ipc/ipdl/_ipdlheaders
-I/home/vitti/1tb/vitti/rpmbuild/SOURCES/firefox-48.0/ipc/chromium/src
-I/home/vitti/1tb/vitti/rpmbuild/SOURCES/firefox-48.0/ipc/glue
-I/home/vitti/1tb/vitti/rpmbuild/SOURCES/firefox-48.0/dom/workers
-I/home/vitti/1tb/vitti/rpmbuild/SOURCES/firefox-48.0/dom/xml
-I/home/vitti/1tb/vitti/rpmbuild/SOURCES/firefox-48.0/gfx/skia
-I/home/vitti/1tb/vitti/rpmbuild/SOURCES/firefox-48.0/gfx/skia/skia/include/config
-I/home/vitti/1tb/vitti/rpmbuild/SOURCES/firefox-48.0/gfx/skia/skia/include/core
-I/home/vitti/1tb/vitti/rpmbuild/SOURCES/firefox-48.0/gfx/skia/skia/include/gpu
-I/home/vitti/1tb/vitti/rpmbuild/SOURCES/firefox-48.0/gfx/skia/skia/include/utils
-I/home/vitti/1tb/vitti/rpmbuild/SOURCES/firefox-48.0-obj/dist/include 
-I/home/vitti/1tb/vitti/rpmbuild/SOURCES/firefox-48.0-obj/dist/include/nspr
-I/home/vitti/1tb/vitti/rpmbuild/SOURCES/firefox-48.0-obj/dist/include/nss     
 -fPIC  -DMOZILLA_CLIENT -include
/home/vitti/1tb/vitti/rpmbuild/SOURCES/firefox-48.0-obj/mozilla-config.h -MD
-MP -MF .deps/Unified_cpp_gfx_thebes0.o.pp  -Wall -Wc++11-compat -Wempty-body
-Wignored-qualifiers -Woverloaded-virtual -Wpointer-arith -Wsign-compare
-Wtype-limits -Wunreachable-code -Wwrite-strings -Wc++14-compat
-Wno-invalid-offsetof -Wno-error=maybe-uninitialized
-Wno-error=deprecated-declarations -Wno-error=array-bounds -g -w -O0
-fno-omit-frame-pointer -fno-exceptions -fno-strict-aliasing -fno-rtti
-fno-exceptions -fno-math-errno -pthread -pipe  -g -freorder-blocks -Os
-fomit-frame-pointer  -Wshadow
-I/home/vitti/1tb/vitti/rpmbuild/SOURCES/firefox-48.0-obj/dist/include/cairo
-I/home/vitti/1tb/vitti/rpmbuild/SOURCES/firefox-48.0/widget/gtk/compat-gtk3
-pthread -I/usr/include/gtk-3.0/unix-print -I/usr/include/gtk-3.0
-I/usr/include/at-spi2-atk/2.0 -I/usr/include/at-spi-2.0
-I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/gtk-3.0
-I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0
-I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/atk-1.0
-I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/freetype2
-I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libdrm
-I/usr/include/libpng16 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16
-I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -pthread
-I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0
-I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include
-I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng16
-I/usr/include/freetype2 -I/usr/include/libdrm -I/usr/include/libpng16  
/home/vitti/1tb/vitti/rpmbuild/SOURCES/firefox-48.0-obj/gfx/thebes/Unified_cpp_gfx_thebes0.cpp
In file included from
/home/vitti/1tb/vitti/rpmbuild/SOURCES/firefox-48.0/gfx/thebes/gfxBaseSharedMemorySurface.cpp:7:0,
                 from
/home/vitti/1tb/vitti/rpmbuild/SOURCES/firefox-48.0-obj/gfx/thebes/Unified_cpp_gfx_thebes0.cpp:38:
/home/vitti/1tb/vitti/rpmbuild/SOURCES/firefox-48.0/gfx/thebes/gfxBaseSharedMemorySurface.h:
In static member function ‘static bool gfxBaseSharedMemorySurface<Base,
Sub>::IsSharedImage(gfxASurface*)’:
/home/vitti/1tb/vitti/rpmbuild/SOURCES/firefox-48.0/gfx/thebes/gfxBaseSharedMemorySurface.h:108:39:
internal compiler error: Segmentation fault
                 && aSurface->GetData(&SHM_KEY));
                                       ^~~~~~~
0xd2a04f crash_signal
        ../.././gcc/toplev.c:335
0x6c42a8 tree_check(tree_node*, char const*, int, char const*, tree_code)
        ../.././gcc/tree.h:3022
0x6c42a8 is_really_empty_class(tree_node*)
        ../.././gcc/cp/class.c:8426
0x82a2b3 cxx_eval_constant_expression
        ../.././gcc/cp/constexpr.c:3702
0x83107b cxx_eval_outermost_constant_expr
        ../.././gcc/cp/constexpr.c:4382
0x834248 fold_non_dependent_expr(tree_node*)
        ../.././gcc/cp/constexpr.c:4662
0x64bd5c build_non_dependent_expr(tree_node*)
        ../.././gcc/cp/pt.c:23802
0x74feb7 build_x_unary_op(unsigned int, tree_code, cp_expr, int)
        ../.././gcc/cp/typeck.c:5353
0x710b39 cp_parser_unary_expression
        ../.././gcc/cp/parser.c:7966
0x71abf3 cp_parser_cast_expression
        ../.././gcc/cp/parser.c:8693
0x71b1f7 cp_parser_binary_expression
        ../.././gcc/cp/parser.c:8794
0x71bac4 cp_parser_assignment_expression
        ../.././gcc/cp/parser.c:9081
0x71d5c6 cp_parser_parenthesized_expression_list
        ../.././gcc/cp/parser.c:7487
0x71231b cp_parser_postfix_expression
        ../.././gcc/cp/parser.c:6792
0x710a90 cp_parser_unary_expression
        ../.././gcc/cp/parser.c:8016
0x71abf3 cp_parser_cast_expression
        ../.././gcc/cp/parser.c:8693
0x71b5ff cp_parser_simple_cast_expression
        ../.././gcc/cp/parser.c:26014
0x71b5ff cp_parser_binary_expression
        ../.././gcc/cp/parser.c:8858
0x71bac4 cp_parser_assignment_expression
        ../.././gcc/cp/parser.c:9081
0x71e3ea cp_parser_expression
        ../.././gcc/cp/parser.c:9250
Please submit a full bug report,
with preprocessed source if appropriate.
Please include the complete backtrace with any bug report.
See <http://gcc.gnu.org/bugs.html> for instructions.
>From gcc-bugs-return-534507-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 08:25:55 2016
Return-Path: <gcc-bugs-return-534507-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 47044 invoked by alias); 13 Aug 2016 08:25:55 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 47029 invoked by uid 89); 13 Aug 2016 08:25:54 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 08:25:44 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75860] Segmentation violation in tree_check while compiling firefox 48
Date: Sat, 13 Aug 2016 08:25:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-75860-4-SD3w4e8kyR@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-75860-4@http.gcc.gnu.org/bugzilla/>
References: <bug-75860-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01843.txt.bz2
Content-length: 482

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75860

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jakub at gcc dot gnu.org

--- Comment #1 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Please see http://gcc.gnu.org/bugs.html and provide preprocessed source on
which it could be reproduced.
>From gcc-bugs-return-534508-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 09:05:48 2016
Return-Path: <gcc-bugs-return-534508-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 96062 invoked by alias); 13 Aug 2016 09:05:47 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 96051 invoked by uid 89); 13 Aug 2016 09:05:46 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 09:05:36 +0000
From: "bernd.edlinger at hotmail dot de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: =?UTF-8?B?W0J1ZyBydGwtb3B0aW1pemF0aW9uLzcyODczXSBlcnJvcjog4oCYYXNt4oCZ?= =?UTF-8?B?IG9wZXJhbmQgaGFzIGltcG9zc2libGUgY29uc3RyYWludHM=?Date: Sat, 13 Aug 2016 09:05:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: bernd.edlinger at hotmail dot de
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-72873-4-UoEPifoPE2@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72873-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72873-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01844.txt.bz2
Content-length: 524

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72873

Bernd Edlinger <bernd.edlinger at hotmail dot de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |bernd.edlinger at hotmail dot de

--- Comment #2 from Bernd Edlinger <bernd.edlinger at hotmail dot de> ---
identical error on arm-unknown-eabi
but works on aarch64-unknown-elf.

maybe the asm needs too many address registers?
>From gcc-bugs-return-534509-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 09:29:18 2016
Return-Path: <gcc-bugs-return-534509-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 108261 invoked by alias); 13 Aug 2016 09:29:17 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 108250 invoked by uid 89); 13 Aug 2016 09:29:16 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 09:29:06 +0000
From: "zeccav at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75860] Segmentation violation in tree_check while compiling firefox 48
Date: Sat, 13 Aug 2016 09:29:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: zeccav at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-75860-4-wXd2KA6nF5@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-75860-4@http.gcc.gnu.org/bugzilla/>
References: <bug-75860-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01845.txt.bz2
Content-length: 520

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75860

--- Comment #2 from Vittorio Zecca <zeccav at gmail dot com> ---
The preprocessed source is too big to be meaningful.
I did try to shorten it but still too big and using so many firefox
header files.
It will be faster if you could download the firefox-48 source and try it.
Using the following

CFLAGS="-g -w -O0 -fsanitize=address -fno-omit-frame-pointer"
CXXFLAGS=$CFLAGS ../firefox-48.0/configure
--prefix=/home/vitti/1tb/vitti/local/firefox-48.0-address
>From gcc-bugs-return-534510-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 09:33:19 2016
Return-Path: <gcc-bugs-return-534510-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 6392 invoked by alias); 13 Aug 2016 09:33:19 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 6377 invoked by uid 89); 13 Aug 2016 09:33:18 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:299
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 09:33:08 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75860] Segmentation violation in tree_check while compiling firefox 48
Date: Sat, 13 Aug 2016 09:33:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-75860-4-I9X0eHynho@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-75860-4@http.gcc.gnu.org/bugzilla/>
References: <bug-75860-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01846.txt.bz2
Content-length: 222

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75860

--- Comment #3 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
No, the preprocessed source is exactly what we need.  Just bzip2/gzip/xz
compress it first and attach.
>From gcc-bugs-return-534511-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 09:42:52 2016
Return-Path: <gcc-bugs-return-534511-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 15494 invoked by alias); 13 Aug 2016 09:42:52 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 15457 invoked by uid 89); 13 Aug 2016 09:42:51 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 09:42:41 +0000
From: "zeccav at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75860] Segmentation violation in tree_check while compiling firefox 48
Date: Sat, 13 Aug 2016 09:42:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: zeccav at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: attachments.created
Message-ID: <bug-75860-4-NvJu5wAwgL@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-75860-4@http.gcc.gnu.org/bugzilla/>
References: <bug-75860-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01847.txt.bz2
Content-length: 433

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75860

--- Comment #4 from Vittorio Zecca <zeccav at gmail dot com> ---
Created attachment 39369
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39369&action=edit
xz-ipped reproducer

This is the xzipped test case that is my reproducer for this issue.
There are many compilation errors due to shortening it,
but I still get the ICE segmentation fault message.
I hope it helps.
>From gcc-bugs-return-534512-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 09:47:14 2016
Return-Path: <gcc-bugs-return-534512-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 19860 invoked by alias); 13 Aug 2016 09:47:14 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 19823 invoked by uid 89); 13 Aug 2016 09:47:12 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 09:47:02 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75860] Segmentation violation in tree_check while compiling firefox 48
Date: Sat, 13 Aug 2016 09:47:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-75860-4-nb4CwrIGxD@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-75860-4@http.gcc.gnu.org/bugzilla/>
References: <bug-75860-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01848.txt.bz2
Content-length: 300

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75860

--- Comment #5 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
We have tools for testsuite reduction, so it would be more helpful to have
unreduced preprocessed source, otherwise we'll most likely reduce it only into
ICE on invalid testcase.
>From gcc-bugs-return-534513-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 10:09:44 2016
Return-Path: <gcc-bugs-return-534513-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 77169 invoked by alias); 13 Aug 2016 10:09:44 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 77157 invoked by uid 89); 13 Aug 2016 10:09:43 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: =?ISO-8859-1?Q?Yes, score=9.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,LIKELY_SPAM_BODY,TECH_SUPPORT_PHONE autolearn=no version=3.3.2 spammy=uk, UK, @@@, helpâ?X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 10:09:33 +0000
From: "xozr at y dot epb.ro" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: =?UTF-8?B?W0J1ZyBhZGEvNzU4NzVdIE5ldzogKCgoU3VwcG9ydCBOTy49MSs4MDB+ODEw?= =?UTF-8?B?fjEwMTgpKSkpSFDCsCBQcmludGVyIEluYy4uLg==?Date: Sat, 13 Aug 2016 10:09:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: xozr at y dot epb.ro
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75875-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01849.txt.bz2
Content-length: 4662

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75875

            Bug ID: 75875
           Summary: (((Support NO.=1+800~810~1018))))HP° Printer Inc...
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ada
          Assignee: unassigned at gcc dot gnu.org
          Reporter: xozr at y dot epb.ro
  Target Milestone: ---

hp printer tech support phone number

18007909186<<<<<<<<<<< HP PRINTER TECH support phone number,HP printer helpline
number USA...FLORIDA

((moti))Call @@@++ UK I8008101018 HP p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l HP h.e.l.p d.e.s.k n.u.m.b.e.r n.u.m.b.e.r
C.a.n.a.d.a HP s.u.p.p.o.r.t p.h.o.n.

((moti))Call @@@++ UK I8008101018 HP p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l HP h.e.l.p d.e.s.k n.u.m.b.e.r n.u.m.b.e.r
C.a.n.a.d.a HP s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.r UK UK 1 I8008101018 HP
p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a. C.a.l.l HP
h.e.l.p d.e.s.k n.u.m.b.e.r n.u.m.b.e.r C.a.n.a.d.a HP s.u.p.p.o.r.t p.h.o.n.e
n.u.m.b.r UK canada 1-1800-810-1018 UK, HP printer Tech Support phone number,HP
technical support phone number 1 I8008101018 .HP Tech Support Number HP Tech HP
tech support, HP tech support number, HP tech support phone number, HP
technical support, HP technical support number, HP technical support phone
number, HP tech support number, HP support number, HP Tech support phone
number, HP support phone number, HP technical support phone number, HP
technical support number,Support Phone Number for HP printer Phone Number for
HP CustomerService Technical Support Telephone Number HP printer support number
HP HP printer tech support number HP HP printer technical support number HP HP
printer technical support phone number HP HP printer customer service number HP
HP internet security technical support HP technical support phone number HP HP
tech support phone number HP HP customer support phone number I-800-810-1018 HP
HP printer support phone number HP HP support phone HP tech support HP customer
support HP phone support HP support number HP HP technical support HP printer
customer support phone number HP HP printer tech support phone number HP
contact 
hp wireless printer  technical support phone number 
hp wireless printer  support phone number 
hp wireless printer  tech support phone number 
hp wireless printer  phone number 
hp wireless printer  technical support number 
hp wireless printer  customer support phone number 
hp wireless printer  customer service phone number 
phone number for hp wireless printer  
hp wireless printer  support number 
phone number for hp wireless printer  technical support 
hp wireless printer  phone number uk 
hp wireless printer  number 
hp wireless printer  help phone number 
hp wireless printer  customer service number 
hp wireless printer  contact number 
1-800-810-1018, HP help line phone number 1-800-810-1018, HP help number
1-800-810-1018, HP printer help desk, HP technical help, help with HP printer,
HP printer help online, HP help phone number 1-800-810-1018, HP printer help
desk, HP printer number 1-800-810-1018 for help, HP online help… HP Drivers
(22) HP printer drivers, HP support drivers, HP drivers for printer, HP printer
drivers, HP support and drivers, HP drivers and support, drivers HP printer, HP
drivers printer, HP inkjet printer driver, HP wireless printer driver, printer
HP driver, HP printer drivers support, HP photocopier drivers, HP driver
support, HP printer driver support, HP support & driver, HP drivers support, HP
printer support drivers, www HP com support drivers, HP drivers UK… Printer
Customer (25) HP printer customer service, HP printer customer service, HP
printer customer service number 1-800-810-1018, HP printer customer support, HP
printer customer service phone number 1-800-810-1018, HP printer customer
service phone number 1-800-810-1018, HP printer customer service phone, HP
printer customer support, phone number 1-800-810-1018 for HP printer customer
service, HP printer customer support phone number 1-800-810-1018, customer
service HP printer, HP printer customer support, HP printer customer service
phone number 1-800-810-1018, HP printer customer service number 1-800-810-1018,
HP printer customer service number 1-800-810-1018, HP printer customer support
phone number 1-800-810-1018, HP printer customer support number 1-800-810-1018,
HP printer customer service support, HP printer
>From gcc-bugs-return-534514-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 10:18:27 2016
Return-Path: <gcc-bugs-return-534514-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 91746 invoked by alias); 13 Aug 2016 10:18:27 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 91735 invoked by uid 89); 13 Aug 2016 10:18:26 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 10:18:16 +0000
From: "doko at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/66868] [5 Regression] wrong code generated with -O3 (dead code removal?)
Date: Sat, 13 Aug 2016 10:18:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 5.1.1
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: doko at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-66868-4-UIZv64051q@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-66868-4@http.gcc.gnu.org/bugzilla/>
References: <bug-66868-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01850.txt.bz2
Content-length: 559

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66868

Matthias Klose <doko at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |RESOLVED
         Resolution|---                         |INVALID

--- Comment #16 from Matthias Klose <doko at gcc dot gnu.org> ---
this turned out as a code issue in apt:
https://anonscm.debian.org/cgit/apt/apt.git/commit/?id=9445fa62386c80c9822e77484d30b2109aa0f2dc
>From gcc-bugs-return-534515-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 10:34:07 2016
Return-Path: <gcc-bugs-return-534515-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 111564 invoked by alias); 13 Aug 2016 10:34:07 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 111550 invoked by uid 89); 13 Aug 2016 10:34:06 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy 16-08-13, 20160813
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 10:33:56 +0000
From: "segher at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/67771] integer-to-floating-point conversions wrongly produce -0 in FE_DOWNWARD mode
Date: Sat, 13 Aug 2016 10:34:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: segher at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-67771-4-sd3WGM3xjm@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67771-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67771-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01851.txt.bz2
Content-length: 828

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67771

Segher Boessenkool <segher at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-13
     Ever confirmed|0                           |1

--- Comment #3 from Segher Boessenkool <segher at gcc dot gnu.org> ---
One thing we can do (if we have fsel, which we also do not always have, it
needs TARGET_PPC_GFXOPT) is to put after this sequence, that returns rX
correct except it might return -0 while it should be +0:

fabs rT,rX
fsel rX,rX,rX,rT

(and don't do this if we have the requisite fast-math flags).

I'm not sure how to do this (cheaply) without fsel.
>From gcc-bugs-return-534516-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 10:48:03 2016
Return-Path: <gcc-bugs-return-534516-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 120410 invoked by alias); 13 Aug 2016 10:48:02 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 120324 invoked by uid 89); 13 Aug 2016 10:48:01 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 10:47:50 +0000
From: "segher at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/71629] [7 Regression] ICE in lra_set_insn_recog_data, at lra.c:964 w/ -O2 -mlra
Date: Sat, 13 Aug 2016 10:48:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code, ra
X-Bugzilla-Severity: normal
X-Bugzilla-Who: segher at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71629-4-qS6RmjEhDh@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71629-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71629-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01852.txt.bz2
Content-length: 220

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71629

--- Comment #3 from Segher Boessenkool <segher at gcc dot gnu.org> ---
I cannot reproduce either with a non-SPE compiler.  Does it happen with
current trunk for you?
>From gcc-bugs-return-534517-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 10:59:46 2016
Return-Path: <gcc-bugs-return-534517-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 127596 invoked by alias); 13 Aug 2016 10:59:45 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 127579 invoked by uid 89); 13 Aug 2016 10:59:45 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=fhbg, trans-mem, transmem, yopmail
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 10:59:35 +0000
From: "fhbg at yopmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75891] New: vchbgvj
Date: Sat, 13 Aug 2016 10:59:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: trans-mem
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: fhbg at yopmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75891-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01853.txt.bz2
Content-length: 394

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75891

            Bug ID: 75891
           Summary: vchbgvj
           Product: gcc
           Version: trans-mem
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: fhbg at yopmail dot com
  Target Milestone: ---

nhgkhj
>From gcc-bugs-return-534518-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 11:04:09 2016
Return-Path: <gcc-bugs-return-534518-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 2917 invoked by alias); 13 Aug 2016 11:04:09 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 2908 invoked by uid 89); 13 Aug 2016 11:04:08 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy 16-08-13
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 11:03:58 +0000
From: "segher at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/71846] PowerPC -mlra option causes 2 tests to fail
Date: Sat, 13 Aug 2016 11:04:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: segher at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-71846-4-UVgxR6soMg@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71846-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71846-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01854.txt.bz2
Content-length: 592

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71846

Segher Boessenkool <segher at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-13
     Ever confirmed|0                           |1

--- Comment #1 from Segher Boessenkool <segher at gcc dot gnu.org> ---
The other ops also load things into vector registers first, and then
store them to the stack and reload in GPRs.
>From gcc-bugs-return-534519-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 11:10:26 2016
Return-Path: <gcc-bugs-return-534519-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 6072 invoked by alias); 13 Aug 2016 11:10:26 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 6059 invoked by uid 89); 13 Aug 2016 11:10:25 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 11:10:15 +0000
From: "asolokha at gmx dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/71629] [7 Regression] ICE in lra_set_insn_recog_data, at lra.c:964 w/ -O2 -mlra
Date: Sat, 13 Aug 2016 11:10:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code, ra
X-Bugzilla-Severity: normal
X-Bugzilla-Who: asolokha at gmx dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71629-4-eu3Gid69mM@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71629-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71629-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01855.txt.bz2
Content-length: 500

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71629

--- Comment #4 from Arseny Solokha <asolokha at gmx dot com> ---
(In reply to Segher Boessenkool from comment #3)
> I cannot reproduce either with a non-SPE compiler.  Does it happen with
> current trunk for you?

I failed to build current trunk for SPE target last Monday because of this
issue coupled w/ PR72829. I'll try to build 20160815 snapshot w/ -mno-lra
first.

gcc for non-SPE 32-bit powerpc target has no issue building both snippets.
>From gcc-bugs-return-534520-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 11:32:39 2016
Return-Path: <gcc-bugs-return-534520-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 29837 invoked by alias); 13 Aug 2016 11:32:39 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 29826 invoked by uid 89); 13 Aug 2016 11:32:38 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=ov3u841
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 11:32:28 +0000
From: "jacquan29 at ov3u841 dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75920] New: yrturu
Date: Sat, 13 Aug 2016 11:32:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jacquan29 at ov3u841 dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-75920-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01856.txt.bz2
Content-length: 393

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75920

            Bug ID: 75920
           Summary: yrturu
           Product: gcc
           Version: 5.2.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: jacquan29 at ov3u841 dot com
  Target Milestone: ---

5yery
>From gcc-bugs-return-534521-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 11:55:57 2016
Return-Path: <gcc-bugs-return-534521-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 48598 invoked by alias); 13 Aug 2016 11:55:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 48012 invoked by uid 89); 13 Aug 2016 11:55:55 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 11:55:45 +0000
From: "segher at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/71629] [7 Regression] ICE in lra_set_insn_recog_data, at lra.c:964 w/ -O2 -mlra
Date: Sat, 13 Aug 2016 11:55:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code, ra
X-Bugzilla-Severity: normal
X-Bugzilla-Who: segher at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-71629-4-4UeDfsf11x@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71629-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71629-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01857.txt.bz2
Content-length: 705

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71629

Segher Boessenkool <segher at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |FIXED

--- Comment #5 from Segher Boessenkool <segher at gcc dot gnu.org> ---
Both testcases build fine for me (with a powerpc-e500v2-linux-gnuspe compiler),
with -fstack-protector -fPIC.

Closing as fixed; please reopen if it still fails for you.

I'm not seeing PR72829; it seems to be a dup of PR73650, for which I have
a fix (it is on gcc-patches).
>From gcc-bugs-return-534522-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 11:58:51 2016
Return-Path: <gcc-bugs-return-534522-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 51100 invoked by alias); 13 Aug 2016 11:58:50 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 51083 invoked by uid 89); 13 Aug 2016 11:58:49 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 11:58:39 +0000
From: "segher at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/72829] [7 Regression] ICE in extract_constrain_insn, at recog.c:2211 (error: insn does not satisfy its constraints) on 32-bit BE powerpc
Date: Sat, 13 Aug 2016 11:58:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: build, ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: segher at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: DUPLICATE
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cc resolution
Message-ID: <bug-72829-4-adLcoqPUCf@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72829-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72829-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01858.txt.bz2
Content-length: 666

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72829

Segher Boessenkool <segher at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
                 CC|                            |segher at gcc dot gnu.org
         Resolution|---                         |DUPLICATE

--- Comment #2 from Segher Boessenkool <segher at gcc dot gnu.org> ---
This looks to be the same as PR73650 (which has a patch on gcc-patches).  If
not, please reopen.

*** This bug has been marked as a duplicate of bug 73650 ***
>From gcc-bugs-return-534523-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 11:59:22 2016
Return-Path: <gcc-bugs-return-534523-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 51980 invoked by alias); 13 Aug 2016 11:59:22 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 51971 invoked by uid 89); 13 Aug 2016 11:59:21 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 11:59:11 +0000
From: "segher at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/73650] powerpc: -mcpuå00mc hits ICE: insn does not satisfy its constraints
Date: Sat, 13 Aug 2016 11:59:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: segher at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: segher at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-73650-4-L613ikJNcc@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73650-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73650-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01859.txt.bz2
Content-length: 450

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73650

Segher Boessenkool <segher at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |asolokha at gmx dot com

--- Comment #8 from Segher Boessenkool <segher at gcc dot gnu.org> ---
*** Bug 72829 has been marked as a duplicate of this bug. ***
>From gcc-bugs-return-534524-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 12:42:32 2016
Return-Path: <gcc-bugs-return-534524-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 51093 invoked by alias); 13 Aug 2016 12:42:32 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 51079 invoked by uid 89); 13 Aug 2016 12:42:31 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy 16813, 2016-8-13
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 12:42:21 +0000
From: "manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/67569] wrong type in error message with float on x86 (387)
Date: Sat, 13 Aug 2016 12:42:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 4.8.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: manu at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cf_reconfirmed_on
Message-ID: <bug-67569-4-zwLLom3ymJ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67569-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67569-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01860.txt.bz2
Content-length: 592

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67569

Manuel López-Ibáñez <manu at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Last reconfirmed|2015-09-14 00:00:00         |2016-8-13

--- Comment #6 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
Maybe instead of:

      binary_op_error (&richloc, code, TREE_TYPE (op0), TREE_TYPE (op1));

we should use

      binary_op_error (&richloc, code, orig_type0, orig_type1);

in c-typeck.c
>From gcc-bugs-return-534525-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 12:50:17 2016
Return-Path: <gcc-bugs-return-534525-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 55922 invoked by alias); 13 Aug 2016 12:50:17 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 55907 invoked by uid 89); 13 Aug 2016 12:50:16 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:444
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 12:50:06 +0000
From: "zeccav at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75860] Segmentation violation in tree_check while compiling firefox 48
Date: Sat, 13 Aug 2016 12:50:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: zeccav at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: attachments.created
Message-ID: <bug-75860-4-sptFJPyzOd@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-75860-4@http.gcc.gnu.org/bugzilla/>
References: <bug-75860-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01861.txt.bz2
Content-length: 372

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75860

--- Comment #6 from Vittorio Zecca <zeccav at gmail dot com> ---
Created attachment 39410
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39410&action=edit
xz-ipped original firefox source file

Original firefox source file in xz format.
This one is error free except for the ICE segmentation fault from g++.
>From gcc-bugs-return-534526-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 13:25:30 2016
Return-Path: <gcc-bugs-return-534526-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 119538 invoked by alias); 13 Aug 2016 13:25:30 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 119478 invoked by uid 89); 13 Aug 2016 13:25:25 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-0.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 13:25:15 +0000
From: "gjl at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/75964] New: insn combiner removes comparison after ABS
Date: Sat, 13 Aug 2016 13:25:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: gjl at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status keywords bug_severity priority component assigned_to reporter target_milestone cf_gcctarget
Message-ID: <bug-75964-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01862.txt.bz2
Content-length: 3020

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75964

            Bug ID: 75964
           Summary: insn combiner removes comparison after ABS
           Product: gcc
           Version: 6.1.1
            Status: UNCONFIRMED
          Keywords: wrong-code
          Severity: normal
          Priority: P3
         Component: rtl-optimization
          Assignee: unassigned at gcc dot gnu.org
          Reporter: gjl at gcc dot gnu.org
  Target Milestone: ---
            Target: avr

== Testcase ==

typedef __UINT8_TYPE__ uint8_t;

uint8_t abs8 (uint8_t x)
{
    if (x & 0x80)
        x = -x;

    if (x & 0x80)
        x = 0x7f;

    return x;
}

compile with

$ avr-gcc-6.1.1  code.c -S -Os -dp -fdump-rtl-combine-details -fdump-rtl-ud_dce

After pass .combine, the 2nd comparison is missing, presumably because combiner
invokes signed overflow on ABS which does not apply because all computations
are performed as unsigned.

avr backend implements absqi2 insn which is introduced by .ce1.  Just before
.combine the code reads (from .ud_dce):

(note 5 0 2 2 [bb 2] NOTE_INSN_BASIC_BLOCK)
(insn 2 5 3 2 (set (reg/v:QI 45 [ x ])
        (reg:QI 24 r24 [ x ])) foo.c:4 71 {movqi_insn}
     (expr_list:REG_DEAD (reg:QI 24 r24 [ x ])
        (nil)))
(note 3 2 27 2 NOTE_INSN_FUNCTION_BEG)
(insn 27 3 13 2 (set (reg/v:QI 45 [ x ])
        (abs:QI (reg/v:QI 45 [ x ]))) foo.c:6 364 {absqi2}
     (nil))
(insn 13 27 14 2 (set (cc0)
        (compare (reg/v:QI 45 [ x ])
            (const_int 0 [0]))) foo.c:8 404 {*cmpqi}
     (nil))
(jump_insn 14 13 15 2 (set (pc)
        (if_then_else (ge (cc0)
                (const_int 0 [0]))
            (label_ref 16)
            (pc))) foo.c:8 428 {branch}
     (int_list:REG_BR_PROB 5711 (nil))
 -> 16)
(note 15 14 4 3 [bb 3] NOTE_INSN_BASIC_BLOCK)
(insn 4 15 16 3 (set (reg/v:QI 45 [ x ])
        (const_int 127 [0x7f])) foo.c:9 71 {movqi_insn}
     (nil))
(code_label 16 4 17 4 3 "" [1 uses])
(note 17 16 22 4 [bb 4] NOTE_INSN_BASIC_BLOCK)
(insn 22 17 23 4 (set (reg/i:QI 24 r24)
        (reg/v:QI 45 [ x ])) foo.c:12 71 {movqi_insn}
     (expr_list:REG_DEAD (reg/v:QI 45 [ x ])
        (nil)))
(insn 23 22 0 4 (use (reg/i:QI 24 r24)) foo.c:12 -1
     (nil))


The .combine dump then reads:


(note 5 0 2 2 [bb 2] NOTE_INSN_BASIC_BLOCK)
(note 2 5 3 2 NOTE_INSN_DELETED)
(note 3 2 27 2 NOTE_INSN_FUNCTION_BEG)
(insn 27 3 22 2 (set (reg/v:QI 45 [ x ])
        (abs:QI (reg:QI 24 r24 [ x ]))) foo.c:6 364 {absqi2}
     (expr_list:REG_DEAD (reg:QI 24 r24 [ x ])
        (nil)))
(insn 22 27 23 2 (set (reg/i:QI 24 r24)
        (reg/v:QI 45 [ x ])) foo.c:12 71 {movqi_insn}
     (expr_list:REG_DEAD (reg/v:QI 45 [ x ])
        (nil)))
(insn 23 22 0 2 (use (reg/i:QI 24 r24)) foo.c:12 -1
     (nil))


Which is wrong because at that stage, nothing is known about the signedness of
R24.

Dunno what is needed to reproduce this on more popular targets, presumably at
least:

1) Target implements abs<mode>2 for some integer mode and

2) This expands to rtx_code abs.
>From gcc-bugs-return-534527-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 14:00:41 2016
Return-Path: <gcc-bugs-return-534527-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 26161 invoked by alias); 13 Aug 2016 14:00:40 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 26138 invoked by uid 89); 13 Aug 2016 14:00:39 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 14:00:38 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75860] Segmentation violation in tree_check while compiling firefox 48
Date: Sat, 13 Aug 2016 14:00:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-75860-4-D1RzSpzozf@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-75860-4@http.gcc.gnu.org/bugzilla/>
References: <bug-75860-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01863.txt.bz2
Content-length: 753

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75860

--- Comment #7 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Can't reproduce with the provided source,
./cc1plus -quiet -std=gnu++11 pr75860.ii -fPIC -Wall -Wc++11-compat
-Wempty-body -Wignored-qualifiers -Woverloaded-virtual -Wpointer-arith
-Wsign-compare -Wtype-limits -Wunreachable-code -Wwrite-strings -Wc++14-compat
-Wno-invalid-offsetof -Wno-error=maybe-uninitialized
-Wno-error=deprecated-declarations -Wno-error=array-bounds -g -w -O0
-fno-omit-frame-pointer -fno-exceptions -fno-strict-aliasing -fno-rtti
-fno-exceptions -fno-math-errno -freorder-blocks -Os -fomit-frame-pointer
-Wshadow
compiles fine, both with current trunk, nor with 1 day old trunk, nor 2 days
old trunk.
>From gcc-bugs-return-534528-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 14:58:23 2016
Return-Path: <gcc-bugs-return-534528-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 101127 invoked by alias); 13 Aug 2016 14:58:23 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 101108 invoked by uid 89); 13 Aug 2016 14:58:22 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-0.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 14:58:12 +0000
From: "jim at jtan dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug lto/75194] -flto loses .debug_macro section
Date: Sat, 13 Aug 2016 14:58:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: lto
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jim at jtan dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: version
Message-ID: <bug-75194-4-Tv6uIXsvum@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-75194-4@http.gcc.gnu.org/bugzilla/>
References: <bug-75194-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01864.txt.bz2
Content-length: 344

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75194

jim at jtan dot com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Version|5.4.0                       |6.1.1

--- Comment #2 from jim at jtan dot com ---
Same result with GCC 6.1.1.
>From gcc-bugs-return-534529-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 15:04:41 2016
Return-Path: <gcc-bugs-return-534529-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 113608 invoked by alias); 13 Aug 2016 15:04:41 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 113589 invoked by uid 89); 13 Aug 2016 15:04:40 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-0.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:855, 2016-08-13
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 15:04:39 +0000
From: "tkoenig at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/68147] Potential incorrect code generation for string self-assignment
Date: Sat, 13 Aug 2016 15:04:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: tkoenig at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: tkoenig at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-68147-4-kC84Vb04cc@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68147-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68147-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01865.txt.bz2
Content-length: 848

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68147

--- Comment #16 from Thomas Koenig <tkoenig at gcc dot gnu.org> ---
Author: tkoenig
Date: Sat Aug 13 15:04:04 2016
New Revision: 239445

URL: https://gcc.gnu.org/viewcvs?rev=239445&root=gcc&view=rev
Log:
2016-08-13  Thomas Koenig  <tkoenig@gcc.gnu.org>

        Backport from trunk
        PR fortran/68147
        * frontend-passes.c (realloc_string_callback): Don't set
        walk_subtrees.

2016-08-13  Thomas Koenig  <tkoenig@gcc.gnu.org>

        Backport from trunk
        * gfortran.dg/realloc_on_assign_26.f90:  New test case.


Added:
    branches/gcc-5-branch/gcc/testsuite/gfortran.dg/realloc_on_assign_26.f90
Modified:
    branches/gcc-5-branch/gcc/fortran/ChangeLog
    branches/gcc-5-branch/gcc/fortran/frontend-passes.c
    branches/gcc-5-branch/gcc/testsuite/ChangeLog
>From gcc-bugs-return-534530-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 15:05:23 2016
Return-Path: <gcc-bugs-return-534530-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 114631 invoked by alias); 13 Aug 2016 15:05:23 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 114621 invoked by uid 89); 13 Aug 2016 15:05:22 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 15:05:12 +0000
From: "tkoenig at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/68147] Potential incorrect code generation for string self-assignment
Date: Sat, 13 Aug 2016 15:05:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: tkoenig at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: tkoenig at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-68147-4-R2uvd9DPN8@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68147-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68147-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01866.txt.bz2
Content-length: 458

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68147

Thomas Koenig <tkoenig at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #17 from Thomas Koenig <tkoenig at gcc dot gnu.org> ---
Fixed on all open branches, closing.
>From gcc-bugs-return-534531-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 15:06:07 2016
Return-Path: <gcc-bugs-return-534531-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 115503 invoked by alias); 13 Aug 2016 15:06:07 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 115486 invoked by uid 89); 13 Aug 2016 15:06:05 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00,TVD_SPACE_RATIO autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 15:05:55 +0000
From: "tkoenig at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/68241] [meta-bug] Deferred-length character
Date: Sat, 13 Aug 2016 15:06:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: dep_changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: tkoenig at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-68241-4-ztOoQeD85q@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68241-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68241-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01867.txt.bz2
Content-length: 490

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68241
Bug 68241 depends on bug 68147, which changed state.

Bug 68147 Summary: Potential incorrect code generation for string self-assignment
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68147

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED
>From gcc-bugs-return-534532-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 15:08:43 2016
Return-Path: <gcc-bugs-return-534532-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 117479 invoked by alias); 13 Aug 2016 15:08:43 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 117468 invoked by uid 89); 13 Aug 2016 15:08:42 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 15:08:32 +0000
From: "zeccav at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75860] Segmentation violation in tree_check while compiling firefox 48
Date: Sat, 13 Aug 2016 15:08:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: zeccav at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-75860-4-ICYQnKZxWQ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-75860-4@http.gcc.gnu.org/bugzilla/>
References: <bug-75860-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01868.txt.bz2
Content-length: 4647

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75860

--- Comment #8 from Vittorio Zecca <zeccav at gmail dot com> ---
Compiling the big test case, 231025 lines, with trunk level 239276 of August
9th

g++ -v
Using built-in specs.
COLLECT_GCC=g++
COLLECT_LTO_WRAPPER=/home/vitti/1tb/vitti/local/gcc-7-239276/libexec/gcc/x86_64-pc-linux-gnu/7.0.0/lto-wrapper
Target: x86_64-pc-linux-gnu
Configured with: ./configure --prefix=/home/vitti/1tb/vitti/local/gcc-7-239276
Thread model: posix
gcc version 7.0.0 20160809 (experimental) (GCC) 
[vitti ~]$g++ -S pbase.C
In file included from
/home/vitti/1tb/vitti/rpmbuild/SOURCES/firefox-48.0-obj/dist/include/nsCycleCollectionTraversalCallback.h:10:0,
                 from
/home/vitti/1tb/vitti/rpmbuild/SOURCES/firefox-48.0-obj/dist/include/nsCycleCollectionNoteChild.h:13,
                 from
/home/vitti/1tb/vitti/rpmbuild/SOURCES/firefox-48.0-obj/dist/include/nsCOMPtr.h:33,
                 from
/home/vitti/1tb/vitti/rpmbuild/SOURCES/firefox-48.0-obj/dist/include/nsAutoPtr.h:10,
                 from
/home/vitti/1tb/vitti/rpmbuild/SOURCES/firefox-48.0/ipc/chromium/src/base/revocable_store.h:10,
                 from
/home/vitti/1tb/vitti/rpmbuild/SOURCES/firefox-48.0/ipc/chromium/src/base/task.h:9,
                 from
/home/vitti/1tb/vitti/rpmbuild/SOURCES/firefox-48.0/ipc/chromium/src/base/message_loop.h:17,
                 from
/home/vitti/1tb/vitti/rpmbuild/SOURCES/firefox-48.0/ipc/chromium/src/base/thread.h:11,
                 from
/home/vitti/1tb/vitti/rpmbuild/SOURCES/firefox-48.0/gfx/thebes/SoftwareVsyncSource.h:13,
                 from
/home/vitti/1tb/vitti/rpmbuild/SOURCES/firefox-48.0/gfx/thebes/SoftwareVsyncSource.cpp:7,
                 from
/home/vitti/1tb/vitti/rpmbuild/SOURCES/firefox-48.0-obj/gfx/thebes/Unified_cpp_gfx_thebes0.cpp:11:
/home/vitti/1tb/vitti/rpmbuild/SOURCES/firefox-48.0-obj/dist/include/jspubtd.h:411:50:
warning: offsetof within non-standard-layout type
‘js::PerThreadDataFriendFields::RuntimeDummy’ is undefined [-Winvalid-offsetof]
     static const size_t RuntimeMainThreadOffset = offsetof(RuntimeDummy,
mainThread);

In file included from
/home/vitti/1tb/vitti/rpmbuild/SOURCES/firefox-48.0/gfx/thebes/gfxBaseSharedMemorySurface.cpp:7:0,
                 from
/home/vitti/1tb/vitti/rpmbuild/SOURCES/firefox-48.0-obj/gfx/thebes/Unified_cpp_gfx_thebes0.cpp:38:
/home/vitti/1tb/vitti/rpmbuild/SOURCES/firefox-48.0/gfx/thebes/gfxBaseSharedMemorySurface.h:
In static member function ‘static bool gfxBaseSharedMemorySurface<Base,
Sub>::IsSharedImage(gfxASurface*)’:
/home/vitti/1tb/vitti/rpmbuild/SOURCES/firefox-48.0/gfx/thebes/gfxBaseSharedMemorySurface.h:108:39:
internal compiler error: Segmentation fault
                 && aSurface->GetData(&SHM_KEY));
                                       ^~~~~~~
0xd2a04f crash_signal
        ../.././gcc/toplev.c:335
0x6c42a8 tree_check(tree_node*, char const*, int, char const*, tree_code)
        ../.././gcc/tree.h:3022
0x6c42a8 is_really_empty_class(tree_node*)
        ../.././gcc/cp/class.c:8426
0x82a2b3 cxx_eval_constant_expression
        ../.././gcc/cp/constexpr.c:3702
0x83107b cxx_eval_outermost_constant_expr
        ../.././gcc/cp/constexpr.c:4382
0x834248 fold_non_dependent_expr(tree_node*)
        ../.././gcc/cp/constexpr.c:4662
0x64bd5c build_non_dependent_expr(tree_node*)
        ../.././gcc/cp/pt.c:23802
0x74feb7 build_x_unary_op(unsigned int, tree_code, cp_expr, int)
        ../.././gcc/cp/typeck.c:5353
0x710b39 cp_parser_unary_expression
        ../.././gcc/cp/parser.c:7966
0x71abf3 cp_parser_cast_expression
        ../.././gcc/cp/parser.c:8693
0x71b1f7 cp_parser_binary_expression
        ../.././gcc/cp/parser.c:8794
0x71bac4 cp_parser_assignment_expression
        ../.././gcc/cp/parser.c:9081
0x71d5c6 cp_parser_parenthesized_expression_list
        ../.././gcc/cp/parser.c:7487
0x71231b cp_parser_postfix_expression
        ../.././gcc/cp/parser.c:6792
0x710a90 cp_parser_unary_expression
        ../.././gcc/cp/parser.c:8016
0x71abf3 cp_parser_cast_expression
        ../.././gcc/cp/parser.c:8693
0x71b5ff cp_parser_simple_cast_expression
        ../.././gcc/cp/parser.c:26014
0x71b5ff cp_parser_binary_expression
        ../.././gcc/cp/parser.c:8858
0x71bac4 cp_parser_assignment_expression
        ../.././gcc/cp/parser.c:9081
0x71e3ea cp_parser_expression
        ../.././gcc/cp/parser.c:9250
Please submit a full bug report,
with preprocessed source if appropriate.
Please include the complete backtrace with any bug report.
See <http://gcc.gnu.org/bugs.html> for instructions.
>From gcc-bugs-return-534533-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 15:09:31 2016
Return-Path: <gcc-bugs-return-534533-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 118358 invoked by alias); 13 Aug 2016 15:09:31 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 118347 invoked by uid 89); 13 Aug 2016 15:09:30 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, @@@, U*@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 15:09:20 +0000
From: "saxenaharsh913 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/76024] New: @%@$$$@^^^@1_855x709x2847 @^^^@@%LEXMARK p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a c.a.n.a.d.a
Date: Sat, 13 Aug 2016 15:09:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: fortran-dev
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: saxenaharsh913 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-76024-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01869.txt.bz2
Content-length: 7619

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76024

            Bug ID: 76024
           Summary: @%@$$$@^^^@1_855x709x2847 @^^^@@%LEXMARK p.r.i.n.t.e.r
                    t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a
                    c.a.n.a.d.a
           Product: gcc
           Version: fortran-dev
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: saxenaharsh913 at gmail dot com
  Target Milestone: ---

/@!!((I+855+709+2847+))!!@LEXMARK printer suppOrt phOne number LEXMARK printer
tech suppOrt phOne number USA UST<::: /@!!((I+855+709+2847+))!!@LEXMARK printer
suppOrt phOne number LEXMARK printer tech suppOrt phOne number USA LEXMARK
printer custOmer service @@@++@@++I+855+709+2847 !!++++@@+++@@@@+LEXMARK
printer suppOrt phOne number LEXMARK printer tech suppOrt phOne number USA
JUST<::: /@!!((I+855+709+2847+))!!@LEXMARK printer suppOrt phOne number LEXMARK
printer tech suppOrt phOne number USA LEXMARK printer custOmer
service@@!!((*I+855+709+2847+))!!@@LEXMARK printer suppOrt phOne number LEXMARK
printer tech suppOrt phOne number USA, LEXMARK printer technical suppOrt phOne
number LEXMARK printer custOmer suppOrt phOne number LEXMARK printer phOne
number LEXMARK printer custOmer care phOne number brOhter printer custOmer care
number LEXMARK printer tOll free phOne number LEXMARK printer suppOrt LEXMARK
suppOrt LEXMARK printers suppOrt LEXMARK custOmer service LEXMARK printer help
LEXMARK tech suppOrt LEXMARK printer custOmer service LEXMARK printer tech
suppOrt LEXMARK technical suppOrt LEXMARK printer trOubleshOOting LEXMARK
printers trOubleshOOting LEXMARK internatiOnal LEXMARKs printer suppOrt LEXMARK
custOmer suppOrt LEXMARK printer technical suppOrt LEXMARK printer repair
LEXMARK printer helpline LEXMARK printers custOmer service LEXMARK service
center LEXMARKs printers suppOrt LEXMARK helpline LEXMARK custOmer service
phOne number install LEXMARK printer LEXMARK printers tech suppOrt LEXMARK
printer suppOrt number LEXMARK printer custOmer suppOrt LEXMARK printer cOntact
number LEXMARK printer prOblems LEXMARK printers help LEXMARK printer service
LEXMARK printer service center LEXMARK printer cOntact LEXMARK custOmer service
number LEXMARK printers helpline LEXMARK suppOrt number LEXMARK printer repairs
LEXMARK printer scanner LEXMARK printers phOne number LEXMARK printers custOmer
suppOrt LEXMARK suppOrt center LEXMARK tech suppOrt phOne number LEXMARKs
printers custOmer service LEXMARK printer custOmer service number LEXMARK
printers technical suppOrt LEXMARK printer helpline number LEXMARK suppOrt
phOne number LEXMARK suppOrt printer LEXMARK technical suppOrt number LEXMARK
printers cOntact trOubleshOOting LEXMARK printer LEXMARK printer phOne suppOrt
LEXMARK printers suppOrt phOne number trOubleshOOt LEXMARK printer LEXMARK
printers cOntact number LEXMARKs custOmer service LEXMARK printer number
LEXMARK phOne suppOrt LEXMARK trOubleshOOting LEXMARK printer custOmer care
LEXMARK printer help desk drivers fOr LEXMARK printers LEXMARK technical
suppOrt phOne number LEXMARK custOmer service phOne cOntact LEXMARK printers
LEXMARK printer custOmer care number LEXMARK help desk LEXMARK Online suppOrt
LEXMARK custOmer suppOrt phOne number LEXMARKs printer custOmer service LEXMARK
printer mfc LEXMARK printers tech suppOrt phOne number LEXMARK service LEXMARKs
tech suppOrt LEXMARK printers custOmer service phOne number LEXMARK printer
install LEXMARK laser printers LEXMARKs printers suppOrt LEXMARK printer
LEXMARK printer service centre LEXMARK printer updates LEXMARK inkjet printer
cOntact LEXMARK suppOrt LEXMARK tech suppOrt phOne LEXMARK lc61 LEXMARKs
printers tech suppOrt printers Online cOntact LEXMARK printer LEXMARKs printer
LEXMARK label printer LEXMARK custOmer suppOrt phOne LEXMARK printers custOmer
suppOrt number LEXMARK suppOrt centre LEXMARK laser printer LEXMARK printer
custOmer service suppOrt LEXMARK wireless printer setup buy LEXMARK printer
Online LEXMARK printer tech suppOrt number LEXMARK netwOrk printer LEXMARK
printers custOmer service number custOmer service fOr LEXMARK printers LEXMARK
service centre LEXMARK wireless printer LEXMARK printers LEXMARK custOmer care
LEXMARK printer Online suppOrt LEXMARK printer tOll free number phOne number
fOr LEXMARK printers LEXMARK printer installatiOn LEXMARK printers help desk
LEXMARK printer suppOrt phOne service LEXMARK LEXMARK mfc LEXMARK printer
custOmer suppOrt number LEXMARK printers technical suppOrt phOne number LEXMARK
printer hOtline cOntact number fOr LEXMARK printers LEXMARK printer LEXMARK.cOm
suppOrt cOntact LEXMARK printer suppOrt LEXMARK printer trOubleshOOt LEXMARK
telephOne suppOrt LEXMARK printers custOmer suppOrt phOne number LEXMARK
printer help phOne number LEXMARK custOmer service telephOne number LEXMARK
printer tech suppOrt phOne LEXMARK.ca suppOrt LEXMARK printer Online LEXMARK
multifunctiOn printer printer suppOrt LEXMARK printer help LEXMARK mfc printer
technical suppOrt fOr LEXMARK printers LEXMARK tech suppOrt number email
suppOrt LEXMARK printers suppOrt phOne mfc LEXMARK LEXMARK hl227Odw LEXMARK
printers website LEXMARK printer suppOrt LEXMARK printers repair repair LEXMARK
printer LEXMARK printers suppOrt LEXMARK helpline number LEXMARK scanner
printer LEXMARK printers service LEXMARK printers custOmer service telephOne
number LEXMARK printer phOne number custOmer service LEXMARK printers review
www.LEXMARK.cOm suppOrt fOr LEXMARK printer LEXMARK printer repair service
LEXMARK printer phOne number fOr LEXMARK printer suppOrt LEXMARK printer
website LEXMARK printers custOmer service phOne LEXMARK printer prOblems and
sOlutiOns LEXMARKs printers custOmer service phOne number custOmer service
LEXMARK printer sOlutiOn LEXMARK LEXMARK fax suppOrt mfc LEXMARK printer
LEXMARK printer custOmer service phOne LEXMARK printer help number LEXMARK
mfc-846On drivers fOr LEXMARK printers LEXMARK technical suppOrt phOne number
LEXMARK custOmer service phOne cOntact LEXMARK printers LEXMARK printer
custOmer care number LEXMARK help desk LEXMARK Online suppOrt LEXMARK custOmer
suppOrt phOne number LEXMARKs printer custOmer service LEXMARK printer mfc
LEXMARK printers tech suppOrt phOne number LEXMARK service LEXMARKs tech
suppOrt LEXMARK printers custOmer service phOne number LEXMARK printer install
LEXMARK laser printers LEXMARKs printers suppOrt LEXMARK printer LEXMARK
printer service centre LEXMARK printer updates LEXMARK inkjet printer cOntact
LEXMARK suppOrt LEXMARK tech suppOrt phOne LEXMARK lc61 LEXMARKs printers tech
suppOrt printers Online cOntact LEXMARK printer LEXMARKs printer LEXMARK label
printer LEXMARK custOmer suppOrt phOne LEXMARK printers custOmer suppOrt number
LEXMARK suppOrt centre LEXMARK laser printer LEXMARK printer custOmer service
suppOrt LEXMARK wireless printer setup buy LEXMARK printer Online LEXMARK
printer tech suppOrt number LEXMARK netwOrk printer LEXMARK printers custOmer
service number custOmer service fOr LEXMARK printers LEXMARK service centre
LEXMARK wireless printer LEXMARK printers LEXMARK custOmer care LEXMARK printer
Online suppOrt LEXMARK printer tOll free number phOne number fOr LEXMARK
printers LEXMARK printer installatiOn LEXMARK printers help desk LEXMARK
printer suppOrt phOne service LEXMARK LEXMARK LEXMARK printer custOmer
service/@!!((I+855+709+2847+))!!@LEXMARK printer suppOrt phOne number LEXMARK
printer tech suppOrt phOne number USA
>From gcc-bugs-return-534534-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 15:18:38 2016
Return-Path: <gcc-bugs-return-534534-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 55648 invoked by alias); 13 Aug 2016 15:18:37 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 55638 invoked by uid 89); 13 Aug 2016 15:18:37 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, brothers, UD:ca, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 15:18:27 +0000
From: "liquider at codehot dot co.uk" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug objc++/76036] New: @%@$$$@^^@1_855x709x2847 @^^@@%BROTHER p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a c.a.n.a.d.a
Date: Sat, 13 Aug 2016 15:18:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: objc++
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: liquider at codehot dot co.uk
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-76036-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01870.txt.bz2
Content-length: 7614

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76036

            Bug ID: 76036
           Summary: @%@$$$@^^@1_855x709x2847 @^^@@%BROTHER p.r.i.n.t.e.r
                    t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a
                    c.a.n.a.d.a
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: objc++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: liquider at codehot dot co.uk
  Target Milestone: ---

/@!!((I+855+709+2847+))!!@BROTHER printer suppOrt phOne number BROTHER printer
tech suppOrt phOne number USA UST<::: /@!!((I+855+709+2847+))!!@BROTHER printer
suppOrt phOne number BROTHER printer tech suppOrt phOne number USA BROTHER
printer custOmer service @@@++@@++I+855+709+2847 !!++++@@+++@@@@+BROTHER
printer suppOrt phOne number BROTHER printer tech suppOrt phOne number USA
JUST<::: /@!!((I+855+709+2847+))!!@BROTHER printer suppOrt phOne number BROTHER
printer tech suppOrt phOne number USA BROTHER printer custOmer
service@@!!((*I+855+709+2847+))!!@@BROTHER printer suppOrt phOne number BROTHER
printer tech suppOrt phOne number USA, BROTHER printer technical suppOrt phOne
number BROTHER printer custOmer suppOrt phOne number BROTHER printer phOne
number BROTHER printer custOmer care phOne number brOhter printer custOmer care
number BROTHER printer tOll free phOne number BROTHER printer suppOrt BROTHER
suppOrt BROTHER printers suppOrt BROTHER custOmer service BROTHER printer help
BROTHER tech suppOrt BROTHER printer custOmer service BROTHER printer tech
suppOrt BROTHER technical suppOrt BROTHER printer trOubleshOOting BROTHER
printers trOubleshOOting BROTHER internatiOnal BROTHERs printer suppOrt BROTHER
custOmer suppOrt BROTHER printer technical suppOrt BROTHER printer repair
BROTHER printer helpline BROTHER printers custOmer service BROTHER service
center BROTHERs printers suppOrt BROTHER helpline BROTHER custOmer service
phOne number install BROTHER printer BROTHER printers tech suppOrt BROTHER
printer suppOrt number BROTHER printer custOmer suppOrt BROTHER printer cOntact
number BROTHER printer prOblems BROTHER printers help BROTHER printer service
BROTHER printer service center BROTHER printer cOntact BROTHER custOmer service
number BROTHER printers helpline BROTHER suppOrt number BROTHER printer repairs
BROTHER printer scanner BROTHER printers phOne number BROTHER printers custOmer
suppOrt BROTHER suppOrt center BROTHER tech suppOrt phOne number BROTHERs
printers custOmer service BROTHER printer custOmer service number BROTHER
printers technical suppOrt BROTHER printer helpline number BROTHER suppOrt
phOne number BROTHER suppOrt printer BROTHER technical suppOrt number BROTHER
printers cOntact trOubleshOOting BROTHER printer BROTHER printer phOne suppOrt
BROTHER printers suppOrt phOne number trOubleshOOt BROTHER printer BROTHER
printers cOntact number BROTHERs custOmer service BROTHER printer number
BROTHER phOne suppOrt BROTHER trOubleshOOting BROTHER printer custOmer care
BROTHER printer help desk drivers fOr BROTHER printers BROTHER technical
suppOrt phOne number BROTHER custOmer service phOne cOntact BROTHER printers
BROTHER printer custOmer care number BROTHER help desk BROTHER Online suppOrt
BROTHER custOmer suppOrt phOne number BROTHERs printer custOmer service BROTHER
printer mfc BROTHER printers tech suppOrt phOne number BROTHER service BROTHERs
tech suppOrt BROTHER printers custOmer service phOne number BROTHER printer
install BROTHER laser printers BROTHERs printers suppOrt BROTHER printer
BROTHER printer service centre BROTHER printer updates BROTHER inkjet printer
cOntact BROTHER suppOrt BROTHER tech suppOrt phOne BROTHER lc61 BROTHERs
printers tech suppOrt printers Online cOntact BROTHER printer BROTHERs printer
BROTHER label printer BROTHER custOmer suppOrt phOne BROTHER printers custOmer
suppOrt number BROTHER suppOrt centre BROTHER laser printer BROTHER printer
custOmer service suppOrt BROTHER wireless printer setup buy BROTHER printer
Online BROTHER printer tech suppOrt number BROTHER netwOrk printer BROTHER
printers custOmer service number custOmer service fOr BROTHER printers BROTHER
service centre BROTHER wireless printer BROTHER printers BROTHER custOmer care
BROTHER printer Online suppOrt BROTHER printer tOll free number phOne number
fOr BROTHER printers BROTHER printer installatiOn BROTHER printers help desk
BROTHER printer suppOrt phOne service BROTHER BROTHER mfc BROTHER printer
custOmer suppOrt number BROTHER printers technical suppOrt phOne number BROTHER
printer hOtline cOntact number fOr BROTHER printers BROTHER printer BROTHER.cOm
suppOrt cOntact BROTHER printer suppOrt BROTHER printer trOubleshOOt BROTHER
telephOne suppOrt BROTHER printers custOmer suppOrt phOne number BROTHER
printer help phOne number BROTHER custOmer service telephOne number BROTHER
printer tech suppOrt phOne BROTHER.ca suppOrt BROTHER printer Online BROTHER
multifunctiOn printer printer suppOrt BROTHER printer help BROTHER mfc printer
technical suppOrt fOr BROTHER printers BROTHER tech suppOrt number email
suppOrt BROTHER printers suppOrt phOne mfc BROTHER BROTHER hl227Odw BROTHER
printers website BROTHER printer suppOrt BROTHER printers repair repair BROTHER
printer BROTHER printers suppOrt BROTHER helpline number BROTHER scanner
printer BROTHER printers service BROTHER printers custOmer service telephOne
number BROTHER printer phOne number custOmer service BROTHER printers review
www.BROTHER.cOm suppOrt fOr BROTHER printer BROTHER printer repair service
BROTHER printer phOne number fOr BROTHER printer suppOrt BROTHER printer
website BROTHER printers custOmer service phOne BROTHER printer prOblems and
sOlutiOns BROTHERs printers custOmer service phOne number custOmer service
BROTHER printer sOlutiOn BROTHER BROTHER fax suppOrt mfc BROTHER printer
BROTHER printer custOmer service phOne BROTHER printer help number BROTHER
mfc-846On drivers fOr BROTHER printers BROTHER technical suppOrt phOne number
BROTHER custOmer service phOne cOntact BROTHER printers BROTHER printer
custOmer care number BROTHER help desk BROTHER Online suppOrt BROTHER custOmer
suppOrt phOne number BROTHERs printer custOmer service BROTHER printer mfc
BROTHER printers tech suppOrt phOne number BROTHER service BROTHERs tech
suppOrt BROTHER printers custOmer service phOne number BROTHER printer install
BROTHER laser printers BROTHERs printers suppOrt BROTHER printer BROTHER
printer service centre BROTHER printer updates BROTHER inkjet printer cOntact
BROTHER suppOrt BROTHER tech suppOrt phOne BROTHER lc61 BROTHERs printers tech
suppOrt printers Online cOntact BROTHER printer BROTHERs printer BROTHER label
printer BROTHER custOmer suppOrt phOne BROTHER printers custOmer suppOrt number
BROTHER suppOrt centre BROTHER laser printer BROTHER printer custOmer service
suppOrt BROTHER wireless printer setup buy BROTHER printer Online BROTHER
printer tech suppOrt number BROTHER netwOrk printer BROTHER printers custOmer
service number custOmer service fOr BROTHER printers BROTHER service centre
BROTHER wireless printer BROTHER printers BROTHER custOmer care BROTHER printer
Online suppOrt BROTHER printer tOll free number phOne number fOr BROTHER
printers BROTHER printer installatiOn BROTHER printers help desk BROTHER
printer suppOrt phOne service BROTHER BROTHER BROTHER printer custOmer
service/@!!((I+855+709+2847+))!!@BROTHER printer suppOrt phOne number BROTHER
printer tech suppOrt phOne number USA
>From gcc-bugs-return-534535-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 15:24:57 2016
Return-Path: <gcc-bugs-return-534535-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 62911 invoked by alias); 13 Aug 2016 15:24:57 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 62889 invoked by uid 89); 13 Aug 2016 15:24:56 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, brothers, UD:ca, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 15:24:46 +0000
From: "liquider at codehot dot co.uk" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug objc++/76041] New: %^^@@$$$@^^@1_855x709x2847 @^^@@%BROTHER p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a
Date: Sat, 13 Aug 2016 15:24:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: objc++
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: liquider at codehot dot co.uk
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-76041-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01871.txt.bz2
Content-length: 7590

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76041

            Bug ID: 76041
           Summary: %^^@@$$$@^^@1_855x709x2847 @^^@@%BROTHER p.r.i.n.t.e.r
                    t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: objc++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: liquider at codehot dot co.uk
  Target Milestone: ---

/^^@!!((I+855+709+2847+))!!@BROTHER printer suppOrt phOne number BROTHER
printer tech suppOrt phOne number USA UST<::: /@!!((I+855+709+2847+))!!@BROTHER
printer suppOrt phOne number BROTHER printer tech suppOrt phOne number USA
BROTHER printer custOmer service @@@++@@++I+855+709+2847
!!++++@@+++@@@@+BROTHER printer suppOrt phOne number BROTHER printer tech
suppOrt phOne number USA JUST<::: /@!!((I+855+709+2847+))!!@BROTHER printer
suppOrt phOne number BROTHER printer tech suppOrt phOne number USA BROTHER
printer custOmer service@@!!((*I+855+709+2847+))!!@@BROTHER printer suppOrt
phOne number BROTHER printer tech suppOrt phOne number USA, BROTHER printer
technical suppOrt phOne number BROTHER printer custOmer suppOrt phOne number
BROTHER printer phOne number BROTHER printer custOmer care phOne number brOhter
printer custOmer care number BROTHER printer tOll free phOne number BROTHER
printer suppOrt BROTHER suppOrt BROTHER printers suppOrt BROTHER custOmer
service BROTHER printer help BROTHER tech suppOrt BROTHER printer custOmer
service BROTHER printer tech suppOrt BROTHER technical suppOrt BROTHER printer
trOubleshOOting BROTHER printers trOubleshOOting BROTHER internatiOnal BROTHERs
printer suppOrt BROTHER custOmer suppOrt BROTHER printer technical suppOrt
BROTHER printer repair BROTHER printer helpline BROTHER printers custOmer
service BROTHER service center BROTHERs printers suppOrt BROTHER helpline
BROTHER custOmer service phOne number install BROTHER printer BROTHER printers
tech suppOrt BROTHER printer suppOrt number BROTHER printer custOmer suppOrt
BROTHER printer cOntact number BROTHER printer prOblems BROTHER printers help
BROTHER printer service BROTHER printer service center BROTHER printer cOntact
BROTHER custOmer service number BROTHER printers helpline BROTHER suppOrt
number BROTHER printer repairs BROTHER printer scanner BROTHER printers phOne
number BROTHER printers custOmer suppOrt BROTHER suppOrt center BROTHER tech
suppOrt phOne number BROTHERs printers custOmer service BROTHER printer
custOmer service number BROTHER printers technical suppOrt BROTHER printer
helpline number BROTHER suppOrt phOne number BROTHER suppOrt printer BROTHER
technical suppOrt number BROTHER printers cOntact trOubleshOOting BROTHER
printer BROTHER printer phOne suppOrt BROTHER printers suppOrt phOne number
trOubleshOOt BROTHER printer BROTHER printers cOntact number BROTHERs custOmer
service BROTHER printer number BROTHER phOne suppOrt BROTHER trOubleshOOting
BROTHER printer custOmer care BROTHER printer help desk drivers fOr BROTHER
printers BROTHER technical suppOrt phOne number BROTHER custOmer service phOne
cOntact BROTHER printers BROTHER printer custOmer care number BROTHER help desk
BROTHER Online suppOrt BROTHER custOmer suppOrt phOne number BROTHERs printer
custOmer service BROTHER printer mfc BROTHER printers tech suppOrt phOne number
BROTHER service BROTHERs tech suppOrt BROTHER printers custOmer service phOne
number BROTHER printer install BROTHER laser printers BROTHERs printers suppOrt
BROTHER printer BROTHER printer service centre BROTHER printer updates BROTHER
inkjet printer cOntact BROTHER suppOrt BROTHER tech suppOrt phOne BROTHER lc61
BROTHERs printers tech suppOrt printers Online cOntact BROTHER printer BROTHERs
printer BROTHER label printer BROTHER custOmer suppOrt phOne BROTHER printers
custOmer suppOrt number BROTHER suppOrt centre BROTHER laser printer BROTHER
printer custOmer service suppOrt BROTHER wireless printer setup buy BROTHER
printer Online BROTHER printer tech suppOrt number BROTHER netwOrk printer
BROTHER printers custOmer service number custOmer service fOr BROTHER printers
BROTHER service centre BROTHER wireless printer BROTHER printers BROTHER
custOmer care BROTHER printer Online suppOrt BROTHER printer tOll free number
phOne number fOr BROTHER printers BROTHER printer installatiOn BROTHER printers
help desk BROTHER printer suppOrt phOne service BROTHER BROTHER mfc BROTHER
printer custOmer suppOrt number BROTHER printers technical suppOrt phOne number
BROTHER printer hOtline cOntact number fOr BROTHER printers BROTHER printer
BROTHER.cOm suppOrt cOntact BROTHER printer suppOrt BROTHER printer
trOubleshOOt BROTHER telephOne suppOrt BROTHER printers custOmer suppOrt phOne
number BROTHER printer help phOne number BROTHER custOmer service telephOne
number BROTHER printer tech suppOrt phOne BROTHER.ca suppOrt BROTHER printer
Online BROTHER multifunctiOn printer printer suppOrt BROTHER printer help
BROTHER mfc printer technical suppOrt fOr BROTHER printers BROTHER tech suppOrt
number email suppOrt BROTHER printers suppOrt phOne mfc BROTHER BROTHER
hl227Odw BROTHER printers website BROTHER printer suppOrt BROTHER printers
repair repair BROTHER printer BROTHER printers suppOrt BROTHER helpline number
BROTHER scanner printer BROTHER printers service BROTHER printers custOmer
service telephOne number BROTHER printer phOne number custOmer service BROTHER
printers review www.BROTHER.cOm suppOrt fOr BROTHER printer BROTHER printer
repair service BROTHER printer phOne number fOr BROTHER printer suppOrt BROTHER
printer website BROTHER printers custOmer service phOne BROTHER printer
prOblems and sOlutiOns BROTHERs printers custOmer service phOne number custOmer
service BROTHER printer sOlutiOn BROTHER BROTHER fax suppOrt mfc BROTHER
printer BROTHER printer custOmer service phOne BROTHER printer help number
BROTHER mfc-846On drivers fOr BROTHER printers BROTHER technical suppOrt phOne
number BROTHER custOmer service phOne cOntact BROTHER printers BROTHER printer
custOmer care number BROTHER help desk BROTHER Online suppOrt BROTHER custOmer
suppOrt phOne number BROTHERs printer custOmer service BROTHER printer mfc
BROTHER printers tech suppOrt phOne number BROTHER service BROTHERs tech
suppOrt BROTHER printers custOmer service phOne number BROTHER printer install
BROTHER laser printers BROTHERs printers suppOrt BROTHER printer BROTHER
printer service centre BROTHER printer updates BROTHER inkjet printer cOntact
BROTHER suppOrt BROTHER tech suppOrt phOne BROTHER lc61 BROTHERs printers tech
suppOrt printers Online cOntact BROTHER printer BROTHERs printer BROTHER label
printer BROTHER custOmer suppOrt phOne BROTHER printers custOmer suppOrt number
BROTHER suppOrt centre BROTHER laser printer BROTHER printer custOmer service
suppOrt BROTHER wireless printer setup buy BROTHER printer Online BROTHER
printer tech suppOrt number BROTHER netwOrk printer BROTHER printers custOmer
service number custOmer service fOr BROTHER printers BROTHER service centre
BROTHER wireless printer BROTHER printers BROTHER custOmer care BROTHER printer
Online suppOrt BROTHER printer tOll free number phOne number fOr BROTHER
printers BROTHER printer installatiOn BROTHER printers help desk BROTHER
printer suppOrt phOne service BROTHER BROTHER BROTHER printer custOmer
service/@!!((I+855+709+2847+))!!@BROTHER printer suppOrt phOne number BROTHER
printer tech suppOrt phOne number USA
>From gcc-bugs-return-534537-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 15:33:51 2016
Return-Path: <gcc-bugs-return-534537-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 14719 invoked by alias); 13 Aug 2016 15:33:50 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 14701 invoked by uid 89); 13 Aug 2016 15:33:49 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, @@@, U*@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 15:33:39 +0000
From: "harsh02 at codehot dot co.uk" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/76052] New: @%@$$$@^^^@@1_855x709.....2847 @@^^^@@%LEXMARK p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a c.a.n.a.d.a
Date: Sat, 13 Aug 2016 15:33:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: fortran-dev
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: harsh02 at codehot dot co.uk
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-76052-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01873.txt.bz2
Content-length: 7622

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76052

            Bug ID: 76052
           Summary: @%@$$$@^^^@@1_855x709.....2847 @@^^^@@%LEXMARK
                    p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e
                    n.u.m.b.e.r u.s.a c.a.n.a.d.a
           Product: gcc
           Version: fortran-dev
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: harsh02 at codehot dot co.uk
  Target Milestone: ---

/@!!((I+855+709+2847+))!!@LEXMARK printer suppOrt phOne number LEXMARK printer
tech suppOrt phOne number USA UST<::: /@!!((I+855+709+2847+))!!@LEXMARK printer
suppOrt phOne number LEXMARK printer tech suppOrt phOne number USA LEXMARK
printer custOmer service @@@++@@++I+855+709+2847 !!++++@@+++@@@@+LEXMARK
printer suppOrt phOne number LEXMARK printer tech suppOrt phOne number USA
JUST<::: /@!!((I+855+709+2847+))!!@LEXMARK printer suppOrt phOne number LEXMARK
printer tech suppOrt phOne number USA LEXMARK printer custOmer
service@@!!((*I+855+709+2847+))!!@@LEXMARK printer suppOrt phOne number LEXMARK
printer tech suppOrt phOne number USA, LEXMARK printer technical suppOrt phOne
number LEXMARK printer custOmer suppOrt phOne number LEXMARK printer phOne
number LEXMARK printer custOmer care phOne number brOhter printer custOmer care
number LEXMARK printer tOll free phOne number LEXMARK printer suppOrt LEXMARK
suppOrt LEXMARK printers suppOrt LEXMARK custOmer service LEXMARK printer help
LEXMARK tech suppOrt LEXMARK printer custOmer service LEXMARK printer tech
suppOrt LEXMARK technical suppOrt LEXMARK printer trOubleshOOting LEXMARK
printers trOubleshOOting LEXMARK internatiOnal LEXMARKs printer suppOrt LEXMARK
custOmer suppOrt LEXMARK printer technical suppOrt LEXMARK printer repair
LEXMARK printer helpline LEXMARK printers custOmer service LEXMARK service
center LEXMARKs printers suppOrt LEXMARK helpline LEXMARK custOmer service
phOne number install LEXMARK printer LEXMARK printers tech suppOrt LEXMARK
printer suppOrt number LEXMARK printer custOmer suppOrt LEXMARK printer cOntact
number LEXMARK printer prOblems LEXMARK printers help LEXMARK printer service
LEXMARK printer service center LEXMARK printer cOntact LEXMARK custOmer service
number LEXMARK printers helpline LEXMARK suppOrt number LEXMARK printer repairs
LEXMARK printer scanner LEXMARK printers phOne number LEXMARK printers custOmer
suppOrt LEXMARK suppOrt center LEXMARK tech suppOrt phOne number LEXMARKs
printers custOmer service LEXMARK printer custOmer service number LEXMARK
printers technical suppOrt LEXMARK printer helpline number LEXMARK suppOrt
phOne number LEXMARK suppOrt printer LEXMARK technical suppOrt number LEXMARK
printers cOntact trOubleshOOting LEXMARK printer LEXMARK printer phOne suppOrt
LEXMARK printers suppOrt phOne number trOubleshOOt LEXMARK printer LEXMARK
printers cOntact number LEXMARKs custOmer service LEXMARK printer number
LEXMARK phOne suppOrt LEXMARK trOubleshOOting LEXMARK printer custOmer care
LEXMARK printer help desk drivers fOr LEXMARK printers LEXMARK technical
suppOrt phOne number LEXMARK custOmer service phOne cOntact LEXMARK printers
LEXMARK printer custOmer care number LEXMARK help desk LEXMARK Online suppOrt
LEXMARK custOmer suppOrt phOne number LEXMARKs printer custOmer service LEXMARK
printer mfc LEXMARK printers tech suppOrt phOne number LEXMARK service LEXMARKs
tech suppOrt LEXMARK printers custOmer service phOne number LEXMARK printer
install LEXMARK laser printers LEXMARKs printers suppOrt LEXMARK printer
LEXMARK printer service centre LEXMARK printer updates LEXMARK inkjet printer
cOntact LEXMARK suppOrt LEXMARK tech suppOrt phOne LEXMARK lc61 LEXMARKs
printers tech suppOrt printers Online cOntact LEXMARK printer LEXMARKs printer
LEXMARK label printer LEXMARK custOmer suppOrt phOne LEXMARK printers custOmer
suppOrt number LEXMARK suppOrt centre LEXMARK laser printer LEXMARK printer
custOmer service suppOrt LEXMARK wireless printer setup buy LEXMARK printer
Online LEXMARK printer tech suppOrt number LEXMARK netwOrk printer LEXMARK
printers custOmer service number custOmer service fOr LEXMARK printers LEXMARK
service centre LEXMARK wireless printer LEXMARK printers LEXMARK custOmer care
LEXMARK printer Online suppOrt LEXMARK printer tOll free number phOne number
fOr LEXMARK printers LEXMARK printer installatiOn LEXMARK printers help desk
LEXMARK printer suppOrt phOne service LEXMARK LEXMARK mfc LEXMARK printer
custOmer suppOrt number LEXMARK printers technical suppOrt phOne number LEXMARK
printer hOtline cOntact number fOr LEXMARK printers LEXMARK printer LEXMARK.cOm
suppOrt cOntact LEXMARK printer suppOrt LEXMARK printer trOubleshOOt LEXMARK
telephOne suppOrt LEXMARK printers custOmer suppOrt phOne number LEXMARK
printer help phOne number LEXMARK custOmer service telephOne number LEXMARK
printer tech suppOrt phOne LEXMARK.ca suppOrt LEXMARK printer Online LEXMARK
multifunctiOn printer printer suppOrt LEXMARK printer help LEXMARK mfc printer
technical suppOrt fOr LEXMARK printers LEXMARK tech suppOrt number email
suppOrt LEXMARK printers suppOrt phOne mfc LEXMARK LEXMARK hl227Odw LEXMARK
printers website LEXMARK printer suppOrt LEXMARK printers repair repair LEXMARK
printer LEXMARK printers suppOrt LEXMARK helpline number LEXMARK scanner
printer LEXMARK printers service LEXMARK printers custOmer service telephOne
number LEXMARK printer phOne number custOmer service LEXMARK printers review
www.LEXMARK.cOm suppOrt fOr LEXMARK printer LEXMARK printer repair service
LEXMARK printer phOne number fOr LEXMARK printer suppOrt LEXMARK printer
website LEXMARK printers custOmer service phOne LEXMARK printer prOblems and
sOlutiOns LEXMARKs printers custOmer service phOne number custOmer service
LEXMARK printer sOlutiOn LEXMARK LEXMARK fax suppOrt mfc LEXMARK printer
LEXMARK printer custOmer service phOne LEXMARK printer help number LEXMARK
mfc-846On drivers fOr LEXMARK printers LEXMARK technical suppOrt phOne number
LEXMARK custOmer service phOne cOntact LEXMARK printers LEXMARK printer
custOmer care number LEXMARK help desk LEXMARK Online suppOrt LEXMARK custOmer
suppOrt phOne number LEXMARKs printer custOmer service LEXMARK printer mfc
LEXMARK printers tech suppOrt phOne number LEXMARK service LEXMARKs tech
suppOrt LEXMARK printers custOmer service phOne number LEXMARK printer install
LEXMARK laser printers LEXMARKs printers suppOrt LEXMARK printer LEXMARK
printer service centre LEXMARK printer updates LEXMARK inkjet printer cOntact
LEXMARK suppOrt LEXMARK tech suppOrt phOne LEXMARK lc61 LEXMARKs printers tech
suppOrt printers Online cOntact LEXMARK printer LEXMARKs printer LEXMARK label
printer LEXMARK custOmer suppOrt phOne LEXMARK printers custOmer suppOrt number
LEXMARK suppOrt centre LEXMARK laser printer LEXMARK printer custOmer service
suppOrt LEXMARK wireless printer setup buy LEXMARK printer Online LEXMARK
printer tech suppOrt number LEXMARK netwOrk printer LEXMARK printers custOmer
service number custOmer service fOr LEXMARK printers LEXMARK service centre
LEXMARK wireless printer LEXMARK printers LEXMARK custOmer care LEXMARK printer
Online suppOrt LEXMARK printer tOll free number phOne number fOr LEXMARK
printers LEXMARK printer installatiOn LEXMARK printers help desk LEXMARK
printer suppOrt phOne service LEXMARK LEXMARK LEXMARK printer custOmer
service/@!!((I+855+709+2847+))!!@LEXMARK printer suppOrt phOne number LEXMARK
printer tech suppOrt phOne number USA
>From gcc-bugs-return-534536-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 15:33:28 2016
Return-Path: <gcc-bugs-return-534536-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 13812 invoked by alias); 13 Aug 2016 15:33:28 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 13802 invoked by uid 89); 13 Aug 2016 15:33:27 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=2.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_20,GAPPY_SUBJECT autolearn=no version=3.3.2 spammy=fortrandev, fortran-dev, codehot, co.uk
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 15:33:17 +0000
From: "harsh02 at codehot dot co.uk" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/76051] New: @%@$$$@^^^@@1_855x709...2847 @@^^^@@%LEXMARK p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a c.a.n.a.d.a
Date: Sat, 13 Aug 2016 15:33:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: fortran-dev
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: harsh02 at codehot dot co.uk
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-76051-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01872.txt.bz2
Content-length: 546

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76051

            Bug ID: 76051
           Summary: @%@$$$@^^^@@1_855x709...2847 @@^^^@@%LEXMARK
                    p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e
                    n.u.m.b.e.r u.s.a c.a.n.a.d.a
           Product: gcc
           Version: fortran-dev
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: harsh02 at codehot dot co.uk
  Target Milestone: ---
>From gcc-bugs-return-534538-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 15:36:26 2016
Return-Path: <gcc-bugs-return-534538-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 16507 invoked by alias); 13 Aug 2016 15:36:25 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 16493 invoked by uid 89); 13 Aug 2016 15:36:25 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, @@@, U*@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 15:36:15 +0000
From: "aloochips15 at mailinator dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/76058] New: @%@@@@@^^@1_8OOx681x72O8 $$@^@@%EPSON p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a c.a.n.a.d.a
Date: Sat, 13 Aug 2016 15:36:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: fortran-dev
X-Bugzilla-Keywords:
X-Bugzilla-Severity: critical
X-Bugzilla-Who: aloochips15 at mailinator dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-76058-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01874.txt.bz2
Content-length: 7450

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76058

            Bug ID: 76058
           Summary: @%@@@@@^^@1_8OOx681x72O8 $$@^@@%EPSON p.r.i.n.t.e.r
                    t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a
                    c.a.n.a.d.a
           Product: gcc
           Version: fortran-dev
            Status: UNCONFIRMED
          Severity: critical
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: aloochips15 at mailinator dot com
  Target Milestone: ---

Created attachment 39422
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39422&action=edit
/@!!((I+800+681+72O8+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA UST<::: /@!!((I+800+681+72O8+))!!@EPSON printer
suppOrt phOne number EPSON printer tech suppOrt

/@!!((I+800+681+72O8+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA UST<::: /@!!((I+800+681+72O8+))!!@EPSON printer
suppOrt phOne number EPSON printer tech suppOrt phOne number USA EPSON printer
custOmer service @@@++@@++I+800+681+72O8 !!++++@@+++@@@@+EPSON printer suppOrt
phOne number EPSON printer tech suppOrt phOne number USA JUST<:::
/@!!((I+800+681+72O8+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA EPSON printer custOmer
service@@!!((*I+800+681+72O8+))!!@@EPSON printer suppOrt phOne number EPSON
printer tech suppOrt phOne number USA, EPSON printer technical suppOrt phOne
number EPSON printer custOmer suppOrt phOne number EPSON printer phOne number
EPSON printer custOmer care phOne number brOhter printer custOmer care number
EPSON printer tOll free phOne number EPSON printer suppOrt EPSON suppOrt EPSON
printers suppOrt EPSON custOmer service EPSON printer help EPSON tech suppOrt
EPSON printer custOmer service EPSON printer tech suppOrt EPSON technical
suppOrt EPSON printer trOubleshOOting EPSON printers trOubleshOOting EPSON
internatiOnal EPSONs printer suppOrt EPSON custOmer suppOrt EPSON printer
technical suppOrt EPSON printer repair EPSON printer helpline EPSON printers
custOmer service EPSON service center EPSONs printers suppOrt EPSON helpline
EPSON custOmer service phOne number install EPSON printer EPSON printers tech
suppOrt EPSON printer suppOrt number EPSON printer custOmer suppOrt EPSON
printer cOntact number EPSON printer prOblems EPSON printers help EPSON printer
service EPSON printer service center EPSON printer cOntact EPSON custOmer
service number EPSON printers helpline EPSON suppOrt number EPSON printer
repairs EPSON printer scanner EPSON printers phOne number EPSON printers
custOmer suppOrt EPSON suppOrt center EPSON tech suppOrt phOne number EPSONs
printers custOmer service EPSON printer custOmer service number EPSON printers
technical suppOrt EPSON printer helpline number EPSON suppOrt phOne number
EPSON suppOrt printer EPSON technical suppOrt number EPSON printers cOntact
trOubleshOOting EPSON printer EPSON printer phOne suppOrt EPSON printers
suppOrt phOne number trOubleshOOt EPSON printer EPSON printers cOntact number
EPSONs custOmer service EPSON printer number EPSON phOne suppOrt EPSON
trOubleshOOting EPSON printer custOmer care EPSON printer help desk drivers fOr
EPSON printers EPSON technical suppOrt phOne number EPSON custOmer service
phOne cOntact EPSON printers EPSON printer custOmer care number EPSON help desk
EPSON Online suppOrt EPSON custOmer suppOrt phOne number EPSONs printer
custOmer service EPSON printer mfc EPSON printers tech suppOrt phOne number
EPSON service EPSONs tech suppOrt EPSON printers custOmer service phOne number
EPSON printer install EPSON laser printers EPSONs printers suppOrt EPSON
printer EPSON printer service centre EPSON printer updates EPSON inkjet printer
cOntact EPSON suppOrt EPSON tech suppOrt phOne EPSON lc61 EPSONs printers tech
suppOrt printers Online cOntact EPSON printer EPSONs printer EPSON label
printer EPSON custOmer suppOrt phOne EPSON printers custOmer suppOrt number
EPSON suppOrt centre EPSON laser printer EPSON printer custOmer service suppOrt
EPSON wireless printer setup buy EPSON printer Online EPSON printer tech
suppOrt number EPSON netwOrk printer EPSON printers custOmer service number
custOmer service fOr EPSON printers EPSON service centre EPSON wireless printer
EPSON printers EPSON custOmer care EPSON printer Online suppOrt EPSON printer
tOll free number phOne number fOr EPSON printers EPSON printer installatiOn
EPSON printers help desk EPSON printer suppOrt phOne service EPSON EPSON mfc
EPSON printer custOmer suppOrt number EPSON printers technical suppOrt phOne
number EPSON printer hOtline cOntact number fOr EPSON printers EPSON printer
EPSON.cOm suppOrt cOntact EPSON printer suppOrt EPSON printer trOubleshOOt
EPSON telephOne suppOrt EPSON printers custOmer suppOrt phOne number EPSON
printer help phOne number EPSON custOmer service telephOne number EPSON printer
tech suppOrt phOne EPSON.ca suppOrt EPSON printer Online EPSON multifunctiOn
printer printer suppOrt EPSON printer help EPSON mfc printer technical suppOrt
fOr EPSON printers EPSON tech suppOrt number email suppOrt EPSON printers
suppOrt phOne mfc EPSON EPSON hl227Odw EPSON printers website EPSON printer
suppOrt EPSON printers repair repair EPSON printer EPSON printers suppOrt EPSON
helpline number EPSON scanner printer EPSON printers service EPSON printers
custOmer service telephOne number EPSON printer phOne number custOmer service
EPSON printers review www.EPSON.cOm suppOrt fOr EPSON printer EPSON printer
repair service EPSON printer phOne number fOr EPSON printer suppOrt EPSON
printer website EPSON printers custOmer service phOne EPSON printer prOblems
and sOlutiOns EPSONs printers custOmer service phOne number custOmer service
EPSON printer sOlutiOn EPSON EPSON fax suppOrt mfc EPSON printer EPSON printer
custOmer service phOne EPSON printer help number EPSON mfc-846On drivers fOr
EPSON printers EPSON technical suppOrt phOne number EPSON custOmer service
phOne cOntact EPSON printers EPSON printer custOmer care number EPSON help desk
EPSON Online suppOrt EPSON custOmer suppOrt phOne number EPSONs printer
custOmer service EPSON printer mfc EPSON printers tech suppOrt phOne number
EPSON service EPSONs tech suppOrt EPSON printers custOmer service phOne number
EPSON printer install EPSON laser printers EPSONs printers suppOrt EPSON
printer EPSON printer service centre EPSON printer updates EPSON inkjet printer
cOntact EPSON suppOrt EPSON tech suppOrt phOne EPSON lc61 EPSONs printers tech
suppOrt printers Online cOntact EPSON printer EPSONs printer EPSON label
printer EPSON custOmer suppOrt phOne EPSON printers custOmer suppOrt number
EPSON suppOrt centre EPSON laser printer EPSON printer custOmer service suppOrt
EPSON wireless printer setup buy EPSON printer Online EPSON printer tech
suppOrt number EPSON netwOrk printer EPSON printers custOmer service number
custOmer service fOr EPSON printers EPSON service centre EPSON wireless printer
EPSON printers EPSON custOmer care EPSON printer Online suppOrt EPSON printer
tOll free number phOne number fOr EPSON printers EPSON printer installatiOn
EPSON printers help desk EPSON printer suppOrt phOne service EPSON EPSON EPSON
printer custOmer service/@!!((I+800+681+72O8+))!!@EPSON printer suppOrt phOne
number EPSON printer tech suppOrt phOne number USA
>From gcc-bugs-return-534539-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 15:38:46 2016
Return-Path: <gcc-bugs-return-534539-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 47990 invoked by alias); 13 Aug 2016 15:38:46 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 47977 invoked by uid 89); 13 Aug 2016 15:38:44 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 15:38:40 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug other/67392] Invalid mmap return value check
Date: Sat, 13 Aug 2016 15:38:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: other
X-Bugzilla-Version: 5.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-67392-4-YlUverxG8Y@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67392-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67392-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01875.txt.bz2
Content-length: 165

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67392

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Patches goto gcc-patches@ with a changelog.
>From gcc-bugs-return-534540-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 15:46:06 2016
Return-Path: <gcc-bugs-return-534540-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 60424 invoked by alias); 13 Aug 2016 15:46:06 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 60411 invoked by uid 89); 13 Aug 2016 15:46:05 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, brothers, UD:ca, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 15:45:55 +0000
From: "telecomer at codehot dot co.uk" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug objc++/76081] New: @%@$$$@^^^@@1_855x709.....2847 @@^^^@@%BROTHER p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a c.a.n.a.d.a
Date: Sat, 13 Aug 2016 15:46:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: objc++
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: telecomer at codehot dot co.uk
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-76081-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01876.txt.bz2
Content-length: 7623

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76081

            Bug ID: 76081
           Summary: @%@$$$@^^^@@1_855x709.....2847 @@^^^@@%BROTHER
                    p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e
                    n.u.m.b.e.r u.s.a c.a.n.a.d.a
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: objc++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: telecomer at codehot dot co.uk
  Target Milestone: ---

/@!!((I+855+709+2847+))!!@BROTHER printer suppOrt phOne number BROTHER printer
tech suppOrt phOne number USA UST<::: /@!!((I+855+709+2847+))!!@BROTHER printer
suppOrt phOne number BROTHER printer tech suppOrt phOne number USA BROTHER
printer custOmer service @@@++@@++I+855+709+2847 !!++++@@+++@@@@+BROTHER
printer suppOrt phOne number BROTHER printer tech suppOrt phOne number USA
JUST<::: /@!!((I+855+709+2847+))!!@BROTHER printer suppOrt phOne number BROTHER
printer tech suppOrt phOne number USA BROTHER printer custOmer
service@@!!((*I+855+709+2847+))!!@@BROTHER printer suppOrt phOne number BROTHER
printer tech suppOrt phOne number USA, BROTHER printer technical suppOrt phOne
number BROTHER printer custOmer suppOrt phOne number BROTHER printer phOne
number BROTHER printer custOmer care phOne number brOhter printer custOmer care
number BROTHER printer tOll free phOne number BROTHER printer suppOrt BROTHER
suppOrt BROTHER printers suppOrt BROTHER custOmer service BROTHER printer help
BROTHER tech suppOrt BROTHER printer custOmer service BROTHER printer tech
suppOrt BROTHER technical suppOrt BROTHER printer trOubleshOOting BROTHER
printers trOubleshOOting BROTHER internatiOnal BROTHERs printer suppOrt BROTHER
custOmer suppOrt BROTHER printer technical suppOrt BROTHER printer repair
BROTHER printer helpline BROTHER printers custOmer service BROTHER service
center BROTHERs printers suppOrt BROTHER helpline BROTHER custOmer service
phOne number install BROTHER printer BROTHER printers tech suppOrt BROTHER
printer suppOrt number BROTHER printer custOmer suppOrt BROTHER printer cOntact
number BROTHER printer prOblems BROTHER printers help BROTHER printer service
BROTHER printer service center BROTHER printer cOntact BROTHER custOmer service
number BROTHER printers helpline BROTHER suppOrt number BROTHER printer repairs
BROTHER printer scanner BROTHER printers phOne number BROTHER printers custOmer
suppOrt BROTHER suppOrt center BROTHER tech suppOrt phOne number BROTHERs
printers custOmer service BROTHER printer custOmer service number BROTHER
printers technical suppOrt BROTHER printer helpline number BROTHER suppOrt
phOne number BROTHER suppOrt printer BROTHER technical suppOrt number BROTHER
printers cOntact trOubleshOOting BROTHER printer BROTHER printer phOne suppOrt
BROTHER printers suppOrt phOne number trOubleshOOt BROTHER printer BROTHER
printers cOntact number BROTHERs custOmer service BROTHER printer number
BROTHER phOne suppOrt BROTHER trOubleshOOting BROTHER printer custOmer care
BROTHER printer help desk drivers fOr BROTHER printers BROTHER technical
suppOrt phOne number BROTHER custOmer service phOne cOntact BROTHER printers
BROTHER printer custOmer care number BROTHER help desk BROTHER Online suppOrt
BROTHER custOmer suppOrt phOne number BROTHERs printer custOmer service BROTHER
printer mfc BROTHER printers tech suppOrt phOne number BROTHER service BROTHERs
tech suppOrt BROTHER printers custOmer service phOne number BROTHER printer
install BROTHER laser printers BROTHERs printers suppOrt BROTHER printer
BROTHER printer service centre BROTHER printer updates BROTHER inkjet printer
cOntact BROTHER suppOrt BROTHER tech suppOrt phOne BROTHER lc61 BROTHERs
printers tech suppOrt printers Online cOntact BROTHER printer BROTHERs printer
BROTHER label printer BROTHER custOmer suppOrt phOne BROTHER printers custOmer
suppOrt number BROTHER suppOrt centre BROTHER laser printer BROTHER printer
custOmer service suppOrt BROTHER wireless printer setup buy BROTHER printer
Online BROTHER printer tech suppOrt number BROTHER netwOrk printer BROTHER
printers custOmer service number custOmer service fOr BROTHER printers BROTHER
service centre BROTHER wireless printer BROTHER printers BROTHER custOmer care
BROTHER printer Online suppOrt BROTHER printer tOll free number phOne number
fOr BROTHER printers BROTHER printer installatiOn BROTHER printers help desk
BROTHER printer suppOrt phOne service BROTHER BROTHER mfc BROTHER printer
custOmer suppOrt number BROTHER printers technical suppOrt phOne number BROTHER
printer hOtline cOntact number fOr BROTHER printers BROTHER printer BROTHER.cOm
suppOrt cOntact BROTHER printer suppOrt BROTHER printer trOubleshOOt BROTHER
telephOne suppOrt BROTHER printers custOmer suppOrt phOne number BROTHER
printer help phOne number BROTHER custOmer service telephOne number BROTHER
printer tech suppOrt phOne BROTHER.ca suppOrt BROTHER printer Online BROTHER
multifunctiOn printer printer suppOrt BROTHER printer help BROTHER mfc printer
technical suppOrt fOr BROTHER printers BROTHER tech suppOrt number email
suppOrt BROTHER printers suppOrt phOne mfc BROTHER BROTHER hl227Odw BROTHER
printers website BROTHER printer suppOrt BROTHER printers repair repair BROTHER
printer BROTHER printers suppOrt BROTHER helpline number BROTHER scanner
printer BROTHER printers service BROTHER printers custOmer service telephOne
number BROTHER printer phOne number custOmer service BROTHER printers review
www.BROTHER.cOm suppOrt fOr BROTHER printer BROTHER printer repair service
BROTHER printer phOne number fOr BROTHER printer suppOrt BROTHER printer
website BROTHER printers custOmer service phOne BROTHER printer prOblems and
sOlutiOns BROTHERs printers custOmer service phOne number custOmer service
BROTHER printer sOlutiOn BROTHER BROTHER fax suppOrt mfc BROTHER printer
BROTHER printer custOmer service phOne BROTHER printer help number BROTHER
mfc-846On drivers fOr BROTHER printers BROTHER technical suppOrt phOne number
BROTHER custOmer service phOne cOntact BROTHER printers BROTHER printer
custOmer care number BROTHER help desk BROTHER Online suppOrt BROTHER custOmer
suppOrt phOne number BROTHERs printer custOmer service BROTHER printer mfc
BROTHER printers tech suppOrt phOne number BROTHER service BROTHERs tech
suppOrt BROTHER printers custOmer service phOne number BROTHER printer install
BROTHER laser printers BROTHERs printers suppOrt BROTHER printer BROTHER
printer service centre BROTHER printer updates BROTHER inkjet printer cOntact
BROTHER suppOrt BROTHER tech suppOrt phOne BROTHER lc61 BROTHERs printers tech
suppOrt printers Online cOntact BROTHER printer BROTHERs printer BROTHER label
printer BROTHER custOmer suppOrt phOne BROTHER printers custOmer suppOrt number
BROTHER suppOrt centre BROTHER laser printer BROTHER printer custOmer service
suppOrt BROTHER wireless printer setup buy BROTHER printer Online BROTHER
printer tech suppOrt number BROTHER netwOrk printer BROTHER printers custOmer
service number custOmer service fOr BROTHER printers BROTHER service centre
BROTHER wireless printer BROTHER printers BROTHER custOmer care BROTHER printer
Online suppOrt BROTHER printer tOll free number phOne number fOr BROTHER
printers BROTHER printer installatiOn BROTHER printers help desk BROTHER
printer suppOrt phOne service BROTHER BROTHER BROTHER printer custOmer
service/@!!((I+855+709+2847+))!!@BROTHER printer suppOrt phOne number BROTHER
printer tech suppOrt phOne number USA
>From gcc-bugs-return-534541-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 15:56:43 2016
Return-Path: <gcc-bugs-return-534541-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 90432 invoked by alias); 13 Aug 2016 15:56:42 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 90417 invoked by uid 89); 13 Aug 2016 15:56:42 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=mailinator
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 15:56:33 +0000
From: "hbkjsjk at mailinator dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/76103] New: help for A  o L support @ 18006817208jj
Date: Sat, 13 Aug 2016 15:56:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: critical
X-Bugzilla-Who: hbkjsjk at mailinator dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-76103-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01877.txt.bz2
Content-length: 420

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76103

            Bug ID: 76103
           Summary: help for A  o L support @ 18006817208jj
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: critical
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: hbkjsjk at mailinator dot com
  Target Milestone: ---
>From gcc-bugs-return-534542-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 16:05:15 2016
Return-Path: <gcc-bugs-return-534542-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 100529 invoked by alias); 13 Aug 2016 16:05:14 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 100514 invoked by uid 89); 13 Aug 2016 16:05:14 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: =?ISO-8859-1?Q?Yes, score=5.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00,GARBLED_FROM,GARBLED_SUBJECT autolearn=no version=3.3.2 spammy=einrot, installationâ, ersg?X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 16:05:04 +0000
From: "ersg at einrot dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: =?UTF-8?B?W0J1ZyBjKysvNzYxMTVdIE5ldzogQ2FsbCBAIDE4KzAwKzY4KzE3KzIwOCAg?= =?UTF-8?B?Zm9yIFBhbmRhICBpbnN0YWxsYXRpb27igKbigKYyMg==?Date: Sat, 13 Aug 2016 16:05:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ersg at einrot dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-76115-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01878.txt.bz2
Content-length: 443

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76115

            Bug ID: 76115
           Summary: Call @ 18+00+68+17+208  for Panda  installation……22
           Product: gcc
           Version: 5.4.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: ersg at einrot dot com
  Target Milestone: ---
>From gcc-bugs-return-534543-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 16:11:10 2016
Return-Path: <gcc-bugs-return-534543-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 44434 invoked by alias); 13 Aug 2016 16:11:09 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 44401 invoked by uid 89); 13 Aug 2016 16:11:08 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=einrot, deactivation, ersg
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 16:11:00 +0000
From: "ersg at einrot dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/76118] New: 180 068 172 08 (webroot)  activation/ deactivation point
Date: Sat, 13 Aug 2016 16:11:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ersg at einrot dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-76118-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01879.txt.bz2
Content-length: 450

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76118

            Bug ID: 76118
           Summary: 180 068 172 08 (webroot)  activation/ deactivation
                    point
           Product: gcc
           Version: 5.1.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: ersg at einrot dot com
  Target Milestone: ---
>From gcc-bugs-return-534544-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 16:24:57 2016
Return-Path: <gcc-bugs-return-534544-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 120530 invoked by alias); 13 Aug 2016 16:24:57 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 120514 invoked by uid 89); 13 Aug 2016 16:24:56 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=proposed, Hx-languages-length:363
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 16:24:46 +0000
From: "mpolacek at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/61469] language feature: Support for enum underlying type
Date: Sat, 13 Aug 2016 16:24:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: mpolacek at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-61469-4-Sxums1k9yC@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-61469-4@http.gcc.gnu.org/bugzilla/>
References: <bug-61469-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01880.txt.bz2
Content-length: 302

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61469

--- Comment #6 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
There is a proposed enhancement for C2X to implement the ability to define the
type to be used to represent an enum:
<http://www.open-std.org/jtc1/sc22/wg14/www/docs/n2008.pdf>.
>From gcc-bugs-return-534545-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 17:08:35 2016
Return-Path: <gcc-bugs-return-534545-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 39349 invoked by alias); 13 Aug 2016 17:08:34 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 39339 invoked by uid 89); 13 Aug 2016 17:08:33 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 17:08:23 +0000
From: "jrmuizel at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/76174] New: Missed loop optimization
Date: Sat, 13 Aug 2016 17:08:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jrmuizel at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-76174-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01881.txt.bz2
Content-length: 832

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76174

            Bug ID: 76174
           Summary: Missed loop optimization
           Product: gcc
           Version: 6.1.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: middle-end
          Assignee: unassigned at gcc dot gnu.org
          Reporter: jrmuizel at gmail dot com
  Target Milestone: ---

The call to m is not removed from the following code:

void m();

void l(unsigned int r) {
        unsigned int q = 0;
        unsigned int c = r;
        for (unsigned int x = 0; x<r; x++) {
            if (q == c) {
                m();
                c *= 2;
            }
            q++;
        }
}

if the line 'c *= 2' is removed the optimizer successfully optimizes away the
body of the function.
>From gcc-bugs-return-534546-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 17:47:37 2016
Return-Path: <gcc-bugs-return-534546-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 54691 invoked by alias); 13 Aug 2016 17:47:36 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 54669 invoked by uid 89); 13 Aug 2016 17:47:36 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:465
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 17:47:26 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/76174] Missed loop optimization
Date: Sat, 13 Aug 2016 17:47:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on everconfirmed bug_severity
Message-ID: <bug-76174-4-xIEftj4lnA@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76174-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76174-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01882.txt.bz2
Content-length: 612

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76174

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |missed-optimization
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-13
     Ever confirmed|0                           |1
           Severity|normal                      |enhancement

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Confirmed.
>From gcc-bugs-return-534547-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 18:00:12 2016
Return-Path: <gcc-bugs-return-534547-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 80836 invoked by alias); 13 Aug 2016 18:00:12 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 80826 invoked by uid 89); 13 Aug 2016 18:00:11 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=2.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=numberhp, numberHP, 1877, dial
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 18:00:01 +0000
From: "mcnncjcji at yopmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/76207] New: 1877 435 8667 USA/Canada HP Printer Not Printing Dial 1877 435 8667 if your printer is not printing the page
Date: Sat, 13 Aug 2016 18:00:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: trans-mem
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mcnncjcji at yopmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-76207-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01883.txt.bz2
Content-length: 6033

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76207

            Bug ID: 76207
           Summary: 1877 435 8667 USA/Canada HP Printer Not Printing Dial
                    1877 435 8667 if your printer is not printing the page
           Product: gcc
           Version: trans-mem
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: mcnncjcji at yopmail dot com
  Target Milestone: ---

Tech support Number 1877 435 8667 HP Printer Technical Support HP printer
Customer care phone number usa/canada/Canada Helpline Number 1877 435 8667 HP
Printer Tech Support phone number HP printer Customer Service phone number HP
printer usa/canada/canada 1877 435 8667 tech support phone number HP printer
customer service phone number HP printeR usa/canada 1877 435 8667 tech support
phone number HP printer customer service phone number HP printeR usa/canada
1877 435 8667 tech support phone number HP printer customer service phone
number HP printeR usa/canada 1877 435 8667 tech support phone number HP printer
customer service phone number HP printer support tech support phone number HP
printer customer service phone number Support HP printer 1877 435 8667 tech
support phone number HP printer customer service phone number here. HP printer
1877 435 8667 tech support phone number HP printer support phone number Support
1877 435 8667 tech support phone number HP printer support phone number here.
HP printer 1877 435 8667 tech support phone number HP printer support phone
number here.HP printer | 1877 435 8667 | tech support phone number HP printer
customer care phone number HP printer support phone number 1877 435 8667 Online
Best HP printer support by toll free phone number 1877 435 8667 to fix
troubleshooting issues. We provide HP printer technical customer service to
resolve problems when your printer not printing, problem to download printer
drivers, configure network and other issues. Keyword: HP printer support, HP
printer tech support phone number 1877 435 8667 (usa/canada) HP printer support
phone number usa/canada, 1877 435 8667 , Online Best HP printer support by toll
free phone number 1877 435 8667 to fix troubleshooting issues. We provide HP
printer technical customer service to resolve problems when your printer not
printing, problem to download printer drivers, configure network and other
issues. (For usa/canada 1877 435 8667 ) HP printer service center number HP
customer service number usa/canada HP telephone number HP printer help number
HP printer customer service number usa/canada HP service number HP printer
customer service telephone number HP help number HP helpline number HP printer
tech support telephone number HP printers service center number HP customer
care number HP support Canada phone number HP canada support number HP phone
number canada HP canada phone number HP service center contact number HP canada
contact number HP contact number Canada HP service toll free number HP customer
care toll free number HP printer customer support phone number HP printers
support phone number HP customer support phone number HP printer support HP
printer support number HP usa/canada support phone number HP support phone
number HP customer service number HP technical support numberHP help phone
number HP support phone number HP customer service number HP technical support
number HP help phone number HP contact number HP customer service phone number
usa/canada HP printer customer support number HP printers tech support phone
number HP phone number support phone number for HP HP printer tech support
number HP printers phone number phone number for HP printers HP printer
customer care phone number HP customer support telephone number HP printers
customer service phone number HP printer helpline phone number HP support
number usa/canada HP 855 number HP customer care phone number HP printer
technical support telephone number HP printers customer service number HP
printers customer care number HP printers contact number Dial +1877 435 8667 HP
printer driver support number, HP printer toll free number, HP printer customer
care toll free number, HP printer support toll free number, +1877 435 8667 HP
printer tech support, HP printer tech support number, HP printer tech support
phone number, HP printer technical support, HP printer technical support
number, HP printer technical support phone number, +1877 435 8667 HP printer
Support phone number, HP printer contact number, HP printer helpline number, HP
printer telephone number, contact number for HP printer, telephone number for
HP printer, +1877 435 8667 HP printer customer service number, HP printer
Customer service phone number, HP printer Customer support number, HP printer
Customer support phone number, HP printer Customer care number. Disclaimer: HP
printer is an independent provider of remote tech support for third party
products. Any use of third party trademarks, brand names, product and services
is only referential. HP printer hereby disclaims any sponsorship, affiliation
or endorsement of or by any third-parties. If your product is covered by
warranty, the support service maybe available for free from manufacturer. HP
printer support, HP printers support, HP printer tech support, HP printer
technical support, HP printer support number, HP printers customer support, HP
printer customer support, contact HP printer support, HP printer support phone
number, HP printer support phone, HP technical support, HP printers tech
support, HP support, HP printer support forum, HP tech support, HP printer
technical support phone number, HP support number, HP customer support, support
for HP printers, HP support printer, HP support wireless, HP printers support
phone number, HP scanner support, contact HP support, HP customer support phone
number, HP product support HP printer Customer Service Phone Number
>From gcc-bugs-return-534548-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 18:39:10 2016
Return-Path: <gcc-bugs-return-534548-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 20965 invoked by alias); 13 Aug 2016 18:39:10 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 20956 invoked by uid 89); 13 Aug 2016 18:39:09 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=3.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, @@@, U*@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 18:38:59 +0000
From: "wave6 at codehot dot co.uk" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/76246] New: @%@$$$@^^^@@1_X855x709.....X2847 @@^^^@@% EPSON p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a c.a.n.a.d.a
Date: Sat, 13 Aug 2016 18:39:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: fortran-dev
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wave6 at codehot dot co.uk
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-76246-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01884.txt.bz2
Content-length: 7261

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76246

            Bug ID: 76246
           Summary: @%@$$$@^^^@@1_X855x709.....X2847 @@^^^@@% EPSON
                    p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e
                    n.u.m.b.e.r u.s.a c.a.n.a.d.a
           Product: gcc
           Version: fortran-dev
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: wave6 at codehot dot co.uk
  Target Milestone: ---

/@!!((I+855+7O9+2847+))!@#&EPSON printer suppOrt phOne number EPSON printer
technical suppOrt phOne number USA UST<:::: /@!!((I+855+7O9+2847+))!!@EPSON
printer suppOrt phOne number EPSON printer tech suppOrt phOne number USA
UST<::: /@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON
printer tech suppOrt phOne number USA EPSON printer custOmer service
@@@++@@++I+855+7O9+2847 !!++++@@+++@@@@+EPSON printer suppOrt phOne number
EPSON printer tech suppOrt phOne number USA JUST<:::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA EPSON printer custOmer
service@@!!((*I+855+7O9+2847+))!!@@EPSON printer suppOrt phOne number EPSON
printer tech suppOrt phOne number USA, EPSON printer technical suppOrt phOne
number EPSON printer custOmer suppOrt phOne number EPSON printer phOne number
EPSON printer custOmer care phOne number brOhter printer custOmer care number
EPSON printer tOll free phOne number EPSON printer suppOrt EPSON suppOrt EPSON
printers suppOrt EPSON custOmer service EPSON printer help EPSON tech suppOrt
EPSON printer custOmer service EPSON printer tech suppOrt EPSON technical
suppOrt EPSON printer trOubleshOOting EPSON printers trOubleshOOting EPSON
internatiOnal EPSONs printer suppOrt EPSON custOmer suppOrt EPSON printer
technical suppOrt EPSON printer repair EPSON printer helpline EPSON printers
custOmer service EPSON service center EPSONs printers suppOrt EPSON helpline
EPSON custOmer service phOne number install EPSON printer EPSON printers tech
suppOrt EPSON printer suppOrt number EPSON printer custOmer suppOrt EPSON
printer cOntact number EPSON printer prOblems EPSON printers help EPSON printer
service EPSON printer service center EPSON printer cOntact EPSON custOmer
service number EPSON printers helpline EPSON suppOrt number EPSON printer
repairs EPSON printer scanner EPSON printers phOne number EPSON printers
custOmer suppOrt EPSON suppOrt center EPSON tech suppOrt phOne number EPSONs
printers custOmer service EPSON printer custOmer service number EPSON printers
technical suppOrt EPSON printer helpline number EPSON suppOrt phOne number
EPSON suppOrt printer EPSON technical suppOrt number EPSON printers cOntact
trOubleshOOting EPSON printer EPSON printer phOne suppOrt EPSON printers
suppOrt phOne number trOubleshOOt EPSON printer EPSON printers cOntact number
EPSONs custOmer service EPSON printer number EPSON phOne suppOrt EPSON
trOubleshOOting EPSON printer custOmer care EPSON printer help desk drivers fOr
EPSON printers EPSON technical suppOrt phOne number EPSON custOmer service
phOne cOntact EPSON printers EPSON printer custOmer care number EPSON help desk
EPSON Online suppOrt EPSON custOmer suppOrt phOne number EPSONs printer
custOmer service EPSON printer mfc EPSON printers tech suppOrt phOne number
EPSON service EPSONs tech suppOrt EPSON printers custOmer service phOne number
EPSON printer install EPSON laser printers EPSONs printers suppOrt EPSON
printer EPSON printer service centre EPSON printer updates EPSON inkjet printer
cOntact EPSON suppOrt EPSON tech suppOrt phOne EPSON lc61 EPSONs printers tech
suppOrt printers Online cOntact EPSON printer EPSONs printer EPSON label
printer EPSON custOmer suppOrt phOne EPSON printers custOmer suppOrt number
EPSON suppOrt centre EPSON laser printer EPSON printer custOmer service suppOrt
EPSON wireless printer setup buy EPSON printer Online EPSON printer tech
suppOrt number EPSON netwOrk printer EPSON printers custOmer service number
custOmer service fOr EPSON printers EPSON service centre EPSON wireless printer
EPSON printers EPSON custOmer care EPSON printer Online suppOrt EPSON printer
tOll free number phOne number fOr EPSON printers EPSON printer installatiOn
EPSON printers help desk EPSON printer suppOrt phOne service EPSON EPSON mfc
EPSON printer custOmer suppOrt number EPSON printers technical suppOrt phOne
number EPSON printer hOtline cOntact number fOr EPSON printers EPSON printer
EPSON.cOm suppOrt cOntact EPSON printer suppOrt EPSON printer trOubleshOOt
EPSON telephOne suppOrt EPSON printers custOmer suppOrt phOne number EPSON
printer help phOne number EPSON custOmer service telephOne number EPSON printer
tech suppOrt phOne EPSON.ca suppOrt EPSON printer Online EPSON multifunctiOn
printer printer suppOrt EPSON printer help EPSON mfc printer technical suppOrt
fOr EPSON printers EPSON tech suppOrt number email suppOrt EPSON printers
suppOrt phOne mfc EPSON EPSON hl227Odw EPSON printers website EPSON printer
suppOrt EPSON printers repair repair EPSON printer EPSON printers suppOrt EPSON
helpline number EPSON scanner printer EPSON printers service EPSON printers
custOmer service telephOne number EPSON printer phOne number custOmer service
EPSON printers review www.EPSON.cOm suppOrt fOr EPSON printer EPSON printer
repair service EPSON printer phOne number fOr EPSON printer suppOrt EPSON
printer website EPSON printers custOmer service phOne EPSON printer prOblems
and sOlutiOns EPSONs printers custOmer service phOne number custOmer service
EPSON printer sOlutiOn EPSON EPSON fax suppOrt mfc EPSON printer EPSON printer
custOmer service phOne EPSON printer help number EPSON mfc-846On drivers fOr
EPSON printers EPSON technical suppOrt phOne number EPSON custOmer service
phOne cOntact EPSON printers EPSON printer custOmer care number EPSON help desk
EPSON Online suppOrt EPSON custOmer suppOrt phOne number EPSONs printer
custOmer service EPSON printer mfc EPSON printers tech suppOrt phOne number
EPSON service EPSONs tech suppOrt EPSON printers custOmer service phOne number
EPSON printer install EPSON laser printers EPSONs printers suppOrt EPSON
printer EPSON printer service centre EPSON printer updates EPSON inkjet printer
cOntact EPSON suppOrt EPSON tech suppOrt phOne EPSON lc61 EPSONs printers tech
suppOrt printers Online cOntact EPSON printer EPSONs printer EPSON label
printer EPSON custOmer suppOrt phOne EPSON printers custOmer suppOrt number
EPSON suppOrt centre EPSON laser printer EPSON printer custOmer service suppOrt
EPSON wireless printer setup buy EPSON printer Online EPSON printer tech
suppOrt number EPSON netwOrk printer EPSON printers custOmer service number
custOmer service fOr EPSON printers EPSON service centre EPSON wireless printer
EPSON printers EPSON custOmer care EPSON printer Online suppOrt EPSON printer
tOll free number phOne number fOr EPSON printers EPSON printer installatiOn
EPSON printers help desk EPSON printer suppOrt phOne service EPSON EPSON EPSON
printer custOmer service/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne
number EPSON printer tech suppOrt phOne number USA
>From gcc-bugs-return-534549-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 18:41:47 2016
Return-Path: <gcc-bugs-return-534549-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 23262 invoked by alias); 13 Aug 2016 18:41:47 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 23252 invoked by uid 89); 13 Aug 2016 18:41:47 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=3.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, @@@, U*@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 18:41:36 +0000
From: "wave6 at codehot dot co.uk" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: =?UTF-8?B?W0J1ZyBjKysvNzYyNDhdIE5ldzogWFhAXkAgMVhYODU1WFjigKY3MDlYWC4u?= =?UTF-8?B?Mjg0NyYmJioqKioqXipeICBFcHNvbiBQLnIuaS5uLnQuZS5yIFQuZS5oIFMu?= =?UTF-8?B?dS5wLnAuTy5yLlQgUC5oLm8ubi5lIG4udS5tLmIuZS5y?Date: Sat, 13 Aug 2016 18:41:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: fortran-dev
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wave6 at codehot dot co.uk
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-76248-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01885.txt.bz2
Content-length: 7436

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76248

            Bug ID: 76248
           Summary: XX@^@ 1XX855XX…709XX..2847&&&*****^*^  Epson
                    P.r.i.n.t.e.r T.e.h S.u.p.p.O.r.T P.h.o.n.e
                    n.u.m.b.e.r
           Product: gcc
           Version: fortran-dev
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: wave6 at codehot dot co.uk
  Target Milestone: ---

Created attachment 39427
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39427&action=edit
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA UST<::: /@!!((I+855+7O9+2847+))!!@EPSON printer
suppOrt phOne number EPSON printer tech suppOrt

/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA UST<::: /@!!((I+855+7O9+2847+))!!@EPSON printer
suppOrt phOne number EPSON printer tech suppOrt phOne number USA EPSON printer
custOmer service @@@++@@++I+855+7O9+2847 !!++++@@+++@@@@+EPSON printer suppOrt
phOne number EPSON printer tech suppOrt phOne number USA JUST<:::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA EPSON printer custOmer
service@@!!((*I+855+7O9+2847+))!!@@EPSON printer suppOrt phOne number EPSON
printer tech suppOrt phOne number USA, EPSON printer technical suppOrt phOne
number EPSON printer custOmer suppOrt phOne number EPSON printer phOne number
EPSON printer custOmer care phOne number brOhter printer custOmer care number
EPSON printer tOll free phOne number EPSON printer suppOrt EPSON suppOrt EPSON
printers suppOrt EPSON custOmer service EPSON printer help EPSON tech suppOrt
EPSON printer custOmer service EPSON printer tech suppOrt EPSON technical
suppOrt EPSON printer trOubleshOOting EPSON printers trOubleshOOting EPSON
internatiOnal EPSONs printer suppOrt EPSON custOmer suppOrt EPSON printer
technical suppOrt EPSON printer repair EPSON printer helpline EPSON printers
custOmer service EPSON service center EPSONs printers suppOrt EPSON helpline
EPSON custOmer service phOne number install EPSON printer EPSON printers tech
suppOrt EPSON printer suppOrt number EPSON printer custOmer suppOrt EPSON
printer cOntact number EPSON printer prOblems EPSON printers help EPSON printer
service EPSON printer service center EPSON printer cOntact EPSON custOmer
service number EPSON printers helpline EPSON suppOrt number EPSON printer
repairs EPSON printer scanner EPSON printers phOne number EPSON printers
custOmer suppOrt EPSON suppOrt center EPSON tech suppOrt phOne number EPSONs
printers custOmer service EPSON printer custOmer service number EPSON printers
technical suppOrt EPSON printer helpline number EPSON suppOrt phOne number
EPSON suppOrt printer EPSON technical suppOrt number EPSON printers cOntact
trOubleshOOting EPSON printer EPSON printer phOne suppOrt EPSON printers
suppOrt phOne number trOubleshOOt EPSON printer EPSON printers cOntact number
EPSONs custOmer service EPSON printer number EPSON phOne suppOrt EPSON
trOubleshOOting EPSON printer custOmer care EPSON printer help desk drivers fOr
EPSON printers EPSON technical suppOrt phOne number EPSON custOmer service
phOne cOntact EPSON printers EPSON printer custOmer care number EPSON help desk
EPSON Online suppOrt EPSON custOmer suppOrt phOne number EPSONs printer
custOmer service EPSON printer mfc EPSON printers tech suppOrt phOne number
EPSON service EPSONs tech suppOrt EPSON printers custOmer service phOne number
EPSON printer install EPSON laser printers EPSONs printers suppOrt EPSON
printer EPSON printer service centre EPSON printer updates EPSON inkjet printer
cOntact EPSON suppOrt EPSON tech suppOrt phOne EPSON lc61 EPSONs printers tech
suppOrt printers Online cOntact EPSON printer EPSONs printer EPSON label
printer EPSON custOmer suppOrt phOne EPSON printers custOmer suppOrt number
EPSON suppOrt centre EPSON laser printer EPSON printer custOmer service suppOrt
EPSON wireless printer setup buy EPSON printer Online EPSON printer tech
suppOrt number EPSON netwOrk printer EPSON printers custOmer service number
custOmer service fOr EPSON printers EPSON service centre EPSON wireless printer
EPSON printers EPSON custOmer care EPSON printer Online suppOrt EPSON printer
tOll free number phOne number fOr EPSON printers EPSON printer installatiOn
EPSON printers help desk EPSON printer suppOrt phOne service EPSON EPSON mfc
EPSON printer custOmer suppOrt number EPSON printers technical suppOrt phOne
number EPSON printer hOtline cOntact number fOr EPSON printers EPSON printer
EPSON.cOm suppOrt cOntact EPSON printer suppOrt EPSON printer trOubleshOOt
EPSON telephOne suppOrt EPSON printers custOmer suppOrt phOne number EPSON
printer help phOne number EPSON custOmer service telephOne number EPSON printer
tech suppOrt phOne EPSON.ca suppOrt EPSON printer Online EPSON multifunctiOn
printer printer suppOrt EPSON printer help EPSON mfc printer technical suppOrt
fOr EPSON printers EPSON tech suppOrt number email suppOrt EPSON printers
suppOrt phOne mfc EPSON EPSON hl227Odw EPSON printers website EPSON printer
suppOrt EPSON printers repair repair EPSON printer EPSON printers suppOrt EPSON
helpline number EPSON scanner printer EPSON printers service EPSON printers
custOmer service telephOne number EPSON printer phOne number custOmer service
EPSON printers review www.EPSON.cOm suppOrt fOr EPSON printer EPSON printer
repair service EPSON printer phOne number fOr EPSON printer suppOrt EPSON
printer website EPSON printers custOmer service phOne EPSON printer prOblems
and sOlutiOns EPSONs printers custOmer service phOne number custOmer service
EPSON printer sOlutiOn EPSON EPSON fax suppOrt mfc EPSON printer EPSON printer
custOmer service phOne EPSON printer help number EPSON mfc-846On drivers fOr
EPSON printers EPSON technical suppOrt phOne number EPSON custOmer service
phOne cOntact EPSON printers EPSON printer custOmer care number EPSON help desk
EPSON Online suppOrt EPSON custOmer suppOrt phOne number EPSONs printer
custOmer service EPSON printer mfc EPSON printers tech suppOrt phOne number
EPSON service EPSONs tech suppOrt EPSON printers custOmer service phOne number
EPSON printer install EPSON laser printers EPSONs printers suppOrt EPSON
printer EPSON printer service centre EPSON printer updates EPSON inkjet printer
cOntact EPSON suppOrt EPSON tech suppOrt phOne EPSON lc61 EPSONs printers tech
suppOrt printers Online cOntact EPSON printer EPSONs printer EPSON label
printer EPSON custOmer suppOrt phOne EPSON printers custOmer suppOrt number
EPSON suppOrt centre EPSON laser printer EPSON printer custOmer service suppOrt
EPSON wireless printer setup buy EPSON printer Online EPSON printer tech
suppOrt number EPSON netwOrk printer EPSON printers custOmer service number
custOmer service fOr EPSON printers EPSON service centre EPSON wireless printer
EPSON printers EPSON custOmer care EPSON printer Online suppOrt EPSON printer
tOll free number phOne number fOr EPSON printers EPSON printer installatiOn
EPSON printers help desk EPSON printer suppOrt phOne service EPSON EPSON EPSON
printer custOmer service/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne
number EPSON printer tech suppOrt phOne number USA
>From gcc-bugs-return-534550-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 18:45:16 2016
Return-Path: <gcc-bugs-return-534550-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 32487 invoked by alias); 13 Aug 2016 18:45:16 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 32422 invoked by uid 89); 13 Aug 2016 18:45:15 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, yahoo, UD:ca, @@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 18:44:57 +0000
From: "radheradhe7789 at yahoo dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug debug/76251] New: @1_877 x 435 x 8667 @@HP p.r.i.n.t.e.r t.e.c.h s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a O.R.E.G.O.N
Date: Sat, 13 Aug 2016 18:45:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: debug
X-Bugzilla-Version: tree-ssa
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: radheradhe7789 at yahoo dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-76251-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01886.txt.bz2
Content-length: 7078

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76251

            Bug ID: 76251
           Summary: @1_877 x 435 x 8667 @@HP p.r.i.n.t.e.r t.e.c.h
                    s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r u.s.a O.R.E.G.O.N
           Product: gcc
           Version: tree-ssa
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: debug
          Assignee: unassigned at gcc dot gnu.org
          Reporter: radheradhe7789 at yahoo dot com
  Target Milestone: ---

EPSON printer suppOrt phOne number EPSON printer tech suppOrt phOne number USA
UST<::: /@!!((I+877+435+8667+))!!@EPSON printer suppOrt phOne number EPSON
printer tech suppOrt phOne number USA EPSON printer custOmer service
@@@++@@++I+877+435+8667 !!++++@@+++@@@@+EPSON printer suppOrt phOne number
EPSON printer tech suppOrt phOne number USA JUST<:::
/@!!((I+877+435+8667+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA EPSON printer custOmer
service@@!!((*I+877+435+8667+))!!@@EPSON printer suppOrt phOne number EPSON
printer tech suppOrt phOne number USA, EPSON printer technical suppOrt phOne
number EPSON printer custOmer suppOrt phOne number EPSON printer phOne number
EPSON printer custOmer care phOne number brOhter printer custOmer care number
EPSON printer tOll free phOne number EPSON printer suppOrt EPSON suppOrt EPSON
printers suppOrt EPSON custOmer service EPSON printer help EPSON tech suppOrt
EPSON printer custOmer service EPSON printer tech suppOrt EPSON technical
suppOrt EPSON printer trOubleshOOting EPSON printers trOubleshOOting EPSON
internatiOnal EPSONs printer suppOrt EPSON custOmer suppOrt EPSON printer
technical suppOrt EPSON printer repair EPSON printer helpline EPSON printers
custOmer service EPSON service center EPSONs printers suppOrt EPSON helpline
EPSON custOmer service phOne number install EPSON printer EPSON printers tech
suppOrt EPSON printer suppOrt number EPSON printer custOmer suppOrt EPSON
printer cOntact number EPSON printer prOblems EPSON printers help EPSON printer
service EPSON printer service center EPSON printer cOntact EPSON custOmer
service number EPSON printers helpline EPSON suppOrt number EPSON printer
repairs EPSON printer scanner EPSON printers phOne number EPSON printers
custOmer suppOrt EPSON suppOrt center EPSON tech suppOrt phOne number EPSONs
printers custOmer service EPSON printer custOmer service number EPSON printers
technical suppOrt EPSON printer helpline number EPSON suppOrt phOne number
EPSON suppOrt printer EPSON technical suppOrt number EPSON printers cOntact
trOubleshOOting EPSON printer EPSON printer phOne suppOrt EPSON printers
suppOrt phOne number trOubleshOOt EPSON printer EPSON printers cOntact number
EPSONs custOmer service EPSON printer number EPSON phOne suppOrt EPSON
trOubleshOOting EPSON printer custOmer care EPSON printer help desk drivers fOr
EPSON printers EPSON technical suppOrt phOne number EPSON custOmer service
phOne cOntact EPSON printers EPSON printer custOmer care number EPSON help desk
EPSON Online suppOrt EPSON custOmer suppOrt phOne number EPSONs printer
custOmer service EPSON printer mfc EPSON printers tech suppOrt phOne number
EPSON service EPSONs tech suppOrt EPSON printers custOmer service phOne number
EPSON printer install EPSON laser printers EPSONs printers suppOrt EPSON
printer EPSON printer service centre EPSON printer updates EPSON inkjet printer
cOntact EPSON suppOrt EPSON tech suppOrt phOne EPSON lc61 EPSONs printers tech
suppOrt printers Online cOntact EPSON printer EPSONs printer EPSON label
printer EPSON custOmer suppOrt phOne EPSON printers custOmer suppOrt number
EPSON suppOrt centre EPSON laser printer EPSON printer custOmer service suppOrt
EPSON wireless printer setup buy EPSON printer Online EPSON printer tech
suppOrt number EPSON netwOrk printer EPSON printers custOmer service number
custOmer service fOr EPSON printers EPSON service centre EPSON wireless printer
EPSON printers EPSON custOmer care EPSON printer Online suppOrt EPSON printer
tOll free number phOne number fOr EPSON printers EPSON printer installatiOn
EPSON printers help desk EPSON printer suppOrt phOne service EPSON EPSON mfc
EPSON printer custOmer suppOrt number EPSON printers technical suppOrt phOne
number EPSON printer hOtline cOntact number fOr EPSON printers EPSON printer
EPSON.cOm suppOrt cOntact EPSON printer suppOrt EPSON printer trOubleshOOt
EPSON telephOne suppOrt EPSON printers custOmer suppOrt phOne number EPSON
printer help phOne number EPSON custOmer service telephOne number EPSON printer
tech suppOrt phOne EPSON.ca suppOrt EPSON printer Online EPSON multifunctiOn
printer printer suppOrt EPSON printer help EPSON mfc printer technical suppOrt
fOr EPSON printers EPSON tech suppOrt number email suppOrt EPSON printers
suppOrt phOne mfc EPSON EPSON hl227Odw EPSON printers website EPSON printer
suppOrt EPSON printers repair repair EPSON printer EPSON printers suppOrt EPSON
helpline number EPSON scanner printer EPSON printers service EPSON printers
custOmer service telephOne number EPSON printer phOne number custOmer service
EPSON printers review www.EPSON.cOm suppOrt fOr EPSON printer EPSON printer
repair service EPSON printer phOne number fOr EPSON printer suppOrt EPSON
printer website EPSON printers custOmer service phOne EPSON printer prOblems
and sOlutiOns EPSONs printers custOmer service phOne number custOmer service
EPSON printer sOlutiOn EPSON EPSON fax suppOrt mfc EPSON printer EPSON printer
custOmer service phOne EPSON printer help number EPSON mfc-846On drivers fOr
EPSON printers EPSON technical suppOrt phOne number EPSON custOmer service
phOne cOntact EPSON printers EPSON printer custOmer care number EPSON help desk
EPSON Online suppOrt EPSON custOmer suppOrt phOne number EPSONs printer
custOmer service EPSON printer mfc EPSON printers tech suppOrt phOne number
EPSON service EPSONs tech suppOrt EPSON printers custOmer service phOne number
EPSON printer install EPSON laser printers EPSONs printers suppOrt EPSON
printer EPSON printer service centre EPSON printer updates EPSON inkjet printer
cOntact EPSON suppOrt EPSON tech suppOrt phOne EPSON lc61 EPSONs printers tech
suppOrt printers Online cOntact EPSON printer EPSONs printer EPSON label
printer EPSON custOmer suppOrt phOne EPSON printers custOmer suppOrt number
EPSON suppOrt centre EPSON laser printer EPSON printer custOmer service suppOrt
EPSON wireless printer setup buy EPSON printer Online EPSON printer tech
suppOrt number EPSON netwOrk printer EPSON printers custOmer service number
custOmer service fOr EPSON printers EPSON service centre EPSON wireless printer
EPSON printers EPSON custOmer care EPSON printer Online suppOrt EPSON printer
tOll free number phOne number fOr EPSON printers EPSON printer installatiOn
EPSON printers help desk EPSON printer suppOrt phOne service EPSON EPSON EPSON
printer custOmer service/@!!((I+877+435+8667+))!!@EPSON printer suppOrt phOne
number EPSON printer tech suppOrt phOne number USA
>From gcc-bugs-return-534551-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 19:10:02 2016
Return-Path: <gcc-bugs-return-534551-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 61106 invoked by alias); 13 Aug 2016 19:10:02 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 61025 invoked by uid 89); 13 Aug 2016 19:10:01 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=5.3, 53
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 19:09:51 +0000
From: "barry.revzin at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/76262] New: list-initialization prefers initializer_list over copy constructor
Date: Sat, 13 Aug 2016 19:10:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: barry.revzin at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-76262-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01887.txt.bz2
Content-length: 959

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76262

            Bug ID: 76262
           Summary: list-initialization prefers initializer_list over copy
                    constructor
           Product: gcc
           Version: 6.1.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: barry.revzin at gmail dot com
  Target Milestone: ---

In this example:

#include <iostream>

struct X {
    X(std::initializer_list<int >) { std::cout << '1'; }
    X(X const& ) { std::cout << '2'; }
    operator int() { return 0; }
};

int main() {
    X x{1};
    X y{x};
}

gcc 5.3, 6.1, and 7.0 all print 11. But the wording in [over.ics.rank] favoring
initializer_list<X> only applies if the conversion sequences are of the same
form, and in this case they're not - the initializer_list<X> constructor
requires a user-defined conversion.
>From gcc-bugs-return-534552-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 19:34:57 2016
Return-Path: <gcc-bugs-return-534552-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 130048 invoked by alias); 13 Aug 2016 19:34:57 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 130033 invoked by uid 89); 13 Aug 2016 19:34:56 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 19:34:46 +0000
From: "ppalka at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75860] Segmentation violation in tree_check while compiling firefox 48
Date: Sat, 13 Aug 2016 19:34:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: ppalka at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-75860-4-DOyaSc0Loh@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-75860-4@http.gcc.gnu.org/bugzilla/>
References: <bug-75860-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01888.txt.bz2
Content-length: 416

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75860

Patrick Palka <ppalka at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ppalka at gcc dot gnu.org

--- Comment #9 from Patrick Palka <ppalka at gcc dot gnu.org> ---
Dupe of the recently fixed PR72849?
>From gcc-bugs-return-534553-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 19:35:08 2016
Return-Path: <gcc-bugs-return-534553-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 130792 invoked by alias); 13 Aug 2016 19:35:08 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 130760 invoked by uid 89); 13 Aug 2016 19:35:06 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=yahoo, @@@, U*@@, suppOrt
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 19:34:59 +0000
From: "saxenaharsh666 at yahoo dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/76296] New: @@@@1++855++709++2847^^^^@@%@%@$$ Epson Printer tech support
Date: Sat, 13 Aug 2016 19:35:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: fortran-dev
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: saxenaharsh666 at yahoo dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-76296-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01889.txt.bz2
Content-length: 16222

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76296

            Bug ID: 76296
           Summary: @@@@1++855++709++2847^^^^@@%@%@$$ Epson Printer tech
                    support
           Product: gcc
           Version: fortran-dev
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: saxenaharsh666 at yahoo dot com
  Target Milestone: ---

Created attachment 39428
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39428&action=edit
/@!!((I+855+7O9+2847+))!@#&EPSON printer suppOrt phOne number EPSON printer
technical suppOrt phOne number USA UST<:::: /@!!((I+855+7O9+2847+))!!@EPSON
printer suppOrt phOne number EPSON printer tech

/@!!((I+855+7O9+2847+))!@#&EPSON printer suppOrt phOne number EPSON printer
technical suppOrt phOne number USA UST<:::: /@!!((I+855+7O9+2847+))!!@EPSON
printer suppOrt phOne number EPSON printer tech suppOrt phOne number USA
UST<::: /@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON
printer tech suppOrt phOne number USA EPSON printer custOmer service
@@@++@@++I+855+7O9+2847 !!++++@@+++@@@@+EPSON printer suppOrt phOne number
EPSON printer tech suppOrt phOne number USA JUST<:::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA EPSON printer custOmer
service@@!!((*I+855+7O9+2847+))!!@@EPSON printer suppOrt phOne number EPSON
printer tech suppOrt phOne number USA, EPSON printer technical suppOrt phOne
number EPSON printer custOmer suppOrt phOne number EPSON printer phOne number
EPSON printer custOmer care phOne number brOhter printer custOmer care number
EPSON printer tOll free phOne number EPSON printer suppOrt EPSON suppOrt EPSON
printers suppOrt EPSON custOmer service EPSON printer help EPSON tech suppOrt
EPSON printer custOmer service EPSON printer tech suppOrt EPSON technical
suppOrt /@!!((I+855+7O9+2847+))!@#&EPSON printer suppOrt phOne number EPSON
printer technical suppOrt phOne number USA UST<::::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA UST<::: /@!!((I+855+7O9+2847+))!!@EPSON printer
suppOrt phOne number EPSON printer tech suppOrt phOne number USA EPSON printer
custOmer service @@@++@@++I+855+7O9+2847 !!++++@@+++@@@@+EPSON printer suppOrt
phOne number EPSON printer tech suppOrt phOne number USA JUST<:::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA EPSON printer custOmer
service@@!!((*I+855+7O9+2847+))!!@@EPSON printer suppOrt phOne number EPSON
printer tech suppOrt phOne number USA, EPSON printer technical suppOrt phOne
number EPSON printer custOmer suppOrt phOne number EPSON printer phOne number
EPSON printer custOmer care phOne number brOhter printer custOmer care number
EPSON printer tOll free phOne number EPSON printer suppOrt EPSON suppOrt EPSON
printers suppOrt EPSON custOmer service EPSON printer help EPSON tech suppOrt
EPSON printer custOmer service EPSON printer tech suppOrt EPSON technical
suppOrt /@!!((I+855+7O9+2847+))!@#&EPSON printer suppOrt phOne number EPSON
printer technical suppOrt phOne number USA UST<::::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA UST<::: /@!!((I+855+7O9+2847+))!!@EPSON printer
suppOrt phOne number EPSON printer tech suppOrt phOne number USA EPSON printer
custOmer service @@@++@@++I+855+7O9+2847 !!++++@@+++@@@@+EPSON printer suppOrt
phOne number EPSON printer tech suppOrt phOne number USA JUST<:::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA EPSON printer custOmer
service@@!!((*I+855+7O9+2847+))!!@@EPSON printer suppOrt phOne number EPSON
printer tech suppOrt phOne number USA, EPSON printer technical suppOrt phOne
number EPSON printer custOmer suppOrt phOne number EPSON printer phOne number
EPSON printer custOmer care phOne number brOhter printer custOmer care number
EPSON printer tOll free phOne number EPSON printer suppOrt EPSON suppOrt EPSON
printers suppOrt EPSON custOmer service EPSON printer help EPSON tech suppOrt
EPSON printer custOmer service EPSON printer tech suppOrt EPSON technical
suppOrt /@!!((I+855+7O9+2847+))!@#&EPSON printer suppOrt phOne number EPSON
printer technical suppOrt phOne number USA UST<::::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA UST<::: /@!!((I+855+7O9+2847+))!!@EPSON printer
suppOrt phOne number EPSON printer tech suppOrt phOne number USA EPSON printer
custOmer service @@@++@@++I+855+7O9+2847 !!++++@@+++@@@@+EPSON printer suppOrt
phOne number EPSON printer tech suppOrt phOne number USA JUST<:::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA EPSON printer custOmer
service@@!!((*I+855+7O9+2847+))!!@@EPSON printer suppOrt phOne number EPSON
printer tech suppOrt phOne number USA, EPSON printer technical suppOrt phOne
number EPSON printer custOmer suppOrt phOne number EPSON printer phOne number
EPSON printer custOmer care phOne number brOhter printer custOmer care number
EPSON printer tOll free phOne number EPSON printer suppOrt EPSON suppOrt EPSON
printers suppOrt EPSON custOmer service EPSON printer help EPSON tech suppOrt
EPSON printer custOmer service EPSON printer tech suppOrt EPSON technical
suppOrt /@!!((I+855+7O9+2847+))!@#&EPSON printer suppOrt phOne number EPSON
printer technical suppOrt phOne number USA UST<::::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA UST<::: /@!!((I+855+7O9+2847+))!!@EPSON printer
suppOrt phOne number EPSON printer tech suppOrt phOne number USA EPSON printer
custOmer service @@@++@@++I+855+7O9+2847 !!++++@@+++@@@@+EPSON printer suppOrt
phOne number EPSON printer tech suppOrt phOne number USA JUST<:::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA EPSON printer custOmer
service@@!!((*I+855+7O9+2847+))!!@@EPSON printer suppOrt phOne number EPSON
printer tech suppOrt phOne number USA, EPSON printer technical suppOrt phOne
number EPSON printer custOmer suppOrt phOne number EPSON printer phOne number
EPSON printer custOmer care phOne number brOhter printer custOmer care number
EPSON printer tOll free phOne number EPSON printer suppOrt EPSON suppOrt EPSON
printers suppOrt EPSON custOmer service EPSON printer help EPSON tech suppOrt
EPSON printer custOmer service EPSON printer tech suppOrt EPSON technical
suppOrt /@!!((I+855+7O9+2847+))!@#&EPSON printer suppOrt phOne number EPSON
printer technical suppOrt phOne number USA UST<::::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA UST<::: /@!!((I+855+7O9+2847+))!!@EPSON printer
suppOrt phOne number EPSON printer tech suppOrt phOne number USA EPSON printer
custOmer service @@@++@@++I+855+7O9+2847 !!++++@@+++@@@@+EPSON printer suppOrt
phOne number EPSON printer tech suppOrt phOne number USA JUST<:::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA EPSON printer custOmer
service@@!!((*I+855+7O9+2847+))!!@@EPSON printer suppOrt phOne number EPSON
printer tech suppOrt phOne number USA, EPSON printer technical suppOrt phOne
number EPSON printer custOmer suppOrt phOne number EPSON printer phOne number
EPSON printer custOmer care phOne number brOhter printer custOmer care number
EPSON printer tOll free phOne number EPSON printer suppOrt EPSON suppOrt EPSON
printers suppOrt EPSON custOmer service EPSON printer help EPSON tech suppOrt
EPSON printer custOmer service EPSON printer tech suppOrt EPSON technical
suppOrt /@!!((I+855+7O9+2847+))!@#&EPSON printer suppOrt phOne number EPSON
printer technical suppOrt phOne number USA UST<::::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA UST<::: /@!!((I+855+7O9+2847+))!!@EPSON printer
suppOrt phOne number EPSON printer tech suppOrt phOne number USA EPSON printer
custOmer service @@@++@@++I+855+7O9+2847 !!++++@@+++@@@@+EPSON printer suppOrt
phOne number EPSON printer tech suppOrt phOne number USA JUST<:::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA EPSON printer custOmer
service@@!!((*I+855+7O9+2847+))!!@@EPSON printer suppOrt phOne number EPSON
printer tech suppOrt phOne number USA, EPSON printer technical suppOrt phOne
number EPSON printer custOmer suppOrt phOne number EPSON printer phOne number
EPSON printer custOmer care phOne number brOhter printer custOmer care number
EPSON printer tOll free phOne number EPSON printer suppOrt EPSON suppOrt EPSON
printers suppOrt EPSON custOmer service EPSON printer help EPSON tech suppOrt
EPSON printer custOmer service EPSON printer tech suppOrt EPSON technical
suppOrt /@!!((I+855+7O9+2847+))!@#&EPSON printer suppOrt phOne number EPSON
printer technical suppOrt phOne number USA UST<::::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA UST<::: /@!!((I+855+7O9+2847+))!!@EPSON printer
suppOrt phOne number EPSON printer tech suppOrt phOne number USA EPSON printer
custOmer service @@@++@@++I+855+7O9+2847 !!++++@@+++@@@@+EPSON printer suppOrt
phOne number EPSON printer tech suppOrt phOne number USA JUST<:::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA EPSON printer custOmer
service@@!!((*I+855+7O9+2847+))!!@@EPSON printer suppOrt phOne number EPSON
printer tech suppOrt phOne number USA, EPSON printer technical suppOrt phOne
number EPSON printer custOmer suppOrt phOne number EPSON printer phOne number
EPSON printer custOmer care phOne number brOhter printer custOmer care number
EPSON printer tOll free phOne number EPSON printer suppOrt EPSON suppOrt EPSON
printers suppOrt EPSON custOmer service EPSON printer help EPSON tech suppOrt
EPSON printer custOmer service EPSON printer tech suppOrt EPSON technical
suppOrt /@!!((I+855+7O9+2847+))!@#&EPSON printer suppOrt phOne number EPSON
printer technical suppOrt phOne number USA UST<::::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA UST<::: /@!!((I+855+7O9+2847+))!!@EPSON printer
suppOrt phOne number EPSON printer tech suppOrt phOne number USA EPSON printer
custOmer service @@@++@@++I+855+7O9+2847 !!++++@@+++@@@@+EPSON printer suppOrt
phOne number EPSON printer tech suppOrt phOne number USA JUST<:::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA EPSON printer custOmer
service@@!!((*I+855+7O9+2847+))!!@@EPSON printer suppOrt phOne number EPSON
printer tech suppOrt phOne number USA, EPSON printer technical suppOrt phOne
number EPSON printer custOmer suppOrt phOne number EPSON printer phOne number
EPSON printer custOmer care phOne number brOhter printer custOmer care number
EPSON printer tOll free phOne number EPSON printer suppOrt EPSON suppOrt EPSON
printers suppOrt EPSON custOmer service EPSON printer help EPSON tech suppOrt
EPSON printer custOmer service EPSON printer tech suppOrt EPSON technical
suppOrt /@!!((I+855+7O9+2847+))!@#&EPSON printer suppOrt phOne number EPSON
printer technical suppOrt phOne number USA UST<::::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA UST<::: /@!!((I+855+7O9+2847+))!!@EPSON printer
suppOrt phOne number EPSON printer tech suppOrt phOne number USA EPSON printer
custOmer service @@@++@@++I+855+7O9+2847 !!++++@@+++@@@@+EPSON printer suppOrt
phOne number EPSON printer tech suppOrt phOne number USA JUST<:::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA EPSON printer custOmer
service@@!!((*I+855+7O9+2847+))!!@@EPSON printer suppOrt phOne number EPSON
printer tech suppOrt phOne number USA, EPSON printer technical suppOrt phOne
number EPSON printer custOmer suppOrt phOne number EPSON printer phOne number
EPSON printer custOmer care phOne number brOhter printer custOmer care number
EPSON printer tOll free phOne number EPSON printer suppOrt EPSON suppOrt EPSON
printers suppOrt EPSON custOmer service EPSON printer help EPSON tech suppOrt
EPSON printer custOmer service EPSON printer tech suppOrt EPSON technical
suppOrt /@!!((I+855+7O9+2847+))!@#&EPSON printer suppOrt phOne number EPSON
printer technical suppOrt phOne number USA UST<::::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA UST<::: /@!!((I+855+7O9+2847+))!!@EPSON printer
suppOrt phOne number EPSON printer tech suppOrt phOne number USA EPSON printer
custOmer service @@@++@@++I+855+7O9+2847 !!++++@@+++@@@@+EPSON printer suppOrt
phOne number EPSON printer tech suppOrt phOne number USA JUST<:::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA EPSON printer custOmer
service@@!!((*I+855+7O9+2847+))!!@@EPSON printer suppOrt phOne number EPSON
printer tech suppOrt phOne number USA, EPSON printer technical suppOrt phOne
number EPSON printer custOmer suppOrt phOne number EPSON printer phOne number
EPSON printer custOmer care phOne number brOhter printer custOmer care number
EPSON printer tOll free phOne number EPSON printer suppOrt EPSON suppOrt EPSON
printers suppOrt EPSON custOmer service EPSON printer help EPSON tech suppOrt
EPSON printer custOmer service EPSON printer tech suppOrt EPSON technical
suppOrt /@!!((I+855+7O9+2847+))!@#&EPSON printer suppOrt phOne number EPSON
printer technical suppOrt phOne number USA UST<::::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA UST<::: /@!!((I+855+7O9+2847+))!!@EPSON printer
suppOrt phOne number EPSON printer tech suppOrt phOne number USA EPSON printer
custOmer service @@@++@@++I+855+7O9+2847 !!++++@@+++@@@@+EPSON printer suppOrt
phOne number EPSON printer tech suppOrt phOne number USA JUST<:::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA EPSON printer custOmer
service@@!!((*I+855+7O9+2847+))!!@@EPSON printer suppOrt phOne number EPSON
printer tech suppOrt phOne number USA, EPSON printer technical suppOrt phOne
number EPSON printer custOmer suppOrt phOne number EPSON printer phOne number
EPSON printer custOmer care phOne number brOhter printer custOmer care number
EPSON printer tOll free phOne number EPSON printer suppOrt EPSON suppOrt EPSON
printers suppOrt EPSON custOmer service EPSON printer help EPSON tech suppOrt
EPSON printer custOmer service EPSON printer tech suppOrt EPSON technical
suppOrt /@!!((I+855+7O9+2847+))!@#&EPSON printer suppOrt phOne number EPSON
printer technical suppOrt phOne number USA UST<::::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA UST<::: /@!!((I+855+7O9+2847+))!!@EPSON printer
suppOrt phOne number EPSON printer tech suppOrt phOne number USA EPSON printer
custOmer service @@@++@@++I+855+7O9+2847 !!++++@@+++@@@@+EPSON printer suppOrt
phOne number EPSON printer tech suppOrt phOne number USA JUST<:::
/@!!((I+855+7O9+2847+))!!@EPSON printer suppOrt phOne number EPSON printer tech
suppOrt phOne number USA EPSON printer custOmer
service@@!!((*I+855+7O9+2847+))!!@@EPSON printer suppOrt phOne number EPSON
printer tech suppOrt phOne number USA, EPSON printer technical suppOrt phOne
number EPSON printer custOmer suppOrt phOne number EPSON printer phOne number
EPSON printer custOmer care phOne number brOhter printer custOmer care number
EPSON printer tOll free phOne number EPSON printer suppOrt EPSON suppOrt EPSON
printers suppOrt EPSON custOmer service EPSON printer help EPSON tech suppOrt
EPSON printer custOmer service EPSON printer tech suppOrt EPSON technical
suppOrt
>From gcc-bugs-return-534554-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 19:37:15 2016
Return-Path: <gcc-bugs-return-534554-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 10616 invoked by alias); 13 Aug 2016 19:37:15 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 10602 invoked by uid 89); 13 Aug 2016 19:37:14 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:654, pdt, PDT
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 19:37:04 +0000
From: "nfitzgerald at mozilla dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/75402] std::condition_variable::wait_until wakes up constantly
Date: Sat, 13 Aug 2016 19:37:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: nfitzgerald at mozilla dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: attachments.isobsolete attachments.created
Message-ID: <bug-75402-4-WCEdWtdwG0@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-75402-4@http.gcc.gnu.org/bugzilla/>
References: <bug-75402-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01890.txt.bz2
Content-length: 696

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75402

Nick Fitzgerald [:fitzgen] [⏰PDT; UTC-7] <nfitzgerald at mozilla dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
  Attachment #39353|0                           |1
        is obsolete|                            |

--- Comment #1 from Nick Fitzgerald [:fitzgen] [⏰PDT; UTC-7] <nfitzgerald at mozilla dot com> ---
Created attachment 39429
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39429&action=edit
testcase

Corrected testcase. Accidentally introduced a syntax error in the last one
before attaching it.
>From gcc-bugs-return-534555-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 19:37:47 2016
Return-Path: <gcc-bugs-return-534555-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 44018 invoked by alias); 13 Aug 2016 19:37:47 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 42776 invoked by uid 89); 13 Aug 2016 19:37:46 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 19:37:36 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75860] Segmentation violation in tree_check while compiling firefox 48
Date: Sat, 13 Aug 2016 19:37:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: DUPLICATE
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-75860-4-E41DN3ICXf@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-75860-4@http.gcc.gnu.org/bugzilla/>
References: <bug-75860-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01891.txt.bz2
Content-length: 569

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75860

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |DUPLICATE

--- Comment #10 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Ok, with that revision I can reproduce, but it has been already fixed the same
day.

*** This bug has been marked as a duplicate of bug 72849 ***
>From gcc-bugs-return-534556-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 19:38:30 2016
Return-Path: <gcc-bugs-return-534556-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 93242 invoked by alias); 13 Aug 2016 19:38:30 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 93232 invoked by uid 89); 13 Aug 2016 19:38:28 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Firefox
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 19:38:18 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72849] [7 Regression] r239267 causes Firefox build failure
Date: Sat, 13 Aug 2016 19:38:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jason at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-72849-4-gJEcQsmoAk@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72849-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72849-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01892.txt.bz2
Content-length: 438

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72849

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |zeccav at gmail dot com

--- Comment #4 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
*** Bug 75860 has been marked as a duplicate of this bug. ***
>From gcc-bugs-return-534557-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 19:57:58 2016
Return-Path: <gcc-bugs-return-534557-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 42150 invoked by alias); 13 Aug 2016 19:57:57 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 42046 invoked by uid 89); 13 Aug 2016 19:57:57 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-0.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:304
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 19:57:47 +0000
From: "zeccav at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/75860] Segmentation violation in tree_check while compiling firefox 48
Date: Sat, 13 Aug 2016 19:57:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: zeccav at gmail dot com
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: DUPLICATE
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-75860-4-LrudV0Gb70@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-75860-4@http.gcc.gnu.org/bugzilla/>
References: <bug-75860-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01893.txt.bz2
Content-length: 226

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75860

--- Comment #11 from Vittorio Zecca <zeccav at gmail dot com> ---
I applied the fix from bug 72849 and the ICE disappeared.
Many thanks for pointing me to the right place!
>From gcc-bugs-return-534558-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 20:28:38 2016
Return-Path: <gcc-bugs-return-534558-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 125658 invoked by alias); 13 Aug 2016 20:28:37 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 125647 invoked by uid 89); 13 Aug 2016 20:28:37 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:1283, UD:intel.com
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 20:28:27 +0000
From: "wenzel@mitsuba-renderer.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/76342] New: AVX512: _mm512_undefined_epi32() intrinsic missing (incorrectly named _mm512_undefined_si512)
Date: Sat, 13 Aug 2016 20:28:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wenzel@mitsuba-renderer.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-76342-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01894.txt.bz2
Content-length: 1376

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76342

            Bug ID: 76342
           Summary: AVX512: _mm512_undefined_epi32() intrinsic missing
                    (incorrectly named _mm512_undefined_si512)
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: target
          Assignee: unassigned at gcc dot gnu.org
          Reporter: wenzel@mitsuba-renderer.org
  Target Milestone: ---

Consider the following snippet:

// ------------------

#include <immintrin.h>
__m512 test() { return _mm512_undefined_epi32(); }

// ------------------

When compiled with GCC trunk, this yields the following error message:

test.cpp: In function '__m512 test()':
test.cpp:3:24: error: '_mm512_undefined_epi32' was not declared in this scope
 __m512 test() { return _mm512_undefined_epi32(); }
                        ^~~~~~~~~~~~~~~~~~~~~~
test.cpp:3:24: note: suggested alternative: '_mm512_undefined_si512'
 __m512 test() { return _mm512_undefined_epi32(); }
                        ^~~~~~~~~~~~~~~~~~~~~~
                        _mm512_undefined_si512

However, there is no _mm512_undefined_si512 intrinsic. It is called
_mm512_undefined_epi32. See here for details:
https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm512_undefined_epi32&expand=5509
>From gcc-bugs-return-534559-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 20:34:32 2016
Return-Path: <gcc-bugs-return-534559-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 7021 invoked by alias); 13 Aug 2016 20:34:31 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 7006 invoked by uid 89); 13 Aug 2016 20:34:30 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, @@@, U*@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 20:34:20 +0000
From: "paladin423 at mailinator dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/76350] New: @%@$$$@^^@1_8OOx681x7208 @^^@@%VIPRE A.n.t.i.v.i.r.u.s t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.rr
Date: Sat, 13 Aug 2016 20:34:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: c++-concepts
X-Bugzilla-Keywords:
X-Bugzilla-Severity: critical
X-Bugzilla-Who: paladin423 at mailinator dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-76350-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01895.txt.bz2
Content-length: 7468

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76350

            Bug ID: 76350
           Summary: @%@$$$@^^@1_8OOx681x7208 @^^@@%VIPRE A.n.t.i.v.i.r.u.s
                    t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.rr
           Product: gcc
           Version: c++-concepts
            Status: UNCONFIRMED
          Severity: critical
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: paladin423 at mailinator dot com
  Target Milestone: ---

/@!!((I+800+681+7208+))!!@VIPRE antivirus suppOrt phOne number VIPRE antivirus
tech suppOrt phOne number USA UST<::: /@!!((I+800+681+7208+))!!@VIPRE antivirus
suppOrt phOne number VIPRE antivirus tech suppOrt phOne number USA VIPRE
antivirus custOmer service @@@++@@++I+800+681+7208 !!++++@@+++@@@@+VIPRE
antivirus suppOrt phOne number VIPRE antivirus tech suppOrt phOne number USA
JUST<::: /@!!((I+800+681+7208+))!!@VIPRE antivirus suppOrt phOne number VIPRE
antivirus tech suppOrt phOne number USA VIPRE antivirus custOmer
service@@!!((*I+800+681+7208+))!!@@VIPRE antivirus suppOrt phOne number VIPRE
antivirus tech suppOrt phOne number USA, VIPRE antivirus technical suppOrt
phOne number VIPRE antivirus custOmer suppOrt phOne number VIPRE antivirus
phOne number VIPRE antivirus custOmer care phOne number brOhter antivirus
custOmer care number VIPRE antivirus tOll free phOne number VIPRE antivirus
suppOrt VIPRE suppOrt VIPRE antiviruss suppOrt VIPRE custOmer service VIPRE
antivirus help VIPRE tech suppOrt VIPRE antivirus custOmer service VIPRE
antivirus tech suppOrt VIPRE technical suppOrt VIPRE antivirus trOubleshOOting
VIPRE antiviruss trOubleshOOting VIPRE internatiOnal VIPREs antivirus suppOrt
VIPRE custOmer suppOrt VIPRE antivirus technical suppOrt VIPRE antivirus repair
VIPRE antivirus helpline VIPRE antiviruss custOmer service VIPRE service center
VIPREs antiviruss suppOrt VIPRE helpline VIPRE custOmer service phOne number
install VIPRE antivirus VIPRE antiviruss tech suppOrt VIPRE antivirus suppOrt
number VIPRE antivirus custOmer suppOrt VIPRE antivirus cOntact number VIPRE
antivirus prOblems VIPRE antiviruss help VIPRE antivirus service VIPRE
antivirus service center VIPRE antivirus cOntact VIPRE custOmer service number
VIPRE antiviruss helpline VIPRE suppOrt number VIPRE antivirus repairs VIPRE
antivirus scanner VIPRE antiviruss phOne number VIPRE antiviruss custOmer
suppOrt VIPRE suppOrt center VIPRE tech suppOrt phOne number VIPREs antiviruss
custOmer service VIPRE antivirus custOmer service number VIPRE antiviruss
technical suppOrt VIPRE antivirus helpline number VIPRE suppOrt phOne number
VIPRE suppOrt antivirus VIPRE technical suppOrt number VIPRE antiviruss cOntact
trOubleshOOting VIPRE antivirus VIPRE antivirus phOne suppOrt VIPRE antiviruss
suppOrt phOne number trOubleshOOt VIPRE antivirus VIPRE antiviruss cOntact
number VIPREs custOmer service VIPRE antivirus number VIPRE phOne suppOrt VIPRE
trOubleshOOting VIPRE antivirus custOmer care VIPRE antivirus help desk drivers
fOr VIPRE antiviruss VIPRE technical suppOrt phOne number VIPRE custOmer
service phOne cOntact VIPRE antiviruss VIPRE antivirus custOmer care number
VIPRE help desk VIPRE Online suppOrt VIPRE custOmer suppOrt phOne number VIPREs
antivirus custOmer service VIPRE antivirus mfc VIPRE antiviruss tech suppOrt
phOne number VIPRE service VIPREs tech suppOrt VIPRE antiviruss custOmer
service phOne number VIPRE antivirus install VIPRE laser antiviruss VIPREs
antiviruss suppOrt VIPRE antivirus VIPRE antivirus service centre VIPRE
antivirus updates VIPRE inkjet antivirus cOntact VIPRE suppOrt VIPRE tech
suppOrt phOne VIPRE lc61 VIPREs antiviruss tech suppOrt antiviruss Online
cOntact VIPRE antivirus VIPREs antivirus VIPRE label antivirus VIPRE custOmer
suppOrt phOne VIPRE antiviruss custOmer suppOrt number VIPRE suppOrt centre
VIPRE laser antivirus VIPRE antivirus custOmer service suppOrt VIPRE wireless
antivirus setup buy VIPRE antivirus Online VIPRE antivirus tech suppOrt number
VIPRE netwOrk antivirus VIPRE antiviruss custOmer service number custOmer
service fOr VIPRE antiviruss VIPRE service centre VIPRE wireless antivirus
VIPRE antiviruss VIPRE custOmer care VIPRE antivirus Online suppOrt VIPRE
antivirus tOll free number phOne number fOr VIPRE antiviruss VIPRE antivirus
installatiOn VIPRE antiviruss help desk VIPRE antivirus suppOrt phOne service
VIPRE VIPRE mfc VIPRE antivirus custOmer suppOrt number VIPRE antiviruss
technical suppOrt phOne number VIPRE antivirus hOtline cOntact number fOr VIPRE
antiviruss VIPRE antivirus VIPRE.cOm suppOrt cOntact VIPRE antivirus suppOrt
VIPRE antivirus trOubleshOOt VIPRE telephOne suppOrt VIPRE antiviruss custOmer
suppOrt phOne number VIPRE antivirus help phOne number VIPRE custOmer service
telephOne number VIPRE antivirus tech suppOrt phOne VIPRE.ca suppOrt VIPRE
antivirus Online VIPRE multifunctiOn antivirus antivirus suppOrt VIPRE
antivirus help VIPRE mfc antivirus technical suppOrt fOr VIPRE antiviruss VIPRE
tech suppOrt number email suppOrt VIPRE antiviruss suppOrt phOne mfc VIPRE
VIPRE hl227Odw VIPRE antiviruss website VIPRE antivirus suppOrt VIPRE
antiviruss repair repair VIPRE antivirus VIPRE antiviruss suppOrt VIPRE
helpline number VIPRE scanner antivirus VIPRE antiviruss service VIPRE
antiviruss custOmer service telephOne number VIPRE antivirus phOne number
custOmer service VIPRE antiviruss review www.VIPRE.cOm suppOrt fOr VIPRE
antivirus VIPRE antivirus repair service VIPRE antivirus phOne number fOr VIPRE
antivirus suppOrt VIPRE antivirus website VIPRE antiviruss custOmer service
phOne VIPRE antivirus prOblems and sOlutiOns VIPREs antiviruss custOmer service
phOne number custOmer service VIPRE antivirus sOlutiOn VIPRE VIPRE fax suppOrt
mfc VIPRE antivirus VIPRE antivirus custOmer service phOne VIPRE antivirus help
number VIPRE mfc-846On drivers fOr VIPRE antiviruss VIPRE technical suppOrt
phOne number VIPRE custOmer service phOne cOntact VIPRE antiviruss VIPRE
antivirus custOmer care number VIPRE help desk VIPRE Online suppOrt VIPRE
custOmer suppOrt phOne number VIPREs antivirus custOmer service VIPRE antivirus
mfc VIPRE antiviruss tech suppOrt phOne number VIPRE service VIPREs tech
suppOrt VIPRE antiviruss custOmer service phOne number VIPRE antivirus install
VIPRE laser antiviruss VIPREs antiviruss suppOrt VIPRE antivirus VIPRE
antivirus service centre VIPRE antivirus updates VIPRE inkjet antivirus cOntact
VIPRE suppOrt VIPRE tech suppOrt phOne VIPRE lc61 VIPREs antiviruss tech
suppOrt antiviruss Online cOntact VIPRE antivirus VIPREs antivirus VIPRE label
antivirus VIPRE custOmer suppOrt phOne VIPRE antiviruss custOmer suppOrt number
VIPRE suppOrt centre VIPRE laser antivirus VIPRE antivirus custOmer service
suppOrt VIPRE wireless antivirus setup buy VIPRE antivirus Online VIPRE
antivirus tech suppOrt number VIPRE netwOrk antivirus VIPRE antiviruss custOmer
service number custOmer service fOr VIPRE antiviruss VIPRE service centre VIPRE
wireless antivirus VIPRE antiviruss VIPRE custOmer care VIPRE antivirus Online
suppOrt VIPRE antivirus tOll free number phOne number fOr VIPRE antiviruss
VIPRE antivirus installatiOn VIPRE antiviruss help desk VIPRE antivirus suppOrt
phOne service VIPRE VIPRE VIPRE antivirus custOmer
service/@!!((I+800+681+7208+))!!@VIPRE antivirus suppOrt phOne number VIPRE
antivirus tech suppOrt phOne number USA
>From gcc-bugs-return-534560-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 20:53:36 2016
Return-Path: <gcc-bugs-return-534560-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 50262 invoked by alias); 13 Aug 2016 20:53:36 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 50244 invoked by uid 89); 13 Aug 2016 20:53:35 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,GAPPY_SUBJECT,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, UD:ca, @@@, U*@@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 20:53:25 +0000
From: "paladin423 at mailinator dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/76380] New: @%@$$$@^^@1_8OOx681x7208 @^^@@%ESET A.n.t.i.v.i.r.u.s t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.rr
Date: Sat, 13 Aug 2016 20:53:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: c++-concepts
X-Bugzilla-Keywords:
X-Bugzilla-Severity: critical
X-Bugzilla-Who: paladin423 at mailinator dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-76380-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01896.txt.bz2
Content-length: 7349

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76380

            Bug ID: 76380
           Summary: @%@$$$@^^@1_8OOx681x7208 @^^@@%ESET A.n.t.i.v.i.r.u.s
                    t.e.c.h. s.u.p.p..o.r.t p.h.o.n.e n.u.m.b.e.rr
           Product: gcc
           Version: c++-concepts
            Status: UNCONFIRMED
          Severity: critical
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: paladin423 at mailinator dot com
  Target Milestone: ---

@%@$$$@^^@1_8OOx681x7208 @^^@@%ESET A.n.t.i.v.i.r.u.s t.e.c.h. s.u.p.p..o.r.t
p.h.o.n.e n.u.m.b.e.rr

/@!!((I+800+681+7208+))!!@ESET antivirus suppOrt phOne number ESET antivirus
tech suppOrt phOne number USA UST<::: /@!!((I+800+681+7208+))!!@ESET antivirus
suppOrt phOne number ESET antivirus tech suppOrt phOne number USA ESET
antivirus custOmer service @@@++@@++I+800+681+7208 !!++++@@+++@@@@+ESET
antivirus suppOrt phOne number ESET antivirus tech suppOrt phOne number USA
JUST<::: /@!!((I+800+681+7208+))!!@ESET antivirus suppOrt phOne number ESET
antivirus tech suppOrt phOne number USA ESET antivirus custOmer
service@@!!((*I+800+681+7208+))!!@@ESET antivirus suppOrt phOne number ESET
antivirus tech suppOrt phOne number USA, ESET antivirus technical suppOrt phOne
number ESET antivirus custOmer suppOrt phOne number ESET antivirus phOne number
ESET antivirus custOmer care phOne number brOhter antivirus custOmer care
number ESET antivirus tOll free phOne number ESET antivirus suppOrt ESET
suppOrt ESET antiviruss suppOrt ESET custOmer service ESET antivirus help ESET
tech suppOrt ESET antivirus custOmer service ESET antivirus tech suppOrt ESET
technical suppOrt ESET antivirus trOubleshOOting ESET antiviruss
trOubleshOOting ESET internatiOnal ESETs antivirus suppOrt ESET custOmer
suppOrt ESET antivirus technical suppOrt ESET antivirus repair ESET antivirus
helpline ESET antiviruss custOmer service ESET service center ESETs antiviruss
suppOrt ESET helpline ESET custOmer service phOne number install ESET antivirus
ESET antiviruss tech suppOrt ESET antivirus suppOrt number ESET antivirus
custOmer suppOrt ESET antivirus cOntact number ESET antivirus prOblems ESET
antiviruss help ESET antivirus service ESET antivirus service center ESET
antivirus cOntact ESET custOmer service number ESET antiviruss helpline ESET
suppOrt number ESET antivirus repairs ESET antivirus scanner ESET antiviruss
phOne number ESET antiviruss custOmer suppOrt ESET suppOrt center ESET tech
suppOrt phOne number ESETs antiviruss custOmer service ESET antivirus custOmer
service number ESET antiviruss technical suppOrt ESET antivirus helpline number
ESET suppOrt phOne number ESET suppOrt antivirus ESET technical suppOrt number
ESET antiviruss cOntact trOubleshOOting ESET antivirus ESET antivirus phOne
suppOrt ESET antiviruss suppOrt phOne number trOubleshOOt ESET antivirus ESET
antiviruss cOntact number ESETs custOmer service ESET antivirus number ESET
phOne suppOrt ESET trOubleshOOting ESET antivirus custOmer care ESET antivirus
help desk drivers fOr ESET antiviruss ESET technical suppOrt phOne number ESET
custOmer service phOne cOntact ESET antiviruss ESET antivirus custOmer care
number ESET help desk ESET Online suppOrt ESET custOmer suppOrt phOne number
ESETs antivirus custOmer service ESET antivirus mfc ESET antiviruss tech
suppOrt phOne number ESET service ESETs tech suppOrt ESET antiviruss custOmer
service phOne number ESET antivirus install ESET laser antiviruss ESETs
antiviruss suppOrt ESET antivirus ESET antivirus service centre ESET antivirus
updates ESET inkjet antivirus cOntact ESET suppOrt ESET tech suppOrt phOne ESET
lc61 ESETs antiviruss tech suppOrt antiviruss Online cOntact ESET antivirus
ESETs antivirus ESET label antivirus ESET custOmer suppOrt phOne ESET
antiviruss custOmer suppOrt number ESET suppOrt centre ESET laser antivirus
ESET antivirus custOmer service suppOrt ESET wireless antivirus setup buy ESET
antivirus Online ESET antivirus tech suppOrt number ESET netwOrk antivirus ESET
antiviruss custOmer service number custOmer service fOr ESET antiviruss ESET
service centre ESET wireless antivirus ESET antiviruss ESET custOmer care ESET
antivirus Online suppOrt ESET antivirus tOll free number phOne number fOr ESET
antiviruss ESET antivirus installatiOn ESET antiviruss help desk ESET antivirus
suppOrt phOne service ESET ESET mfc ESET antivirus custOmer suppOrt number ESET
antiviruss technical suppOrt phOne number ESET antivirus hOtline cOntact number
fOr ESET antiviruss ESET antivirus ESET.cOm suppOrt cOntact ESET antivirus
suppOrt ESET antivirus trOubleshOOt ESET telephOne suppOrt ESET antiviruss
custOmer suppOrt phOne number ESET antivirus help phOne number ESET custOmer
service telephOne number ESET antivirus tech suppOrt phOne ESET.ca suppOrt ESET
antivirus Online ESET multifunctiOn antivirus antivirus suppOrt ESET antivirus
help ESET mfc antivirus technical suppOrt fOr ESET antiviruss ESET tech suppOrt
number email suppOrt ESET antiviruss suppOrt phOne mfc ESET ESET hl227Odw ESET
antiviruss website ESET antivirus suppOrt ESET antiviruss repair repair ESET
antivirus ESET antiviruss suppOrt ESET helpline number ESET scanner antivirus
ESET antiviruss service ESET antiviruss custOmer service telephOne number ESET
antivirus phOne number custOmer service ESET antiviruss review www.ESET.cOm
suppOrt fOr ESET antivirus ESET antivirus repair service ESET antivirus phOne
number fOr ESET antivirus suppOrt ESET antivirus website ESET antiviruss
custOmer service phOne ESET antivirus prOblems and sOlutiOns ESETs antiviruss
custOmer service phOne number custOmer service ESET antivirus sOlutiOn ESET
ESET fax suppOrt mfc ESET antivirus ESET antivirus custOmer service phOne ESET
antivirus help number ESET mfc-846On drivers fOr ESET antiviruss ESET technical
suppOrt phOne number ESET custOmer service phOne cOntact ESET antiviruss ESET
antivirus custOmer care number ESET help desk ESET Online suppOrt ESET custOmer
suppOrt phOne number ESETs antivirus custOmer service ESET antivirus mfc ESET
antiviruss tech suppOrt phOne number ESET service ESETs tech suppOrt ESET
antiviruss custOmer service phOne number ESET antivirus install ESET laser
antiviruss ESETs antiviruss suppOrt ESET antivirus ESET antivirus service
centre ESET antivirus updates ESET inkjet antivirus cOntact ESET suppOrt ESET
tech suppOrt phOne ESET lc61 ESETs antiviruss tech suppOrt antiviruss Online
cOntact ESET antivirus ESETs antivirus ESET label antivirus ESET custOmer
suppOrt phOne ESET antiviruss custOmer suppOrt number ESET suppOrt centre ESET
laser antivirus ESET antivirus custOmer service suppOrt ESET wireless antivirus
setup buy ESET antivirus Online ESET antivirus tech suppOrt number ESET netwOrk
antivirus ESET antiviruss custOmer service number custOmer service fOr ESET
antiviruss ESET service centre ESET wireless antivirus ESET antiviruss ESET
custOmer care ESET antivirus Online suppOrt ESET antivirus tOll free number
phOne number fOr ESET antiviruss ESET antivirus installatiOn ESET antiviruss
help desk ESET antivirus suppOrt phOne service ESET ESET ESET antivirus
custOmer service/@!!((I+800+681+7208+))!!@ESET antivirus suppOrt phOne number
ESET antivirus tech suppOrt phOne number USA
>From gcc-bugs-return-534561-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 23:28:41 2016
Return-Path: <gcc-bugs-return-534561-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 100194 invoked by alias); 13 Aug 2016 23:28:41 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 100166 invoked by uid 89); 13 Aug 2016 23:28:39 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-0.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=sk:diagnos, Hx-languages-length:2198, 934, 1301
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 23:28:29 +0000
From: "ppalka at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/76481] New: ICE on (invalid) redeclaration of extern variable as constexpr variable
Date: Sat, 13 Aug 2016 23:28:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ppalka at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-76481-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01897.txt.bz2
Content-length: 2416

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76481

            Bug ID: 76481
           Summary: ICE on (invalid) redeclaration of extern variable as
                    constexpr variable
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: ppalka at gcc dot gnu.org
  Target Milestone: ---

Test case:

extern int x;
constexpr int x = 5;

Error:

Segmentation fault
 constexpr int x = 5;
               ^
0xd821af crash_signal
        /home/patrick/code/gcc/gcc/toplev.c:335
0x74455b dump_simple_decl
        /home/patrick/code/gcc/gcc/cp/error.c:965
0x744af5 dump_decl
        /home/patrick/code/gcc/gcc/cp/error.c:1071
0x7502d2 decl_to_string
        /home/patrick/code/gcc/gcc/cp/error.c:2979
0x7502d2 cp_printer
        /home/patrick/code/gcc/gcc/cp/error.c:3559
0x150bf68 pp_format(pretty_printer*, text_info*)
        /home/patrick/code/gcc/gcc/pretty-print.c:643
0x15068a0 diagnostic_report_diagnostic(diagnostic_context*, diagnostic_info*)
        /home/patrick/code/gcc/gcc/diagnostic.c:934
0x1506ba3 diagnostic_impl
        /home/patrick/code/gcc/gcc/diagnostic.c:1054
0x1507474 error(char const*, ...)
        /home/patrick/code/gcc/gcc/diagnostic.c:1254
0x678655 duplicate_decls(tree_node*, tree_node*, bool)
        /home/patrick/code/gcc/gcc/cp/decl.c:1686
0x85116c pushdecl_maybe_friend_1
        /home/patrick/code/gcc/gcc/cp/name-lookup.c:808
0x85116c pushdecl_maybe_friend(tree_node*, bool)
        /home/patrick/code/gcc/gcc/cp/name-lookup.c:1301
0x692483 start_decl(cp_declarator const*, cp_decl_specifier_seq*, int,
tree_node*, tree_node*, tree_node**)
        /home/patrick/code/gcc/gcc/cp/decl.c:5045
0x788881 cp_parser_init_declarator
        /home/patrick/code/gcc/gcc/cp/parser.c:18697
0x7894d7 cp_parser_simple_declaration
        /home/patrick/code/gcc/gcc/cp/parser.c:12485
0x7897fa cp_parser_block_declaration
        /home/patrick/code/gcc/gcc/cp/parser.c:12361
0x791e5e cp_parser_declaration
        /home/patrick/code/gcc/gcc/cp/parser.c:12258
0x790846 cp_parser_declaration_seq_opt
        /home/patrick/code/gcc/gcc/cp/parser.c:12137
0x790b78 cp_parser_translation_unit
        /home/patrick/code/gcc/gcc/cp/parser.c:4354
0x790b78 c_parse_file()
        /home/patrick/code/gcc/gcc/cp/parser.c:37667
>From gcc-bugs-return-534562-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 23:29:45 2016
Return-Path: <gcc-bugs-return-534562-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 101464 invoked by alias); 13 Aug 2016 23:29:45 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 101449 invoked by uid 89); 13 Aug 2016 23:29:43 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-0.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 23:29:33 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/76481] ICE on (invalid) redeclaration of extern variable as constexpr variable
Date: Sat, 13 Aug 2016 23:29:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: diagnostic, ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords
Message-ID: <bug-76481-4-cybG7XuNd0@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76481-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76481-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01898.txt.bz2
Content-length: 489

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76481

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |diagnostic,
                   |                            |ice-on-invalid-code

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
The ICE is while printing out an diagnostic too :).
>From gcc-bugs-return-534563-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 23:45:09 2016
Return-Path: <gcc-bugs-return-534563-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 123314 invoked by alias); 13 Aug 2016 23:45:09 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 123301 invoked by uid 89); 13 Aug 2016 23:45:08 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-0.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:1686
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 23:44:58 +0000
From: "ppalka at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/74762] [5/6/7 Regression] missing uninitialized warning (C++, parenthesized expr, TREE_NO_WARNING)
Date: Sat, 13 Aug 2016 23:45:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ppalka at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-74762-4-6DpNn5bIVp@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-74762-4@http.gcc.gnu.org/bugzilla/>
References: <bug-74762-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01899.txt.bz2
Content-length: 1688

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74762

--- Comment #6 from Patrick Palka <ppalka at gcc dot gnu.org> ---
(In reply to Manuel López-Ibáñez from comment #5)
> (In reply to Patrick Palka from comment #1)
> > Looks like warn_uninit() suppresses the warning on 'i' because the
> > TREE_NO_WARNING flag is set on the ARRAY_REF by the C++ FE (in
> > finish_parenthesized_expr(), for an unrelated purpose).
> 
> I wonder if a quick work-around for this case in particular is to check for:
> 
>   if (TREE_CODE (expr) == MODIFY_EXPR)
> 
> like the C parser does:
> 
> 	  /* A parenthesized expression.  */
> 	  location_t loc_open_paren = c_parser_peek_token (parser)->location;
> 	  c_parser_consume_token (parser);
> 	  expr = c_parser_expression (parser);
> 	  if (TREE_CODE (expr.value) == MODIFY_EXPR)
> 	    TREE_NO_WARNING (expr.value) = 1;
> 	  if (expr.original_code != C_MAYBE_CONST_EXPR)
> 	    expr.original_code = ERROR_MARK;
> 	  /* Don't change EXPR.ORIGINAL_TYPE.  */
> 	  location_t loc_close_paren = c_parser_peek_token (parser)->location;
> 	  set_c_expr_source_range (&expr, loc_open_paren, loc_close_paren);
> 	  c_parser_skip_until_found (parser, CPP_CLOSE_PAREN,
> 				     "expected %<)%>");
> 
> Then the bug will only trigger for code such as ((lhs=rhs)), which is what
> TREE_NO_WARNING is trying to avoid warning for.

Unfortunately it looks like the purpose of setting TREE_NO_WARNING in
finish_parenthesized_expr() is not limited to assignments within conditionals,
it's also important for the -Wparentheses warning about confusing precedence
(e.g. warn for "a + b << c" but not for "a + (b << c)")
>From gcc-bugs-return-534564-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 23:54:44 2016
Return-Path: <gcc-bugs-return-534564-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 130776 invoked by alias); 13 Aug 2016 23:54:43 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 130762 invoked by uid 89); 13 Aug 2016 23:54:42 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-0.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:726
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 23:54:32 +0000
From: "jason at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/71972] [6 Regression] ICE with "-std=c++14" on x86_64-linux-gnu (internal compiler error: Segmentation fault, cxx_eval_store_expression)
Date: Sat, 13 Aug 2016 23:54:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jason at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: jason at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71972-4-6WDLweVmQc@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71972-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71972-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01900.txt.bz2
Content-length: 623

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71972

--- Comment #5 from Jason Merrill <jason at gcc dot gnu.org> ---
Author: jason
Date: Sat Aug 13 23:53:28 2016
New Revision: 239448

URL: https://gcc.gnu.org/viewcvs?rev=239448&root=gcc&view=rev
Log:
        PR c++/71972 - constexpr array self-modification

        * constexpr.c (cxx_eval_array_reference): Handle looking for the
        value of an element we're currently modifying.

Added:
    branches/gcc-6-branch/gcc/testsuite/g++.dg/cpp1y/constexpr-array5.C
Modified:
    branches/gcc-6-branch/gcc/cp/ChangeLog
    branches/gcc-6-branch/gcc/cp/constexpr.c
>From gcc-bugs-return-534565-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 13 23:59:25 2016
Return-Path: <gcc-bugs-return-534565-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 18236 invoked by alias); 13 Aug 2016 23:59:24 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 18220 invoked by uid 89); 13 Aug 2016 23:59:23 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-0.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 13 Aug 2016 23:59:13 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/58849] complex number, memory is corrupted
Date: Sat, 13 Aug 2016 23:59:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 4.8.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: WORKSFORME
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-58849-4-p6gHVyRPf6@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-58849-4@http.gcc.gnu.org/bugzilla/>
References: <bug-58849-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01901.txt.bz2
Content-length: 450

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58849

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |WORKSFORME

--- Comment #3 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Works for me so closing.
>From gcc-bugs-return-534566-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 00:05:54 2016
Return-Path: <gcc-bugs-return-534566-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 23761 invoked by alias); 14 Aug 2016 00:05:54 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 23745 invoked by uid 89); 14 Aug 2016 00:05:52 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-0.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Prototype, timestamp, error_at
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 00:05:42 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug preprocessor/61371] cpp: Implement -fno-date-time/-freproducible-dates or similar
Date: Sun, 14 Aug 2016 00:05:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: preprocessor
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution target_milestone
Message-ID: <bug-61371-4-6YgUBxgKYS@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-61371-4@http.gcc.gnu.org/bugzilla/>
References: <bug-61371-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01902.txt.bz2
Content-length: 2292

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61371

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |FIXED
   Target Milestone|---                         |7.0

--- Comment #8 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Fixed by:
2016-06-01  Eduard Sanou  <dhole@openmailbox.org>

        * c-common.c (get_source_date_epoch): Rename to
        cb_get_source_date_epoch.
        * c-common.c (cb_get_source_date_epoch): Use a single generic erorr
        message when the parsing fails.  Use error_at instead of fatal_error.
        * c-common.h (get_source_date_epoch): Rename to
        cb_get_source_date_epoch.
        * c-common.h (cb_get_source_date_epoch): Prototype.
        * c-common.h (MAX_SOURCE_DATE_EPOCH): Define.
        * c-common.h (c_omp_region_type): Remove trailing comma.
        * c-lex.c (init_c_lex): Set cb->get_source_date_epoch callback.
        * c-lex.c (c_lex_with_flags): Remove initialization of
        pfile->source_date_epoch.


....
2016-04-28  Eduard Sanou  <dhole@openmailbox.org>
            Matthias Klose  <doko@debian.org>

        * include/cpplib.h (cpp_init_source_date_epoch): Prototype.
        * init.c (cpp_init_source_date_epoch): New function.
        * internal.h: Added source_date_epoch variable to struct
        cpp_reader to store a reproducible date.
        * macro.c (_cpp_builtin_macro_text): Set pfile->date timestamp from
        pfile->source_date_epoch instead of localtime if source_date_epoch is
        set, to be used for __DATE__ and __TIME__ macros to help reproducible
        builds.
2016-04-28  Eduard Sanou  <dhole@openmailbox.org>
            Matthias Klose  <doko@debian.org>

        * c-common.c (get_source_date_epoch): New function, gets the
environment
        variable SOURCE_DATE_EPOCH and parses it as long long with error
        handling.
        * c-common.h (get_source_date_epoch): Prototype.
        * c-lex.c (c_lex_with_flags): set parse_in->source_date_epoch.
--- CUT ---
You sent the env SOURCE_DATE_EPOCH and it will be stay that time.
>From gcc-bugs-return-534567-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 00:10:24 2016
Return-Path: <gcc-bugs-return-534567-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 29526 invoked by alias); 14 Aug 2016 00:10:21 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 29500 invoked by uid 89); 14 Aug 2016 00:10:19 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-0.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy 160814, 2016-08-14, arc, ARC
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 00:10:09 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug other/39363] [meta-bug] pending patches from ARC International (UK) Ltd
Date: Sun, 14 Aug 2016 00:10:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: other
X-Bugzilla-Version: 4.4.0
X-Bugzilla-Keywords: meta-bug
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-39363-4-5lcFMrF4us@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-39363-4@http.gcc.gnu.org/bugzilla/>
References: <bug-39363-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01903.txt.bz2
Content-length: 475

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=39363

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-14
     Ever confirmed|0                           |1

--- Comment #3 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
.
>From gcc-bugs-return-534568-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 00:14:12 2016
Return-Path: <gcc-bugs-return-534568-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 35989 invoked by alias); 14 Aug 2016 00:14:11 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 35975 invoked by uid 89); 14 Aug 2016 00:14:11 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-0.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=extraction
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 00:14:01 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug regression/55129] removal of gcc-core tarballs leads to huge extraction times
Date: Sun, 14 Aug 2016 00:14:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: regression
X-Bugzilla-Version: 4.7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-55129-4-1vTO4woW8X@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-55129-4@http.gcc.gnu.org/bugzilla/>
References: <bug-55129-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01904.txt.bz2
Content-length: 475

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=55129

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |INVALID

--- Comment #3 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
>huge 83 MB bzip2 

83MB is not huge in any sense.
>From gcc-bugs-return-534569-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 00:17:13 2016
Return-Path: <gcc-bugs-return-534569-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 38869 invoked by alias); 14 Aug 2016 00:17:12 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 38854 invoked by uid 89); 14 Aug 2016 00:17:12 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-0.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 00:17:01 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/62137] Poor error recovery when parsing for-loops
Date: Sun, 14 Aug 2016 00:17:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-62137-4-tbS41JuaXo@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-62137-4@http.gcc.gnu.org/bugzilla/>
References: <bug-62137-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01905.txt.bz2
Content-length: 542

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=62137

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |diagnostic
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-14
     Ever confirmed|0                           |1

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Confirmed.
>From gcc-bugs-return-534570-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 00:18:46 2016
Return-Path: <gcc-bugs-return-534570-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 40409 invoked by alias); 14 Aug 2016 00:18:46 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 40399 invoked by uid 89); 14 Aug 2016 00:18:45 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-0.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 00:18:35 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/62138] Poor error recovery when parsing for-loops
Date: Sun, 14 Aug 2016 00:18:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-62138-4-97NkibFwx5@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-62138-4@http.gcc.gnu.org/bugzilla/>
References: <bug-62138-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01906.txt.bz2
Content-length: 816

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=62138

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |diagnostic
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-14
     Ever confirmed|0                           |1

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Confirmed.

>The first error doesn't make any sense.


Actually it does as the front-end was expected ‘=’, ‘,’, ‘;’, ‘asm’ or
‘__attribute__’ instead it got '<'.  Now of course that can be improved.
>From gcc-bugs-return-534571-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 00:21:52 2016
Return-Path: <gcc-bugs-return-534571-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 43003 invoked by alias); 14 Aug 2016 00:21:51 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 42946 invoked by uid 89); 14 Aug 2016 00:21:51 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-0.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 00:21:41 +0000
From: "jason at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/71972] [6 Regression] ICE with "-std=c++14" on x86_64-linux-gnu (internal compiler error: Segmentation fault, cxx_eval_store_expression)
Date: Sun, 14 Aug 2016 00:21:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jason at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: jason at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-71972-4-iy0LgSwLOj@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71972-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71972-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01907.txt.bz2
Content-length: 423

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71972

Jason Merrill <jason at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #6 from Jason Merrill <jason at gcc dot gnu.org> ---
Fixed.
>From gcc-bugs-return-534572-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 00:42:58 2016
Return-Path: <gcc-bugs-return-534572-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 82722 invoked by alias); 14 Aug 2016 00:42:58 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 82710 invoked by uid 89); 14 Aug 2016 00:42:57 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=comcast
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 00:42:47 +0000
From: "urbanjost at comcast dot net" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/76488] New: when use -O2 -fcheck-founds compiler appears to hang and consumes all memory
Date: Sun, 14 Aug 2016 00:42:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: urbanjost at comcast dot net
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-76488-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01908.txt.bz2
Content-length: 480

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76488

            Bug ID: 76488
           Summary: when use -O2 -fcheck-founds compiler appears to hang
                    and consumes all memory
           Product: gcc
           Version: 5.4.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: fortran
          Assignee: unassigned at gcc dot gnu.org
          Reporter: urbanjost at comcast dot net
  Target Milestone: ---
>From gcc-bugs-return-534573-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 00:50:12 2016
Return-Path: <gcc-bugs-return-534573-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 87993 invoked by alias); 14 Aug 2016 00:50:11 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 87976 invoked by uid 89); 14 Aug 2016 00:50:10 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 00:49:59 +0000
From: "urbanjost at comcast dot net" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/76490] New: when use -O2 -fcheck-founds compiler appears to hang and consumes all memory
Date: Sun, 14 Aug 2016 00:50:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: urbanjost at comcast dot net
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-76490-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01909.txt.bz2
Content-length: 862

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76490

            Bug ID: 76490
           Summary: when use -O2 -fcheck-founds compiler appears to hang
                    and consumes all memory
           Product: gcc
           Version: 5.4.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: fortran
          Assignee: unassigned at gcc dot gnu.org
          Reporter: urbanjost at comcast dot net
  Target Milestone: ---

Routine that has compiled for years with gfortran 4.9.6 and older versions now
hangs compiler when -O2 -fbound-checks is used. Running on Cygwin with 5.4.0
version. Reduced to simple test case. Might be duplicate of other reports of
all memory being consumed but none seems to match exactly. Small test program
wrapped in a bash(1) shell attached.

---------------------------
>From gcc-bugs-return-534574-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 00:52:48 2016
Return-Path: <gcc-bugs-return-534574-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 120396 invoked by alias); 14 Aug 2016 00:52:48 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 119800 invoked by uid 89); 14 Aug 2016 00:52:47 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=smallest
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 00:52:37 +0000
From: "urbanjost at comcast dot net" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/76490] when use -O2 -fcheck-founds compiler appears to hang and consumes all memory
Date: Sun, 14 Aug 2016 00:52:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: urbanjost at comcast dot net
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: attachments.created
Message-ID: <bug-76490-4-AZbVCjypX6@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76490-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76490-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01910.txt.bz2
Content-length: 273

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76490

--- Comment #1 from urbanjost at comcast dot net ---
Created attachment 39433
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39433&action=edit
Smallest version of problem I could generate to reproduce problem
>From gcc-bugs-return-534575-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 03:21:42 2016
Return-Path: <gcc-bugs-return-534575-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 96893 invoked by alias); 14 Aug 2016 03:21:27 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 95552 invoked by uid 89); 14 Aug 2016 03:21:20 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 03:21:10 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/76488] when use -O2 -fcheck-founds compiler appears to hang and consumes all memory
Date: Sun, 14 Aug 2016 03:21:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: DUPLICATE
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-76488-4-12ClDJN9zP@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76488-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76488-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01911.txt.bz2
Content-length: 504

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76488

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |DUPLICATE

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Dup of bug 76490.

*** This bug has been marked as a duplicate of bug 76490 ***
>From gcc-bugs-return-534577-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 03:23:14 2016
Return-Path: <gcc-bugs-return-534577-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 98319 invoked by alias); 14 Aug 2016 03:23:12 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 97949 invoked by uid 89); 14 Aug 2016 03:22:07 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 03:21:57 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/76490] when use -O2 -fcheck-founds compiler appears to hang and consumes all memory
Date: Sun, 14 Aug 2016 03:23:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords: compile-time-hog, memory-hog
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords
Message-ID: <bug-76490-4-Js51aAY6I7@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76490-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76490-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01913.txt.bz2
Content-length: 496

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76490

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |compile-time-hog,
                   |                            |memory-hog

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
*** Bug 76488 has been marked as a duplicate of this bug. ***
>From gcc-bugs-return-534576-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 03:23:13 2016
Return-Path: <gcc-bugs-return-534576-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 98290 invoked by alias); 14 Aug 2016 03:23:10 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 97665 invoked by uid 89); 14 Aug 2016 03:21:55 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:484
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 03:21:43 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/76490] when use -O2 -fcheck-founds compiler appears to hang and consumes all memory
Date: Sun, 14 Aug 2016 03:23:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords: compile-time-hog, memory-hog
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords
Message-ID: <bug-76490-4-HjXy6yZSoS@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76490-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76490-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01912.txt.bz2
Content-length: 496

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76490

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |compile-time-hog,
                   |                            |memory-hog

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
*** Bug 76488 has been marked as a duplicate of this bug. ***
>From gcc-bugs-return-534578-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 03:31:49 2016
Return-Path: <gcc-bugs-return-534578-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 105985 invoked by alias); 14 Aug 2016 03:31:41 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 105885 invoked by uid 89); 14 Aug 2016 03:31:28 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 03:31:18 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/58487] Missed return value optimization
Date: Sun, 14 Aug 2016 03:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 4.8.1
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-58487-4-Sqyr4sQIdb@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-58487-4@http.gcc.gnu.org/bugzilla/>
References: <bug-58487-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01914.txt.bz2
Content-length: 482

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58487

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-14
     Ever confirmed|0                           |1

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Confirmed.
>From gcc-bugs-return-534579-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 03:35:56 2016
Return-Path: <gcc-bugs-return-534579-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 109817 invoked by alias); 14 Aug 2016 03:35:46 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 109567 invoked by uid 89); 14 Aug 2016 03:35:31 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy'11, 1296, 6516, 1123
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 03:35:21 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/58908] ICE in process_init_constructor_array for std::vector
Date: Sun, 14 Aug 2016 03:35:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on short_desc everconfirmed
Message-ID: <bug-58908-4-M9QkuGNvPc@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-58908-4@http.gcc.gnu.org/bugzilla/>
References: <bug-58908-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01915.txt.bz2
Content-length: 1393

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58908

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |ice-on-valid-code
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-14
            Summary|internal compile error      |ICE in
                   |                            |process_init_constructor_ar
                   |                            |ray for std::vector
     Ever confirmed|0                           |1

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Confirmed:
t9.cc:20:3: internal compiler error: in process_init_constructor_array, at
cp/typeck2.c:1296
 })};
   ^
0x68a92f process_init_constructor_array
        ../../gcc/gcc/cp/typeck2.c:1295
0x68a92f process_init_constructor
        ../../gcc/gcc/cp/typeck2.c:1607
0x68a92f digest_init_r
        ../../gcc/gcc/cp/typeck2.c:1123
0x7862e3 finish_compound_literal(tree_node*, tree_node*, int)
        ../../gcc/gcc/cp/semantics.c:2711
0x5c7b8b convert_like_real
        ../../gcc/gcc/cp/call.c:6602
0x5c444f build_over_call
        ../../gcc/gcc/cp/call.c:7611
0x5c79df convert_like_real
        ../../gcc/gcc/cp/call.c:6516
0x5c71f3 convert_like_real
>From gcc-bugs-return-534580-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 03:37:42 2016
Return-Path: <gcc-bugs-return-534580-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 111511 invoked by alias); 14 Aug 2016 03:37:36 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 111356 invoked by uid 89); 14 Aug 2016 03:37:20 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 03:37:09 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/58909] C++11's condition variables fail with static linking
Date: Sun, 14 Aug 2016 03:37:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-58909-4-LpCLYcmJkV@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-58909-4@http.gcc.gnu.org/bugzilla/>
References: <bug-58909-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01916.txt.bz2
Content-length: 506

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58909

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |INVALID

--- Comment #3 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Not a GCC issue but rather an issue with how weak functions interact with
archives.
>From gcc-bugs-return-534581-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 03:41:29 2016
Return-Path: <gcc-bugs-return-534581-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 113782 invoked by alias); 14 Aug 2016 03:41:22 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 113707 invoked by uid 89); 14 Aug 2016 03:41:13 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 03:41:03 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/58922] LTO undefined symbols with virtual destructor
Date: Sun, 14 Aug 2016 03:41:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 4.8.1
X-Bugzilla-Keywords: lto
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: component
Message-ID: <bug-58922-4-4JQCh3bYzr@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-58922-4@http.gcc.gnu.org/bugzilla/>
References: <bug-58922-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01917.txt.bz2
Content-length: 502

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58922

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
          Component|lto                         |target

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
This might already be fixed, can you try a newer binutils and a newer GCC?
I can't get it compiled on Linux due to DECL not being defined.
>From gcc-bugs-return-534582-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 03:42:54 2016
Return-Path: <gcc-bugs-return-534582-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 118150 invoked by alias); 14 Aug 2016 03:42:54 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 118131 invoked by uid 89); 14 Aug 2016 03:42:52 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 03:42:42 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/59190] atomic ops on a non-escaped variable don't need atomicity
Date: Sun, 14 Aug 2016 03:42:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-59190-4-yTXvAddecj@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-59190-4@http.gcc.gnu.org/bugzilla/>
References: <bug-59190-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01918.txt.bz2
Content-length: 623

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=59190

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-14
     Ever confirmed|0                           |1

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Confirmed.  There is another bug which was just filed a few weeks ago about
this same thing.  Basically there needs to be a optimizing __atomic_* pass.
>From gcc-bugs-return-534583-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 03:56:55 2016
Return-Path: <gcc-bugs-return-534583-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 43476 invoked by alias); 14 Aug 2016 03:56:54 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 43459 invoked by uid 89); 14 Aug 2016 03:56:53 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:466
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 03:56:42 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/45152] LTO breaks C99 inline
Date: Sun, 14 Aug 2016 03:56:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 4.5.0
X-Bugzilla-Keywords: lto, wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.4
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_known_to_work resolution target_milestone
Message-ID: <bug-45152-4-3Z1w00iymp@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-45152-4@http.gcc.gnu.org/bugzilla/>
References: <bug-45152-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01919.txt.bz2
Content-length: 596

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=45152

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
      Known to work|                            |5.4.0
         Resolution|---                         |FIXED
   Target Milestone|---                         |5.4

--- Comment #6 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Fixed in 5.4.0 at least.  It might have been fixed before that too.
>From gcc-bugs-return-534584-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 04:00:57 2016
Return-Path: <gcc-bugs-return-534584-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 47703 invoked by alias); 14 Aug 2016 04:00:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 47673 invoked by uid 89); 14 Aug 2016 04:00:53 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 04:00:43 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/23855] loop header should also be pulled out of the inner loop too
Date: Sun, 14 Aug 2016 04:00:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 4.1.0
X-Bugzilla-Keywords: missed-optimization, patch
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-23855-4-WHMgCZmlgQ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-23855-4@http.gcc.gnu.org/bugzilla/>
References: <bug-23855-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01920.txt.bz2
Content-length: 486

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=23855

--- Comment #29 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
We unswitch on the outer loops now in GCC 6 and above.
So can we consider this as fixed?

The code for aarch64-linux-gnu on the trunk looks like:
.L3:
        mov     w19, 0
        .p2align 3
.L4:
        bl      bar
        add     w19, w19, 1
        cmp     w20, w19
        bne     .L4
        add     w21, w21, 1
        cmp     w22, w21
        bne     .L3
>From gcc-bugs-return-534585-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 04:01:06 2016
Return-Path: <gcc-bugs-return-534585-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 48558 invoked by alias); 14 Aug 2016 04:01:06 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 48527 invoked by uid 89); 14 Aug 2016 04:01:04 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:326
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 04:00:54 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/60206] IVOPT has no idea of inline asm
Date: Sun, 14 Aug 2016 04:01:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_severity
Message-ID: <bug-60206-4-9WEVfNTGGI@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-60206-4@http.gcc.gnu.org/bugzilla/>
References: <bug-60206-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01921.txt.bz2
Content-length: 369

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60206

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |missed-optimization
           Severity|normal                      |enhancement
>From gcc-bugs-return-534586-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 04:05:53 2016
Return-Path: <gcc-bugs-return-534586-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 56326 invoked by alias); 14 Aug 2016 04:05:53 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 56311 invoked by uid 89); 14 Aug 2016 04:05:52 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=inefficient
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 04:05:42 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/59650] Inefficient vector assignment code
Date: Sun, 14 Aug 2016 04:05:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 4.8.2
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_severity
Message-ID: <bug-59650-4-FOcTKhdfb9@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-59650-4@http.gcc.gnu.org/bugzilla/>
References: <bug-59650-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01922.txt.bz2
Content-length: 369

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=59650

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |missed-optimization
           Severity|normal                      |enhancement
>From gcc-bugs-return-534587-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 04:06:35 2016
Return-Path: <gcc-bugs-return-534587-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 57455 invoked by alias); 14 Aug 2016 04:06:34 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 57436 invoked by uid 89); 14 Aug 2016 04:06:31 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 04:06:21 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/59859] [meta-bug] GRAPHITE issues
Date: Sun, 14 Aug 2016 04:06:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords: meta-bug
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-59859-4-KUbQleTX3D@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-59859-4@http.gcc.gnu.org/bugzilla/>
References: <bug-59859-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01923.txt.bz2
Content-length: 475

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=59859

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-14
     Ever confirmed|0                           |1

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
.
>From gcc-bugs-return-534588-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 04:08:19 2016
Return-Path: <gcc-bugs-return-534588-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 59048 invoked by alias); 14 Aug 2016 04:08:18 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 58968 invoked by uid 89); 14 Aug 2016 04:08:07 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 04:07:57 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/60085] ICE in get_frame_type on weird code
Date: Sun, 14 Aug 2016 04:08:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-60085-4-GtIzJ9dyk8@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-60085-4@http.gcc.gnu.org/bugzilla/>
References: <bug-60085-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01924.txt.bz2
Content-length: 482

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60085

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-14
     Ever confirmed|0                           |1

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Confirmed.
>From gcc-bugs-return-534589-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 04:09:58 2016
Return-Path: <gcc-bugs-return-534589-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 61221 invoked by alias); 14 Aug 2016 04:09:57 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 61205 invoked by uid 89); 14 Aug 2016 04:09:57 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=sk:assembl
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 04:09:46 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/60124] g++ generates two copies of the same symbol due to __builtin_bswap32 return type
Date: Sun, 14 Aug 2016 04:09:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 4.8.2
X-Bugzilla-Keywords: assemble-failure
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.4
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_status resolution target_milestone
Message-ID: <bug-60124-4-mBysF6OfPV@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-60124-4@http.gcc.gnu.org/bugzilla/>
References: <bug-60124-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01925.txt.bz2
Content-length: 574

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60124

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |assemble-failure
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |FIXED
   Target Milestone|---                         |5.4

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Fixed in at least 5.4.0 and above.
>From gcc-bugs-return-534590-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 04:10:27 2016
Return-Path: <gcc-bugs-return-534590-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 62224 invoked by alias); 14 Aug 2016 04:10:26 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 62199 invoked by uid 89); 14 Aug 2016 04:10:24 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:371
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 04:10:16 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/60435] GCC failes to apply CSE for va_arg with different types whose representations match
Date: Sun, 14 Aug 2016 04:10:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_severity
Message-ID: <bug-60435-4-cyRZDbrukw@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-60435-4@http.gcc.gnu.org/bugzilla/>
References: <bug-60435-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01926.txt.bz2
Content-length: 369

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60435

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |missed-optimization
           Severity|normal                      |enhancement
>From gcc-bugs-return-534591-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 04:12:34 2016
Return-Path: <gcc-bugs-return-534591-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 63807 invoked by alias); 14 Aug 2016 04:12:33 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 63788 invoked by uid 89); 14 Aug 2016 04:12:32 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 04:12:22 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libgcc/60944] a10 pcduino compiling mono
Date: Sun, 14 Aug 2016 04:12:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libgcc
X-Bugzilla-Version: 4.6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-60944-4-eXfRexYuLk@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-60944-4@http.gcc.gnu.org/bugzilla/>
References: <bug-60944-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01927.txt.bz2
Content-length: 531

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60944

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |WAITING
   Last reconfirmed|                            |2016-08-14
     Ever confirmed|0                           |1

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Can you supply the preprocessed source that is failing?
>From gcc-bugs-return-534592-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 04:19:12 2016
Return-Path: <gcc-bugs-return-534592-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 69231 invoked by alias); 14 Aug 2016 04:19:11 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 69217 invoked by uid 89); 14 Aug 2016 04:19:09 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:305
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 04:18:59 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug lto/61043] LTO accumulates CPU requirements from all input objects
Date: Sun, 14 Aug 2016 04:19:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: lto
X-Bugzilla-Version: 4.8.2
X-Bugzilla-Keywords: lto
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-61043-4-4PBFSafy4I@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-61043-4@http.gcc.gnu.org/bugzilla/>
References: <bug-61043-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01928.txt.bz2
Content-length: 238

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61043

--- Comment #5 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
I think this has been fixed already in GCC 5 (maybe even in 4.9).  Can you try
GCC 5 and see if it has been fixed?
>From gcc-bugs-return-534593-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 04:20:38 2016
Return-Path: <gcc-bugs-return-534593-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 70736 invoked by alias); 14 Aug 2016 04:20:37 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 70718 invoked by uid 89); 14 Aug 2016 04:20:35 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 04:20:25 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug lto/61043] LTO accumulates CPU requirements from all input objects
Date: Sun, 14 Aug 2016 04:20:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: lto
X-Bugzilla-Version: 4.8.2
X-Bugzilla-Keywords: lto
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 4.9.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution target_milestone
Message-ID: <bug-61043-4-YBD8VaMyZA@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-61043-4@http.gcc.gnu.org/bugzilla/>
References: <bug-61043-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01929.txt.bz2
Content-length: 488

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61043

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |FIXED
   Target Milestone|---                         |4.9.0

--- Comment #6 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Fixed in 4.9
>From gcc-bugs-return-534594-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 04:27:14 2016
Return-Path: <gcc-bugs-return-534594-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 77805 invoked by alias); 14 Aug 2016 04:27:14 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 77789 invoked by uid 89); 14 Aug 2016 04:27:13 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 04:27:03 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/58728] [missed optimization] == or != comparisons may affect range test optimization.
Date: Sun, 14 Aug 2016 04:27:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_severity
Message-ID: <bug-58728-4-tY8Mb9PtIG@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-58728-4@http.gcc.gnu.org/bugzilla/>
References: <bug-58728-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01930.txt.bz2
Content-length: 369

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58728

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |missed-optimization
           Severity|normal                      |enhancement
>From gcc-bugs-return-534595-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 04:32:05 2016
Return-Path: <gcc-bugs-return-534595-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 115284 invoked by alias); 14 Aug 2016 04:32:04 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 112381 invoked by uid 89); 14 Aug 2016 04:32:03 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=friend
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 04:31:53 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/58263] unaccessable member function but with a spelling mistake in friend statement
Date: Sun, 14 Aug 2016 04:32:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on short_desc everconfirmed
Message-ID: <bug-58263-4-wKAmUTzM9y@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-58263-4@http.gcc.gnu.org/bugzilla/>
References: <bug-58263-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01931.txt.bz2
Content-length: 852

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58263

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |diagnostic
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-14
            Summary|[feature request] friend    |unaccessable member
                   |class $UndefinedClass       |function but with a
                   |                            |spelling mistake in friend
                   |                            |statement
     Ever confirmed|0                           |1

--- Comment #7 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Confirmed based on my suggestion in comment #4.
>From gcc-bugs-return-534596-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 04:33:49 2016
Return-Path: <gcc-bugs-return-534596-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 58067 invoked by alias); 14 Aug 2016 04:33:48 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 58001 invoked by uid 89); 14 Aug 2016 04:33:44 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 04:33:34 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/58728] [missed optimization] == or != comparisons may affect range test optimization.
Date: Sun, 14 Aug 2016 04:33:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution target_milestone
Message-ID: <bug-58728-4-pgTE87b7kn@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-58728-4@http.gcc.gnu.org/bugzilla/>
References: <bug-58728-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01932.txt.bz2
Content-length: 519

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58728

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |FIXED
   Target Milestone|---                         |5.0

--- Comment #3 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Fixed in at least 5.4.0 and above so closing.
>From gcc-bugs-return-534597-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 04:35:47 2016
Return-Path: <gcc-bugs-return-534597-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 59292 invoked by alias); 14 Aug 2016 04:35:45 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 59243 invoked by uid 89); 14 Aug 2016 04:35:37 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=pgo
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 04:35:27 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/58254] ICE when using PGO
Date: Sun, 14 Aug 2016 04:35:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 4.8.1
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_status resolution cf_known_to_fail
Message-ID: <bug-58254-4-dDGUhfdIQX@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-58254-4@http.gcc.gnu.org/bugzilla/>
References: <bug-58254-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01933.txt.bz2
Content-length: 549

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58254

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |ice-on-valid-code
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |FIXED
      Known to fail|                            |5.4.0

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Fixed.
>From gcc-bugs-return-534598-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 04:39:59 2016
Return-Path: <gcc-bugs-return-534598-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 62574 invoked by alias); 14 Aug 2016 04:39:59 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 62556 invoked by uid 89); 14 Aug 2016 04:39:57 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:474
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 04:39:46 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/54944] 400.perlbench fails with segmentation fault
Date: Sun, 14 Aug 2016 04:39:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 4.8.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: DUPLICATE
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-54944-4-M7VizE5rT0@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-54944-4@http.gcc.gnu.org/bugzilla/>
References: <bug-54944-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01934.txt.bz2
Content-length: 498

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=54944

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |DUPLICATE

--- Comment #3 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Fixed, dup.

*** This bug has been marked as a duplicate of bug 54942 ***
>From gcc-bugs-return-534599-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 04:40:44 2016
Return-Path: <gcc-bugs-return-534599-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 64850 invoked by alias); 14 Aug 2016 04:40:43 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 64822 invoked by uid 89); 14 Aug 2016 04:40:40 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:477
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 04:40:30 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/54942] [4.8 Regression] ICE: OOM with -O3 -fno-cse-follow-jumps -funroll-loops
Date: Sun, 14 Aug 2016 04:40:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 4.8.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 4.8.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-54942-4-GHpqWeRxqg@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-54942-4@http.gcc.gnu.org/bugzilla/>
References: <bug-54942-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01935.txt.bz2
Content-length: 501

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=54942

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |Ganesh.Gopalasubramanian@am
                   |                            |d.com

--- Comment #7 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
*** Bug 54944 has been marked as a duplicate of this bug. ***
>From gcc-bugs-return-534600-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 08:45:50 2016
Return-Path: <gcc-bugs-return-534600-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 75218 invoked by alias); 14 Aug 2016 08:45:48 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 75186 invoked by uid 89); 14 Aug 2016 08:45:45 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 08:45:35 +0000
From: "dominiq at lps dot ens.fr" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/76490] [5/6/7 Regression] when use -O2 -fcheck-founds compiler appears to hang and consumes all memory
Date: Sun, 14 Aug 2016 08:45:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords: compile-time-hog, memory-hog
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dominiq at lps dot ens.fr
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cf_known_to_work short_desc everconfirmed cf_known_to_fail
Message-ID: <bug-76490-4-lJ3Ybgw29O@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76490-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76490-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01936.txt.bz2
Content-length: 1142

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76490

Dominique d'Humieres <dominiq at lps dot ens.fr> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-14
      Known to work|                            |4.9.4
            Summary|when use -O2 -fcheck-founds |[5/6/7 Regression] when use
                   |compiler appears to hang    |-O2 -fcheck-founds compiler
                   |and consumes all memory     |appears to hang and
                   |                            |consumes all memory
     Ever confirmed|0                           |1
      Known to fail|                            |5.4.0, 6.1.0, 7.0

--- Comment #3 from Dominique d'Humieres <dominiq at lps dot ens.fr> ---
Confirmed with '-O1 -fcheck=bounds -ftree-vrp' from 5.4.0 up to trunk (7.0).
The test compiles with '-O2 -fcheck=bounds -fno-tree-vrp'.

The change occurred between revisions r226476 (2015-08-02, compiles) and
r227016 (2015-08-19, hangs).
>From gcc-bugs-return-534601-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 11:07:36 2016
Return-Path: <gcc-bugs-return-534601-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 10706 invoked by alias); 14 Aug 2016 11:07:36 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 8817 invoked by uid 89); 14 Aug 2016 11:07:34 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:876
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 11:07:24 +0000
From: "hyc at symas dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/71885] Incorrect code generated with -01, memset() function call is missing
Date: Sun, 14 Aug 2016 11:07:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: hyc at symas dot com
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-71885-4-bP96tRj4j7@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71885-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71885-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01937.txt.bz2
Content-length: 883

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71885

hyc at symas dot com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |hyc at symas dot com

--- Comment #14 from hyc at symas dot com ---
(In reply to Markus Trippelsdorf from comment #8)
> See Initializers 8.6.12:  
> 
> When storage for an object with automatic or dynamic storage duration is
> obtained, the object has an indeterminate value, and if no initialization is
> performed for the object, that object retains an indeterminate value until
> that value is replaced (5.17).

"If no initialization is performed" - this is the constructor, whose job is to
create and initialize the object, and you're preventing that initialization
from happening. How is that logical?
>From gcc-bugs-return-534602-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 11:10:43 2016
Return-Path: <gcc-bugs-return-534602-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 95474 invoked by alias); 14 Aug 2016 11:10:42 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 95465 invoked by uid 89); 14 Aug 2016 11:10:42 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,LIKELY_SPAM_BODY,LOTS_OF_MONEY autolearn=no version=3.3.2 spammyÊNADA, sk:number, U*@@, @!!
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 11:10:31 +0000
From: "sophiya.585 at yopmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/76492] New: NORTON Symantec 1-888-300-9067 NORTON technical number NORTON antivirus technical support phone
Date: Sun, 14 Aug 2016 11:10:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: trans-mem
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: sophiya.585 at yopmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-76492-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01938.txt.bz2
Content-length: 3885

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76492

            Bug ID: 76492
           Summary: NORTON Symantec 1-888-300-9067 NORTON technical number
                    NORTON antivirus technical support phone
           Product: gcc
           Version: trans-mem
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: sophiya.585 at yopmail dot com
  Target Milestone: ---

NORTON Symantec 1-888-300-9067 NORTON technical number NORTON antivirus
technical support phone

NORTON HelpFull  @!+!1888!+!300!+!9067 NORTON support phone number

NORTON HelpDisk @!+!1800!+!750!+!6584 NORTON support phone number



Help Usa@ +<<<<<1888 300 9067>>>>>...((( NORTON Antivirus Support Phone
Number,NORTON tech support phone number

NORTON helpline phone number 1888+300+9067, NORTON Antivirus helpline phone
number, NORTON phone number NORTON Phone NUmber 1888+300+9067 NORTON phone
number, NORTON technical support phone number@@@@@@@@@@@@@@NORTON

NORTON helpline phone number@~1888-300-9067 NORTON Tech Support Number NORTON
antivirus technical support phone number

Radhika Sahiba=== 1 888+300+9067 NORTON Antivirus support phone number NORTON
Antivirus support phone number USA

NORTON helpline phone number@~1888+300+9067 NORTON Tech Support Number NORTON
antivirus technical support phone number

ghadhe wala #@#@!! NORTON toll free number usa 1888+300+9067


NORTON Live Support and Help? 1+8(88-300+9067 @@ NORTON support phone number


Help Usa@ ####+<<<<<1888+300-9067>>>>>..###!!!.((( NORTON Antivirus Support
Phone Number,NORTON tech support phone number<<<<<1888+300=9067>>>>>. NORTON
technical support number


NORTON Support Phone Number@@!!1 888!!300!!9067 NORTON support phone number



NORTON Support Phone Number@@!!1 888=300+9067 NORTON support phone number


NORTON Support?? (( 1 888 300 9067 )) NORTON pro Support number?? ??USA/ CANADA


NORTON Live Support and Help? 18(88=300+9067 @@ NORTON support phone number


1888+300=9067 NORTON internet security support phone number


NORTON Support Phone Number$$$$$$!!1 888!!300!!9067$$$$$$$ NORTON support phone
number


NORTON Antivirus Support ??  ((++ 1 8 8 8 30 0 9 0 6 7 )) ??  @@NORTON
Antivirus

@@@NORTON Number$$$$!!1 888!!3.0.0.!!9.0.6.7$$$$ NORTON support phone number

NORTON 360 Live Support Help = 1888+300+9067 @@ NORTON 360 technical support
phone number



Virus Removal@ +<<<<<1888+300+9067 >>>>>((( NORTON Antivirus Support Phone
Number,NORTON tech support phone number

mausam(((1+888 +300+9067)!!! NORTON Antivirus Tech Support phone number




NORTON USA 1 888+300+9067 NORTON*** support phone number 1 888+300=9067
usa/canada NORTON Tech Support Number @@!18883009067 !!NORTON Support Number
for @**NORTON


Call USA 1 888 300+9067 NORTON** support phone number 1 888 300 9067 usa/canada
NORTON Tech Support Number @@!1-888- 300 9067 !!NORTON Support Number for
@**NORTON


 NORTON Service CANADA/USA 1+888=300+9067 NORTON** support phone number 1
888=300+9067 usa/canada NORTON Tech Support Number @@!1 888 300 9067 !!NORTON
Support Number for @****NORTON



NORTON Number$$$$$$(((( 1 888 (300) (9067)))))$$$$$$$ NORTON support phone
number


NORTON Support Phone Number$$$$$$ 1 888 300 9067$$$$$$$ NORTON support phone
number


NORTON Phone Number$$$$$$++++18883009067++++++++= NORTON support phone number


NORTON helpline phone number@~1888-300-9067 NORTON tech Support Number NORTON
antivirus customer service phone number


 Call USA 1 888 300 9067 NORTON support phone number 1 888 300 9067 USA/canada
NORTON Tech Support Number @@!1-888- 300 9067 ;!!NORTON Support Number for
@@@@@NORTON


NORTON helpline phone number@~1888-300-9067 NORTON tech Support Number NORTON
antivirus customer service phone number
>From gcc-bugs-return-534603-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 11:12:10 2016
Return-Path: <gcc-bugs-return-534603-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 96531 invoked by alias); 14 Aug 2016 11:12:10 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 96521 invoked by uid 89); 14 Aug 2016 11:12:09 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:767
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 11:11:59 +0000
From: "hyc at symas dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/71885] Incorrect code generated with -01, memset() function call is missing
Date: Sun, 14 Aug 2016 11:12:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: hyc at symas dot com
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71885-4-T3D83bnfKA@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71885-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71885-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01939.txt.bz2
Content-length: 695

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71885

--- Comment #15 from hyc at symas dot com ---
(In reply to Markus Trippelsdorf from comment #3)
> See https://gcc.gnu.org/gcc-6/porting_to.html (More aggressive optimization
> of -flifetime-dse).
> 
> You're invoking undefined behavior; -flifetime-dse=1 is a workaround.

"More aggressive optimization of -flifetime-dse

The C++ compiler (with enabled -flifetime-dse) is more aggressive in dead-store
elimination in situations where a memory store to a location precedes a
constructor to the memory location."

This bug report is talking about a store that occurs *during* the constructor.
This does not *precede* the constructor.
>From gcc-bugs-return-534604-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 11:25:05 2016
Return-Path: <gcc-bugs-return-534604-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 102985 invoked by alias); 14 Aug 2016 11:25:05 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 102974 invoked by uid 89); 14 Aug 2016 11:25:04 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 11:24:54 +0000
From: "uros at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/76342] AVX512: _mm512_undefined_epi32() intrinsic missing (incorrectly named _mm512_undefined_si512)
Date: Sun, 14 Aug 2016 11:25:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: uros at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-76342-4-AgftBA8z9N@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76342-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76342-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01940.txt.bz2
Content-length: 815

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76342

--- Comment #1 from uros at gcc dot gnu.org ---
Author: uros
Date: Sun Aug 14 11:24:18 2016
New Revision: 239453

URL: https://gcc.gnu.org/viewcvs?rev=239453&root=gcc&view=rev
Log:
        PR target/76342
        * config/i386/avx512fintrin.h (_mm512_undefined_epi32):
        Renamed from _mm512_undefined_si512.
        (_mm_undefined_si512): New definition.

testsuite/ChangeLog:

        PR target/76342
        * gcc.target/i386/pr76342.c: New test.


Added:
    trunk/gcc/testsuite/gcc.target/i386/pr76342.c
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/config/i386/avx512bwintrin.h
    trunk/gcc/config/i386/avx512dqintrin.h
    trunk/gcc/config/i386/avx512fintrin.h
    trunk/gcc/config/i386/avx512vbmiintrin.h
    trunk/gcc/testsuite/ChangeLog
>From gcc-bugs-return-534605-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 11:32:44 2016
Return-Path: <gcc-bugs-return-534605-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 108377 invoked by alias); 14 Aug 2016 11:32:44 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 108367 invoked by uid 89); 14 Aug 2016 11:32:43 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=bounces
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 11:32:33 +0000
From: "ubizjak at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/71245] std::atomic<double> load/store bounces the data to the stack using fild/fistp
Date: Sun, 14 Aug 2016 11:32:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ubizjak at gmail dot com
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: ubizjak at gmail dot com
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-71245-4-aoHUjlMkkG@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71245-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71245-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01941.txt.bz2
Content-length: 429

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71245

Uroš Bizjak <ubizjak at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #5 from Uroš Bizjak <ubizjak at gmail dot com> ---
Fixed.
>From gcc-bugs-return-534606-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 11:33:57 2016
Return-Path: <gcc-bugs-return-534606-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 109421 invoked by alias); 14 Aug 2016 11:33:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 109412 invoked by uid 89); 14 Aug 2016 11:33:56 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 11:33:46 +0000
From: "ubizjak at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/71241] [x86] Missing built-in functions for float128 NaNs
Date: Sun, 14 Aug 2016 11:33:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ubizjak at gmail dot com
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: ubizjak at gmail dot com
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-71241-4-WDpMOhmk2c@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71241-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71241-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01942.txt.bz2
Content-length: 429

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71241

Uroš Bizjak <ubizjak at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #3 from Uroš Bizjak <ubizjak at gmail dot com> ---
Fixed.
>From gcc-bugs-return-534607-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 11:38:43 2016
Return-Path: <gcc-bugs-return-534607-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 112225 invoked by alias); 14 Aug 2016 11:38:43 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 112212 invoked by uid 89); 14 Aug 2016 11:38:42 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 11:38:32 +0000
From: "ubizjak at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug regression/71231] [7 Regression]: 300% runtime increase for rnflow
Date: Sun, 14 Aug 2016 11:38:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: regression
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ubizjak at gmail dot com
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-71231-4-XhREg4vuDi@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71231-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71231-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01943.txt.bz2
Content-length: 482

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71231

Uroš Bizjak <ubizjak at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--- Comment #16 from Uroš Bizjak <ubizjak at gmail dot com> ---
This problem seems fixed. The runtimes are back to normal.
>From gcc-bugs-return-534608-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 12:29:22 2016
Return-Path: <gcc-bugs-return-534608-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 17591 invoked by alias); 14 Aug 2016 12:29:21 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 17571 invoked by uid 89); 14 Aug 2016 12:29:20 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=userprovided, user-provided
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 12:29:10 +0000
From: "rustamabd at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/76521] New: Explicit template instantiation suppresses defaulted inline move constructor
Date: Sun, 14 Aug 2016 12:29:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords: rejects-valid
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rustamabd at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status keywords bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-76521-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01944.txt.bz2
Content-length: 2373

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76521

            Bug ID: 76521
           Summary: Explicit template instantiation suppresses defaulted
                    inline move constructor
           Product: gcc
           Version: 6.1.1
            Status: UNCONFIRMED
          Keywords: rejects-valid
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: rustamabd at gmail dot com
  Target Milestone: ---

Created attachment 39434
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39434&action=edit
test case.cpp

It seems that an explicitly defaulted constructors are sometimes suppressed by
the declaration of an explicitly instantiated template.

As in this example:

#include <vector>

template<bool VAR>
struct Obj {
  std::vector<int> member;
  Obj() { }
  Obj(Obj&&) = default;
};

extern template struct Obj<true>;

int main() {
  Obj<true> o1;
  Obj<true> o2(std::move(o1));
}

template struct Obj<true>;


Command line:
g++ -std=c++14 a.cpp

Error message:
a.cpp:(.text+0x34): undefined reference to `Obj<true>::Obj(Obj<true>&&)'


I believe this is a bug because:

1) [dcl.fct.def.default]/5: "A user-provided explicitly-defaulted function
(i.e., explicitly defaulted after its first declaration) is defined at the
point where it is explicitly defaulted."

2) class.mfct]/1: "A member function may be defined ([dcl.fct.def]) in its
class definition, in which case it is an inline member function
([dcl.fct.spec])"

So the move-constructor is definitely "inline".

Then we have:

3) [temp.explicit]/10: "Except for inline functions and variables, ...,
explicit instantiation declarations have the effect of suppressing the implicit
instantiation of the entity to which they refer. [ Note: The intent is that an
inline function that is the subject of an explicit instantiation declaration
will still be implicitly instantiated when odr-used ([basic.def.odr]) so that
the body can be considered for inlining, but that no out-of-line copy of the
inline function would be generated in the translation unit. — end note ]"

So, the move-constructor should not have been suppressed by "extern template
struct Obj<true>".

Interestingly, any optimization level other than O0 makes the error go away:
g++ -std=c++14 -O1 a.cpp
- no errors
>From gcc-bugs-return-534609-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 13:02:42 2016
Return-Path: <gcc-bugs-return-534609-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 44844 invoked by alias); 14 Aug 2016 13:02:41 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 44829 invoked by uid 89); 14 Aug 2016 13:02:41 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-0.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:318, trans-mem, transmem, yopmail
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 13:02:31 +0000
From: "david123 at yopmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/76531] New: ftfyfyg
Date: Sun, 14 Aug 2016 13:02:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: trans-mem
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: david123 at yopmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-76531-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01945.txt.bz2
Content-length: 398

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76531

            Bug ID: 76531
           Summary: ftfyfyg
           Product: gcc
           Version: trans-mem
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ada
          Assignee: unassigned at gcc dot gnu.org
          Reporter: david123 at yopmail dot com
  Target Milestone: ---

fyfyfv
>From gcc-bugs-return-534610-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 13:04:41 2016
Return-Path: <gcc-bugs-return-534610-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 50225 invoked by alias); 14 Aug 2016 13:04:41 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 50216 invoked by uid 89); 14 Aug 2016 13:04:40 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-0.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=yopmail
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 13:04:30 +0000
From: "david123 at yopmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/76533] New: ftftftftf
Date: Sun, 14 Aug 2016 13:04:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: lto
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: david123 at yopmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-76533-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01946.txt.bz2
Content-length: 398

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76533

            Bug ID: 76533
           Summary: ftftftftf
           Product: gcc
           Version: lto
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ada
          Assignee: unassigned at gcc dot gnu.org
          Reporter: david123 at yopmail dot com
  Target Milestone: ---

ryyftftftf
>From gcc-bugs-return-534611-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 13:14:52 2016
Return-Path: <gcc-bugs-return-534611-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 102454 invoked by alias); 14 Aug 2016 13:14:52 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 101472 invoked by uid 89); 14 Aug 2016 13:14:51 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=UD:l
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 13:14:41 +0000
From: "olegendo at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/76535] New: [SH] Replace shll addc sequence with cmp/pz subc
Date: Sun, 14 Aug 2016 13:14:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: olegendo at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone cf_gcctarget
Message-ID: <bug-76535-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01947.txt.bz2
Content-length: 3161

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76535

            Bug ID: 76535
           Summary: [SH] Replace shll addc sequence with cmp/pz subc
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: target
          Assignee: unassigned at gcc dot gnu.org
          Reporter: olegendo at gcc dot gnu.org
  Target Milestone: ---
            Target: sh*-*-*

In CSiBE jikespg-1.3/src/tabutil, function itoc:

static const char digits[] = "0123456789";
extern char *output_ptr;

void itoc(int num)
{
  int val;
  char *p;
  char tmp[12];
  val = (((num) < 0) ? -(num) : (num));
  tmp[11] = '\0';
  p = &tmp[11];

  do
  {
    p--;
    *p = digits[val % 10];
    val /= 10;
  } while(val > 0);

  if (num < 0)
  {
    p--;
    *p = '-';
  }

  while (*p != '\0')
    *(output_ptr++) = *(p++);
}


There is the following sequence when compiling with -O2:

        mov.l   .L14,r1
        mov     r6,r2          <<<
        mov     #0,r0
        mov     r7,r3
        dmuls.l r1,r6
        sts     mach,r5
        shar    r5
        shar    r5
        shll    r2             <<<
        addc    r0,r5          <<<  r5 = 0 + r5 + (r2 < 0)

Because shll mutates the operand, another register is needed.  The sequence can
be improved by using cmp/pz and subc instead:

        mov.l   .L14,r1
        mov     #-1,r0
        mov     r7,r3
        dmuls.l r1,r6
        sts     mach,r5
        shar    r5
        shar    r5
        cmp/pz  r6
        subc    r0,r5          <<< r5 = r5 - (-1) - (r2 >= 0)
                                      = r5 + 1 - (r2 >= 0)
                                      = r5 + (r2 < 0)


Unfortunately, the addc pattern is captured as:

(insn 54 53 56 4 (parallel [
            (set (reg:SI 205)
                (plus:SI (gt:SI (reg:SI 211)
                        (reg/v:SI 187 [ val ]))
                    (reg:SI 209)))
            (clobber (reg:SI 147 t))
        ]) sh_tmp.cpp:16 41 {*addc_t_r}
     (expr_list:REG_UNUSED (reg:SI 147 t)
        (expr_list:REG_DEAD (reg:SI 209)
            (nil))))

where reg 211 is initialized in another BB to zero:

(insn 51 45 119 2 (set (reg:SI 211)
        (const_int 0 [0])) sh_tmp.cpp:16 180 {movsi_ie}
     (nil))

This makes it difficult to add a special case in the main *addc insn_and_split
pattern, as the constant load is CSE'ed before combine and it will not get a
chance to canonicalize the comparison.


The initial expansion of the comparison looks strange:

(insn 69 68 70 (set (reg:SI 223)
        (const_int 0 [0])) sh_tmp.cpp:17 -1
     (nil))

(insn 70 69 71 (set (reg:SI 147 t)
        (gt:SI (reg:SI 223)
            (reg/v:SI 187 [ val ]))) sh_tmp.cpp:17 -1
     (nil))

(insn 71 70 72 (set (reg:SI 222)
        (neg:SI (reg:SI 147 t))) sh_tmp.cpp:17 -1
     (expr_list:REG_EQUAL (ashiftrt:SI (reg/v:SI 187 [ val ])
            (const_int 31 [0x1f]))
        (nil)))

... and it doesn't go through the cstoresi4 expander and hence also has no
chance to get canonicalized.  Looks like this comes from the division / modulo
optimization...
>From gcc-bugs-return-534612-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 13:43:24 2016
Return-Path: <gcc-bugs-return-534612-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 116453 invoked by alias); 14 Aug 2016 13:43:24 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 116433 invoked by uid 89); 14 Aug 2016 13:43:22 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=U*dw, Hx-languages-length:1947
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 13:43:11 +0000
From: "uros at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/76342] AVX512: _mm512_undefined_epi32() intrinsic missing (incorrectly named _mm512_undefined_si512)
Date: Sun, 14 Aug 2016 13:43:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: uros at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-76342-4-PISf3W2lwN@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76342-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76342-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01948.txt.bz2
Content-length: 2084

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76342

--- Comment #2 from uros at gcc dot gnu.org ---
Author: uros
Date: Sun Aug 14 13:42:38 2016
New Revision: 239456

URL: https://gcc.gnu.org/viewcvs?rev=239456&root=gcc&view=rev
Log:
        Backport from mainline
        2016-08-14  Uros Bizjak  <ubizjak@gmail.com>

        PR target/76342
        * config/i386/avx512fintrin.h (_mm512_undefined_epi32):
        Renamed from _mm512_undefined_si512.
        (_mm_undefined_si512): New definition.

        Backport from mainline:
        2016-08-09  David Wohlferd  <dw@LimeGreenSocks.com>

        * config/i3836/avx512fintrin.h (_mm512_cvtsepi64_epi32): Remove
        unused variable __O.

        Backport from mainline:
        2016-08-09  Uros Bizjak  <ubizjak@gmail.com>

        PR target/72843
        * config/i386/i386.md (*movtf_internal): Use
        lra_in_progress || reload_completed instead of !can_create_pseudo_p
        in the insn constraint.
        (*movxf_internal): Ditto.
        (*movdf_internal): Ditto.
        (*movsf_internal): Ditto.

testsuite/ChangeLog:

        Backport from mainline
        2016-08-14  Uros Bizjak  <ubizjak@gmail.com>

        PR target/76342
        * gcc.target/i386/pr76342.c: New test.


Added:
    branches/gcc-6-branch/gcc/testsuite/gcc.target/i386/pr76342.c
Modified:
    branches/gcc-6-branch/gcc/ChangeLog
    branches/gcc-6-branch/gcc/config/i386/avx512bwintrin.h
    branches/gcc-6-branch/gcc/config/i386/avx512dqintrin.h
    branches/gcc-6-branch/gcc/config/i386/avx512fintrin.h
    branches/gcc-6-branch/gcc/config/i386/avx512ifmaintrin.h
    branches/gcc-6-branch/gcc/config/i386/avx512ifmavlintrin.h
    branches/gcc-6-branch/gcc/config/i386/avx512vbmiintrin.h
    branches/gcc-6-branch/gcc/config/i386/avx512vbmivlintrin.h
    branches/gcc-6-branch/gcc/config/i386/avx512vlbwintrin.h
    branches/gcc-6-branch/gcc/config/i386/avx512vldqintrin.h
    branches/gcc-6-branch/gcc/config/i386/avx512vlintrin.h
    branches/gcc-6-branch/gcc/config/i386/i386.md
    branches/gcc-6-branch/gcc/testsuite/ChangeLog
>From gcc-bugs-return-534613-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 13:43:35 2016
Return-Path: <gcc-bugs-return-534613-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 117247 invoked by alias); 14 Aug 2016 13:43:34 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 117221 invoked by uid 89); 14 Aug 2016 13:43:33 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 13:43:23 +0000
From: "uros at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/72843] [7 Regression] internal compiler error: in lra_set_insn_recog_data, at lra.c:964
Date: Sun, 14 Aug 2016 13:43:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: uros at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: ubizjak at gmail dot com
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72843-4-mk5nEGxt6n@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72843-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72843-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01949.txt.bz2
Content-length: 2084

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72843

--- Comment #7 from uros at gcc dot gnu.org ---
Author: uros
Date: Sun Aug 14 13:42:38 2016
New Revision: 239456

URL: https://gcc.gnu.org/viewcvs?rev=239456&root=gcc&view=rev
Log:
        Backport from mainline
        2016-08-14  Uros Bizjak  <ubizjak@gmail.com>

        PR target/76342
        * config/i386/avx512fintrin.h (_mm512_undefined_epi32):
        Renamed from _mm512_undefined_si512.
        (_mm_undefined_si512): New definition.

        Backport from mainline:
        2016-08-09  David Wohlferd  <dw@LimeGreenSocks.com>

        * config/i3836/avx512fintrin.h (_mm512_cvtsepi64_epi32): Remove
        unused variable __O.

        Backport from mainline:
        2016-08-09  Uros Bizjak  <ubizjak@gmail.com>

        PR target/72843
        * config/i386/i386.md (*movtf_internal): Use
        lra_in_progress || reload_completed instead of !can_create_pseudo_p
        in the insn constraint.
        (*movxf_internal): Ditto.
        (*movdf_internal): Ditto.
        (*movsf_internal): Ditto.

testsuite/ChangeLog:

        Backport from mainline
        2016-08-14  Uros Bizjak  <ubizjak@gmail.com>

        PR target/76342
        * gcc.target/i386/pr76342.c: New test.


Added:
    branches/gcc-6-branch/gcc/testsuite/gcc.target/i386/pr76342.c
Modified:
    branches/gcc-6-branch/gcc/ChangeLog
    branches/gcc-6-branch/gcc/config/i386/avx512bwintrin.h
    branches/gcc-6-branch/gcc/config/i386/avx512dqintrin.h
    branches/gcc-6-branch/gcc/config/i386/avx512fintrin.h
    branches/gcc-6-branch/gcc/config/i386/avx512ifmaintrin.h
    branches/gcc-6-branch/gcc/config/i386/avx512ifmavlintrin.h
    branches/gcc-6-branch/gcc/config/i386/avx512vbmiintrin.h
    branches/gcc-6-branch/gcc/config/i386/avx512vbmivlintrin.h
    branches/gcc-6-branch/gcc/config/i386/avx512vlbwintrin.h
    branches/gcc-6-branch/gcc/config/i386/avx512vldqintrin.h
    branches/gcc-6-branch/gcc/config/i386/avx512vlintrin.h
    branches/gcc-6-branch/gcc/config/i386/i386.md
    branches/gcc-6-branch/gcc/testsuite/ChangeLog
>From gcc-bugs-return-534614-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 13:44:50 2016
Return-Path: <gcc-bugs-return-534614-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 118646 invoked by alias); 14 Aug 2016 13:44:50 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 118636 invoked by uid 89); 14 Aug 2016 13:44:49 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=you!, Great
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 13:44:39 +0000
From: "wenzel@mitsuba-renderer.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/76342] AVX512: _mm512_undefined_epi32() intrinsic missing (incorrectly named _mm512_undefined_si512)
Date: Sun, 14 Aug 2016 13:44:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wenzel@mitsuba-renderer.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-76342-4-YxANJEx5r9@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76342-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76342-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01950.txt.bz2
Content-length: 438

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76342

Wenzel Jakob <wenzel@mitsuba-renderer.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |FIXED

--- Comment #3 from Wenzel Jakob <wenzel@mitsuba-renderer.org> ---
Great, thank you!
>From gcc-bugs-return-534615-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 14:01:51 2016
Return-Path: <gcc-bugs-return-534615-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 41754 invoked by alias); 14 Aug 2016 14:01:50 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 41745 invoked by uid 89); 14 Aug 2016 14:01:50 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 14:01:39 +0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/76481] [7 Regression] ICE on (invalid) redeclaration of extern variable as constexpr variable
Date: Sun, 14 Aug 2016 14:01:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: diagnostic, ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc cf_known_to_work short_desc everconfirmed
Message-ID: <bug-76481-4-XlwQm3nab1@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76481-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76481-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01951.txt.bz2
Content-length: 987

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76481

Martin Liška <marxin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-14
                 CC|                            |jason at gcc dot gnu.org,
                   |                            |marxin at gcc dot gnu.org
      Known to work|                            |6.1.0
            Summary|ICE on (invalid)            |[7 Regression] ICE on
                   |redeclaration of extern     |(invalid) redeclaration of
                   |variable as constexpr       |extern variable as
                   |variable                    |constexpr variable
     Ever confirmed|0                           |1

--- Comment #2 from Martin Liška <marxin at gcc dot gnu.org> ---
Started with r238558.
>From gcc-bugs-return-534616-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 15:41:31 2016
Return-Path: <gcc-bugs-return-534616-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 8618 invoked by alias); 14 Aug 2016 15:41:31 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 8571 invoked by uid 89); 14 Aug 2016 15:41:25 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 15:41:14 +0000
From: "manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/71885] Incorrect code generated with -01, memset() function call is missing
Date: Sun, 14 Aug 2016 15:41:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: manu at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-71885-4-jCScOAovqn@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71885-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71885-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01952.txt.bz2
Content-length: 878

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71885

Manuel López-Ibáñez <manu at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |manu at gcc dot gnu.org

--- Comment #16 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
I think the relevant part of the standard may be:

C++98 [class.cdtor]:

  For an object of non-POD class type ... before the constructor
  begins execution ... referring to any non-static member or base
  class of the object results in undefined behavior

https://gcc.gnu.org/ml/gcc/2016-02/msg00207.html

But neither the manual nor the porting_to guide are very clear regarding this.
Would it be hard to diagnose such uses? (since any use is forbidden!).
>From gcc-bugs-return-534617-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 16:06:14 2016
Return-Path: <gcc-bugs-return-534617-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 12460 invoked by alias); 14 Aug 2016 16:06:13 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 12447 invoked by uid 89); 14 Aug 2016 16:06:12 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=anyways
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 16:06:02 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/57740] C++11 std::thread not usable with static linking
Date: Sun, 14 Aug 2016 16:06:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 4.8.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: DUPLICATE
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-57740-4-Qrs9drzCDp@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-57740-4@http.gcc.gnu.org/bugzilla/>
References: <bug-57740-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01953.txt.bz2
Content-length: 609

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57740

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |DUPLICATE

--- Comment #13 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
This is not really as gcc bug but rather not understanding weak symbols vs
archives.  Anyways this is a dup of bug 58909.

*** This bug has been marked as a duplicate of bug 58909 ***
>From gcc-bugs-return-534618-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 16:07:07 2016
Return-Path: <gcc-bugs-return-534618-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 13559 invoked by alias); 14 Aug 2016 16:07:07 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 13550 invoked by uid 89); 14 Aug 2016 16:07:06 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 16:06:56 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/58909] C++11's condition variables fail with static linking
Date: Sun, 14 Aug 2016 16:07:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-58909-4-7CPz0elJLl@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-58909-4@http.gcc.gnu.org/bugzilla/>
References: <bug-58909-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01954.txt.bz2
Content-length: 440

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58909

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |roland at gnu dot org

--- Comment #4 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
*** Bug 57740 has been marked as a duplicate of this bug. ***
>From gcc-bugs-return-534619-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 16:10:34 2016
Return-Path: <gcc-bugs-return-534619-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 47292 invoked by alias); 14 Aug 2016 16:10:33 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 47281 invoked by uid 89); 14 Aug 2016 16:10:32 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 16:10:22 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/57650] Suboptimal code after TRUTH_AND_EXPR is changed into BIT_AND_EXPR
Date: Sun, 14 Aug 2016 16:10:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-57650-4-KYYDYq3jOE@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-57650-4@http.gcc.gnu.org/bugzilla/>
References: <bug-57650-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01955.txt.bz2
Content-length: 198

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57650

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
For aarch64-linux-gnu the same code is produced for both of these functions.
>From gcc-bugs-return-534620-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 16:16:12 2016
Return-Path: <gcc-bugs-return-534620-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 50651 invoked by alias); 14 Aug 2016 16:16:12 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 50641 invoked by uid 89); 14 Aug 2016 16:16:12 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=sink, Hx-languages-length:448
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 16:16:01 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/55846] Cannot sink conditional code
Date: Sun, 14 Aug 2016 16:16:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 4.8.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc everconfirmed
Message-ID: <bug-55846-4-ECVgBzpxfx@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-55846-4@http.gcc.gnu.org/bugzilla/>
References: <bug-55846-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01956.txt.bz2
Content-length: 558

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=55846

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-14
                 CC|                            |pinskia at gcc dot gnu.org
     Ever confirmed|0                           |1

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Confirmed.
>From gcc-bugs-return-534621-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 16:40:31 2016
Return-Path: <gcc-bugs-return-534621-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 12967 invoked by alias); 14 Aug 2016 16:40:28 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 12958 invoked by uid 89); 14 Aug 2016 16:40:27 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=sk:charles, Hx-languages-length:331, UD:williams132016, UD:charles.williams132016
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 16:40:17 +0000
From: "charles.williams132016 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug boehm-gc/76573] New: dfgdf
Date: Sun, 14 Aug 2016 16:40:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: boehm-gc
X-Bugzilla-Version: lto
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: charles.williams132016 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-76573-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01957.txt.bz2
Content-length: 408

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76573

            Bug ID: 76573
           Summary: dfgdf
           Product: gcc
           Version: lto
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: boehm-gc
          Assignee: unassigned at gcc dot gnu.org
          Reporter: charles.williams132016 at gmail dot com
  Target Milestone: ---

gdfgdfg
>From gcc-bugs-return-534622-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 16:42:37 2016
Return-Path: <gcc-bugs-return-534622-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 14139 invoked by alias); 14 Aug 2016 16:42:37 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 14127 invoked by uid 89); 14 Aug 2016 16:42:36 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=fortrandev, fortran-dev
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 16:42:26 +0000
From: "charles.williams132016 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug boehm-gc/76574] New: avg
Date: Sun, 14 Aug 2016 16:42:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: boehm-gc
X-Bugzilla-Version: fortran-dev
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: charles.williams132016 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-76574-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01958.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76574

            Bug ID: 76574
           Summary: avg
           Product: gcc
           Version: fortran-dev
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: boehm-gc
          Assignee: unassigned at gcc dot gnu.org
          Reporter: charles.williams132016 at gmail dot com
  Target Milestone: ---

avg cvbdfg
>From gcc-bugs-return-534623-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 16:51:33 2016
Return-Path: <gcc-bugs-return-534623-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 21451 invoked by alias); 14 Aug 2016 16:51:32 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 21440 invoked by uid 89); 14 Aug 2016 16:51:32 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.3.2 spammy=Tree
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 16:51:21 +0000
From: "ppalka at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/76577] New: Tree folding may remove UB which causes invalid constexpr function calls to be accepted
Date: Sun, 14 Aug 2016 16:51:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ppalka at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-76577-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01959.txt.bz2
Content-length: 915

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76577

            Bug ID: 76577
           Summary: Tree folding may remove UB which causes invalid
                    constexpr function calls to be accepted
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: ppalka at gcc dot gnu.org
  Target Milestone: ---

Test case:

constexpr int
foo (int a)
{
  return ((1 << a) & 1) == 0;
}

constexpr int bar = foo (-5);


g++ accepts this program even though the call to foo(-5) invokes UB (left shift
by a negative shift count) because the "((1 << a) & 1) == 0" gets folded by
match.pd to "a != 0" and the constexpr machinery evaluates this folded function
body instead of the original function body that contains the left shift.
>From gcc-bugs-return-534624-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 16:53:29 2016
Return-Path: <gcc-bugs-return-534624-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 22792 invoked by alias); 14 Aug 2016 16:53:29 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 22782 invoked by uid 89); 14 Aug 2016 16:53:28 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=personnel, our
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 16:53:18 +0000
From: "kern at sibbald dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/71885] Incorrect code generated with -01, memset() function call is missing
Date: Sun, 14 Aug 2016 16:53:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: kern at sibbald dot com
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71885-4-x8H3L58ZRw@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71885-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71885-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01960.txt.bz2
Content-length: 1629

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71885

--- Comment #17 from Kern Sibbald <kern at sibbald dot com> ---
It is pretty difficult to argue with the developers because they know the
"rules", better than most programmers.  However, here in my opinion they used
very poor judgement, by implementing a change that they were fully aware would
break many programs (they documented it as such).  

It is one thing to "force" C++ programmers to do what the developers think is
correct, but it is very bad thing to modify a compiler knowing that it will
break a lot of code.  There are probably thousands of users out there who are
now experiencing seg faults due to changes such as this.  

Many programmers such as myself rely on C++ but we prefer not to run on
bleeding edge systems, and we do not have the means to test our software on all
new systems and new compilers.  In this case, various bleeding edge distros
switch to gcc 6.0 and compile and release programs that seg fault out of the
box. These distros do not have the time or personnel to test every single
program. The result is that bad code is released.  This is and was unnecessary.
 Yes, we the programmers has options and can fix it.  What was unnecessary was
to release a new compiler that the developers knew would produce code that
fails.

The g++ developers could have realized that in especially in "undefined"
territory where they knew they would break code the conservative way to do it
without creating chaos is to add new strict warning message for a period of
time (one to two years) prior to making their changes default.
>From gcc-bugs-return-534625-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 17:08:33 2016
Return-Path: <gcc-bugs-return-534625-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 37700 invoked by alias); 14 Aug 2016 17:08:33 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 37684 invoked by uid 89); 14 Aug 2016 17:08:32 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=stubsh, stubs.h, UD:stubs.h
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 17:08:22 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/57900] /usr/include/gnu/stubs.h:7:27: fatal error: gnu/stubs-32.h: No such file or directory
Date: Sun, 14 Aug 2016 17:08:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: WONTFIX
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-57900-4-vtfeiDQ5zS@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-57900-4@http.gcc.gnu.org/bugzilla/>
References: <bug-57900-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01961.txt.bz2
Content-length: 464

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57900

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |WONTFIX

--- Comment #5 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Not going to fix any time soon or at all.
>From gcc-bugs-return-534626-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 17:09:29 2016
Return-Path: <gcc-bugs-return-534626-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 38587 invoked by alias); 14 Aug 2016 17:09:29 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 38575 invoked by uid 89); 14 Aug 2016 17:09:29 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy\x012
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 17:09:18 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug other/57928] Doesn't compile with ISL 0.12
Date: Sun, 14 Aug 2016 17:09:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: other
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: WONTFIX
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-57928-4-1dDGE1rDHk@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-57928-4@http.gcc.gnu.org/bugzilla/>
References: <bug-57928-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01962.txt.bz2
Content-length: 495

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57928

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |WONTFIX

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
0.12 is no longer supported with the latest gcc so closing as won't fix.
>From gcc-bugs-return-534627-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 17:11:33 2016
Return-Path: <gcc-bugs-return-534627-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 40851 invoked by alias); 14 Aug 2016 17:11:33 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 40840 invoked by uid 89); 14 Aug 2016 17:11:32 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 17:11:22 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/54346] combine permutations
Date: Sun, 14 Aug 2016 17:11:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 4.8.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-54346-4-Sw5Z22SNVN@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-54346-4@http.gcc.gnu.org/bugzilla/>
References: <bug-54346-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01963.txt.bz2
Content-length: 551

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=54346

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |missed-optimization
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-14
     Ever confirmed|0                           |1

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Confirmed.
>From gcc-bugs-return-534628-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 17:17:29 2016
Return-Path: <gcc-bugs-return-534628-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 100625 invoked by alias); 14 Aug 2016 17:17:28 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 100616 invoked by uid 89); 14 Aug 2016 17:17:28 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:249, opportunity
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 17:17:18 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/57962] Missed SLP opportunity
Date: Sun, 14 Aug 2016 17:17:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 4.7.3
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-57962-4-X2tNe60ROI@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-57962-4@http.gcc.gnu.org/bugzilla/>
References: <bug-57962-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01964.txt.bz2
Content-length: 198

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57962

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
There is at least some SLP going on with the trunk GCC on aarch64-linux-gnu.
>From gcc-bugs-return-534629-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 17:18:20 2016
Return-Path: <gcc-bugs-return-534629-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 101775 invoked by alias); 14 Aug 2016 17:18:19 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 101765 invoked by uid 89); 14 Aug 2016 17:18:19 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 17:18:09 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/58039] -ftree-vectorizer makes a loop crash on a non-aligned memory
Date: Sun, 14 Aug 2016 17:18:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 4.7.2
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-58039-4-VFCBXABCbo@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-58039-4@http.gcc.gnu.org/bugzilla/>
References: <bug-58039-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01965.txt.bz2
Content-length: 504

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58039

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |INVALID

--- Comment #6 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Not a bug, Use -fsanitizer=undefined to find them in a recent version of GCC.
>From gcc-bugs-return-534630-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 17:22:21 2016
Return-Path: <gcc-bugs-return-534630-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 105158 invoked by alias); 14 Aug 2016 17:22:21 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 105144 invoked by uid 89); 14 Aug 2016 17:22:20 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 17:22:10 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/61278] ICE with LTO (lto-wrapper failed) on x86_64-linux-gnu in 64-bit mode
Date: Sun, 14 Aug 2016 17:22:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 5.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution target_milestone
Message-ID: <bug-61278-4-0ZpnsJTxOA@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-61278-4@http.gcc.gnu.org/bugzilla/>
References: <bug-61278-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01966.txt.bz2
Content-length: 499

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61278

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |FIXED
   Target Milestone|---                         |5.0

--- Comment #5 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Fixed so closing as such.
>From gcc-bugs-return-534631-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 17:30:25 2016
Return-Path: <gcc-bugs-return-534631-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 110675 invoked by alias); 14 Aug 2016 17:30:25 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 110653 invoked by uid 89); 14 Aug 2016 17:30:23 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 17:30:04 +0000
From: "ubizjak at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72867] SSE/AVX/AVX512: incorrect optimization of VMINPS/VMAXPS at compile time
Date: Sun, 14 Aug 2016 17:30:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ubizjak at gmail dot com
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: ubizjak at gmail dot com
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on assigned_to everconfirmed attachments.created
Message-ID: <bug-72867-4-C9auQEjEVv@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72867-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72867-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01967.txt.bz2
Content-length: 709

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72867

Uroš Bizjak <ubizjak at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |ASSIGNED
   Last reconfirmed|                            |2016-08-14
           Assignee|unassigned at gcc dot gnu.org      |ubizjak at gmail dot com
     Ever confirmed|0                           |1

--- Comment #3 from Uroš Bizjak <ubizjak at gmail dot com> ---
Created attachment 39435
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39435&action=edit
Proposed patch

I'm testing the attached patch.
>From gcc-bugs-return-534632-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 17:35:46 2016
Return-Path: <gcc-bugs-return-534632-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 125856 invoked by alias); 14 Aug 2016 17:35:46 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 125839 invoked by uid 89); 14 Aug 2016 17:35:45 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 17:35:35 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libgcc/61238] Getting Linker error
Date: Sun, 14 Aug 2016 17:35:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libgcc
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-61238-4-roiM4UrMBt@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-61238-4@http.gcc.gnu.org/bugzilla/>
References: <bug-61238-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01968.txt.bz2
Content-length: 579

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61238

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |WAITING
   Last reconfirmed|                            |2016-08-14
     Ever confirmed|0                           |1

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Can you provide more information?  Like what GCC version and what target?
The exact output of GCC here?
>From gcc-bugs-return-534633-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 17:39:00 2016
Return-Path: <gcc-bugs-return-534633-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 39081 invoked by alias); 14 Aug 2016 17:38:59 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 39065 invoked by uid 89); 14 Aug 2016 17:38:59 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=PPC, opportunity
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 17:38:52 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/58879] PPC: Missed opportunity to use lwbrx
Date: Sun, 14 Aug 2016 17:38:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 4.7.3
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_status component resolution target_milestone
Message-ID: <bug-58879-4-5Fwnqcr0sP@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-58879-4@http.gcc.gnu.org/bugzilla/>
References: <bug-58879-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01969.txt.bz2
Content-length: 654

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58879

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |missed-optimization
             Status|UNCONFIRMED                 |RESOLVED
          Component|target                      |tree-optimization
         Resolution|---                         |FIXED
   Target Milestone|---                         |5.0

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Fixed for at least GCC 5 so closing as such.
>From gcc-bugs-return-534634-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 17:40:47 2016
Return-Path: <gcc-bugs-return-534634-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 40624 invoked by alias); 14 Aug 2016 17:40:43 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 40596 invoked by uid 89); 14 Aug 2016 17:40:39 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 17:40:29 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/58919] run with thread error, until i set -fprofile-arcs flag
Date: Sun, 14 Aug 2016 17:40:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 4.8.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on component everconfirmed
Message-ID: <bug-58919-4-qfb1JrsLSK@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-58919-4@http.gcc.gnu.org/bugzilla/>
References: <bug-58919-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01970.txt.bz2
Content-length: 622

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58919

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |WAITING
   Last reconfirmed|                            |2016-08-14
          Component|c++                         |middle-end
     Ever confirmed|0                           |1

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Can you provide a testcase and provide the exact error message that is being
produced?
>From gcc-bugs-return-534635-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 18:05:58 2016
Return-Path: <gcc-bugs-return-534635-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 54846 invoked by alias); 14 Aug 2016 18:05:57 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 54835 invoked by uid 89); 14 Aug 2016 18:05:57 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 18:05:47 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/51780] Missed optimization for ==/!= comparison
Date: Sun, 14 Aug 2016 18:05:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 4.7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on everconfirmed bug_severity
Message-ID: <bug-51780-4-IOIIgOCTiJ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-51780-4@http.gcc.gnu.org/bugzilla/>
References: <bug-51780-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01971.txt.bz2
Content-length: 612

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=51780

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |missed-optimization
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-14
     Ever confirmed|0                           |1
           Severity|normal                      |enhancement

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Confirmed.
>From gcc-bugs-return-534636-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 18:07:59 2016
Return-Path: <gcc-bugs-return-534636-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 56277 invoked by alias); 14 Aug 2016 18:07:59 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 56263 invoked by uid 89); 14 Aug 2016 18:07:58 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 18:07:48 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/51781] Missed optimization for ==/!= comparison type-sinking
Date: Sun, 14 Aug 2016 18:07:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 4.7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on everconfirmed bug_severity
Message-ID: <bug-51781-4-fc3hEo3GnY@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-51781-4@http.gcc.gnu.org/bugzilla/>
References: <bug-51781-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01972.txt.bz2
Content-length: 612

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=51781

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |missed-optimization
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-14
     Ever confirmed|0                           |1
           Severity|normal                      |enhancement

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Confirmed.
>From gcc-bugs-return-534637-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 18:11:04 2016
Return-Path: <gcc-bugs-return-534637-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 58121 invoked by alias); 14 Aug 2016 18:11:03 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 58105 invoked by uid 89); 14 Aug 2016 18:11:02 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=opportunity
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 18:10:52 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/51964] Missed tail merging opportunity
Date: Sun, 14 Aug 2016 18:11:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 4.7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on everconfirmed bug_severity
Message-ID: <bug-51964-4-qABU3iAuHv@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-51964-4@http.gcc.gnu.org/bugzilla/>
References: <bug-51964-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01973.txt.bz2
Content-length: 612

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=51964

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |missed-optimization
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-14
     Ever confirmed|0                           |1
           Severity|minor                       |enhancement

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Confirmed.
>From gcc-bugs-return-534638-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 18:11:50 2016
Return-Path: <gcc-bugs-return-534638-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 59248 invoked by alias); 14 Aug 2016 18:11:50 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 59231 invoked by uid 89); 14 Aug 2016 18:11:49 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyßsd34dfds5, yopmail
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 18:11:40 +0000
From: "dfsd34dfds5 at yopmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug boehm-gc/76601] New: fghfg
Date: Sun, 14 Aug 2016 18:11:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: boehm-gc
X-Bugzilla-Version: c++-concepts
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dfsd34dfds5 at yopmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-76601-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01974.txt.bz2
Content-length: 406

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76601

            Bug ID: 76601
           Summary: fghfg
           Product: gcc
           Version: c++-concepts
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: boehm-gc
          Assignee: unassigned at gcc dot gnu.org
          Reporter: dfsd34dfds5 at yopmail dot com
  Target Milestone: ---

fhfgh
>From gcc-bugs-return-534639-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 18:11:51 2016
Return-Path: <gcc-bugs-return-534639-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 59256 invoked by alias); 14 Aug 2016 18:11:50 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 59232 invoked by uid 89); 14 Aug 2016 18:11:49 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:235
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 18:11:39 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/52198] SLP vectorization does not consider swapped operands consistently
Date: Sun, 14 Aug 2016 18:11:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 4.7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-52198-4-e1ONixtPwv@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-52198-4@http.gcc.gnu.org/bugzilla/>
References: <bug-52198-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01975.txt.bz2
Content-length: 141

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=52198

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Is this still true?
>From gcc-bugs-return-534640-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 18:12:56 2016
Return-Path: <gcc-bugs-return-534640-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 60898 invoked by alias); 14 Aug 2016 18:12:55 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 60889 invoked by uid 89); 14 Aug 2016 18:12:55 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 18:12:45 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/53090] suboptimal ivopt
Date: Sun, 14 Aug 2016 18:12:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 4.8.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-53090-4-aok8ZCCP6b@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-53090-4@http.gcc.gnu.org/bugzilla/>
References: <bug-53090-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01976.txt.bz2
Content-length: 228

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53090

--- Comment #6 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
This might be fixed now with GCC 6.  There has been many improvements to IVOPTs
during GCC 6 time frame.
>From gcc-bugs-return-534641-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 18:14:24 2016
Return-Path: <gcc-bugs-return-534641-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 62126 invoked by alias); 14 Aug 2016 18:14:24 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 62115 invoked by uid 89); 14 Aug 2016 18:14:23 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=UD:crtbegin.o, crtbegino, crtbegin.o
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 18:14:13 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/53423] gcc/32/crtbegin.o: wrong ELF class: ELFCLASS64
Date: Sun, 14 Aug 2016 18:14:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 4.7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: WORKSFORME
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-53423-4-CnwpBlGOpZ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-53423-4@http.gcc.gnu.org/bugzilla/>
References: <bug-53423-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01977.txt.bz2
Content-length: 547

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53423

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |WORKSFORME

--- Comment #3 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
This works for many other people.  Most likely an env variable was set to use
-m64 somewhere.  Closing as works for me.
>From gcc-bugs-return-534643-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 18:15:41 2016
Return-Path: <gcc-bugs-return-534643-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 64287 invoked by alias); 14 Aug 2016 18:15:41 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 64273 invoked by uid 89); 14 Aug 2016 18:15:40 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 18:15:30 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/53593] #pragma prefetch
Date: Sun, 14 Aug 2016 18:15:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-53593-4-W4FoLNygAl@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-53593-4@http.gcc.gnu.org/bugzilla/>
References: <bug-53593-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01979.txt.bz2
Content-length: 520

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53593

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-14
     Ever confirmed|0                           |1

--- Comment #3 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Confirmed, this would be a nice feature to have.
>From gcc-bugs-return-534642-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 18:15:13 2016
Return-Path: <gcc-bugs-return-534642-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 63194 invoked by alias); 14 Aug 2016 18:15:11 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 63167 invoked by uid 89); 14 Aug 2016 18:15:08 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 18:14:55 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/53485] gcc -O -mavx generates illegal instruction on win64
Date: Sun, 14 Aug 2016 18:15:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 4.6.3
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-53485-4-fGQVeqRClo@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-53485-4@http.gcc.gnu.org/bugzilla/>
References: <bug-53485-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01978.txt.bz2
Content-length: 523

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53485

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |WAITING
   Last reconfirmed|                            |2016-08-14
     Ever confirmed|0                           |1

--- Comment #3 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Does this work now with a newer version of GCC?
>From gcc-bugs-return-534644-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 18:16:44 2016
Return-Path: <gcc-bugs-return-534644-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 65513 invoked by alias); 14 Aug 2016 18:16:43 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 65503 invoked by uid 89); 14 Aug 2016 18:16:42 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 18:16:32 +0000
From: "vxbnvhj at yopmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/76607] New: Before reporting a bug, please read the bug writing guidelines, please look at the list of most frequently reported bugs, and please search for the bug.
Date: Sun, 14 Aug 2016 18:16:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: vxbnvhj at yopmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-76607-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01980.txt.bz2
Content-length: 1010

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76607

            Bug ID: 76607
           Summary: Before reporting a bug, please read the bug writing
                    guidelines, please look at the list of most frequently
                    reported bugs, and please search for the bug.
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: tree-optimization
          Assignee: unassigned at gcc dot gnu.org
          Reporter: vxbnvhj at yopmail dot com
  Target Milestone: ---

Before reporting a bug, please read the bug writing guidelines, please look at
the list of most frequently reported bugs, and please search for the bug.

Before reporting that GCC compiles your code incorrectly, compile it with gcc
-Wall -Wextra and see whether this shows anything wrong with your code.
Similarly, if compiling with -fno-strict-aliasing -fwrapv makes a difference,
your code probably is not correct.
>From gcc-bugs-return-534645-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 18:17:30 2016
Return-Path: <gcc-bugs-return-534645-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 69507 invoked by alias); 14 Aug 2016 18:17:29 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 69487 invoked by uid 89); 14 Aug 2016 18:17:29 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:325
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 18:17:19 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/53772] Failed to combine load and jump on vtable
Date: Sun, 14 Aug 2016 18:17:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 4.8.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_severity
Message-ID: <bug-53772-4-G8x0CZU5el@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-53772-4@http.gcc.gnu.org/bugzilla/>
References: <bug-53772-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01981.txt.bz2
Content-length: 369

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53772

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |missed-optimization
           Severity|normal                      |enhancement
>From gcc-bugs-return-534646-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 18:17:50 2016
Return-Path: <gcc-bugs-return-534646-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 70874 invoked by alias); 14 Aug 2016 18:17:50 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 70841 invoked by uid 89); 14 Aug 2016 18:17:50 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=4.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00,LIKELY_SPAM_BODY,SPAM_SUBJECT1 autolearn=no version=3.3.2 spammy=customer, phone
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 18:17:44 +0000
From: "vxbnvhj at yopmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/76607] norton phone number norton tech support phone number norton customer service phone number norton contact number
Date: Sun, 14 Aug 2016 18:17:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: vxbnvhj at yopmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: short_desc
Message-ID: <bug-76607-4-4NyCHmG7Cc@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76607-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76607-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01982.txt.bz2
Content-length: 816

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76607

hdfdjbdf <vxbnvhj at yopmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|Before reporting a bug,     |norton phone number norton
                   |please read the bug writing |tech support phone number
                   |guidelines, please look at  |norton customer service
                   |the list of most frequently |phone number norton contact
                   |reported bugs, and please   |number
                   |search for the bug.         |

--- Comment #1 from hdfdjbdf <vxbnvhj at yopmail dot com> ---
norton phone number norton tech support phone number norton customer service
phone number norton contact number
>From gcc-bugs-return-534647-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 18:20:06 2016
Return-Path: <gcc-bugs-return-534647-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 75126 invoked by alias); 14 Aug 2016 18:20:06 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 75111 invoked by uid 89); 14 Aug 2016 18:20:05 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 18:19:55 +0000
From: "cltang at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/70598] Fortran OpenACC host_data construct ICE
Date: Sun, 14 Aug 2016 18:20:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: openacc, patch
X-Bugzilla-Severity: major
X-Bugzilla-Who: cltang at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: cltang at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-70598-4-JeQXIDyQ0t@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70598-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70598-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01983.txt.bz2
Content-length: 1265

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70598

--- Comment #4 from Chung-Lin Tang <cltang at gcc dot gnu.org> ---
Author: cltang
Date: Sun Aug 14 18:19:10 2016
New Revision: 239457

URL: https://gcc.gnu.org/viewcvs?rev=239457&root=gcc&view=rev
Log:
2016-08-14  Chung-Lin Tang  <cltang@codesourcery.com>

        PR fortran/70598

        gcc/fortran/
        * openmp.c (resolve_omp_clauses): Adjust use_device clause
        handling to only allow pointers and arrays.

        gcc/testsuite/
        * gfortran.dg/goacc/host_data-tree.f95: Adjust to use pointers
        in use_device clause.
        * gfortran.dg/goacc/uninit-use-device-clause.f95: Likewise.
        * gfortran.dg/goacc/list.f95: Adjust to catch
        "neither a POINTER nor an array" error messages.

        libgomp/
        * testsuite/libgomp.oacc-fortran/host_data-1.f90: New test.


Added:
    trunk/libgomp/testsuite/libgomp.oacc-fortran/host_data-1.f90
Modified:
    trunk/gcc/fortran/ChangeLog
    trunk/gcc/fortran/openmp.c
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/testsuite/gfortran.dg/goacc/host_data-tree.f95
    trunk/gcc/testsuite/gfortran.dg/goacc/list.f95
    trunk/gcc/testsuite/gfortran.dg/goacc/uninit-use-device-clause.f95
    trunk/libgomp/ChangeLog
>From gcc-bugs-return-534648-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 18:20:16 2016
Return-Path: <gcc-bugs-return-534648-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 75874 invoked by alias); 14 Aug 2016 18:20:16 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 75850 invoked by uid 89); 14 Aug 2016 18:20:15 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 18:20:08 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/53979] ((a ^ b) | a) not optimized to (a | b)
Date: Sun, 14 Aug 2016 18:20:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 4.8.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on short_desc everconfirmed
Message-ID: <bug-53979-4-IcJ7apeZEL@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-53979-4@http.gcc.gnu.org/bugzilla/>
References: <bug-53979-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01984.txt.bz2
Content-length: 812

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53979

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |missed-optimization
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-14
            Summary|(a^b^b) not simplified to   |((a ^ b) | a) not optimized
                   |(a)   (in combination with  |to (a | b)
                   |CSE??)                      |
     Ever confirmed|0                           |1

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Confirmed, f1 and f2 are the same now.  So the only thing left is 2 from
comment #0.
>From gcc-bugs-return-534649-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 18:21:45 2016
Return-Path: <gcc-bugs-return-534649-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 77239 invoked by alias); 14 Aug 2016 18:21:45 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 77219 invoked by uid 89); 14 Aug 2016 18:21:44 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 18:21:34 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug driver/54210] gcc unable to detect -mprfchw flag in bulldozer machines
Date: Sun, 14 Aug 2016 18:21:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: driver
X-Bugzilla-Version: 4.8.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 4.9.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution target_milestone
Message-ID: <bug-54210-4-wrkh5G7MEo@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-54210-4@http.gcc.gnu.org/bugzilla/>
References: <bug-54210-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01985.txt.bz2
Content-length: 482

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=54210

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |FIXED
   Target Milestone|---                         |4.9.0

--- Comment #4 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Fixed.
>From gcc-bugs-return-534650-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 18:35:03 2016
Return-Path: <gcc-bugs-return-534650-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 11890 invoked by alias); 14 Aug 2016 18:35:02 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 11874 invoked by uid 89); 14 Aug 2016 18:35:02 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 18:34:52 +0000
From: "fgjkhdfgh at yopmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/76615] New: First, you must pick a product on which to enter a bug:
Date: Sun, 14 Aug 2016 18:35:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: fgjkhdfgh at yopmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-76615-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01986.txt.bz2
Content-length: 520

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76615

            Bug ID: 76615
           Summary: First, you must pick a product on which to enter a
                    bug:
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: fgjkhdfgh at yopmail dot com
  Target Milestone: ---

First, you must pick a product on which to enter a bug:
>From gcc-bugs-return-534651-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 18:37:10 2016
Return-Path: <gcc-bugs-return-534651-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 13550 invoked by alias); 14 Aug 2016 18:37:10 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 13540 invoked by uid 89); 14 Aug 2016 18:37:09 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=4.4.0
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 18:36:59 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/39046] gcc 4.4.0 20090116 loop unrolling messes optimization
Date: Sun, 14 Aug 2016 18:37:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 4.4.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_severity
Message-ID: <bug-39046-4-EK7oTmWoJm@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-39046-4@http.gcc.gnu.org/bugzilla/>
References: <bug-39046-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01987.txt.bz2
Content-length: 369

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=39046

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |missed-optimization
           Severity|normal                      |enhancement
>From gcc-bugs-return-534652-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 18:45:50 2016
Return-Path: <gcc-bugs-return-534652-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 17694 invoked by alias); 14 Aug 2016 18:45:50 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 17684 invoked by uid 89); 14 Aug 2016 18:45:49 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 18:45:48 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/41910] Very basic example failing
Date: Sun, 14 Aug 2016 18:45:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 4.4.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cf_gcctarget bug_status cf_reconfirmed_on component everconfirmed bug_severity
Message-ID: <bug-41910-4-We2eWJTGuG@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-41910-4@http.gcc.gnu.org/bugzilla/>
References: <bug-41910-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01988.txt.bz2
Content-length: 664

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=41910

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Target|                            |*mingw*
             Status|UNCONFIRMED                 |WAITING
   Last reconfirmed|                            |2016-08-14
          Component|libgomp                     |target
     Ever confirmed|0                           |1
           Severity|major                       |normal

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Does this work now?
>From gcc-bugs-return-534653-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 18:46:12 2016
Return-Path: <gcc-bugs-return-534653-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 18505 invoked by alias); 14 Aug 2016 18:46:12 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 18492 invoked by uid 89); 14 Aug 2016 18:46:11 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyÞfaults
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 18:46:03 +0000
From: "arthur.j.odwyer at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/65396] Function template default template arguments not merged
Date: Sun, 14 Aug 2016 18:46:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 4.9.2
X-Bugzilla-Keywords: rejects-valid
X-Bugzilla-Severity: normal
X-Bugzilla-Who: arthur.j.odwyer at gmail dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-65396-4-AlFecqrx41@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-65396-4@http.gcc.gnu.org/bugzilla/>
References: <bug-65396-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01989.txt.bz2
Content-length: 946

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65396

Arthur O'Dwyer <arthur.j.odwyer at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |arthur.j.odwyer at gmail dot com

--- Comment #2 from Arthur O'Dwyer <arthur.j.odwyer at gmail dot com> ---
FWIW, I just ran into the same thing and confirmed (via Wandbox) that the bug
is there in every GCC up to 7.0.0 (and no Clang, back as far as Clang 3.0).
This is the test case I was using. There is only one function template "f", and
both of its template parameters have defaults by the time it's called:

-------------------

#include <stdio.h>
template<class T1, class T2 = int> void f();
template<class T1 = int, class T2> void f();
template<class T1, class T2> void f() {
    puts(__PRETTY_FUNCTION__);
}
int main() {
    f();
}
>From gcc-bugs-return-534654-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 18:49:09 2016
Return-Path: <gcc-bugs-return-534654-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 21447 invoked by alias); 14 Aug 2016 18:49:09 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 21434 invoked by uid 89); 14 Aug 2016 18:49:08 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 18:48:58 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/43422] reversed loop is not vectorized
Date: Sun, 14 Aug 2016 18:49:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 4.5.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution target_milestone
Message-ID: <bug-43422-4-uODCiMd488@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-43422-4@http.gcc.gnu.org/bugzilla/>
References: <bug-43422-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01990.txt.bz2
Content-length: 874

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=43422

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |FIXED
   Target Milestone|---                         |5.0

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Vectorizes for me on aarch64-linux-gnu with GCC 5.4:
.L8:
        ldr     q0, [x5, x0]
        add     w1, w1, 1
        ldr     q1, [x4, x0]
        cmp     w2, w1
        tbl     v0.16b, {v0.16b}, v2.16b
        tbl     v1.16b, {v1.16b}, v2.16b
        add     v0.4s, v0.4s, v1.4s
        tbl     v0.16b, {v0.16b}, v2.16b
        str     q0, [x3, x0]
        sub     x0, x0, #16
        bhi     .L8
>From gcc-bugs-return-534655-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 18:51:30 2016
Return-Path: <gcc-bugs-return-534655-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 24996 invoked by alias); 14 Aug 2016 18:51:30 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 24974 invoked by uid 89); 14 Aug 2016 18:51:29 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 18:51:19 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/43543] Reorder the statements in the loop can vectorize it
Date: Sun, 14 Aug 2016 18:51:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 4.5.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on blocked everconfirmed
Message-ID: <bug-43543-4-VnJm9BuW6f@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-43543-4@http.gcc.gnu.org/bugzilla/>
References: <bug-43543-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01991.txt.bz2
Content-length: 734

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=43543

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |missed-optimization
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-14
             Blocks|                            |53947
     Ever confirmed|0                           |1

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Confirmed.


Referenced Bugs:

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53947
[Bug 53947] [meta-bug] vectorizer missed-optimizations
>From gcc-bugs-return-534656-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 18:52:56 2016
Return-Path: <gcc-bugs-return-534656-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 26385 invoked by alias); 14 Aug 2016 18:52:55 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 26376 invoked by uid 89); 14 Aug 2016 18:52:55 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 18:52:44 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/43855] assembly generated labels should use hex instead of decimal
Date: Sun, 14 Aug 2016 18:52:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 4.6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc short_desc everconfirmed bug_severity
Message-ID: <bug-43855-4-wr1u9DyDPX@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-43855-4@http.gcc.gnu.org/bugzilla/>
References: <bug-43855-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01992.txt.bz2
Content-length: 826

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=43855

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-14
                 CC|                            |pinskia at gcc dot gnu.org
            Summary|assembly labels are too     |assembly generated labels
                   |long                        |should use hex instead of
                   |                            |decimal
     Ever confirmed|0                           |1
           Severity|normal                      |enhancement

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Confirmed.
>From gcc-bugs-return-534657-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 18:54:50 2016
Return-Path: <gcc-bugs-return-534657-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 27673 invoked by alias); 14 Aug 2016 18:54:50 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 27657 invoked by uid 89); 14 Aug 2016 18:54:50 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 18:54:39 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/44736] -O1 vs malloc hooks
Date: Sun, 14 Aug 2016 18:54:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 4.5.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: MOVED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-44736-4-j8tx69eJzC@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-44736-4@http.gcc.gnu.org/bugzilla/>
References: <bug-44736-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01993.txt.bz2
Content-length: 460

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=44736

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |MOVED

--- Comment #5 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Moved to glibc and already fixed there.
>From gcc-bugs-return-534658-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 18:55:32 2016
Return-Path: <gcc-bugs-return-534658-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 29221 invoked by alias); 14 Aug 2016 18:55:32 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 29212 invoked by uid 89); 14 Aug 2016 18:55:31 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 18:55:21 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug testsuite/41914] /home/dave/opt/gnu/bin/ld: cannot find -lm
Date: Sun, 14 Aug 2016 18:55:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: testsuite
X-Bugzilla-Version: 4.5.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-41914-4-2AqE7y6j6o@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-41914-4@http.gcc.gnu.org/bugzilla/>
References: <bug-41914-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01994.txt.bz2
Content-length: 448

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=41914

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |FIXED

--- Comment #3 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Been fixed for a while now.
>From gcc-bugs-return-534659-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 18:57:00 2016
Return-Path: <gcc-bugs-return-534659-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 30460 invoked by alias); 14 Aug 2016 18:57:00 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 30451 invoked by uid 89); 14 Aug 2016 18:56:59 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 18:56:49 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug lto/42613] -save-temps doesn't work completely for -fwhopr
Date: Sun, 14 Aug 2016 18:57:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: lto
X-Bugzilla-Version: 4.5.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-42613-4-txRQGDqhnu@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-42613-4@http.gcc.gnu.org/bugzilla/>
References: <bug-42613-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01995.txt.bz2
Content-length: 454

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=42613

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |FIXED

--- Comment #4 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Been fixed for a long time now :)
>From gcc-bugs-return-534660-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 18:58:40 2016
Return-Path: <gcc-bugs-return-534660-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 32407 invoked by alias); 14 Aug 2016 18:58:40 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 32398 invoked by uid 89); 14 Aug 2016 18:58:39 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 18:58:29 +0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/76481] [7 Regression] ICE on (invalid) redeclaration of extern variable as constexpr variable
Date: Sun, 14 Aug 2016 18:58:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: diagnostic, ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: DUPLICATE
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-76481-4-ja0nLGIv4S@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76481-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76481-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01996.txt.bz2
Content-length: 497

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76481

Martin Liška <marxin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |DUPLICATE

--- Comment #3 from Martin Liška <marxin at gcc dot gnu.org> ---
Dup.

*** This bug has been marked as a duplicate of bug 71988 ***
>From gcc-bugs-return-534661-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 18:59:23 2016
Return-Path: <gcc-bugs-return-534661-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 33223 invoked by alias); 14 Aug 2016 18:59:23 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 33214 invoked by uid 89); 14 Aug 2016 18:59:22 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 18:59:12 +0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/71988] [7 Regression] ICE in dump_simple_decl (gcc/cp/error.c:965)
Date: Sun, 14 Aug 2016 18:59:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-71988-4-TFJip8fLaB@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71988-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71988-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01997.txt.bz2
Content-length: 450

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71988

Martin Liška <marxin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ppalka at gcc dot gnu.org

--- Comment #3 from Martin Liška <marxin at gcc dot gnu.org> ---
*** Bug 76481 has been marked as a duplicate of this bug. ***
>From gcc-bugs-return-534662-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 19:04:02 2016
Return-Path: <gcc-bugs-return-534662-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 38149 invoked by alias); 14 Aug 2016 19:04:02 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 38124 invoked by uid 89); 14 Aug 2016 19:03:59 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:1048
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 19:03:49 +0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/76577] Tree folding may remove UB which causes invalid constexpr function calls to be accepted
Date: Sun, 14 Aug 2016 19:04:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: accepts-invalid
X-Bugzilla-Severity: normal
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on cc everconfirmed
Message-ID: <bug-76577-4-MOv2D5hytG@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76577-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76577-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01998.txt.bz2
Content-length: 1248

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76577

Martin Liška <marxin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |accepts-invalid
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-14
                 CC|                            |marxin at gcc dot gnu.org
     Ever confirmed|0                           |1

--- Comment #1 from Martin Liška <marxin at gcc dot gnu.org> ---
The code snippet is accepted by all revisions that support c++11 (4.7.0).

clang 3.8.0 shows:
pr76577.cpp:7:15: error: constexpr variable 'bar' must be initialized by a
constant expression
constexpr int bar = foo (-5);
              ^     ~~~~~~~~
pr76577.cpp:4:14: note: negative shift count -5
  return ((1 << a) & 1) == 0;
             ^
pr76577.cpp:7:21: note: in call to 'foo(-5)'
constexpr int bar = foo (-5);
                    ^
1 error generated.

and ICC 15.0.1:
pr76577.cpp(7): error: function call must have a constant value in a constant
expression
  constexpr int bar = foo (-5);
                      ^
>From gcc-bugs-return-534663-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 19:04:31 2016
Return-Path: <gcc-bugs-return-534663-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 38884 invoked by alias); 14 Aug 2016 19:04:31 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 38872 invoked by uid 89); 14 Aug 2016 19:04:30 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 19:04:20 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/45032] Missed optimization in ifcvt/crossjump
Date: Sun, 14 Aug 2016 19:04:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 4.6.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on everconfirmed bug_severity
Message-ID: <bug-45032-4-XvZJFq3PCK@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-45032-4@http.gcc.gnu.org/bugzilla/>
References: <bug-45032-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg01999.txt.bz2
Content-length: 612

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=45032

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |missed-optimization
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-14
     Ever confirmed|0                           |1
           Severity|normal                      |enhancement

--- Comment #3 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Confirmed.
>From gcc-bugs-return-534664-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 19:15:33 2016
Return-Path: <gcc-bugs-return-534664-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 117391 invoked by alias); 14 Aug 2016 19:15:32 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 117375 invoked by uid 89); 14 Aug 2016 19:15:32 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 19:15:22 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/39151] If you build and install 'ppl' (and not 'cloog') then files will still link with 'ppl'.
Date: Sun, 14 Aug 2016 19:15:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 4.4.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: minor
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: WONTFIX
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-39151-4-KahppKP979@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-39151-4@http.gcc.gnu.org/bugzilla/>
References: <bug-39151-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02000.txt.bz2
Content-length: 491

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=39151

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |WONTFIX

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
ppl and cloog are no longer used only ISL.  So closing as won't fix.
>From gcc-bugs-return-534665-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 19:20:28 2016
Return-Path: <gcc-bugs-return-534665-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 120781 invoked by alias); 14 Aug 2016 19:20:28 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 120767 invoked by uid 89); 14 Aug 2016 19:20:27 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=thread-local, threadlocal
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 19:20:17 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/28141] thread-local ptr initialized to address of thread-local misclassified as non-constant initializer
Date: Sun, 14 Aug 2016 19:20:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 4.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-28141-4-kP59GfYvr2@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-28141-4@http.gcc.gnu.org/bugzilla/>
References: <bug-28141-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02001.txt.bz2
Content-length: 296

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=28141

--- Comment #3 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
This also requires support in glibc.  I don't think glibc folks want this thing
as it means you have to process runtime relocs when a thread is created, not a
good thing.
>From gcc-bugs-return-534666-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 20:49:45 2016
Return-Path: <gcc-bugs-return-534666-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 122968 invoked by alias); 14 Aug 2016 20:49:45 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 122947 invoked by uid 89); 14 Aug 2016 20:49:44 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,LIKELY_SPAM_BODY,URIBL_PH_SURBL autolearn=no version=3.3.2 spammy=billing, sk:number, sk:Number, PhOnE
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 20:49:34 +0000
From: "kgjfkgdfn at yopmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/76642] New: Norton Symantec 1-800-769-2805 Norton technical number Norton antivirus technical support phone
Date: Sun, 14 Aug 2016 20:49:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: kgjfkgdfn at yopmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-76642-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02002.txt.bz2
Content-length: 4156

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76642

            Bug ID: 76642
           Summary: Norton Symantec 1-800-769-2805 Norton technical number
                    Norton antivirus technical support phone
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: kgjfkgdfn at yopmail dot com
  Target Milestone: ---

Contact Norton Support – Norton Phone Number, and Chat Support ...
https://support.norton.com/sp/en/us/home/current/contact
Contact Norton to connect with a live Norton Chat or Norton Phone agent. Norton
customer support specialists can provide personalized service today.
I: 110KL: 14LD: 6.32KI: 159KRank: 615Age: March 4, 2013whoissourceRank: 2.19K
2
Contact Norton Support
us.norton.com › Support
Norton by Symantec | United States. United States. Shopping Cart. Shopping ...
Order Status · Help Me Choose · Norton.com > Support > Global Support ...
I: 4.39KL: 6LD: 52.1KI: 16.7KRank: 615Age: September 18, 2010whoissourceRank:
2.19K
3
Norton 800 Number - Toll Free Numbers
www.800-numbers.net › Computer Companies
Below is a list of toll free 800 numbers for Norton by Symantec. Norton
Customer Support Service: 1-800-745-6034 (24/7)
I: 351L: 5LD: 651I: 28.1KRank: 154KAge: April 10, 2004whoissourceRank: 1.69K
4
Norton AntiVirus Phone Number: Shorter Wait, Best Support - GetHuman
https://gethuman.com/phone-number/Norton-AntiVirus
Norton AntiVirus Phone Number: Shorter Wait, Best Support. Norton AntiVirus
Phone Number. 800-927-3991.
I: 534KL: 3LD: 15.7KI: 378KRank: 21.9KAge: March 2, 2001whoissourceRank: 792
5
Norton AntiVirus Customer Service Phone Number #2: 800-745-6048
https://gethuman.com/phone-number/Norton-AntiVirus/customer-service/~2998
The #2 phone number for Norton AntiVirus Customer Service with tips to quickly
reach and to call a live Norton AntiVirus support rep. If you're going to to
call an ...
I: 534KL: 0LD: 15.7KI: 378KRank: 21.9KAge: March 2, 2001whoissourceRank: 792
6
Norton Support |1800-420-9012 | Norton Customer Service
nortonphonesupport.com/
Norton Customer Service Call 1-800-420-9012 for ,Support For Norton, Norton
tech Support Number, Norton Support, ... contact norton support phone number.
I: 75L: 241LD: 592I: 51Rank: 3.44MAge: October 11, 2015whoissourceRank: 704K
7
Norton Products by Symantec | Contact Us
www.symantec-norton.com/contact-us.aspx
For non-technical questions such as inquiries about orders, subscriptions,
product activations, product downloads, returns and rebates, please contact
Customer ...
I: 1.23KL: 4LD: 324I: 6.45KRank: 157KAge: June 15, 2008whoissourceRank: 206K
8
855-990!!5999 PhOnE NuMbEr norton CuStOmEr sErViCe? - GCC
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76588
GNU Compiler Collection
3 hours ago - norton antivirus Support Phone Number!!1-855-990-5999..norton
Tech ... antivirus customer support usa phone number norton antivirus help ...
I: 1.78ML: 0LD: 267KI: 93.1KRank: 4.89KAge: February 29, 2000whoissourceRank:
2.82K
9
Norton Support Australia Number 1800-752-954
www.nortonsupportaustralia.com/
Norton Technical Support Australia. Call Norton Support phone number
1800-752-954. We are third party service provider and not in any way associated
with ...
I: 10L: 6LD: 6I: 8Rank: 3.92MAge: December 4, 2014whoissourceRank: 734K
10
[PDF]Support*iΣ™+1-888-300-9067Norton Tech Support Phone number ...
flybase.org/.../%3D%3D%3D%601_8%3D0%3D0%3D7%3D5%3D0%3D6%...
FlyBase
Antivirus Customer Support phone Number Norton Antivirus help desk number,
Norton ... number Norton Support Phone Number 1-888-300-9067 USA, Norton ...
I: 1.07ML: 0LD: 318KI: 5.88KRank: 140KAge: April 30, 1999whoissourceRank: 17.5K
Searches related to norton phone number
norton customer service
norton 800 phone number
contact norton antivirus customer service phone number
norton phone number get human
norton phone number billing
norton 360 phone number
norton internet security phone number
norton abrasives phone number
>From gcc-bugs-return-534667-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 22:04:24 2016
Return-Path: <gcc-bugs-return-534667-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 75341 invoked by alias); 14 Aug 2016 22:04:24 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 75331 invoked by uid 89); 14 Aug 2016 22:04:23 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=2.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammyÊre, call,@, Disclaimer, Call,@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 22:04:13 +0000
From: "gfsd35 at yopmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/76677] New: Microsoft Live Number + 1-800-982-1603 which by Microsoft Office 365
Date: Sun, 14 Aug 2016 22:04:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: gfsd35 at yopmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-76677-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02003.txt.bz2
Content-length: 8115

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76677

            Bug ID: 76677
           Summary: Microsoft Live Number + 1-800-982-1603 which by
                    Microsoft Office 365
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: gfsd35 at yopmail dot com
  Target Milestone: ---

ms office Helpline +1-800-982-1603 Customer Support Number, ms office Technical
Helpline Number USA, Mail ms office phone number united states +1-800-982-1603
ms office +1-800-982-1603 Customer Support , ms office technical Support phone
number USA, Mail ms office phone number united states +1-800-982-1603 ms office
2013 Support +1-800-982-1603 Customer Support Number ms office technical
Support phone number USA, Mail ms office phone number united states
+1-800-982-1603
+1-800-982-1603@@@ ms office tech support number , . ms office technical
support phone number

ms office 2010 Support Toll Free - 1-800-982-1603 ms office 2013 Technical
Support Number, ms office help desk phone number
Just Call, +1-800-982-1603 for all type help related ms office Issue support
telephone number,Mail ms office phone number,Mail ms office phone number, ms
office help phone number, ms office technical support number.Mail ms office
number, ms office phone number, ms office tech support number, ms office
customer support number, ms office customer support phone number, ms office
customer service phone number, ms office customer service phone number, Mail ms
office phone number

ms office help number- ms office Helpline Number; ms office help phone number-
ms office Helpline Number, ms office Tech Support Toll free Number, Mail ms
office Telephone Number, ms office Tech Support Telephone number, ms office
Tech Support contact number, Mail ms office contact number, ms office technical
support contact number, ms office help desk phone number. ms office helpdesk
recovery support phone number.
Just Call-1-800-982-1603-: ms office helpdesk recovery support phone number.

ms office technical support, ms office Customer Service Phone Number, ms office
Customer Service Number, ms office Customer Support Phone Number, ms office
Customer Support Number, ms office Customer Service Helpline Number, ms office
Customer Care Number, Mail ms office team phone number. ms office helpdesk
recovery support phone number.
Call,@(+1-800-982-1603)@-: ms office help number- ms office Helpline Number; ms
office help phone number, ms office Helpline Number, ms office Tech Support
Toll free Number, Mail ms office Telephone Number, ms office Tech Support
Telephone number, ms office Tech Support contact number, Mail ms office contact
number, ms office 2010 technical support contact number, Mail 2013 ms office
phone number, ms office 2016 support phone number. ms office customer support
phone number.. ms office helpdesk reset support phone number. Technical Support
For microsoft office issue : 1-800-982-1603

microsoft office Helpline +1-800-982-1603 Customer Support Number, microsoft
office Technical Helpline Number USA, microsoft office phone number united
states +1-800-982-1603 microsoft office +1-800-982-1603 Customer Support ,
microsoft office technical Support phone number USA, microsoft office phone
number united states +1-800-982-1603 microsoft office 2013 Support
+1-800-982-1603 Customer Support Number microsoft office technical Support
phone number USA, microsoft office phone number united states +1-800-982-1603
+1-800-982-1603@@@ microsoft office tech support number , . microsoft office
technical support phone number

microsoft office 2010 Support Toll Free - 1-800-982-1603 microsoft office 2013
Technical Support Number, microsoft office help desk phone number
Just Call, +1-800-982-1603 for all type help related microsoft office Issue
support telephone number, microsoft office phone number, microsoft office phone
number, microsoft office help phone number, microsoft office technical support
number. microsoft office number, microsoft office phone number, microsoft
office tech support number, microsoft office customer support number, microsoft
office customer support phone number, microsoft office customer service phone
number, microsoft office customer service phone number, microsoft office phone
number

microsoft office help number- microsoft office Helpline Number; microsoft
office help phone number- microsoft office Helpline Number, microsoft office
Tech Support Toll free Number, microsoft office Telephone Number, microsoft
office Tech Support Telephone number, microsoft office Tech Support contact
number, microsoft office contact number, microsoft office technical support
contact number, microsoft office help desk phone number. microsoft office
helpdesk support phone number.
Just Call-1-800-982-1603-: microsoft office helpdesk support phone number.

microsoft office technical support, microsoft office Customer Service Phone
Number, microsoft office Customer Service Number, microsoft office Customer
Support Phone Number, microsoft office Customer Support Number, microsoft
office Customer Service Helpline Number, microsoft office Customer Care Number,
microsoft office team phone number. microsoft office helpdesk support phone
number.
Call,@(+1-800-982-1603)@-: microsoft office help number- microsoft office
Helpline Number; microsoft office help phone number, microsoft office Helpline
Number, microsoft office Tech Support Toll free Number, microsoft office
Telephone Number, microsoft office Tech Support Telephone number, microsoft
office Tech Support contact number, microsoft office contact number, microsoft
office 2010 technical support contact number, 2013 microsoft office phone
number, microsoft office 2016 support phone number. microsoft office customer
support phone number.. microsoft office helpdesk reset support phone number.

microsoft office 2010 technical support, microsoft office 2013 Customer Service
Phone Number, microsoft office 2007 Customer Service Number, microsoft office
2010 Customer Support Phone Number, microsoft office 2013 Customer Support
Number, microsoft office 2013 Customer Service Helpline Number, microsoft
office 365 Customer Care Number, microsoft office team phone number. microsoft
office helpdesk support phone number
Call,@(+1-800-982-1603)@-: microsoft office 2010 help number- microsoft office
2013 Helpline Number; microsoft office 365 help phone number, microsoft office
2016 Helpline Number, microsoft office 2010 Tech Support Toll free Number,
microsoft office 2013 Telephone Number, microsoft office 2010 Tech Support
Telephone number, microsoft office 365 Tech Support contact number, microsoft
office contact number, microsoft office 2010 technical support contact number,
2013 microsoft office phone number, microsoft office 2016 support phone number.
microsoft office customer support phone number.. microsoft office helpdesk
reset support phone number

ms office 2010 technical support, ms office 2013 Customer Service Phone Number,
ms office 2007 Customer Service Number, ms office 2010 Customer Support Phone
Number, ms office 2013 Customer Support Number, ms office 2013 Customer Service
Helpline Number, ms office 365 Customer Care Number, Mail ms office team phone
number. ms office helpdesk recovery support phone number
Call,@(+1-800-982-1603)@-: ms office 2010 help number- ms office 2013 Helpline
Number; ms office 365 help phone number, ms office 2016 Helpline Number, ms
office 2010 Tech Support Toll free Number, Mail ms office 2013 Telephone
Number, ms office 2010 Tech Support Telephone number, ms office 365 Tech
Support contact number, Mail ms office contact number, ms office 2010 technical
support contact number, Mail 2013 ms office phone number, ms office 2016
support phone number. ms office customer support phone number.. ms office
helpdesk reset support phone number Disclaimer : we are the third party
technical support independent one
>From gcc-bugs-return-534668-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 22:30:17 2016
Return-Path: <gcc-bugs-return-534668-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 27961 invoked by alias); 14 Aug 2016 22:30:17 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 27948 invoked by uid 89); 14 Aug 2016 22:30:15 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=3.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,HK_OBFDOM,URI_OBFU_WWW autolearn=no version=3.3.2 spammy=8:tu, 8:se, 8:.c, 8:om
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 22:29:55 +0000
From: "gfsd351556 at yopmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/76716] New: Www.office.com/setup +1-800-982-1603 www.office.com setup U$A
Date: Sun, 14 Aug 2016 22:30:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: gfsd351556 at yopmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-76716-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02004.txt.bz2
Content-length: 8342

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76716

            Bug ID: 76716
           Summary: Www.office.com/setup +1-800-982-1603 www.office.com
                    setup U$A
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: gfsd351556 at yopmail dot com
  Target Milestone: ---

Www.office.com/setup +1-800-982-1603 www.office.com setup U$A
www.office.com/setup,office setup,office.com/setup,microsoft office
setup,officesetup,office/setup,microsoft
setup,office.comsetup,www.office.com/setup 2013,www.microsoft.com/setup,office
com setup,www office com setup product
key,http://www.office.com/setup,microsoft
office.com/setup,microsoft.com/setup,office.com/setup
2013,office.setup,www.microsoft office.com/setup,office.com setup,www office
com setup,microsoftoffice.com/setup,ms office setup,office 2013 setup,office
setup 2013,office set
up,officesetup.com,http://office.microsoft.com/setup,www.microsoftoffice.com/setup,www.office.com/setup
home & student 2013,www.office.comsetup,www.office.com/setup 2013 product
key,www.microsoftoffice/setup,www.office.setup,www.office.com setup,
www.office.com/setup2013,microsoft/setup,www.office.com/setup home and
student,www.office.com/setup 365,www.officesetup,http://office.com/setup,setup
office,microsoft office/setup,microsoft office set up, office.com7setup,
office.setup.com, www.office,com/setup, office/setup.com, setup microsoft
office,microsoftoffice/setup,microsoftoffice setup,www.office.com.setup,office
home and student 2013 setup,www office setup, www.office/setup,
office.microsoft.com/setup,www.office.com/install, www.office.com/setup enter
product key, www. office.com/setup, www.office..com/setup,
www:office.com/setup, microsoft.setup, office.com\setup,office comsetup,
office.com.setup,www.microsoft/setup,msoffice/setup, www.office.com
2013,http://www.microsoft.com/setup/,www office.com/setup,
www.officesetup.com/setup,www.office.com\setup,office
setup.com,www.office.de/setup,office .com/setup,www.microsoft.setup,ms
office/setup,www.office.com/setup home and student
2013,www.office.com/setup.,www:office:com7setup,www .office.com/setup,office
seup,www.officecom/setup,office\setup,msoffice setup,office.microsoft.com
setup,office com/setup,www.microsoft
office.com,microsoftofficesetup,office.com/setup.,www.office.com-setup,microsoft
office com setup,office.com/setup 365,www.office.com/setup product
key,http//www.office.com/setup,office setp,office setup microsoft,www.office.
com/setup,www..office.com/setup,www.office.com/set,ms office set
up,www.office.com/setu,www.microsoft office setup,how to set up microsoft
office,office.com:setup,www.microsoft office.com free download, office setup
down,install office with product key, offce.com/setup, office.com product key,
www.office.com/download, www.officesetups.com,microsoft office.com,office
setip, www.microsoftoffice.com free download, how to enter microsoft product
key, enter microsoft office product key,office setup 2013 download,microsoft
office,office.com set up,www.office.com7setup,offfice setup,office com setup
download,www.office setup,installing microsoft office,office microsoft
setup,http://www.office.com/jppipcsetup/,office 2013 set up,office setup
download,www.oficce.com/setup,offce setup,www.office 365/setup,get
officesetup,https://www.office.com/jppipcsetup/,office.com/setup not
working,www.ofice.com/setup, how to setup microsoft office,
wwwoffice.com/setup,www.0ffice.com/setup,setup office home and student 2013,
www.office.microsoft.com/setup,oofice
setup,http://www.office.com/jppipcsetup,ms office setup
download,ffice.com/setup,www.offic.com/setup,office com
set,https://www.office.com/setup/,office.com/setup,www.office..com,www/office.com/setup,office/setup.de,ofice.com/setup,enter
product key for microsoft office 2013,office /setup, officecomsetup.com,how to
install office with product key, office steup, microsoft office /setup, office
setu,office setup get office key,office,com/setup,www.microsoftoffice.com,www
office com/setup,ofice setup,www.office.cpm/setup,ofiice setup,it office
setup,office setup, www.office.com/stup,
office.com/install,www.office.co,/setup,office/com/setup,how to install
microsoft office with product key,www.microsoft.com/office,office
setup.getmicrosoftkey.com,office.com/ setup,http://office.com/setup,office key
setup, www.office.com/myaccont, http://www.office.com/setup365, office
stup,officesetup.getmicrosoftkey.com,microsoft-office.com,microsoftoffice.com,offic
setup,www-office-com/setup,www microsoftoffice
com,www.office.come/setup,www.office.comésetup,www.office.com/setup365,www.office.com|setup,www.office
365.com/setup,www,office.com/setup,office setup online,download ms office
setup,microsoft office setup program,office.com&setup,www.office.com/setup
product key 2013,officesetup.getmicrosoftkey.com,office set-up,office.com
/setup,www.office/setup365,microsoft office enter product key 2013, ms
setup,setup/office,microsoft office 2013 setup,www.office
com/setup,http://office.com/setup/,ms office 2013 setup,enter microsoft product
key,www;office.com/setup,enter product key microsoft
office,office.com?setup,office enter product key,free microsoft office
setup,www.microsoftoffice,www.office.com/setup and
enter,wwwofficecom/setup,office:com7setup,go to www.office.com/setup,installing
microsoft office with product key,www.office.com:setup,office;com/setup,ir key
setup, setup.microsoft.com, www.offfice.com/setup,www.officesetup.com,offcie
setup,office setup home and
student,www.office.com?setup,office.com/setup/,office setup product
key,office.com/se,office;com:setup,office setup get microsoft key,
office.com/set,www.ofice/setup,www.office.com/ setup,install microsoft office
2013 with product
key,www.office/setup.com,officesetup.getmicrosoftkey,microsoft office product
key entry,officesetup.getmicrosoftkey.com/,office setup.getmicrosoftkey,oficce
setup,htttp //www.office.com/jppipcsetup/,microsoft office enter product key,
office.co/setup,www.office.com/setup/,www.office.com set up,office setup
key,microsoft office product key enter,www.office.com/setuo, www.office.com
/setup,office install key,office-setup,microsoft enter product key,ms
office.com,www.office.com/set
up,office.com-setup,office-com/setup,https://www.office.com setup,office setup
free,office.com/setu,setup office 2013,www.office.com/setap,www office com
setup 365,www office com setup365,http://wwww.office.com/setup,install office
2013 with product key,office
setuo,http://www.office.com/setup/,www.office./setup,office.com
setup365,www.office .com/setup,office setup
help,www.microsoft-office.com,setup.office.com,www.office.com./setup,www.office.com/setup
office 365,www.office.co/setup,office.co,/setup,microsft office setup,
officecom/setup, www;office;com:setup,microsoft office
installation,wwww.office.com/setup,how to install office 2013 with product key,
office.come/setup, www.office.com/se, www,office,com/setup,
www.offce.com/setup, microsoft office enter key, office. com/setup,setup ms
office,ww.office.com/setup,setup-ms-office.info,office.com/set up, office
setups,microsoft office setup product key,www office.com setup,office setup.get
microsoft key,ms.setup,www.office.com;setup,enter office product
key,www.office.com,setup,download office setup,office.con/setup,microsoft
office setup download,i have ms office product key,office .com setup,microsoft
office install product key,enter product key for microsoft
office,msoffice.com/setup,www.office.com/setup*,enter microsoft office 2013
product key,office.com;setup,offic.com/setup,www.office.con/setup,install
microsoft office product key,www.office.com/seup,www.office.com/setup
download,www.office-setup-key.com,setup microsoft,www.offive.com/setup,office /
setup, https://office.com/setup, http://www.ofice.com/setup/, office.com/setuo,
https://www.office.com/setup,office.com get key,office
etup,http//www.office.com/setup/,microsoft office setup 2013,setup of microsoft
office,microsoft, www.office.com&setup,where to enter microsoft office product
key,www.office.com/downloadoffice,office 2013/setup
>From gcc-bugs-return-534669-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 22:43:10 2016
Return-Path: <gcc-bugs-return-534669-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 90098 invoked by alias); 14 Aug 2016 22:43:10 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 90085 invoked by uid 89); 14 Aug 2016 22:43:09 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:356
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 22:43:05 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/76490] [5/6/7 Regression] when use -O2 -fcheck-founds compiler appears to hang and consumes all memory
Date: Sun, 14 Aug 2016 22:43:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords: compile-time-hog, memory-hog
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-76490-4-7K1jLs2XsN@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76490-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76490-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02005.txt.bz2
Content-length: 292

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76490

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |5.5
>From gcc-bugs-return-534670-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 23:10:47 2016
Return-Path: <gcc-bugs-return-534670-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 56531 invoked by alias); 14 Aug 2016 23:10:47 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 56515 invoked by uid 89); 14 Aug 2016 23:10:45 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammyÊre, call,@, Disclaimer, Call,@
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 23:10:35 +0000
From: "yhtujgjghkjyh at yopmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/76729] New: Microsoft Live Number + 1-8008061457+++ which by Microsoft Office 365
Date: Sun, 14 Aug 2016 23:10:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: yhtujgjghkjyh at yopmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-76729-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02006.txt.bz2
Content-length: 8193

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76729

            Bug ID: 76729
           Summary: Microsoft Live Number + 1-8008061457+++ which by
                    Microsoft Office 365
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: yhtujgjghkjyh at yopmail dot com
  Target Milestone: ---

Microsoft Live Number + 1-8008061457+++ which by Microsoft Office 365
ms office Helpline +1-800-626-4703 Customer Support Number, ms office Technical
Helpline Number USA, Mail ms office phone number united states +1-800-626-4703
ms office +1-800-626-4703 Customer Support , ms office technical Support phone
number USA, Mail ms office phone number united states +1-800-626-4703 ms office
2013 Support +1-800-626-4703 Customer Support Number ms office technical
Support phone number USA, Mail ms office phone number united states
+1-800-626-4703
+1-800-626-4703@@@ ms office tech support number , . ms office technical
support phone number

ms office 2010 Support Toll Free - 1-800-626-4703 ms office 2013 Technical
Support Number, ms office help desk phone number
Just Call, +1-800-626-4703 for all type help related ms office Issue support
telephone number,Mail ms office phone number,Mail ms office phone number, ms
office help phone number, ms office technical support number.Mail ms office
number, ms office phone number, ms office tech support number, ms office
customer support number, ms office customer support phone number, ms office
customer service phone number, ms office customer service phone number, Mail ms
office phone number

ms office help number- ms office Helpline Number; ms office help phone number-
ms office Helpline Number, ms office Tech Support Toll free Number, Mail ms
office Telephone Number, ms office Tech Support Telephone number, ms office
Tech Support contact number, Mail ms office contact number, ms office technical
support contact number, ms office help desk phone number. ms office helpdesk
recovery support phone number.
Just Call-1-800-626-4703-: ms office helpdesk recovery support phone number.

ms office technical support, ms office Customer Service Phone Number, ms office
Customer Service Number, ms office Customer Support Phone Number, ms office
Customer Support Number, ms office Customer Service Helpline Number, ms office
Customer Care Number, Mail ms office team phone number. ms office helpdesk
recovery support phone number.
Call,@(+1-800-626-4703)@-: ms office help number- ms office Helpline Number; ms
office help phone number, ms office Helpline Number, ms office Tech Support
Toll free Number, Mail ms office Telephone Number, ms office Tech Support
Telephone number, ms office Tech Support contact number, Mail ms office contact
number, ms office 2010 technical support contact number, Mail 2013 ms office
phone number, ms office 2016 support phone number. ms office customer support
phone number.. ms office helpdesk reset support phone number. Technical Support
For microsoft office issue : 1-800-626-4703

microsoft office Helpline +1-800-626-4703 Customer Support Number, microsoft
office Technical Helpline Number USA, microsoft office phone number united
states +1-800-626-4703 microsoft office +1-800-626-4703 Customer Support ,
microsoft office technical Support phone number USA, microsoft office phone
number united states +1-800-626-4703 microsoft office 2013 Support
+1-800-626-4703 Customer Support Number microsoft office technical Support
phone number USA, microsoft office phone number united states +1-800-626-4703
+1-800-626-4703@@@ microsoft office tech support number , . microsoft office
technical support phone number

microsoft office 2010 Support Toll Free - 1-800-626-4703 microsoft office 2013
Technical Support Number, microsoft office help desk phone number
Just Call, +1-800-626-4703 for all type help related microsoft office Issue
support telephone number, microsoft office phone number, microsoft office phone
number, microsoft office help phone number, microsoft office technical support
number. microsoft office number, microsoft office phone number, microsoft
office tech support number, microsoft office customer support number, microsoft
office customer support phone number, microsoft office customer service phone
number, microsoft office customer service phone number, microsoft office phone
number

microsoft office help number- microsoft office Helpline Number; microsoft
office help phone number- microsoft office Helpline Number, microsoft office
Tech Support Toll free Number, microsoft office Telephone Number, microsoft
office Tech Support Telephone number, microsoft office Tech Support contact
number, microsoft office contact number, microsoft office technical support
contact number, microsoft office help desk phone number. microsoft office
helpdesk support phone number.
Just Call-1-800-626-4703-: microsoft office helpdesk support phone number.

microsoft office technical support, microsoft office Customer Service Phone
Number, microsoft office Customer Service Number, microsoft office Customer
Support Phone Number, microsoft office Customer Support Number, microsoft
office Customer Service Helpline Number, microsoft office Customer Care Number,
microsoft office team phone number. microsoft office helpdesk support phone
number.
Call,@(+1-800-626-4703)@-: microsoft office help number- microsoft office
Helpline Number; microsoft office help phone number, microsoft office Helpline
Number, microsoft office Tech Support Toll free Number, microsoft office
Telephone Number, microsoft office Tech Support Telephone number, microsoft
office Tech Support contact number, microsoft office contact number, microsoft
office 2010 technical support contact number, 2013 microsoft office phone
number, microsoft office 2016 support phone number. microsoft office customer
support phone number.. microsoft office helpdesk reset support phone number.

microsoft office 2010 technical support, microsoft office 2013 Customer Service
Phone Number, microsoft office 2007 Customer Service Number, microsoft office
2010 Customer Support Phone Number, microsoft office 2013 Customer Support
Number, microsoft office 2013 Customer Service Helpline Number, microsoft
office 365 Customer Care Number, microsoft office team phone number. microsoft
office helpdesk support phone number
Call,@(+1-800-626-4703)@-: microsoft office 2010 help number- microsoft office
2013 Helpline Number; microsoft office 365 help phone number, microsoft office
2016 Helpline Number, microsoft office 2010 Tech Support Toll free Number,
microsoft office 2013 Telephone Number, microsoft office 2010 Tech Support
Telephone number, microsoft office 365 Tech Support contact number, microsoft
office contact number, microsoft office 2010 technical support contact number,
2013 microsoft office phone number, microsoft office 2016 support phone number.
microsoft office customer support phone number.. microsoft office helpdesk
reset support phone number

ms office 2010 technical support, ms office 2013 Customer Service Phone Number,
ms office 2007 Customer Service Number, ms office 2010 Customer Support Phone
Number, ms office 2013 Customer Support Number, ms office 2013 Customer Service
Helpline Number, ms office 365 Customer Care Number, Mail ms office team phone
number. ms office helpdesk recovery support phone number
Call,@(+1-800-626-4703)@-: ms office 2010 help number- ms office 2013 Helpline
Number; ms office 365 help phone number, ms office 2016 Helpline Number, ms
office 2010 Tech Support Toll free Number, Mail ms office 2013 Telephone
Number, ms office 2010 Tech Support Telephone number, ms office 365 Tech
Support contact number, Mail ms office contact number, ms office 2010 technical
support contact number, Mail 2013 ms office phone number, ms office 2016
support phone number. ms office customer support phone number.. ms office
helpdesk reset support phone number Disclaimer : we are the third party
technical support independent one
>From gcc-bugs-return-534671-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 23:13:51 2016
Return-Path: <gcc-bugs-return-534671-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 58201 invoked by alias); 14 Aug 2016 23:13:50 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 58192 invoked by uid 89); 14 Aug 2016 23:13:50 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyÞparture, sk:__alway, __inline, *__addr
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 23:13:40 +0000
From: "wenzel@mitsuba-renderer.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/76731] New: [AVX512] _mm512_i32gather_epi32 and other scatter/gather routines have incorrect signature
Date: Sun, 14 Aug 2016 23:13:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wenzel@mitsuba-renderer.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-76731-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02007.txt.bz2
Content-length: 1120

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76731

            Bug ID: 76731
           Summary: [AVX512] _mm512_i32gather_epi32 and other
                    scatter/gather routines have incorrect signature
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: target
          Assignee: unassigned at gcc dot gnu.org
          Reporter: wenzel@mitsuba-renderer.org
  Target Milestone: ---

All of the scatter/gather intrinsics in avx512intrin.h use int/float/double
pointers, which is incorrect.

For intsance:

extern __inline __m512i
__attribute__ ((__gnu_inline__, __always_inline__, __artificial__))
_mm512_i32gather_epi32 (__m512i __index, int const *__addr, int __scale)

These should use void*/const void* pointers according to Intel (see e.g.
https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm512_i32gather_epi32&expand=2778,2777)

This is a departure from prior mask/gather intrinsics, where type information
turned out to be a bad idea for various reasons (e.g. aliasing analysis)
>From gcc-bugs-return-534672-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 23:29:02 2016
Return-Path: <gcc-bugs-return-534672-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 4330 invoked by alias); 14 Aug 2016 23:29:01 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 4321 invoked by uid 89); 14 Aug 2016 23:29:01 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 23:28:50 +0000
From: "bergner at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/71846] PowerPC -mlra option causes 2 tests to fail
Date: Sun, 14 Aug 2016 23:29:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: bergner at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: DUPLICATE
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-71846-4-fJsU0BCFcP@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71846-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71846-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02008.txt.bz2
Content-length: 592

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71846

Peter Bergner <bergner at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |DUPLICATE

--- Comment #2 from Peter Bergner <bergner at gcc dot gnu.org> ---
Mike, this is a duplicate of the PR I've been working on and you just spec
tested my patch that fixes it.

*** This bug has been marked as a duplicate of bug 72804 ***
>From gcc-bugs-return-534673-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 23:29:55 2016
Return-Path: <gcc-bugs-return-534673-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 5206 invoked by alias); 14 Aug 2016 23:29:54 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 5191 invoked by uid 89); 14 Aug 2016 23:29:53 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 23:29:48 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/70142] Class members not in scope in exception-specification
Date: Sun, 14 Aug 2016 23:29:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.2.0
X-Bugzilla-Keywords: rejects-valid
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-70142-4-WqHjX3GJ8d@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70142-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70142-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02009.txt.bz2
Content-length: 545

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70142

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |rejects-valid
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-14
     Ever confirmed|0                           |1

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Confirmed.
>From gcc-bugs-return-534674-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 23:30:29 2016
Return-Path: <gcc-bugs-return-534674-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 6367 invoked by alias); 14 Aug 2016 23:30:29 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 6323 invoked by uid 89); 14 Aug 2016 23:30:27 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:232
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 23:30:17 +0000
From: "bergner at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72804] Poor code gen with -mvsx-timode
Date: Sun, 14 Aug 2016 23:30:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: bergner at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: bergner at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72804-4-aWMM0S7vNw@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72804-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72804-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02010.txt.bz2
Content-length: 183

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72804

--- Comment #4 from Peter Bergner <bergner at gcc dot gnu.org> ---
*** Bug 71846 has been marked as a duplicate of this bug. ***
>From gcc-bugs-return-534675-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 23:30:49 2016
Return-Path: <gcc-bugs-return-534675-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 7127 invoked by alias); 14 Aug 2016 23:30:49 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 7118 invoked by uid 89); 14 Aug 2016 23:30:48 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 23:30:38 +0000
From: "bergner at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/71846] PowerPC -mlra option causes 2 tests to fail
Date: Sun, 14 Aug 2016 23:30:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: bergner at gcc dot gnu.org
X-Bugzilla-Status: CLOSED
X-Bugzilla-Resolution: DUPLICATE
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status
Message-ID: <bug-71846-4-j5Y8ogXSZr@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71846-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71846-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02011.txt.bz2
Content-length: 396

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71846

Peter Bergner <bergner at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |CLOSED

--- Comment #3 from Peter Bergner <bergner at gcc dot gnu.org> ---
Closing as duplicate of PR72804.
>From gcc-bugs-return-534676-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 23:31:56 2016
Return-Path: <gcc-bugs-return-534676-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 11489 invoked by alias); 14 Aug 2016 23:31:55 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 11475 invoked by uid 89); 14 Aug 2016 23:31:55 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 23:31:45 +0000
From: "ppalka at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/18046] Missed jump threading optimization
Date: Sun, 14 Aug 2016 23:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords: alias, missed-optimization, TREE
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: ppalka at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: ppalka at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-18046-4-J6S3swPYXA@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-18046-4@http.gcc.gnu.org/bugzilla/>
References: <bug-18046-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02012.txt.bz2
Content-length: 461

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=18046

Patrick Palka <ppalka at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--- Comment #21 from Patrick Palka <ppalka at gcc dot gnu.org> ---
I guess this can be considered fixed now.
>From gcc-bugs-return-534677-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 14 23:32:58 2016
Return-Path: <gcc-bugs-return-534677-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 12675 invoked by alias); 14 Aug 2016 23:32:58 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 12666 invoked by uid 89); 14 Aug 2016 23:32:57 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00,TVD_SPACE_RATIO autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Aug 2016 23:32:47 +0000
From: "ppalka at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/19794] [meta-bug] Jump threading related bugs
Date: Sun, 14 Aug 2016 23:32:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: dep_changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords: meta-bug
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: ppalka at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-19794-4-OHAalm3fJg@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-19794-4@http.gcc.gnu.org/bugzilla/>
References: <bug-19794-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02013.txt.bz2
Content-length: 460

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=19794
Bug 19794 depends on bug 18046, which changed state.

Bug 18046 Summary: Missed jump threading optimization
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=18046

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED
>From gcc-bugs-return-534678-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 00:46:23 2016
Return-Path: <gcc-bugs-return-534678-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 104674 invoked by alias); 15 Aug 2016 00:46:22 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 104661 invoked by uid 89); 15 Aug 2016 00:46:21 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=sk:apinski, U*apinski, checksum, Hx-languages-length:955
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 00:46:11 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/66198] base on aarch64 compiler , fdo optimazition produce wrong result
Date: Mon, 15 Aug 2016 00:46:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 4.9.2
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.4
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_status resolution target_milestone
Message-ID: <bug-66198-4-pn9lNeGuwF@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-66198-4@http.gcc.gnu.org/bugzilla/>
References: <bug-66198-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02014.txt.bz2
Content-length: 1057

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66198

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |wrong-code
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |FIXED
   Target Milestone|---                         |5.4

--- Comment #5 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Works for me with GCC 5.4.0 from ubuntu and on the trunk so closing as fixed.
apinski@apinski-ss1:~/src/local1$ gcc -O2 -w   test.c   -fprofile-generate   -o
tmp1
apinski@apinski-ss1:~/src/local1$ result_1=`./tmp1`
apinski@apinski-ss1:~/src/local1$ gcc -w   -O2 -fbranch-probabilities 
-fprofile-use  -lm test.c -o tmp2
apinski@apinski-ss1:~/src/local1$ result_2=`./tmp2`
apinski@apinski-ss1:~/src/local1$ echo $result_1
checksum = 27A37B17
apinski@apinski-ss1:~/src/local1$ echo $result_2
checksum = 27A37B17
>From gcc-bugs-return-534679-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 01:29:44 2016
Return-Path: <gcc-bugs-return-534679-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 60406 invoked by alias); 15 Aug 2016 01:29:44 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 60395 invoked by uid 89); 15 Aug 2016 01:29:43 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 01:29:33 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug lto/69866] lto1: internal compiler error: in add_symbol_to_partition_1, at lto/lto-partition.c:158
Date: Mon, 15 Aug 2016 01:29:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: lto
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: lto
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status
Message-ID: <bug-69866-4-X06oFMs14y@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69866-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69866-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02015.txt.bz2
Content-length: 292

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69866

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |NEW
>From gcc-bugs-return-534680-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 01:45:44 2016
Return-Path: <gcc-bugs-return-534680-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 46803 invoked by alias); 15 Aug 2016 01:45:44 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 46748 invoked by uid 89); 15 Aug 2016 01:45:37 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 01:45:28 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/64380] Missed optimization: smarter dead store elimination in dtors
Date: Mon, 15 Aug 2016 01:45:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_severity
Message-ID: <bug-64380-4-5BHT5Ibpg9@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-64380-4@http.gcc.gnu.org/bugzilla/>
References: <bug-64380-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02016.txt.bz2
Content-length: 369

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64380

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |missed-optimization
           Severity|minor                       |enhancement
>From gcc-bugs-return-534681-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 02:22:25 2016
Return-Path: <gcc-bugs-return-534681-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 14966 invoked by alias); 15 Aug 2016 02:22:25 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 14951 invoked by uid 89); 15 Aug 2016 02:22:24 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 02:22:14 +0000
From: "rs2740 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/69208] &*this should not be const-qualified
Date: Mon, 15 Aug 2016 02:22:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rs2740 at gmail dot com
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: DUPLICATE
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-69208-4-ju61n6JzyM@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69208-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69208-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02017.txt.bz2
Content-length: 482

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69208

TC <rs2740 at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |DUPLICATE

--- Comment #1 from TC <rs2740 at gmail dot com> ---
Fixed as part of 56701.

*** This bug has been marked as a duplicate of bug 56701 ***
>From gcc-bugs-return-534682-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 02:22:59 2016
Return-Path: <gcc-bugs-return-534682-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 15843 invoked by alias); 15 Aug 2016 02:22:58 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 15829 invoked by uid 89); 15 Aug 2016 02:22:57 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 02:22:47 +0000
From: "rs2740 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/56701] [C++11] The *this* pointer fails to bind to rvalue reference to pointer type
Date: Mon, 15 Aug 2016 02:22:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 4.8.0
X-Bugzilla-Keywords: rejects-valid
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rs2740 at gmail dot com
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jason at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 4.9.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-56701-4-aGCeFdFzhE@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-56701-4@http.gcc.gnu.org/bugzilla/>
References: <bug-56701-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02018.txt.bz2
Content-length: 169

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=56701

--- Comment #7 from TC <rs2740 at gmail dot com> ---
*** Bug 69208 has been marked as a duplicate of this bug. ***
>From gcc-bugs-return-534683-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 03:02:12 2016
Return-Path: <gcc-bugs-return-534683-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 89374 invoked by alias); 15 Aug 2016 03:02:11 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 89364 invoked by uid 89); 15 Aug 2016 03:02:10 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 03:02:00 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/30100] missed value numbering optimization (conditional value numbers)
Date: Mon, 15 Aug 2016 03:02:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 4.3.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution target_milestone
Message-ID: <bug-30100-4-8SVY0xAUCX@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-30100-4@http.gcc.gnu.org/bugzilla/>
References: <bug-30100-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02019.txt.bz2
Content-length: 539

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=30100

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED
   Target Milestone|---                         |5.0

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Fixed since at least 5.0 (might have been fixed before that too).
>From gcc-bugs-return-534684-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 03:06:27 2016
Return-Path: <gcc-bugs-return-534684-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 91335 invoked by alias); 15 Aug 2016 03:06:26 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 91326 invoked by uid 89); 15 Aug 2016 03:06:26 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=motion, structures
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 03:06:16 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/30104] missed code motion optimization (invariant control structures)
Date: Mon, 15 Aug 2016 03:06:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 4.3.0
X-Bugzilla-Keywords: missed-optimization, TREE
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution target_milestone
Message-ID: <bug-30104-4-InG3rPmkfe@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-30104-4@http.gcc.gnu.org/bugzilla/>
References: <bug-30104-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02020.txt.bz2
Content-length: 623

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=30104

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED
   Target Milestone|---                         |5.0

--- Comment #6 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Been fixed since at least 5.0.  Might have been fixed earlier.

Note the code is not exactly the same on aarch64-linux-gnu but the inner loops
are.
>From gcc-bugs-return-534685-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 04:32:46 2016
Return-Path: <gcc-bugs-return-534685-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 56913 invoked by alias); 15 Aug 2016 04:32:46 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 56903 invoked by uid 89); 15 Aug 2016 04:32:45 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 04:32:35 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/69954] internal compiler error: in dependent_type_p, at cp/pt.c:21141
Date: Mon, 15 Aug 2016 04:32:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.2.1
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution target_milestone
Message-ID: <bug-69954-4-Fj1ANnsvEO@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69954-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69954-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02021.txt.bz2
Content-length: 497

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69954

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED
   Target Milestone|---                         |6.0

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Fixed for 6 so closing.
>From gcc-bugs-return-534686-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 04:57:25 2016
Return-Path: <gcc-bugs-return-534686-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 114395 invoked by alias); 15 Aug 2016 04:57:25 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 114384 invoked by uid 89); 15 Aug 2016 04:57:23 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Similarly, UD:com.au
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 04:57:13 +0000
From: "rusty at rustcorp dot com.au" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/76733] New: GCC should warn on repeated initializer for same array element / struct member.
Date: Mon, 15 Aug 2016 04:57:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rusty at rustcorp dot com.au
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-76733-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02022.txt.bz2
Content-length: 725

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76733

            Bug ID: 76733
           Summary: GCC should warn on repeated initializer for same array
                    element / struct member.
           Product: gcc
           Version: 5.4.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: rusty at rustcorp dot com.au
  Target Milestone: ---

Hit a nasty cut & paste bug in my code (extra comma before +3):

   int x[] = { [0] = 1, +3, [1] = 1 };

This double-initialization of x[1] should cause a warning.  Similarly:

   struct s { int a, b; } s = { .a = 1, .a = 2};

Thanks!
>From gcc-bugs-return-534687-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 05:38:03 2016
Return-Path: <gcc-bugs-return-534687-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 37458 invoked by alias); 15 Aug 2016 05:38:01 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 37424 invoked by uid 89); 15 Aug 2016 05:37:57 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 05:37:47 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/76733] GCC should warn on repeated initializer for same array element / struct member.
Date: Mon, 15 Aug 2016 05:38:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-76733-4-jksXoZ7UH7@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76733-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76733-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02023.txt.bz2
Content-length: 424

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76733

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |FIXED

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
.
>From gcc-bugs-return-534688-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 05:38:42 2016
Return-Path: <gcc-bugs-return-534688-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 38414 invoked by alias); 15 Aug 2016 05:38:42 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 38402 invoked by uid 89); 15 Aug 2016 05:38:41 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 05:38:31 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/76733] GCC should warn on repeated initializer for same array element / struct member.
Date: Mon, 15 Aug 2016 05:38:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: DUPLICATE
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: resolution
Message-ID: <bug-76733-4-WLRXnnFwi3@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76733-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76733-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02024.txt.bz2
Content-length: 433

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76733

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|FIXED                       |DUPLICATE

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Dup.

*** This bug has been marked as a duplicate of bug 76732 ***
>From gcc-bugs-return-534689-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 05:39:04 2016
Return-Path: <gcc-bugs-return-534689-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 39159 invoked by alias); 15 Aug 2016 05:39:04 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 39145 invoked by uid 89); 15 Aug 2016 05:39:03 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 05:38:53 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/76732] New: GCC should warn on repeated initializer for same array element / struct member.
Date: Mon, 15 Aug 2016 05:39:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-76732-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02025.txt.bz2
Content-length: 855

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76732

            Bug ID: 76732
           Summary: GCC should warn on repeated initializer for same array
                    element / struct member.
           Product: gcc
           Version: 5.4.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: rusty at rustcorp dot com.au
  Target Milestone: ---

Hit a nasty cut & paste bug in my code (extra comma before +3):

   int x[] = { [0] = 1, +3, [1] = 1 };

This double-initialization of x[1] should cause a warning.  Similarly:

   struct s { int a, b; } s = { .a = 1, .a = 2};

Thanks!

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
*** Bug 76733 has been marked as a duplicate of this bug. ***
>From gcc-bugs-return-534690-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 07:01:20 2016
Return-Path: <gcc-bugs-return-534690-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 102123 invoked by alias); 15 Aug 2016 07:01:19 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 102109 invoked by uid 89); 15 Aug 2016 07:01:19 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:656
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 07:01:09 +0000
From: "gilles.gouaillardet at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/67097] gcov-tool merge (can) crash when dir2 contains files not in dir1
Date: Mon, 15 Aug 2016 07:01:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 5.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: gilles.gouaillardet at gmail dot com
X-Bugzilla-Status: REOPENED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-67097-4-AReURxIJU7@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67097-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67097-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02026.txt.bz2
Content-length: 674

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67097

Gilles Gouaillardet <gilles.gouaillardet at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
         Resolution|FIXED                       |---

--- Comment #10 from Gilles Gouaillardet <gilles.gouaillardet at gmail dot com> ---
i did not see the fix in the trunk

the last change was
https://gcc.gnu.org/viewcvs/gcc?view=revision&sortby=date&revision=239307

i tried again with the latest snapshot (gcc-7-20160814) and the bug is still
here
>From gcc-bugs-return-534691-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 07:57:17 2016
Return-Path: <gcc-bugs-return-534691-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 68825 invoked by alias); 15 Aug 2016 07:57:17 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 68815 invoked by uid 89); 15 Aug 2016 07:57:16 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.3.2 spammy=rguenth, 2016-08-15
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 07:57:06 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/76732] GCC should warn on repeated initializer for same array element / struct member.
Date: Mon, 15 Aug 2016 07:57:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-76732-4-03kVLhv4bs@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76732-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76732-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02027.txt.bz2
Content-length: 484

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76732

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-15
     Ever confirmed|0                           |1

--- Comment #2 from Richard Biener <rguenth at gcc dot gnu.org> ---
Confirmed.
>From gcc-bugs-return-534692-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 07:59:39 2016
Return-Path: <gcc-bugs-return-534692-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 81714 invoked by alias); 15 Aug 2016 07:59:39 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 81703 invoked by uid 89); 15 Aug 2016 07:59:38 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.3.2 spammy­hoc
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 07:59:28 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/52198] SLP vectorization does not consider swapped operands consistently
Date: Mon, 15 Aug 2016 07:59:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 4.7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-52198-4-Yz5DrrxADp@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-52198-4@http.gcc.gnu.org/bugzilla/>
References: <bug-52198-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02028.txt.bz2
Content-length: 645

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=52198

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |FIXED

--- Comment #2 from Richard Biener <rguenth at gcc dot gnu.org> ---
I think I fixed this particular issue, OTOH generally the SLP build is too
ad-hoc to do proper graph matching in all interesting cases.  Let's close this
one though as it doesn't provide a testcase that is still failing.
>From gcc-bugs-return-534693-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 08:25:23 2016
Return-Path: <gcc-bugs-return-534693-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 6134 invoked by alias); 15 Aug 2016 08:25:23 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 6115 invoked by uid 89); 15 Aug 2016 08:25:19 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 08:25:08 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/23855] loop header should also be pulled out of the inner loop too
Date: Mon, 15 Aug 2016 08:25:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 4.1.0
X-Bugzilla-Keywords: missed-optimization, patch
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-23855-4-G3u90nuoDB@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-23855-4@http.gcc.gnu.org/bugzilla/>
References: <bug-23855-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02029.txt.bz2
Content-length: 805

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=23855

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ysrumyan at gmail dot com

--- Comment #30 from Richard Biener <rguenth at gcc dot gnu.org> ---
Well, unfortunately it doesn't fully work for

void bar(void);
void foo(int ie, int je, int ke)
{
  int i, j, k;
  for (k=0; k<ke; ++k)
    for (j=0; j<je; ++j)
      for (i=0; i<ie; ++i)
        bar();
}

it hoists the header check one level but it doesn't manage to hoist the
ie > 0 check all the way up out of the k loop.  I suppose iterating
find_loop_guard in some way would work.  I have a patch in testing.
>From gcc-bugs-return-534694-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 08:29:35 2016
Return-Path: <gcc-bugs-return-534694-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 14464 invoked by alias); 15 Aug 2016 08:29:34 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 14449 invoked by uid 89); 15 Aug 2016 08:29:33 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:252
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 08:29:23 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/76577] Tree folding may remove UB which causes invalid constexpr function calls to be accepted
Date: Mon, 15 Aug 2016 08:29:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: accepts-invalid
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-76577-4-XdEpJmIsU2@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76577-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76577-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02030.txt.bz2
Content-length: 150

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76577

--- Comment #2 from Richard Biener <rguenth at gcc dot gnu.org> ---
So we're folding too early.
>From gcc-bugs-return-534695-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 08:31:51 2016
Return-Path: <gcc-bugs-return-534695-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 17244 invoked by alias); 15 Aug 2016 08:31:51 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 17230 invoked by uid 89); 15 Aug 2016 08:31:50 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 08:31:40 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/72824] [5/6 Regression] Signed floating point zero semantics broken at optimization level -O3 (tree-loop-distribute-patterns)
Date: Mon, 15 Aug 2016 08:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72824-4-FvroIoAp7C@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72824-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72824-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02031.txt.bz2
Content-length: 635

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72824

--- Comment #9 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Author: jakub
Date: Mon Aug 15 08:31:05 2016
New Revision: 239461

URL: https://gcc.gnu.org/viewcvs?rev=239461&root=gcc&view=rev
Log:
        PR tree-optimization/72824
        * tree-loop-distribution.c (const_with_all_bytes_same)
        <case VECTOR_CST>: Fix a typo.

        * gcc.c-torture/execute/ieee/pr72824-2.c: New test.

Added:
    trunk/gcc/testsuite/gcc.c-torture/execute/ieee/pr72824-2.c
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/tree-loop-distribution.c
>From gcc-bugs-return-534696-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 08:33:17 2016
Return-Path: <gcc-bugs-return-534696-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 56787 invoked by alias); 15 Aug 2016 08:33:16 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 56775 invoked by uid 89); 15 Aug 2016 08:33:15 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.3.2 spammyÞbugged
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 08:33:05 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/76490] [5/6/7 Regression] when use -O2 -fcheck-founds compiler appears to hang and consumes all memory
Date: Mon, 15 Aug 2016 08:33:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords: compile-time-hog, memory-hog
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status assigned_to
Message-ID: <bug-76490-4-22twd6gMDG@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76490-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76490-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02032.txt.bz2
Content-length: 504

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76490

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED
           Assignee|unassigned at gcc dot gnu.org      |rguenth at gcc dot gnu.org

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
Give I've recently debugged a similar issue - mine.
>From gcc-bugs-return-534697-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 08:40:50 2016
Return-Path: <gcc-bugs-return-534697-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 77046 invoked by alias); 15 Aug 2016 08:40:45 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 77019 invoked by uid 89); 15 Aug 2016 08:40:38 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:794
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 08:40:28 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/72824] [5/6 Regression] Signed floating point zero semantics broken at optimization level -O3 (tree-loop-distribute-patterns)
Date: Mon, 15 Aug 2016 08:40:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72824-4-CZVhuZj0un@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72824-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72824-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02033.txt.bz2
Content-length: 702

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72824

--- Comment #10 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Author: jakub
Date: Mon Aug 15 08:39:55 2016
New Revision: 239462

URL: https://gcc.gnu.org/viewcvs?rev=239462&root=gcc&view=rev
Log:
        PR tree-optimization/72824
        * tree-loop-distribution.c (const_with_all_bytes_same)
        <case VECTOR_CST>: Fix a typo.

        * gcc.c-torture/execute/ieee/pr72824-2.c: New test.

Added:
    branches/gcc-6-branch/gcc/testsuite/gcc.c-torture/execute/ieee/pr72824-2.c
Modified:
    branches/gcc-6-branch/gcc/ChangeLog
    branches/gcc-6-branch/gcc/testsuite/ChangeLog
    branches/gcc-6-branch/gcc/tree-loop-distribution.c
>From gcc-bugs-return-534698-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 08:49:07 2016
Return-Path: <gcc-bugs-return-534698-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 109969 invoked by alias); 15 Aug 2016 08:49:06 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 109946 invoked by uid 89); 15 Aug 2016 08:49:03 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.3.2 spammy=DONT, DON'T, Visiting, 5047
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 08:48:52 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/76174] Missed VRP optimization
Date: Mon, 15 Aug 2016 08:49:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc short_desc
Message-ID: <bug-76174-4-CLSvYavoxa@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76174-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76174-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02034.txt.bz2
Content-length: 2203

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76174

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |rguenth at gcc dot gnu.org
            Summary|Missed loop optimization    |Missed VRP optimization

--- Comment #2 from Richard Biener <rguenth at gcc dot gnu.org> ---
The issue is that VRP doesn't handle

  <bb 3>:
  q_13 = ASSERT_EXPR <q_1, q_1 < r_6(D)>;
  if (q_13 == c_3)
    goto <bb 4>;

given

Visiting PHI node: c_3 = PHI <r_6(D)(2), c_2(5)>
    Argument #0 (2 -> 6 executable)
        r_6(D): [r_6(D), r_6(D)]
    Argument #1 (5 -> 6 not executable)
Found new range for c_3: [r_6(D), r_6(D)]

Visiting statement:
q_13 = ASSERT_EXPR <q_1, q_1 < r_6(D)>;
Applying pattern match.pd:771, generic-match.c:64
Applying pattern match.pd:808, generic-match.c:12425
Intersecting
  [0, r_6(D) + 4294967295]  EQUIVALENCES: { q_1 } (1 elements)
and
  [0, 0]
Applying pattern match.pd:2599, generic-match.c:1227
Applying pattern match.pd:2605, generic-match.c:1267
Applying pattern match.pd:3337, generic-match.c:5047
Applying pattern match.pd:2599, generic-match.c:1227
Applying pattern match.pd:2605, generic-match.c:1267
Applying pattern match.pd:3337, generic-match.c:5047
to
  [0, r_6(D) + 4294967295]  EQUIVALENCES: { q_1 } (1 elements)
Found new range for q_13: [0, r_6(D) + 4294967295]

Visiting statement:
if (q_13 == c_3)
Visiting conditional with predicate: if (q_13 == c_3)

With known ranges
        q_13: [0, r_6(D) + 4294967295]  EQUIVALENCES: { q_1 } (1 elements)     
c_3: [r_6(D), r_6(D)]

Predicate evaluates to: DON'T KNOW


VRP doesn't have a good way to represent symbolic inequality relations as
range.  To solve this issue VRP has to evaluate q_13 == c_3 as false.

I suppose one way may have been to add an assert for r_6(D) as well which
is known to be != 0 here.  But of course r_6(D) is not "live-on-edge",
it's live only through c_3s value-range.

Note that w/o the PHI for c (the c *= 2 stmt removed) DOM and other passes
can handle this just fine.
>From gcc-bugs-return-534699-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 08:50:21 2016
Return-Path: <gcc-bugs-return-534699-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 111159 invoked by alias); 15 Aug 2016 08:50:21 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 111140 invoked by uid 89); 15 Aug 2016 08:50:20 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 08:50:10 +0000
From: "amker at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/53090] suboptimal ivopt
Date: Mon, 15 Aug 2016 08:50:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 4.8.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: amker at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-53090-4-uc172RAVO0@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-53090-4@http.gcc.gnu.org/bugzilla/>
References: <bug-53090-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02035.txt.bz2
Content-length: 747

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53090

amker at gcc dot gnu.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |amker at gcc dot gnu.org

--- Comment #7 from amker at gcc dot gnu.org ---
We are almost there.  The generated assembly for both attached and extracted
case is like:

.L16:
        movl    -4(%r12,%rdx,4), %edi
        movl    (%rsi,%rax,4), %r11d
        movl    %r11d, -4(%r12,%rdx,4)
        movl    %edi, (%rsi,%rax,4)
        movl    %edx, %r11d
        movl    %eax, %edi
        addq    $1, %rdx
        subq    $1, %rax
        cmpl    %edi, %r11d
        jl      .L16
>From gcc-bugs-return-534700-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 08:50:22 2016
Return-Path: <gcc-bugs-return-534700-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 111171 invoked by alias); 15 Aug 2016 08:50:21 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 111139 invoked by uid 89); 15 Aug 2016 08:50:20 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy 16-08-15
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 08:50:16 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug debug/75194] -flto loses .debug_macro section
Date: Mon, 15 Aug 2016 08:50:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: debug
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords: lto
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on component assigned_to everconfirmed bug_severity
Message-ID: <bug-75194-4-qyEPVXpVA8@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-75194-4@http.gcc.gnu.org/bugzilla/>
References: <bug-75194-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02036.txt.bz2
Content-length: 861

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75194

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |lto
             Status|UNCONFIRMED                 |ASSIGNED
   Last reconfirmed|                            |2016-08-15
          Component|lto                         |debug
           Assignee|unassigned at gcc dot gnu.org      |rguenth at gcc dot gnu.org
     Ever confirmed|0                           |1
           Severity|normal                      |enhancement

--- Comment #3 from Richard Biener <rguenth at gcc dot gnu.org> ---
It is fixed with LTO early debug which is still in development.  There is no
way
we can currently output .debug_macros with LTO.
>From gcc-bugs-return-534701-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 08:51:45 2016
Return-Path: <gcc-bugs-return-534701-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 130594 invoked by alias); 15 Aug 2016 08:51:44 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 130577 invoked by uid 89); 15 Aug 2016 08:51:44 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:1428
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 08:51:34 +0000
From: "amodra at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/55190] ivopts causes loop setup bloat
Date: Mon, 15 Aug 2016 08:51:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 4.8.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: amodra at gmail dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: amker at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cf_gcctarget cc
Message-ID: <bug-55190-4-SDaaPBTzCv@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-55190-4@http.gcc.gnu.org/bugzilla/>
References: <bug-55190-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02037.txt.bz2
Content-length: 1782

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=55190

Alan Modra <amodra at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Target|sh*-*-* arm*-*-*            |sh*-*-* arm*-*-*
                   |                            |powerpc*-*-*
                 CC|                            |amodra at gmail dot com

--- Comment #10 from Alan Modra <amodra at gmail dot com> ---
Seen also on powerpc.  Even for simple testcases like
int b[30];
void
fn1 (unsigned int n)
{
  unsigned int i;
  for (i = 0; i < n; i++)
    b[i] = 42;
}

I see for -m32
fn1:
        cmpwi 0,3,0
        beq 0,.L1
        slwi 9,3,2      ####
        lis 10,b-4@ha
        addi 9,9,-4     ####
        la 10,b-4@l(10)
        srwi 9,9,2      ####
        li 8,42
        addi 9,9,1      ####
        mtctr 9
        .p2align 4,,15
.L3:
        stwu 8,4(10)
        bdnz .L3
.L1:
        blr
All of the insns marked #### are redundant.

For -m64 this loop doesn't even use bdnz
Loop 1 is simple:
  simple exit 4 -> 5
  infinite if: (expr_list:REG_DEP_TRUE (ne:SI (and:DI (plus:DI (minus:DI
(ashift:DI (reg:DI 189)
                        (const_int 2 [0x2]))
                    (reg:DI 179 [ ivtmp.7 ]))
                (symbol_ref:DI ("b") [flags 0x80]  <var_decl 0x7fe7521de870
b>))
            (const_int 3 [0x3]))
        (const_int 0 [0]))
    (nil))
  number of iterations: (lshiftrt:DI (plus:DI (minus:DI (reg:DI 185 [ _18 ])
            (reg:DI 179 [ ivtmp.7 ]))
        (const_int -4 [0xfffffffffffffffc]))
    (const_int 2 [0x2]))
  upper bound: 29
  likely upper bound: 29
  realistic bound: -1
Doloop: Possible infinite iteration case.
Doloop: The loop is not suitable.
>From gcc-bugs-return-534702-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 09:05:57 2016
Return-Path: <gcc-bugs-return-534702-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 77006 invoked by alias); 15 Aug 2016 09:05:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 76989 invoked by uid 89); 15 Aug 2016 09:05:56 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy115
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 09:05:46 +0000
From: "zeccav at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/67485] expmed.c sanitizer detects overflow
Date: Mon, 15 Aug 2016 09:05:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: zeccav at gmail dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: version
Message-ID: <bug-67485-4-bAv6egtEZJ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67485-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67485-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02038.txt.bz2
Content-length: 667

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67485

Vittorio Zecca <zeccav at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Version|5.2.0                       |7.0

--- Comment #3 from Vittorio Zecca <zeccav at gmail dot com> ---
Still in trunk:

~/1tb/vitti/local/gcc-7-undefined/bin/gcc -S gccerr28.c
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/expmed.c:3115:15: runtime
error: signed integer overflow: -9223372036854775808 - 1 cannot be represented
in type 'long int [3]'

expmed.c:3115 is ""val_so_far -= HOST_WIDE_INT_1 << log;
>From gcc-bugs-return-534703-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 09:06:40 2016
Return-Path: <gcc-bugs-return-534703-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 81849 invoked by alias); 15 Aug 2016 09:06:40 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 81839 invoked by uid 89); 15 Aug 2016 09:06:39 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 09:06:29 +0000
From: "amker at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/53090] suboptimal ivopt
Date: Mon, 15 Aug 2016 09:06:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 4.8.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: amker at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-53090-4-UsCQQhRISD@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-53090-4@http.gcc.gnu.org/bugzilla/>
References: <bug-53090-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02039.txt.bz2
Content-length: 294

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53090

--- Comment #8 from amker at gcc dot gnu.org ---
The additional copy instruction is because IVOPT doesn't rewrite
non-linear/comparison IV_use before the use point, instead, it rewrites it at
the statement the IV_use variable is defined.
>From gcc-bugs-return-534704-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 09:14:59 2016
Return-Path: <gcc-bugs-return-534704-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 100661 invoked by alias); 15 Aug 2016 09:14:59 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 100652 invoked by uid 89); 15 Aug 2016 09:14:58 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=thomas.preudhomme@arm.com, thomaspreudhommearmcom, U*thomas.preudhomme, 2016-08-15
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 09:14:48 +0000
From: "thopre01 at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug testsuite/72840] PASS->NA: 20_util/ratio/cons/cons_overflow_neg.cc
Date: Mon, 15 Aug 2016 09:14:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: testsuite
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: thopre01 at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72840-4-6aadv76YWE@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72840-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72840-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02040.txt.bz2
Content-length: 553

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72840

--- Comment #2 from Thomas Preud'homme <thopre01 at gcc dot gnu.org> ---
Author: thopre01
Date: Mon Aug 15 09:14:15 2016
New Revision: 239463

URL: https://gcc.gnu.org/viewcvs?rev=239463&root=gcc&view=rev
Log:
2016-08-15  Thomas Preud'homme  <thomas.preudhomme@arm.com>

    PR libstdc++/72840
    * testsuite/20_util/ratio/cons/cons_overflow_neg.cc: Fix dg-error
    syntax.

Modified:
    trunk/libstdc++-v3/ChangeLog
    trunk/libstdc++-v3/testsuite/20_util/ratio/cons/cons_overflow_neg.cc
>From gcc-bugs-return-534705-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 09:18:10 2016
Return-Path: <gcc-bugs-return-534705-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 111582 invoked by alias); 15 Aug 2016 09:18:10 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 111516 invoked by uid 89); 15 Aug 2016 09:18:09 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 09:17:59 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug testsuite/72841] PASS->NA: 20_util/tuple/cons/66338.cc execution test
Date: Mon, 15 Aug 2016 09:18:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: testsuite
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: redi at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on assigned_to target_milestone everconfirmed
Message-ID: <bug-72841-4-6E9vV1rOvk@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72841-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72841-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02041.txt.bz2
Content-length: 542

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72841

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |ASSIGNED
   Last reconfirmed|                            |2016-08-15
           Assignee|unassigned at gcc dot gnu.org      |redi at gcc dot gnu.org
   Target Milestone|---                         |7.0
     Ever confirmed|0                           |1
>From gcc-bugs-return-534706-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 09:19:17 2016
Return-Path: <gcc-bugs-return-534706-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 113086 invoked by alias); 15 Aug 2016 09:19:16 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 113061 invoked by uid 89); 15 Aug 2016 09:19:15 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:1083
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 09:19:06 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/76490] [5/6/7 Regression] when use -O2 -fcheck-founds compiler appears to hang and consumes all memory
Date: Mon, 15 Aug 2016 09:19:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords: compile-time-hog, memory-hog
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-76490-4-dkrcqGkcGZ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76490-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76490-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02042.txt.bz2
Content-length: 960

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76490

--- Comment #5 from Richard Biener <rguenth at gcc dot gnu.org> ---
Found new range for isize_3: [1, +INF]
Found new range for isize_20: [1, +INF]
Found new range for isize_5: [1, +INF]
Found new range for _12: [0, 2147483646]
Found new range for _4: [1, 2147483646]
Found new range for isize_3: [1, +INF(OVF)]
Found new range for isize_20: [1, +INF(OVF)]
Found new range for isize_5: [1, +INF(OVF)]
Found new range for _12: [0, +INF(OVF)]
Found new range for _4: [0, +INF]
Found new range for isize_3: [1, +INF]
Found new range for isize_20: [1, +INF]
Found new range for isize_5: [1, +INF]
Found new range for _12: [0, 2147483646]
Found new range for _4: [1, 2147483646]
Found new range for isize_3: [1, +INF(OVF)]
Found new range for isize_20: [1, +INF(OVF)]
...

this happens because intersect_ranges doesn't handle +INF vs. +INF(OVF)
correctly
(operand_equal_p treats them as equal).  I have a patch.
>From gcc-bugs-return-534707-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 09:19:17 2016
Return-Path: <gcc-bugs-return-534707-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 113108 invoked by alias); 15 Aug 2016 09:19:17 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 113059 invoked by uid 89); 15 Aug 2016 09:19:15 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-0.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00,LIKELY_SPAM_BODY,PLING_QUERY autolearn=no version=3.3.2 spammy=dial, Dial, Hx-languages-length:2029, Forgot
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 09:19:05 +0000
From: "j.a.c.ksf.tt at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/76735] New: Dial !!~ 1 888 811 4532$$~ Skype Forgot Password ?
Date: Mon, 15 Aug 2016 09:19:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: j.a.c.ksf.tt at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-76735-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02043.txt.bz2
Content-length: 2068

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76735

            Bug ID: 76735
           Summary: Dial !!~ 1 888 811 4532$$~ Skype Forgot Password ?
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ada
          Assignee: unassigned at gcc dot gnu.org
          Reporter: j.a.c.ksf.tt at gmail dot com
  Target Milestone: ---

Skype Forgot Password Dial 1 888 811 4532 Skype Support Number,,skype customer
service phone number,,
skype phone,,
skype customer service,,
skype phone number,,
skype contact number,,
skype support number,,
skype customer support,,
skype tech support,,
skype technical support,,
skype help number,,
skype customer service number,,
phone number for skype,,
skype telephone number,,
skype customer service 800 number,,
skype support phone number,,
skype phone service,,
skype customer service chat,,
contact skype,,
skype customer service phone number
skype phone
skype customer service
skype phone number
skype contact number
skype support number
skype customer support
skype tech support
skype technical support
skype help number
phone number for skype
skype telephone number
skype customer service 800 number
skype support phone number
skype phone service
skype customer service chat
contact skype
skype 800 number
call skype customer service
skype toll free number
skype numbers
skype contact
contact skype support
skype help phone number
skype customer support phone number
call skype support
skype contact phone number
skype phone numbers
free skype phone number
skype customer service phone
skype support chat
skype contact info
get a skype phone number
skype customer phone number
how to contact skype
skype number
skype email support
skype contact us
skype contacts
skype live support
skype support email
how do i contact Skype
what is a skype number
skype telephone
skype contact list
skype online number
skype call
skype live chat support
skype help chat
skype chat support
skype support
support.skype.com
skype live chat
>From gcc-bugs-return-534709-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 09:23:47 2016
Return-Path: <gcc-bugs-return-534709-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 56266 invoked by alias); 15 Aug 2016 09:23:47 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 56250 invoked by uid 89); 15 Aug 2016 09:23:45 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=0.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_05,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammyÊmera, Camera, 4532, UD:c.ksf.tt
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 09:23:36 +0000
From: "j.a.c.ksf.tt at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/76737] New: SKYPE Support!!@~!1 888 811 4532 Skype Camera Not  Working
Date: Mon, 15 Aug 2016 09:23:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: j.a.c.ksf.tt at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-76737-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02045.txt.bz2
Content-length: 1858

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76737

            Bug ID: 76737
           Summary: SKYPE Support!!@~!1 888 811 4532 Skype Camera Not
                    Working
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ada
          Assignee: unassigned at gcc dot gnu.org
          Reporter: j.a.c.ksf.tt at gmail dot com
  Target Milestone: ---

skype customer service phone number     []1 888 811 4532[]
skype phone     []1 888 811 4532[]
skype customer service  []1 888 811 4532[]
skype phone number      []1 888 811 4532[]
skype contact number    []1 888 811 4532[]
skype support number    []1 888 811 4532[]
skype customer support  []1 888 811 4532[]
skype tech support      []1 888 811 4532[]
skype technical support []1 888 811 4532[]
skype help number       []1 888 811 4532[]
skype customer service number   []1 888 811 4532[]
phone number for skype  []1 888 811 4532[]
skype telephone number  []1 888 811 4532[]
skype customer service 800 number       []1 888 811 4532[]
skype support phone number      []1 888 811 4532[]
skype phone service     []1 888 811 4532[]
skype customer service chat     []1 888 811 4532[]
contact skype   []1 888 811 4532[]
skype 800 number        []1 888 811 4532[]
call skype customer service     []1 888 811 4532[]
skype toll free number  []1 888 811 4532[]
skype numbers   []1 888 811 4532[]
skype contact   []1 888 811 4532[]
contact skype support   []1 888 811 4532[]
skype help phone number []1 888 811 4532[]
skype customer support phone number     []1 888 811 4532[]
call skype support      []1 888 811 4532[]
skype contact phone number      []1 888 811 4532[]
skype phone numbers     []1 888 811 4532[]
free skype phone number []1 888 811 4532[]
skype customer service phone    []1 888 811 4532[]
>From gcc-bugs-return-534708-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 09:23:23 2016
Return-Path: <gcc-bugs-return-534708-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 55367 invoked by alias); 15 Aug 2016 09:23:23 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 55354 invoked by uid 89); 15 Aug 2016 09:23:22 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=0.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_05,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammyÊmera, Camera, 4532, UD:c.ksf.tt
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 09:23:12 +0000
From: "j.a.c.ksf.tt at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/76736] New: SKYPE Support!!@~!1 888 811 4532 Skype Camera Not  Working
Date: Mon, 15 Aug 2016 09:23:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: j.a.c.ksf.tt at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-76736-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02044.txt.bz2
Content-length: 1858

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76736

            Bug ID: 76736
           Summary: SKYPE Support!!@~!1 888 811 4532 Skype Camera Not
                    Working
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ada
          Assignee: unassigned at gcc dot gnu.org
          Reporter: j.a.c.ksf.tt at gmail dot com
  Target Milestone: ---

skype customer service phone number     []1 888 811 4532[]
skype phone     []1 888 811 4532[]
skype customer service  []1 888 811 4532[]
skype phone number      []1 888 811 4532[]
skype contact number    []1 888 811 4532[]
skype support number    []1 888 811 4532[]
skype customer support  []1 888 811 4532[]
skype tech support      []1 888 811 4532[]
skype technical support []1 888 811 4532[]
skype help number       []1 888 811 4532[]
skype customer service number   []1 888 811 4532[]
phone number for skype  []1 888 811 4532[]
skype telephone number  []1 888 811 4532[]
skype customer service 800 number       []1 888 811 4532[]
skype support phone number      []1 888 811 4532[]
skype phone service     []1 888 811 4532[]
skype customer service chat     []1 888 811 4532[]
contact skype   []1 888 811 4532[]
skype 800 number        []1 888 811 4532[]
call skype customer service     []1 888 811 4532[]
skype toll free number  []1 888 811 4532[]
skype numbers   []1 888 811 4532[]
skype contact   []1 888 811 4532[]
contact skype support   []1 888 811 4532[]
skype help phone number []1 888 811 4532[]
skype customer support phone number     []1 888 811 4532[]
call skype support      []1 888 811 4532[]
skype contact phone number      []1 888 811 4532[]
skype phone numbers     []1 888 811 4532[]
free skype phone number []1 888 811 4532[]
skype customer service phone    []1 888 811 4532[]
>From gcc-bugs-return-534710-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 09:25:04 2016
Return-Path: <gcc-bugs-return-534710-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 61268 invoked by alias); 15 Aug 2016 09:25:03 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 61212 invoked by uid 89); 15 Aug 2016 09:25:03 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:631
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 09:24:53 +0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/67097] gcov-tool merge (can) crash when dir2 contains files not in dir1
Date: Mon, 15 Aug 2016 09:25:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 5.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: REOPENED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-67097-4-FyWDoouSBd@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67097-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67097-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02046.txt.bz2
Content-length: 565

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67097

--- Comment #11 from Martin Liška <marxin at gcc dot gnu.org> ---
(In reply to Gilles Gouaillardet from comment #10)
> i did not see the fix in the trunk
> 
> the last change was
> https://gcc.gnu.org/viewcvs/gcc?view=revision&sortby=date&revision=239307
> 
> i tried again with the latest snapshot (gcc-7-20160814) and the bug is still
> here

Sorry about the inconvenience, I closed multiple issues, but unfortunately this
PR is still waiting for final confirmation. I'll try to ping it.
>From gcc-bugs-return-534711-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 09:28:51 2016
Return-Path: <gcc-bugs-return-534711-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 74815 invoked by alias); 15 Aug 2016 09:28:50 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 74761 invoked by uid 89); 15 Aug 2016 09:28:50 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 09:28:40 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/60042] vectorizer still does too many dependence tests for himeno:jacobi
Date: Mon, 15 Aug 2016 09:28:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-60042-4-NFuvONGQVE@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-60042-4@http.gcc.gnu.org/bugzilla/>
References: <bug-60042-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02047.txt.bz2
Content-length: 446

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60042

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |amker.cheng at gmail dot com

--- Comment #11 from Richard Biener <rguenth at gcc dot gnu.org> ---
Trunk still has 22 alias checks (so it even got worse).
>From gcc-bugs-return-534712-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 09:30:40 2016
Return-Path: <gcc-bugs-return-534712-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 78250 invoked by alias); 15 Aug 2016 09:30:35 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 78208 invoked by uid 89); 15 Aug 2016 09:30:31 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 09:30:21 +0000
From: "cltang at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug other/76739] New: Add support dynamically allocated multi-dimensional arrays in OpenACC data clauses
Date: Mon, 15 Aug 2016 09:30:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: other
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: cltang at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-76739-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02048.txt.bz2
Content-length: 740

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76739

            Bug ID: 76739
           Summary: Add support dynamically allocated multi-dimensional
                    arrays in OpenACC data clauses
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: enhancement
          Priority: P3
         Component: other
          Assignee: unassigned at gcc dot gnu.org
          Reporter: cltang at gcc dot gnu.org
  Target Milestone: ---

According to the OpenACC specification, dynamically allocated multi-dimensional
arrays are to be supported in C/C++, for example:

  typedef float row[200]; row* BB;

  float* CC[200];

  float** DD;

We will be using this PR to track this development.
>From gcc-bugs-return-534713-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 09:31:15 2016
Return-Path: <gcc-bugs-return-534713-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 79559 invoked by alias); 15 Aug 2016 09:31:15 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 79538 invoked by uid 89); 15 Aug 2016 09:31:14 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_05 autolearn=ham version=3.3.2 spammy=dial, Dial, 4532, UD:c.ksf.tt
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 09:31:04 +0000
From: "j.a.c.ksf.tt at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/76740] New: Dial+1 888 811 4532 Skype Password Change
Date: Mon, 15 Aug 2016 09:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: j.a.c.ksf.tt at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-76740-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02049.txt.bz2
Content-length: 1870

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76740

            Bug ID: 76740
           Summary: Dial+1 888 811 4532 Skype Password Change
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ada
          Assignee: unassigned at gcc dot gnu.org
          Reporter: j.a.c.ksf.tt at gmail dot com
  Target Milestone: ---

skype com changepassword        []1 888 811 4532[]
change skype id []1 888 811 4532[]
change skype account name       []1 888 811 4532[]
skype lost password     []1 888 811 4532[]
forgot password skype   []1 888 811 4532[]
i forgot my skype password      []1 888 811 4532[]
skype password forgot   []1 888 811 4532[]
forgot my skype password        []1 888 811 4532[]
how to hack skype password      []1 888 811 4532[]
how to recover skype password   []1 888 811 4532[]
skype forgot password   []1 888 811 4532[]
how to reset skype password     []1 888 811 4532[]
skype password hack     []1 888 811 4532[]
how to change password on skype []1 888 811 4532[]
how to change skype password    []1 888 811 4532[]
forgot skype password   []1 888 811 4532[]
forgot my skype name    []1 888 811 4532[]
forgot skype name       []1 888 811 4532[]
skype forgot username   []1 888 811 4532[]
forgot skype username   []1 888 811 4532[]
skype security issues   []1 888 811 4532[]
i forgot my skype name  []1 888 811 4532[]
how to change my skype password []1 888 811 4532[]
how to change your skype password       []1 888 811 4532[]
how do i change my skype password       []1 888 811 4532[]
how to get someones skype password      []1 888 811 4532[]
i forgot my skype username      []1 888 811 4532[]
skype login problem     []1 888 811 4532[]
skype problem   []1 888 811 4532[]
skype sign in problem   []1 888 811 4532[]
skype error     []1 888 811 4532[]
>From gcc-bugs-return-534714-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 09:31:15 2016
Return-Path: <gcc-bugs-return-534714-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 79573 invoked by alias); 15 Aug 2016 09:31:15 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 79536 invoked by uid 89); 15 Aug 2016 09:31:14 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 09:31:06 +0000
From: "cltang at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug other/76739] Add support dynamically allocated multi-dimensional arrays in OpenACC data clauses
Date: Mon, 15 Aug 2016 09:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: other
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: cltang at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: cltang at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on assigned_to everconfirmed
Message-ID: <bug-76739-4-A3X3ZbvTvB@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76739-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76739-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02050.txt.bz2
Content-length: 492

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76739

Chung-Lin Tang <cltang at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |ASSIGNED
   Last reconfirmed|                            |2016-08-15
           Assignee|unassigned at gcc dot gnu.org      |cltang at gcc dot gnu.org
     Ever confirmed|0                           |1
>From gcc-bugs-return-534715-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 09:34:05 2016
Return-Path: <gcc-bugs-return-534715-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 97200 invoked by alias); 15 Aug 2016 09:34:05 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 97190 invoked by uid 89); 15 Aug 2016 09:34:04 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=D*!, logging, recording, signing
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 09:33:54 +0000
From: "j.a.c.ksf.tt at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/76741] New: @@!~1 888 811 4532 Skype Forgot Username
Date: Mon, 15 Aug 2016 09:34:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: j.a.c.ksf.tt at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-76741-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02051.txt.bz2
Content-length: 1794

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76741

            Bug ID: 76741
           Summary: @@!~1 888 811 4532 Skype Forgot Username
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ada
          Assignee: unassigned at gcc dot gnu.org
          Reporter: j.a.c.ksf.tt at gmail dot com
  Target Milestone: ---

how to change my skype password []1 888 811 4532[]
how to change your skype password       []1 888 811 4532[]
how do i change my skype password       []1 888 811 4532[]
how to get someones skype password      []1 888 811 4532[]
i forgot my skype username      []1 888 811 4532[]
skype login problem     []1 888 811 4532[]
skype problem   []1 888 811 4532[]
skype sign in problem   []1 888 811 4532[]
skype error     []1 888 811 4532[]
skype issues    []1 888 811 4532[]
skype problems signing in       []1 888 811 4532[]
skype problems today    []1 888 811 4532[]
troubleshooting skype   []1 888 811 4532[]
skype help      []1 888 811 4532[]
skype troubleshooting   []1 888 811 4532[]
skype login issues      []1 888 811 4532[]
skype issues today      []1 888 811 4532[]
skype not signing in    []1 888 811 4532[]
problems with skype     []1 888 811 4532[]
login to skype  []1 888 811 4532[]
can t sign into skype   []1 888 811 4532[]
skype connection problems       []1 888 811 4532[]
skype wont let me log in        []1 888 811 4532[]
skype not logging in    []1 888 811 4532[]
skype is not working    []1 888 811 4532[]
skype problem with recording device     []1 888 811 4532[]
cant sign in to skype   []1 888 811 4532[]
skype not working       []1 888 811 4532[]
skype not responding    []1 888 811 4532[]
skype problem with playback device      []1 888 811 4532[]
>From gcc-bugs-return-534716-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 09:40:08 2016
Return-Path: <gcc-bugs-return-534716-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 122370 invoked by alias); 15 Aug 2016 09:40:07 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 122354 invoked by uid 89); 15 Aug 2016 09:40:07 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyÊmera, Audio, usa1, USA1
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 09:39:57 +0000
From: "j.a.c.ksf.tt at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug boehm-gc/76744] New: !!~USA@1 888 811 4532 Skype Audio Not Working
Date: Mon, 15 Aug 2016 09:40:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: boehm-gc
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: j.a.c.ksf.tt at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-76744-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02052.txt.bz2
Content-length: 1409

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76744

            Bug ID: 76744
           Summary: !!~USA@1 888 811 4532 Skype Audio Not Working
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: boehm-gc
          Assignee: unassigned at gcc dot gnu.org
          Reporter: j.a.c.ksf.tt at gmail dot com
  Target Milestone: ---

skype screen sharing not working        []1 888 811 4532[]
microphone not working in skype []1 888 811 4532[]
skype network status    []1 888 811 4532[]
is skype working        []1 888 811 4532[]
whats wrong with skype  []1 888 811 4532[]
microphone on skype not working []1 888 811 4532[]
skype is down today     []1 888 811 4532[]
my skype isn t working  []1 888 811 4532[]
skype camera not  working       []1 888 811 4532[]
skype microphone        []1 888 811 4532[]
windows 8 camera not working    []1 888 811 4532[]
no video on skype       []1 888 811 4532[]
skype no video  []1 888 811 4532[]
webcam is not working   []1 888 811 4532[]
how to fix webcam       []1 888 811 4532[]
how to fix skype        []1 888 811 4532[]
skype not detecting webcam      []1 888 811 4532[]
how to turn on camera on skype  []1 888 811 4532[]
skype can t detect webcam       []1 888 811 4532[]
skype wont show video   []1 888 811 4532[]
how to test camera on skype     []1 888 811 4532[]
>From gcc-bugs-return-534717-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 09:45:14 2016
Return-Path: <gcc-bugs-return-534717-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 129287 invoked by alias); 15 Aug 2016 09:45:05 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 129256 invoked by uid 89); 15 Aug 2016 09:45:04 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-0.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=Hx-languages-length:1446, telephone, toll, Skype
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 09:44:54 +0000
From: "j.a.c.ksf.tt at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/76745] New: SKYPE Number 1888 811 4532 Skype Audio Not Working
Date: Mon, 15 Aug 2016 09:45:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: j.a.c.ksf.tt at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-76745-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02053.txt.bz2
Content-length: 1552

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76745

            Bug ID: 76745
           Summary: SKYPE Number 1888 811 4532 Skype Audio Not Working
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: j.a.c.ksf.tt at gmail dot com
  Target Milestone: ---

skype customer service phone number     {{{1 888 811 4532}}}
skype phone     {{{1 888 811 4532}}}
skype customer service  {{{1 888 811 4532}}}
skype phone number      {{{1 888 811 4532}}}
skype contact number    {{{1 888 811 4532}}}
skype support number    {{{1 888 811 4532}}}
skype customer support  {{{1 888 811 4532}}}
skype tech support      {{{1 888 811 4532}}}
skype technical support {{{1 888 811 4532}}}
skype help number       {{{1 888 811 4532}}}
skype customer service number   {{{1 888 811 4532}}}
phone number for skype  {{{1 888 811 4532}}}
skype telephone number  {{{1 888 811 4532}}}
skype customer service 800 number       {{{1 888 811 4532}}}
skype support phone number      {{{1 888 811 4532}}}
skype phone service     {{{1 888 811 4532}}}
skype customer service chat     {{{1 888 811 4532}}}
contact skype   {{{1 888 811 4532}}}
skype 800 number        {{{1 888 811 4532}}}
call skype customer service     {{{1 888 811 4532}}}
skype toll free number  {{{1 888 811 4532}}}
skype numbers   {{{1 888 811 4532}}}
skype contact   {{{1 888 811 4532}}}
contact skype support   {{{1 888 811 4532}}}
>From gcc-bugs-return-534718-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 09:48:21 2016
Return-Path: <gcc-bugs-return-534718-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 1848 invoked by alias); 15 Aug 2016 09:48:04 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 1812 invoked by uid 89); 15 Aug 2016 09:48:02 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 09:47:52 +0000
From: "vehre at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/70524] [5/6/7 Regression] ICE when using  -frepack-arrays -Warray-temporaries
Date: Mon, 15 Aug 2016 09:48:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: vehre at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: vehre at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-70524-4-pIH2BmzAVa@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70524-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70524-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02054.txt.bz2
Content-length: 419

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70524

vehre at gcc dot gnu.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |RESOLVED
         Resolution|---                         |FIXED

--- Comment #13 from vehre at gcc dot gnu.org ---
No regressions reported, closing.
>From gcc-bugs-return-534719-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 09:51:21 2016
Return-Path: <gcc-bugs-return-534719-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 22403 invoked by alias); 15 Aug 2016 09:51:21 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 22391 invoked by uid 89); 15 Aug 2016 09:51:20 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 09:51:10 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug debug/71906] [6/7 Regression] Fortran allocatable strings debug info type size regression
Date: Mon, 15 Aug 2016 09:51:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: debug
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71906-4-xlfvU4d0Dt@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71906-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71906-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02055.txt.bz2
Content-length: 1179

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71906

--- Comment #6 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Author: jakub
Date: Mon Aug 15 09:50:33 2016
New Revision: 239469

URL: https://gcc.gnu.org/viewcvs?rev=239469&root=gcc&view=rev
Log:
        PR debug/71906
        * dwarf2out.c (string_types): New variable.
        (gen_array_type_die): Change early_dwarf handling of
        DW_AT_string_length, create DW_OP_call4 referencing the
        length var temporarily.  Handle parameters that are pointers
        to string length.
        (adjust_string_types): New function.
        (gen_subprogram_die): Temporarily set string_types to local var,
        call adjust_string_types if needed.
        (non_dwarf_expression, copy_deref_exprloc, optimize_string_length):
        New functions.
        (resolve_addr): Adjust DW_AT_string_length if it is DW_OP_call4.

        * trans-decl.c (gfc_get_symbol_decl): Call gfc_finish_var_decl
        for decl's character length before gfc_finish_var_decl on the
        decl itself.

Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/dwarf2out.c
    trunk/gcc/fortran/ChangeLog
    trunk/gcc/fortran/trans-decl.c
>From gcc-bugs-return-534720-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 09:52:21 2016
Return-Path: <gcc-bugs-return-534720-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 57346 invoked by alias); 15 Aug 2016 09:52:21 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 57334 invoked by uid 89); 15 Aug 2016 09:52:20 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: =?ISO-8859-1?Q?No, score=1.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=8:-1, 8:¸â, 8:1-, 8:32?X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 09:52:10 +0000
From: "j.a.c.ksf.tt at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/76746] New: Dial+18881E32 Skype Audio Not Working
Date: Mon, 15 Aug 2016 09:52:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: j.a.c.ksf.tt at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-76746-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02056.txt.bz2
Content-length: 4500

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76746

            Bug ID: 76746
           Summary: Dial+1888=811=4532 Skype Audio Not Working
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ada
          Assignee: unassigned at gcc dot gnu.org
          Reporter: j.a.c.ksf.tt at gmail dot com
  Target Milestone: ---

skype customer service phone number     ⫸⫷1-8888-11-4532⫸⫷
skype phone     ⫸⫷1-8888-11-4532⫸⫷
skype customer service  ⫸⫷1-8888-11-4532⫸⫷
skype phone number      ⫸⫷1-8888-11-4532⫸⫷
skype contact number    ⫸⫷1-8888-11-4532⫸⫷
skype support number    ⫸⫷1-8888-11-4532⫸⫷
skype customer support  ⫸⫷1-8888-11-4532⫸⫷
skype tech support      ⫸⫷1-8888-11-4532⫸⫷
skype technical support ⫸⫷1-8888-11-4532⫸⫷
skype help number       ⫸⫷1-8888-11-4532⫸⫷
        ⫸⫷1-8888-11-4532⫸⫷
phone number for skype  ⫸⫷1-8888-11-4532⫸⫷
skype telephone number  ⫸⫷1-8888-11-4532⫸⫷
skype customer service 800 number       ⫸⫷1-8888-11-4532⫸⫷
skype support phone number      ⫸⫷1-8888-11-4532⫸⫷
skype phone service     ⫸⫷1-8888-11-4532⫸⫷
skype customer service chat     ⫸⫷1-8888-11-4532⫸⫷
contact skype   ⫸⫷1-8888-11-4532⫸⫷
skype 800 number        ⫸⫷1-8888-11-4532⫸⫷
call skype customer service     ⫸⫷1-8888-11-4532⫸⫷
skype toll free number  ⫸⫷1-8888-11-4532⫸⫷
skype numbers   ⫸⫷1-8888-11-4532⫸⫷
skype contact   ⫸⫷1-8888-11-4532⫸⫷
contact skype support   ⫸⫷1-8888-11-4532⫸⫷
skype help phone number ⫸⫷1-8888-11-4532⫸⫷
skype customer support phone number     ⫸⫷1-8888-11-4532⫸⫷
call skype support      ⫸⫷1-8888-11-4532⫸⫷
skype contact phone number      ⫸⫷1-8888-11-4532⫸⫷
skype phone numbers     ⫸⫷1-8888-11-4532⫸⫷
free skype phone number ⫸⫷1-8888-11-4532⫸⫷
skype customer service phone    ⫸⫷1-8888-11-4532⫸⫷
skype support chat      ⫸⫷1-8888-11-4532⫸⫷
skype contact info      ⫸⫷1-8888-11-4532⫸⫷
get a skype phone number        ⫸⫷1-8888-11-4532⫸⫷
skype customer phone number     ⫸⫷1-8888-11-4532⫸⫷
how to contact skype    ⫸⫷1-8888-11-4532⫸⫷
skype number    ⫸⫷1-8888-11-4532⫸⫷
skype email support     ⫸⫷1-8888-11-4532⫸⫷
skype contact us        ⫸⫷1-8888-11-4532⫸⫷
skype contacts  ⫸⫷1-8888-11-4532⫸⫷
skype live support      ⫸⫷1-8888-11-4532⫸⫷
skype support email     ⫸⫷1-8888-11-4532⫸⫷
how do i contact Skype  ⫸⫷1-8888-11-4532⫸⫷
what is a skype number  ⫸⫷1-8888-11-4532⫸⫷
skype telephone ⫸⫷1-8888-11-4532⫸⫷
skype contact list      ⫸⫷1-8888-11-4532⫸⫷
skype online number     ⫸⫷1-8888-11-4532⫸⫷
skype call      ⫸⫷1-8888-11-4532⫸⫷
skype live chat support ⫸⫷1-8888-11-4532⫸⫷
skype help chat ⫸⫷1-8888-11-4532⫸⫷
skype chat support      ⫸⫷1-8888-11-4532⫸⫷
skype support   ⫸⫷1-8888-11-4532⫸⫷
support.skype.com       ⫸⫷1-8888-11-4532⫸⫷
skype live chat ⫸⫷1-8888-11-4532⫸⫷
>From gcc-bugs-return-534721-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 09:56:46 2016
Return-Path: <gcc-bugs-return-534721-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 7294 invoked by alias); 15 Aug 2016 09:56:46 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 6191 invoked by uid 89); 15 Aug 2016 09:56:45 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=tbaa, TBAA, forwarding
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 09:56:35 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/73434] [6/7 Regression] Wrong code with casting, branches and aliasing
Date: Mon, 15 Aug 2016 09:56:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-73434-4-THgKqJzL53@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73434-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73434-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02057.txt.bz2
Content-length: 701

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73434

--- Comment #5 from Richard Biener <rguenth at gcc dot gnu.org> ---
Author: rguenth
Date: Mon Aug 15 09:56:00 2016
New Revision: 239471

URL: https://gcc.gnu.org/viewcvs?rev=239471&root=gcc&view=rev
Log:
2016-08-15  Richard Biener  <rguenther@suse.de>

        PR tree-optimization/73434
        * tree-ssa-sccvn.c (vn_reference_maybe_forwprop_address): Preserve
        TBAA info on the base when forwarding a non-invariant address.

        * gcc.dg/torture/pr73434.c: New testcase.

Added:
    trunk/gcc/testsuite/gcc.dg/torture/pr73434.c
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/tree-ssa-sccvn.c
>From gcc-bugs-return-534722-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 10:01:05 2016
Return-Path: <gcc-bugs-return-534722-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 47627 invoked by alias); 15 Aug 2016 10:01:05 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 47616 invoked by uid 89); 15 Aug 2016 10:01:05 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=forwarding
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 10:00:55 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/73434] [6/7 Regression] Wrong code with casting, branches and aliasing
Date: Mon, 15 Aug 2016 10:01:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-73434-4-RUWE7aOiSa@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73434-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73434-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02058.txt.bz2
Content-length: 765

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73434

--- Comment #6 from Richard Biener <rguenth at gcc dot gnu.org> ---
Author: rguenth
Date: Mon Aug 15 10:00:21 2016
New Revision: 239472

URL: https://gcc.gnu.org/viewcvs?rev=239472&root=gcc&view=rev
Log:
2016-08-15  Richard Biener  <rguenther@suse.de>

        PR tree-optimization/73434
        * tree-ssa-sccvn.c (vn_reference_maybe_forwprop_address): Preserve
        TBAA info on the base when forwarding a non-invariant address.

        * gcc.dg/torture/pr73434.c: New testcase.

Added:
    branches/gcc-6-branch/gcc/testsuite/gcc.dg/torture/pr73434.c
Modified:
    branches/gcc-6-branch/gcc/ChangeLog
    branches/gcc-6-branch/gcc/testsuite/ChangeLog
    branches/gcc-6-branch/gcc/tree-ssa-sccvn.c
>From gcc-bugs-return-534724-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 10:01:56 2016
Return-Path: <gcc-bugs-return-534724-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 49320 invoked by alias); 15 Aug 2016 10:01:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 49297 invoked by uid 89); 15 Aug 2016 10:01:55 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 10:01:46 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/73434] [6/7 Regression] Wrong code with casting, branches and aliasing
Date: Mon, 15 Aug 2016 10:01:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-73434-4-Dp0W3xLas4@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73434-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73434-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02060.txt.bz2
Content-length: 441

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73434

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #7 from Richard Biener <rguenth at gcc dot gnu.org> ---
Fixed for GCC 6.2.
>From gcc-bugs-return-534723-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 10:01:14 2016
Return-Path: <gcc-bugs-return-534723-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 48333 invoked by alias); 15 Aug 2016 10:01:14 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 48315 invoked by uid 89); 15 Aug 2016 10:01:13 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=forwarding
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 10:01:03 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/73434] [6/7 Regression] Wrong code with casting, branches and aliasing
Date: Mon, 15 Aug 2016 10:01:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-73434-4-oMWim6nGoY@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73434-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73434-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02059.txt.bz2
Content-length: 1153

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73434

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #6 from Richard Biener <rguenth at gcc dot gnu.org> ---
Author: rguenth
Date: Mon Aug 15 10:00:21 2016
New Revision: 239472

URL: https://gcc.gnu.org/viewcvs?rev=239472&root=gcc&view=rev
Log:
2016-08-15  Richard Biener  <rguenther@suse.de>

        PR tree-optimization/73434
        * tree-ssa-sccvn.c (vn_reference_maybe_forwprop_address): Preserve
        TBAA info on the base when forwarding a non-invariant address.

        * gcc.dg/torture/pr73434.c: New testcase.

Added:
    branches/gcc-6-branch/gcc/testsuite/gcc.dg/torture/pr73434.c
Modified:
    branches/gcc-6-branch/gcc/ChangeLog
    branches/gcc-6-branch/gcc/testsuite/ChangeLog
    branches/gcc-6-branch/gcc/tree-ssa-sccvn.c

--- Comment #7 from Richard Biener <rguenth at gcc dot gnu.org> ---
Fixed for GCC 6.2.
>From gcc-bugs-return-534725-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 10:06:43 2016
Return-Path: <gcc-bugs-return-534725-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 60323 invoked by alias); 15 Aug 2016 10:06:42 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 60309 invoked by uid 89); 15 Aug 2016 10:06:42 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 10:06:32 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug debug/71906] [6/7 Regression] Fortran allocatable strings debug info type size regression
Date: Mon, 15 Aug 2016 10:06:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: debug
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71906-4-olrWG94T3D@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71906-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71906-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02061.txt.bz2
Content-length: 1243

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71906

--- Comment #7 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Author: jakub
Date: Mon Aug 15 10:05:59 2016
New Revision: 239473

URL: https://gcc.gnu.org/viewcvs?rev=239473&root=gcc&view=rev
Log:
        PR debug/71906
        * dwarf2out.c (string_types): New variable.
        (gen_array_type_die): Change early_dwarf handling of
        DW_AT_string_length, create DW_OP_call4 referencing the
        length var temporarily.  Handle parameters that are pointers
        to string length.
        (adjust_string_types): New function.
        (gen_subprogram_die): Temporarily set string_types to local var,
        call adjust_string_types if needed.
        (non_dwarf_expression, copy_deref_exprloc, optimize_string_length):
        New functions.
        (resolve_addr): Adjust DW_AT_string_length if it is DW_OP_call4.

        * trans-decl.c (gfc_get_symbol_decl): Call gfc_finish_var_decl
        for decl's character length before gfc_finish_var_decl on the
        decl itself.

Modified:
    branches/gcc-6-branch/gcc/ChangeLog
    branches/gcc-6-branch/gcc/dwarf2out.c
    branches/gcc-6-branch/gcc/fortran/ChangeLog
    branches/gcc-6-branch/gcc/fortran/trans-decl.c
>From gcc-bugs-return-534726-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 10:08:40 2016
Return-Path: <gcc-bugs-return-534726-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 64174 invoked by alias); 15 Aug 2016 10:08:39 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 64164 invoked by uid 89); 15 Aug 2016 10:08:39 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.3.2 spammyv746, Skype, skype, dial
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 10:08:38 +0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/76746] Dial+18881E32 Skype Audio Not Working
Date: Mon, 15 Aug 2016 10:08:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: attachments.created
Message-ID: <bug-76746-4-4kIi3u9QGg@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76746-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76746-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02062.txt.bz2
Content-length: 237

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76746

--- Comment #1 from Martin Liška <marxin at gcc dot gnu.org> ---
Created attachment 39437
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39437&action=edit
test1

test2
>From gcc-bugs-return-534727-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 10:22:43 2016
Return-Path: <gcc-bugs-return-534727-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 111229 invoked by alias); 15 Aug 2016 10:22:43 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 111219 invoked by uid 89); 15 Aug 2016 10:22:42 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.3.2 spammy=telephone, online, Skype, chat
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 10:22:32 +0000
From: "j.a.ck.s.f.t.t at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/76753] New: 1ˆ8<811>(4532)Skype Sound Not Working
Date: Mon, 15 Aug 2016 10:22:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: j.a.ck.s.f.t.t at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-76753-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02063.txt.bz2
Content-length: 1369

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76753

            Bug ID: 76753
           Summary: 1=888<811>(4532)Skype Sound Not Working
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ada
          Assignee: unassigned at gcc dot gnu.org
          Reporter: j.a.ck.s.f.t.t at gmail dot com
  Target Milestone: ---

skype customer phone number     {{{1 888 811 4532}}}
how to contact skype    {{{1 888 811 4532}}}
skype number    {{{1 888 811 4532}}}
skype email support     {{{1 888 811 4532}}}
skype contact us        {{{1 888 811 4532}}}
skype contacts  {{{1 888 811 4532}}}
skype live support      {{{1 888 811 4532}}}
skype support email     {{{1 888 811 4532}}}
how do i contact        {{{1 888 811 4532}}}
what is a skype number  {{{1 888 811 4532}}}
skype telephone {{{1 888 811 4532}}}
skype contact list      {{{1 888 811 4532}}}
skype online number     {{{1 888 811 4532}}}
skype call      {{{1 888 811 4532}}}
skype live chat support {{{1 888 811 4532}}}
skype help chat {{{1 888 811 4532}}}
skype chat support      {{{1 888 811 4532}}}
skype support   {{{1 888 811 4532}}}
support.skype.com       {{{1 888 811 4532}}}
skype live chat {{{1 888 811 4532}}}
skype password change   {{{1 888 811 4532}}}
skype change password   {{{1 888 811 4532}}}
>From gcc-bugs-return-534728-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 10:24:22 2016
Return-Path: <gcc-bugs-return-534728-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 130398 invoked by alias); 15 Aug 2016 10:24:20 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 130379 invoked by uid 89); 15 Aug 2016 10:24:16 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.3.2 spammy=inaccurate
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 10:24:06 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug testsuite/72841] PASS->NA: 20_util/tuple/cons/66338.cc execution test
Date: Mon, 15 Aug 2016 10:24:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: testsuite
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: redi at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-72841-4-Knzg3mFP6I@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72841-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72841-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02064.txt.bz2
Content-length: 579

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72841

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |INVALID

--- Comment #1 from Jonathan Wakely <redi at gcc dot gnu.org> ---
This was intentional, both tests have no runtime checks and no side-effects,
they are only checking that compilation succeeds. The ChangeLog was inaccurate.
>From gcc-bugs-return-534729-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 10:46:41 2016
Return-Path: <gcc-bugs-return-534729-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 65576 invoked by alias); 15 Aug 2016 10:46:41 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 65561 invoked by uid 89); 15 Aug 2016 10:46:40 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 10:46:39 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/76731] [AVX512] _mm512_i32gather_epi32 and other scatter/gather routines have incorrect signature
Date: Mon, 15 Aug 2016 10:46:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc attachments.created
Message-ID: <bug-76731-4-85FnlZ9XRb@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76731-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76731-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02065.txt.bz2
Content-length: 982

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76731

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jakub at gcc dot gnu.org

--- Comment #1 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Created attachment 39438
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39438&action=edit
gcc7-pr76731-headers.patch

Untested change just for the intrinsics headers changes.
It doesn't help that at least 319433-024 pdf is inconsistent with the page
you've referred, sometimes the pdf has void * for gather, while the web pages
void const *, which makes more sense.
On the other side, some of the gcc inlines used <type> const * for the scatter,
that is really weird when scatter stores through that pointer.
I guess we'll need to change also the builtins to have PTR instead of PINT etc.
>From gcc-bugs-return-534730-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 10:51:18 2016
Return-Path: <gcc-bugs-return-534730-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 75829 invoked by alias); 15 Aug 2016 10:51:18 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 75813 invoked by uid 89); 15 Aug 2016 10:51:18 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=warns, Hx-languages-length:1405, sa
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 10:51:07 +0000
From: "manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/76732] GCC should warn on repeated initializer for same array element / struct member.
Date: Mon, 15 Aug 2016 10:51:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: manu at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-76732-4-0Mp3WyjbNp@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76732-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76732-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02066.txt.bz2
Content-length: 1693

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76732

Manuel López-Ibáñez <manu at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |manu at gcc dot gnu.org

--- Comment #3 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
GCC already warns for this (for C)

test.c:1:32: warning: initialized field overwritten [-Woverride-init]
 int x[] = { [0] = 1, +3, [1] = 1 };
                                ^

test.c:1:32: note: (near initialization for ‘x[1]’)
test.c:2:43: warning: initialized field overwritten [-Woverride-init]
 struct s { int a, b; } s = { .a = 1, .a = 2};
                                           ^

test.c:2:43: note: (near initialization for ‘s.a’)

Although the output of Clang is nicer (and they also warn in C++):

prog.cc:1:32: warning: initializer overrides prior initialization of this
subobject [-Winitializer-overrides]
int x[] = { [0] = 1, +3, [1] = 1 };  
                               ^
prog.cc:1:22: note: previous initialization is here
int x[] = { [0] = 1, +3, [1] = 1 };  
                     ^~
prog.cc:2:43: warning: initializer overrides prior initialization of this
subobject [-Winitializer-overrides]
struct s { int a, b; } s = { .a = 1, .a = 2};
                                          ^
prog.cc:2:35: note: previous initialization is here
struct s { int a, b; } s = { .a = 1, .a = 2};
                                  ^

(And why does GCC have an empty line before the notes?)
>From gcc-bugs-return-534731-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 10:54:37 2016
Return-Path: <gcc-bugs-return-534731-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 81968 invoked by alias); 15 Aug 2016 10:54:37 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 81949 invoked by uid 89); 15 Aug 2016 10:54:36 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 10:54:26 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/76262] list-initialization prefers initializer_list over copy constructor
Date: Mon, 15 Aug 2016 10:54:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-76262-4-R14PMOOU4Z@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76262-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76262-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02067.txt.bz2
Content-length: 462

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76262

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |wrong-code
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-15
     Ever confirmed|0                           |1
>From gcc-bugs-return-534732-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 11:02:39 2016
Return-Path: <gcc-bugs-return-534732-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 130496 invoked by alias); 15 Aug 2016 11:02:39 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 130483 invoked by uid 89); 15 Aug 2016 11:02:37 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:267
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 11:02:32 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/76521] Explicit template instantiation suppresses defaulted inline move constructor
Date: Mon, 15 Aug 2016 11:02:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords: rejects-valid
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-76521-4-mfMawtADjP@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76521-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76521-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02068.txt.bz2
Content-length: 176

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76521

--- Comment #1 from Jonathan Wakely <redi at gcc dot gnu.org> ---
I'm pretty sure this is a duplicate of an existing bug.
>From gcc-bugs-return-534733-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 11:03:05 2016
Return-Path: <gcc-bugs-return-534733-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 1896 invoked by alias); 15 Aug 2016 11:03:05 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 1879 invoked by uid 89); 15 Aug 2016 11:03:04 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-0.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00,LIKELY_SPAM_BODY autolearn=no version=3.3.2 spammy=hotline, lno, Assistance, desk
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 11:03:01 +0000
From: "sridharpan.d.a.212 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/76766] New: 1 818 850 7806 Gmail Assistance Number
Date: Mon, 15 Aug 2016 11:03:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: lno
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: sridharpan.d.a.212 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-76766-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02069.txt.bz2
Content-length: 2211

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76766

            Bug ID: 76766
           Summary: 1 818 850 7806 Gmail Assistance Number
           Product: gcc
           Version: lno
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: sridharpan.d.a.212 at gmail dot com
  Target Milestone: ---

gmail phone help,, 
phone number for gmail tech support,, 
google tech support,, 
google gmail support number,, 
gmail account contact number,, 
google gmail tech support,, 
gmail help contact phone number,, 
customer service number for gmail account,, 
gmail customer care email id,, 
Customer Service Number For Gmail,, 
Contact Gmail Support By Phone,, 
gmail help desk,, 
phone number for google gmail support,, 
technical support gmail,, 
gmail help contact email,, 
gmail telephone,, 
Phone Number For Gmail Customer Service,, 
gmail support contact number,, 
google help phone number gmail,, 
gmail tech support chat,, 
gmail phone numbers,, 
google mail contact,, 
Gmail Customer Support Email,, 
customer support for gmail,, 
gmail phone number support,, 
Gmail Account Customer Service,, 
google mail tech support,, 
Gmail Email Support Number,, 
tech support phone number for google gmail,, 
contact gmail support email,, 
tech support gmail,, 
contact gmail support phone,, 
gmail help desk number,, 
call gmail customer service,, 
google gmail customer support,, 
Gmail Assistance Phone Number,, 
gmail.com contact number,, 
gmail customer service toll free number,, 
contacting gmail support,, 
gmail.com phone number,, 
Google Gmail Customer Service Phone Number,, 
gmail tech support contact number,, 
contact google gmail,, 
Google Gmail Customer Service Number,, 
gmail com support phone number,, 
gmail support number for ustomers,, 
google gmail tech support phone number,, 
gmail hotline number,, 
gmail customer care number toll free,, 
Gmail.com Customer Service Phone Number,, 
gmail tech support live chat,, 
contact gmail by email,, 
google mail phone number
>From gcc-bugs-return-534734-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 11:09:46 2016
Return-Path: <gcc-bugs-return-534734-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 6895 invoked by alias); 15 Aug 2016 11:09:46 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 6876 invoked by uid 89); 15 Aug 2016 11:09:45 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 11:09:35 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/76521] Explicit template instantiation suppresses defaulted inline move constructor
Date: Mon, 15 Aug 2016 11:09:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords: rejects-valid
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: DUPLICATE
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-76521-4-K3yUpxJeTf@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76521-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76521-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02070.txt.bz2
Content-length: 488

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76521

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |DUPLICATE

--- Comment #2 from Jonathan Wakely <redi at gcc dot gnu.org> ---
dup

*** This bug has been marked as a duplicate of bug 57728 ***
>From gcc-bugs-return-534735-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 11:10:08 2016
Return-Path: <gcc-bugs-return-534735-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 7707 invoked by alias); 15 Aug 2016 11:10:08 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 7695 invoked by uid 89); 15 Aug 2016 11:10:07 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 11:09:56 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/57728] Explicit template instantiation with defaulted method causes missing symbol
Date: Mon, 15 Aug 2016 11:10:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 4.8.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-57728-4-I5pkvcbMbM@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-57728-4@http.gcc.gnu.org/bugzilla/>
References: <bug-57728-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02071.txt.bz2
Content-length: 443

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57728

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |rustamabd at gmail dot com

--- Comment #5 from Jonathan Wakely <redi at gcc dot gnu.org> ---
*** Bug 76521 has been marked as a duplicate of this bug. ***
>From gcc-bugs-return-534736-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 11:11:47 2016
Return-Path: <gcc-bugs-return-534736-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 9076 invoked by alias); 15 Aug 2016 11:11:46 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 9060 invoked by uid 89); 15 Aug 2016 11:11:46 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:228, Related, Default
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 11:11:36 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/60796] Default move constructor not generated by explicit template instantiation
Date: Mon, 15 Aug 2016 11:11:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 4.8.1
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-60796-4-q3t2WO5ivk@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-60796-4@http.gcc.gnu.org/bugzilla/>
References: <bug-60796-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02072.txt.bz2
Content-length: 140

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60796

--- Comment #5 from Jonathan Wakely <redi at gcc dot gnu.org> ---
Related to PR 57728
>From gcc-bugs-return-534737-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 11:13:22 2016
Return-Path: <gcc-bugs-return-534737-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 11845 invoked by alias); 15 Aug 2016 11:13:22 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 11828 invoked by uid 89); 15 Aug 2016 11:13:21 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 11:13:11 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/51629] Default Destructor and template extern Instantiation cause the Destructor to be missing
Date: Mon, 15 Aug 2016 11:13:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 4.6.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: DUPLICATE
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-51629-4-mcocOfDKa3@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-51629-4@http.gcc.gnu.org/bugzilla/>
References: <bug-51629-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02073.txt.bz2
Content-length: 508

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=51629

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |DUPLICATE

--- Comment #3 from Jonathan Wakely <redi at gcc dot gnu.org> ---
Another dup of PR 57728

*** This bug has been marked as a duplicate of bug 57728 ***
>From gcc-bugs-return-534739-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 11:14:26 2016
Return-Path: <gcc-bugs-return-534739-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 14691 invoked by alias); 15 Aug 2016 11:14:25 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 14577 invoked by uid 89); 15 Aug 2016 11:14:25 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 11:14:14 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/57728] Explicit template instantiation with defaulted method causes missing symbol
Date: Mon, 15 Aug 2016 11:14:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 4.8.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-57728-4-pdLs1ewOGG@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-57728-4@http.gcc.gnu.org/bugzilla/>
References: <bug-57728-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02075.txt.bz2
Content-length: 436

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57728

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |m_v_ at gmx dot net

--- Comment #6 from Jonathan Wakely <redi at gcc dot gnu.org> ---
*** Bug 51629 has been marked as a duplicate of this bug. ***
>From gcc-bugs-return-534738-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 11:14:20 2016
Return-Path: <gcc-bugs-return-534738-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 14032 invoked by alias); 15 Aug 2016 11:14:20 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 14023 invoked by uid 89); 15 Aug 2016 11:14:20 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 11:14:10 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/57728] Explicit template instantiation with defaulted method causes missing symbol
Date: Mon, 15 Aug 2016 11:14:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 4.8.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-57728-4-DcXOz2Cfd0@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-57728-4@http.gcc.gnu.org/bugzilla/>
References: <bug-57728-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02074.txt.bz2
Content-length: 596

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57728

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |m_v_ at gmx dot net

--- Comment #6 from Jonathan Wakely <redi at gcc dot gnu.org> ---
*** Bug 51629 has been marked as a duplicate of this bug. ***

--- Comment #7 from Jonathan Wakely <redi at gcc dot gnu.org> ---
Related to (and maybe a dup of) PR 60796

Also https://llvm.org/bugs/show_bug.cgi?id=22763
>From gcc-bugs-return-534740-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 11:17:35 2016
Return-Path: <gcc-bugs-return-534740-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 21071 invoked by alias); 15 Aug 2016 11:17:35 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 21055 invoked by uid 89); 15 Aug 2016 11:17:34 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 11:17:24 +0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug driver/72765] Dynamic stack buffer overflow in GCC driver with -save-temps switch.
Date: Mon, 15 Aug 2016 11:17:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: driver
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72765-4-OUVy8dNYNQ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72765-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72765-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02076.txt.bz2
Content-length: 520

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72765

--- Comment #2 from Martin Liška <marxin at gcc dot gnu.org> ---
Author: marxin
Date: Mon Aug 15 11:16:50 2016
New Revision: 239475

URL: https://gcc.gnu.org/viewcvs?rev=239475&root=gcc&view=rev
Log:
Fix invalid memory access in gcc.c (driver/72765)

        PR driver/72765
        * gcc.c (do_spec_1): Call save_string with the right size.
        (save_string): Do an assert about string we copy.

Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/gcc.c
>From gcc-bugs-return-534742-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 11:20:54 2016
Return-Path: <gcc-bugs-return-534742-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 26411 invoked by alias); 15 Aug 2016 11:20:53 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 26400 invoked by uid 89); 15 Aug 2016 11:20:53 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 11:20:43 +0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug driver/72765] Dynamic stack buffer overflow in GCC driver with -save-temps switch.
Date: Mon, 15 Aug 2016 11:20:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: driver
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72765-4-gweTsomO9G@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72765-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72765-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02078.txt.bz2
Content-length: 637

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72765

--- Comment #4 from Martin Liška <marxin at gcc dot gnu.org> ---
Author: marxin
Date: Mon Aug 15 11:20:09 2016
New Revision: 239477

URL: https://gcc.gnu.org/viewcvs?rev=239477&root=gcc&view=rev
Log:
Fix invalid memory access in gcc.c (driver/72765)

        Backported from mainline
        2016-08-15  Martin Liska  <mliska@suse.cz>

        PR driver/72765
        * gcc.c (do_spec_1): Call save_string with the right size.
        (save_string): Do an assert about string we copy.

Modified:
    branches/gcc-5-branch/gcc/ChangeLog
    branches/gcc-5-branch/gcc/gcc.c
>From gcc-bugs-return-534741-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 11:20:19 2016
Return-Path: <gcc-bugs-return-534741-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 25570 invoked by alias); 15 Aug 2016 11:20:19 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 25546 invoked by uid 89); 15 Aug 2016 11:20:17 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 11:20:07 +0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug driver/72765] Dynamic stack buffer overflow in GCC driver with -save-temps switch.
Date: Mon, 15 Aug 2016 11:20:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: driver
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72765-4-oBe51IwD11@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72765-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72765-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02077.txt.bz2
Content-length: 637

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72765

--- Comment #3 from Martin Liška <marxin at gcc dot gnu.org> ---
Author: marxin
Date: Mon Aug 15 11:19:34 2016
New Revision: 239476

URL: https://gcc.gnu.org/viewcvs?rev=239476&root=gcc&view=rev
Log:
Fix invalid memory access in gcc.c (driver/72765)

        Backported from mainline
        2016-08-15  Martin Liska  <mliska@suse.cz>

        PR driver/72765
        * gcc.c (do_spec_1): Call save_string with the right size.
        (save_string): Do an assert about string we copy.

Modified:
    branches/gcc-6-branch/gcc/ChangeLog
    branches/gcc-6-branch/gcc/gcc.c
>From gcc-bugs-return-534744-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 11:24:45 2016
Return-Path: <gcc-bugs-return-534744-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 32271 invoked by alias); 15 Aug 2016 11:24:45 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 32185 invoked by uid 89); 15 Aug 2016 11:24:43 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 11:24:34 +0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/67097] gcov-tool merge (can) crash when dir2 contains files not in dir1
Date: Mon, 15 Aug 2016 11:24:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 5.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-67097-4-UhWmrzyxth@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67097-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67097-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02080.txt.bz2
Content-length: 890

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67097

Martin Liška <marxin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|REOPENED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #12 from Martin Liška <marxin at gcc dot gnu.org> ---
Author: marxin
Date: Mon Aug 15 11:23:27 2016
New Revision: 239478

URL: https://gcc.gnu.org/viewcvs?rev=239478&root=gcc&view=rev
Log:
gcov-tool: Do not segfault in merge operation (PR

        PR gcov-profile/67097
        * libgcov-util.c (gcov_profile_merge): Skip missing files.

Modified:
    trunk/libgcc/ChangeLog
    trunk/libgcc/libgcov-util.c

--- Comment #13 from Martin Liška <marxin at gcc dot gnu.org> ---
Now it's really fixed on trunk.
>From gcc-bugs-return-534743-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 11:24:38 2016
Return-Path: <gcc-bugs-return-534743-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 32018 invoked by alias); 15 Aug 2016 11:24:22 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 31898 invoked by uid 89); 15 Aug 2016 11:24:19 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 11:24:01 +0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/67097] gcov-tool merge (can) crash when dir2 contains files not in dir1
Date: Mon, 15 Aug 2016 11:24:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 5.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: REOPENED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-67097-4-hQQx1giXHW@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67097-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67097-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02079.txt.bz2
Content-length: 484

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67097

--- Comment #12 from Martin Liška <marxin at gcc dot gnu.org> ---
Author: marxin
Date: Mon Aug 15 11:23:27 2016
New Revision: 239478

URL: https://gcc.gnu.org/viewcvs?rev=239478&root=gcc&view=rev
Log:
gcov-tool: Do not segfault in merge operation (PR

        PR gcov-profile/67097
        * libgcov-util.c (gcov_profile_merge): Skip missing files.

Modified:
    trunk/libgcc/ChangeLog
    trunk/libgcc/libgcov-util.c
>From gcc-bugs-return-534746-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 11:25:07 2016
Return-Path: <gcc-bugs-return-534746-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 34428 invoked by alias); 15 Aug 2016 11:25:06 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 34387 invoked by uid 89); 15 Aug 2016 11:25:05 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 11:25:00 +0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug driver/72765] Dynamic stack buffer overflow in GCC driver with -save-temps switch.
Date: Mon, 15 Aug 2016 11:25:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: driver
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-72765-4-tPcIHidNwk@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72765-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72765-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02082.txt.bz2
Content-length: 466

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72765

Martin Liška <marxin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--- Comment #5 from Martin Liška <marxin at gcc dot gnu.org> ---
Fixed on trunk and all active branches.
>From gcc-bugs-return-534745-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 11:25:06 2016
Return-Path: <gcc-bugs-return-534745-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 34415 invoked by alias); 15 Aug 2016 11:25:06 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 34388 invoked by uid 89); 15 Aug 2016 11:25:05 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 11:24:55 +0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/67097] gcov-tool merge (can) crash when dir2 contains files not in dir1
Date: Mon, 15 Aug 2016 11:25:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 5.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-67097-4-Lg0QHXKiEZ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67097-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67097-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02081.txt.bz2
Content-length: 459

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67097

Martin Liška <marxin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|REOPENED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #13 from Martin Liška <marxin at gcc dot gnu.org> ---
Now it's really fixed on trunk.
>From gcc-bugs-return-534747-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 11:35:00 2016
Return-Path: <gcc-bugs-return-534747-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 44332 invoked by alias); 15 Aug 2016 11:34:59 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 44319 invoked by uid 89); 15 Aug 2016 11:34:58 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=POWER, Hx-languages-length:971, UD:ac.uk, 4.9.1
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 11:34:48 +0000
From: "Peter.Sewell at cl dot cam.ac.uk" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/76774] New: atomics on PPC: inconsistent widths for an _Atomic(_Bool) and for atomic_compare_exchange_strong on it
Date: Mon, 15 Aug 2016 11:34:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 4.9.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: Peter.Sewell at cl dot cam.ac.uk
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-76774-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02083.txt.bz2
Content-length: 1030

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76774

            Bug ID: 76774
           Summary: atomics on PPC: inconsistent widths for an
                    _Atomic(_Bool) and for atomic_compare_exchange_strong
                    on it
           Product: gcc
           Version: 4.9.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: Peter.Sewell at cl dot cam.ac.uk
  Target Milestone: ---

On a POWER 7 machine using GCC 4.9.1, something declared as an _Atomic(_Bool)
appears to generate a 1-byte object but using atomic_compare_exchange_strong on
it generates 4-byte LL/SC (lwarx/stwcx) instructions.  We observed this in two
ways:  a global 

    static _Atomic(_Bool) locked;

produces a 1-byte ELF object, and in a packed struct

    struct __attribute__((__packed__)) s {
      _Atomic(_Bool) s_locked;
      char c;
    };

the c field seems to be 1 byte after the s_locked field.
>From gcc-bugs-return-534748-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 11:35:31 2016
Return-Path: <gcc-bugs-return-534748-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 45249 invoked by alias); 15 Aug 2016 11:35:31 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 45236 invoked by uid 89); 15 Aug 2016 11:35:30 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 11:35:20 +0000
From: "olegendo at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/55190] ivopts causes loop setup bloat
Date: Mon, 15 Aug 2016 11:35:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 4.8.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: olegendo at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: amker at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: see_also
Message-ID: <bug-55190-4-WdRF5sAp5J@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-55190-4@http.gcc.gnu.org/bugzilla/>
References: <bug-55190-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02084.txt.bz2
Content-length: 1789

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=55190

Oleg Endo <olegendo at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           See Also|                            |https://gcc.gnu.org/bugzill
                   |                            |a/show_bug.cgi?id=62233,
                   |                            |https://gcc.gnu.org/bugzill
                   |                            |a/show_bug.cgi?id=60537

--- Comment #11 from Oleg Endo <olegendo at gcc dot gnu.org> ---
And still on SH, but now with AMS optimization:

char*
test_func_00 (char* p, int c, int x)
{
  do
  {
    *--p = (char)x;
    *--p = (char)x;
    *--p = (char)x;
  } while (--c);
  return p;
}


Results in:
        mov     r5,r7
        mov.l   .L6,r1
        add     r7,r7
        mov     r7,r2
        add     r5,r2
        mul.l   r1,r2
        mov     r4,r3
        exts.b  r6,r6
        add     #-3,r3
        sts     macl,r0
        .align 2
.L2:
        mov     r3,r2
        add     #3,r2
        mov.b   r6,@-r2
        dt      r0
        mov.b   r6,@-r2
        mov.b   r6,@r3
        mov     r2,r3
        bf/s    .L2
        add     #-4,r3

        add     r5,r7
        mov     r4,r0
        rts
        sub     r7,r0
.L7:
        .align 2
.L6:
        .long   -1431655765


And with -fno-ivopts we're getting something what one would expect:
        exts.b  r6,r6
        mov     r4,r1
        mov     r5,r2
        .align 2
.L2:
        mov.b   r6,@-r1
        dt      r2
        mov.b   r6,@-r1
        bf/s    .L2
        mov.b   r6,@-r1

        mov     r5,r0
        shll2   r0
        sub     r0,r5
        mov     r4,r0
        rts
        add     r5,r0
>From gcc-bugs-return-534749-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 11:36:28 2016
Return-Path: <gcc-bugs-return-534749-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 49579 invoked by alias); 15 Aug 2016 11:36:27 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 49343 invoked by uid 89); 15 Aug 2016 11:36:27 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:348
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 11:36:17 +0000
From: "Peter.Sewell at cl dot cam.ac.uk" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/76774] atomics on PPC: inconsistent widths for an _Atomic(_Bool) and for atomic_compare_exchange_strong on it
Date: Mon, 15 Aug 2016 11:36:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 4.9.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: Peter.Sewell at cl dot cam.ac.uk
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: attachments.created
Message-ID: <bug-76774-4-a5fbxfexvx@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76774-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76774-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02085.txt.bz2
Content-length: 239

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76774

--- Comment #1 from Peter Sewell <Peter.Sewell at cl dot cam.ac.uk> ---
Created attachment 39439
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39439&action=edit
example code
>From gcc-bugs-return-534750-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 11:46:17 2016
Return-Path: <gcc-bugs-return-534750-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 67870 invoked by alias); 15 Aug 2016 11:46:16 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 67854 invoked by uid 89); 15 Aug 2016 11:46:16 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 11:46:06 +0000
From: "schwab@linux-m68k.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/58306] Broken profiling for unrar sources: error: corrupted value profile: value profile counter (X out of Y) inconsistent with basic-block count
Date: Mon, 15 Aug 2016 11:46:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: schwab@linux-m68k.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-58306-4-DcDDbY8d4c@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-58306-4@http.gcc.gnu.org/bugzilla/>
References: <bug-58306-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02086.txt.bz2
Content-length: 154

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58306

--- Comment #35 from Andreas Schwab <schwab@linux-m68k.org> ---
That patch doesn't change anything.
>From gcc-bugs-return-534751-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 11:58:25 2016
Return-Path: <gcc-bugs-return-534751-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 10220 invoked by alias); 15 Aug 2016 11:58:25 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 10204 invoked by uid 89); 15 Aug 2016 11:58:24 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 11:58:14 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/67485] expmed.c sanitizer detects overflow
Date: Mon, 15 Aug 2016 11:58:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status assigned_to attachments.created
Message-ID: <bug-67485-4-Ym1Zn8HUkY@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67485-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67485-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02087.txt.bz2
Content-length: 578

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67485

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED
           Assignee|unassigned at gcc dot gnu.org      |jakub at gcc dot gnu.org

--- Comment #4 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Created attachment 39440
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39440&action=edit
gcc7-pr67485.patch

Untested fix.
>From gcc-bugs-return-534752-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 12:38:59 2016
Return-Path: <gcc-bugs-return-534752-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 10774 invoked by alias); 15 Aug 2016 12:38:59 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 10761 invoked by uid 89); 15 Aug 2016 12:38:58 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 12:38:48 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/76732] GCC should warn on repeated initializer for same array element / struct member.
Date: Mon, 15 Aug 2016 12:38:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-76732-4-ITDOQpTSNW@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76732-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76732-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02088.txt.bz2
Content-length: 523

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76732

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jakub at gcc dot gnu.org

--- Comment #4 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
(In reply to Manuel López-Ibáñez from comment #3)
> (And why does GCC have an empty line before the notes?)

Can't reproduce that.
>From gcc-bugs-return-534753-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 12:44:07 2016
Return-Path: <gcc-bugs-return-534753-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 35343 invoked by alias); 15 Aug 2016 12:44:07 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 35300 invoked by uid 89); 15 Aug 2016 12:44:05 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Older, act
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 12:43:55 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/76774] atomics on PPC: inconsistent widths for an _Atomic(_Bool) and for atomic_compare_exchange_strong on it
Date: Mon, 15 Aug 2016 12:44:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 4.9.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: component
Message-ID: <bug-76774-4-U8PTcLP0wc@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76774-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76774-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02089.txt.bz2
Content-length: 491

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76774

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
          Component|c                           |target

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Older power does not have ll/sc that act on 1 or 2 bytes. So it has to emulate
them by using the 4 byte one with and and ors.
>From gcc-bugs-return-534754-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 13:06:25 2016
Return-Path: <gcc-bugs-return-534754-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 117185 invoked by alias); 15 Aug 2016 13:06:25 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 116303 invoked by uid 89); 15 Aug 2016 13:06:24 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 13:06:14 +0000
From: "wschmidt at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/63491] Ice in LRA with simple vector test case on power
Date: Mon, 15 Aug 2016 13:06:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 5.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wschmidt at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-63491-4-Pxl4U2D8rB@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-63491-4@http.gcc.gnu.org/bugzilla/>
References: <bug-63491-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02090.txt.bz2
Content-length: 130

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63491

--- Comment #16 from Bill Schmidt <wschmidt at gcc dot gnu.org> ---
Ping...
>From gcc-bugs-return-534755-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 13:17:36 2016
Return-Path: <gcc-bugs-return-534755-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 81771 invoked by alias); 15 Aug 2016 13:17:36 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 81755 invoked by uid 89); 15 Aug 2016 13:17:35 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 13:17:25 +0000
From: "bremende55 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/76782] New: create_directory(path) gives an error if path exists
Date: Mon, 15 Aug 2016 13:17:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: bremende55 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-76782-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02091.txt.bz2
Content-length: 744

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76782

            Bug ID: 76782
           Summary: create_directory(path) gives an error if path exists
           Product: gcc
           Version: 6.1.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: bremende55 at gmail dot com
  Target Milestone: ---

relates to c++17

filesystem::create_directory(path) gives an exception if path already exists,
but the C++standard FDIS N4604 27.10.15.7 says:

"Creation failure because p resolves to an existing directory shall not be
treated as an error."

boost does it right, i.e. does not throw an exception in this case
>From gcc-bugs-return-534756-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 13:19:41 2016
Return-Path: <gcc-bugs-return-534756-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 87065 invoked by alias); 15 Aug 2016 13:19:41 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 87047 invoked by uid 89); 15 Aug 2016 13:19:40 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy«orted
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 13:19:30 +0000
From: "zsojka at seznam dot cz" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/76783] New: [7 Regression] wrong code with conditional vector assignment @ -Og
Date: Mon, 15 Aug 2016 13:19:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: zsojka at seznam dot cz
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status keywords bug_severity priority component assigned_to reporter target_milestone cf_gcchost cf_gcctarget cf_gccbuild attachments.created
Message-ID: <bug-76783-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02092.txt.bz2
Content-length: 2080

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76783

            Bug ID: 76783
           Summary: [7 Regression] wrong code with conditional vector
                    assignment @ -Og
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Keywords: wrong-code
          Severity: normal
          Priority: P3
         Component: rtl-optimization
          Assignee: unassigned at gcc dot gnu.org
          Reporter: zsojka at seznam dot cz
  Target Milestone: ---
              Host: x86_64-pc-linux-gnu
            Target: x86_64-pc-linux-gnu
             Build: x86_64-pc-linux-gnu

Created attachment 39444
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39444&action=edit
reduced testcase

Output:
$ x86_64-pc-linux-gnu-gcc -Og testcase.c -w
testcase.c: In function 'foo':
testcase.c:5:1: note: The ABI for passing parameters with 64-byte alignment has
changed in GCC 4.6
 foo (unsigned c, v64u128 v)
 ^~~
$ ./a.out 
Aborted

The function foo returns 'v' unchanged unconditionally:
foo:
        mov     rax, QWORD PTR [rsp+24]
        mov     rdx, QWORD PTR [rsp+32]
        ret



$ x86_64-pc-linux-gnu-gcc -v
Using built-in specs.
COLLECT_GCC=/repo/gcc-trunk/binary-latest-amd64/bin/x86_64-pc-linux-gnu-gcc
COLLECT_LTO_WRAPPER=/repo/gcc-trunk/binary-trunk-239460-checking-yes-rtl-df-extra-nographite-amd64/bin/../libexec/gcc/x86_64-pc-linux-gnu/7.0.0/lto-wrapper
Target: x86_64-pc-linux-gnu
Configured with: /repo/gcc-trunk//configure --enable-languages=c,c++
--enable-valgrind-annotations --disable-nls --enable-checking=yes,rtl,df,extra
--without-cloog --without-ppl --without-isl --build=x86_64-pc-linux-gnu
--host=x86_64-pc-linux-gnu --target=x86_64-pc-linux-gnu
--with-ld=/usr/bin/x86_64-pc-linux-gnu-ld
--with-as=/usr/bin/x86_64-pc-linux-gnu-as --disable-libstdcxx-pch
--prefix=/repo/gcc-trunk//binary-trunk-239460-checking-yes-rtl-df-extra-nographite-amd64
Thread model: posix
gcc version 7.0.0 20160815 (experimental) (GCC) 


Tested revisions:
r239460 - FAIL
6-branch r239319 - OK
>From gcc-bugs-return-534757-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 13:31:46 2016
Return-Path: <gcc-bugs-return-534757-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 44515 invoked by alias); 15 Aug 2016 13:31:46 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 44505 invoked by uid 89); 15 Aug 2016 13:31:45 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:1061
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 13:31:35 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/76782] create_directory(path) gives an error if path exists
Date: Mon, 15 Aug 2016 13:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: DUPLICATE
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-76782-4-L0lyHsay9C@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76782-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76782-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02093.txt.bz2
Content-length: 1095

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76782

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |DUPLICATE

--- Comment #1 from Jonathan Wakely <redi at gcc dot gnu.org> ---
(In reply to Jo from comment #0)
> relates to c++17
> 
> filesystem::create_directory(path) gives an exception if path already
> exists, but the C++standard FDIS N4604 27.10.15.7 says:

N.B. that's the C++17 CD not the FDIS, and we don't implement the Filesystem
library in the CD yet, we only implement the Filesystem TS:

http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2014/n4099.html#fs.op.create_directory


> "Creation failure because p resolves to an existing directory shall not be
> treated as an error."

The same requirement is in the TS.

The bug has already been fixed for the next release.

*** This bug has been marked as a duplicate of bug 71036 ***
>From gcc-bugs-return-534758-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 13:32:09 2016
Return-Path: <gcc-bugs-return-534758-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 45550 invoked by alias); 15 Aug 2016 13:32:09 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 45539 invoked by uid 89); 15 Aug 2016 13:32:08 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 13:31:58 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/71036] create_directory(p, ...) reports a failure when 'p' is an existing directory
Date: Mon, 15 Aug 2016 13:32:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: redi at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.4
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-71036-4-7BOx0wh3uW@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71036-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71036-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02094.txt.bz2
Content-length: 444

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71036

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |bremende55 at gmail dot com

--- Comment #5 from Jonathan Wakely <redi at gcc dot gnu.org> ---
*** Bug 76782 has been marked as a duplicate of this bug. ***
>From gcc-bugs-return-534759-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 13:33:01 2016
Return-Path: <gcc-bugs-return-534759-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 46573 invoked by alias); 15 Aug 2016 13:33:01 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 46559 invoked by uid 89); 15 Aug 2016 13:33:01 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyúrm
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 13:32:50 +0000
From: "manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/76732] GCC should warn on repeated initializer for same array element / struct member.
Date: Mon, 15 Aug 2016 13:33:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: manu at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-76732-4-Kk3t0cI76G@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76732-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76732-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02095.txt.bz2
Content-length: 490

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76732

--- Comment #5 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
(In reply to Jakub Jelinek from comment #4)
> (In reply to Manuel López-Ibáñez from comment #3)
> > (And why does GCC have an empty line before the notes?)
> 
> Can't reproduce that.

Perhaps my build is outdated. I'm stuck with r230753 in the Compile Farm. I
haven't managed to build a more recent GCC due to the OS being too old.
>From gcc-bugs-return-534760-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 13:38:08 2016
Return-Path: <gcc-bugs-return-534760-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 49651 invoked by alias); 15 Aug 2016 13:38:07 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 49641 invoked by uid 89); 15 Aug 2016 13:38:07 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 13:37:56 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/76783] [7 Regression] wrong code with conditional vector assignment @ -Og
Date: Mon, 15 Aug 2016 13:38:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on component target_milestone everconfirmed
Message-ID: <bug-76783-4-lwsBPJq55I@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76783-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76783-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02096.txt.bz2
Content-length: 1150

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76783

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-15
          Component|rtl-optimization            |c
   Target Milestone|---                         |7.0
     Ever confirmed|0                           |1

--- Comment #1 from Richard Biener <rguenth at gcc dot gnu.org> ---
Confirmed.  Note that I think the vector construction doesn't work already. 
From
the .gimple dump:

foo (unsigned int c, v64u128 v)
{
  u128 D.1767;
  v64u128 u;

  try
    {
      if (c != 0) goto <D.1764>; else goto <D.1765>;
      <D.1764>:
      u = { 0, 0, 0, 0 };
      goto <D.1766>;
      <D.1765>:
      u = { 0, 1, 0, 0 };
      <D.1766>:
      u.0_1 = u;
      _2 = v + u.0_1;
      u = _2;
      D.1767 = BIT_FIELD_REF <u, 128, 128>;
      return D.1767;

here the upper __int128 in the vector is obviously zero.  Somehow a mix-up
somewhere.
>From gcc-bugs-return-534761-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 13:48:17 2016
Return-Path: <gcc-bugs-return-534761-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 61738 invoked by alias); 15 Aug 2016 13:48:17 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 61715 invoked by uid 89); 15 Aug 2016 13:48:15 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=simulated, late
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 13:47:59 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/76783] [7 Regression] wrong code with conditional vector assignment @ -Og
Date: Mon, 15 Aug 2016 13:48:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status assigned_to
Message-ID: <bug-76783-4-65v8Ed7PCY@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76783-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76783-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02097.txt.bz2
Content-length: 1339

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76783

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED
           Assignee|unassigned at gcc dot gnu.org      |rguenth at gcc dot gnu.org

--- Comment #2 from Richard Biener <rguenth at gcc dot gnu.org> ---
Actually it's folding during late CCP somehow.  Mine.

Visiting PHI node: u_6 = PHI <{ 0, 0, 0, 0 }(2), { 0, 1, 0, 0 }(3)>

    Argument #0 (2 -> 4 executable)
        { 0, 0, 0, 0 }  Value: CONSTANT { 0, 0, 0, 0 }

    Argument #1 (3 -> 4 not executable)

    PHI node value: CONSTANT { 0, 0, 0, 0 }

Lattice value changed to CONSTANT { 0, 0, 0, 0 }.  Adding SSA edges to
worklist.

...

Visiting statement:
_1 = {_10, _13, _16, _19};
which is likely CONSTANT
Lattice value changed to VARYING.  Adding SSA edges to worklist.

Visiting statement:
_5 = BIT_FIELD_REF <_1, 128, 128>;
which is likely CONSTANT
Applying pattern match.pd:3444, gimple-match.c:62758
Match-and-simplified BIT_FIELD_REF <_1, 128, 128> to _13
Lattice value changed to CONSTANT _11.  Adding SSA edges to worklist.
marking stmt to be not simulated again

somehow it looks up a SSA name that is not final yet.
>From gcc-bugs-return-534762-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 13:49:03 2016
Return-Path: <gcc-bugs-return-534762-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 62671 invoked by alias); 15 Aug 2016 13:49:02 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 62658 invoked by uid 89); 15 Aug 2016 13:49:02 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 13:48:51 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/76783] [7 Regression] wrong code with conditional vector assignment @ -Og
Date: Mon, 15 Aug 2016 13:49:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-76783-4-1zwiOJsWr9@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76783-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76783-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02098.txt.bz2
Content-length: 399

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76783

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jakub at gcc dot gnu.org

--- Comment #3 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Started with r239405.
>From gcc-bugs-return-534763-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 13:51:54 2016
Return-Path: <gcc-bugs-return-534763-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 71505 invoked by alias); 15 Aug 2016 13:51:54 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 71493 invoked by uid 89); 15 Aug 2016 13:51:53 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:1137, paid
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 13:51:43 +0000
From: "manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/71885] Incorrect code generated with -01, memset() function call is missing
Date: Mon, 15 Aug 2016 13:51:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: manu at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71885-4-3L3OR8jOnv@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71885-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71885-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02099.txt.bz2
Content-length: 1076

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71885

--- Comment #18 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
(In reply to Kern Sibbald from comment #17)
> The g++ developers could have realized that in especially in "undefined"
> territory where they knew they would break code the conservative way to do
> it without creating chaos is to add new strict warning message for a period
> of time (one to two years) prior to making their changes default.

If someone developed the warning, it could stay forever. The problem is that
someone needs to develop the warning. People working on GCC right now
(including myself) are either not paid to do this or not personally interested
in such a warning enough to dedicate their free time.

People interested in diagnostics (or a boringcc that never takes advantage of
undefined behavior[*]) rather than in optimization should either join GCC or
encourage others to join GCC development to the point that they can influence
its development in the future.

[*] https://lwn.net/Articles/669004/
>From gcc-bugs-return-534764-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 14:00:45 2016
Return-Path: <gcc-bugs-return-534764-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 49571 invoked by alias); 15 Aug 2016 14:00:45 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 49439 invoked by uid 89); 15 Aug 2016 14:00:38 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=visits, merger
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 14:00:22 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/76783] [7 Regression] wrong code with conditional vector assignment @ -Og
Date: Mon, 15 Aug 2016 14:00:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-76783-4-5uDjfEfSBa@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76783-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76783-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02100.txt.bz2
Content-length: 555

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76783

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
Ok, the BB iteration order of the SSA propagator now visits the merger in a
half-diamond before the then block, breaking the setting of
prop_set_simulate_again in simulate_stmt for two constant uses.

Easy out is to consider ! executable edges as has_simulate_again_uses.

I guess we need that to be conservative anyway.

But then iteration order is not optimal here.  Search for a better one than
PRE order (use reverse RPO order?)
>From gcc-bugs-return-534765-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 14:22:26 2016
Return-Path: <gcc-bugs-return-534765-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 92856 invoked by alias); 15 Aug 2016 14:22:26 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 92845 invoked by uid 89); 15 Aug 2016 14:22:26 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:1317, paid
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 14:22:15 +0000
From: "hyc at symas dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/71885] Incorrect code generated with -01, memset() function call is missing
Date: Mon, 15 Aug 2016 14:22:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: hyc at symas dot com
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71885-4-I10vWHWnBj@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71885-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71885-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02101.txt.bz2
Content-length: 1259

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71885

--- Comment #19 from hyc at symas dot com ---
(In reply to Manuel López-Ibáñez from comment #18)
> (In reply to Kern Sibbald from comment #17)
> > The g++ developers could have realized that in especially in "undefined"
> > territory where they knew they would break code the conservative way to do
> > it without creating chaos is to add new strict warning message for a period
> > of time (one to two years) prior to making their changes default.
> 
> If someone developed the warning, it could stay forever. The problem is that
> someone needs to develop the warning. People working on GCC right now
> (including myself) are either not paid to do this or not personally
> interested in such a warning enough to dedicate their free time.

That's all well and good. But, somebody had to go out of their way to develop
the code to identify this case of new as being a dead store. Why was this worth
anyone's time to do so? What performance benefit does this "optimization"
bring, and is it really worth all of the obviously known breakage that it
causes?

We all have important things to be doing. It doesn't appear that the time
invested in this "feature" was time well spent.
>From gcc-bugs-return-534766-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 14:31:02 2016
Return-Path: <gcc-bugs-return-534766-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 114272 invoked by alias); 15 Aug 2016 14:31:02 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 114207 invoked by uid 89); 15 Aug 2016 14:31:01 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:1304
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 14:30:51 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/71885] Incorrect code generated with -01, memset() function call is missing
Date: Mon, 15 Aug 2016 14:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71885-4-7FGcrttm2N@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71885-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71885-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02102.txt.bz2
Content-length: 1237

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71885

--- Comment #20 from Jonathan Wakely <redi at gcc dot gnu.org> ---
(In reply to Kern Sibbald from comment #17)
> It is pretty difficult to argue with the developers because they know the
> "rules", better than most programmers.  However, here in my opinion they
> used very poor judgement, by implementing a change that they were fully
> aware would break many programs (they documented it as such).  

You've got the timeline wrong. The documentation was written *after* the
feature was implemented. The new version of GCC had been used to build and test
lots of code, which revealed that there were a number of programs breaking the
rules of the C++ language, so the documentation was added.

> The g++ developers could have realized that in especially in "undefined"
> territory where they knew they would break code the conservative way to do
> it without creating chaos is to add new strict warning message for a period
> of time (one to two years) prior to making their changes default.

That's been tried before. Nobody fixes the code until the default changes, so
in practice your suggestion achieves nothing except postponing the problems by
one or two years.
>From gcc-bugs-return-534767-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 14:35:12 2016
Return-Path: <gcc-bugs-return-534767-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 121475 invoked by alias); 15 Aug 2016 14:35:12 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 121465 invoked by uid 89); 15 Aug 2016 14:35:11 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=pay
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 14:35:01 +0000
From: "manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/71885] Incorrect code generated with -01, memset() function call is missing
Date: Mon, 15 Aug 2016 14:35:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: manu at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71885-4-7C3FIHNJXT@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71885-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71885-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02103.txt.bz2
Content-length: 1128

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71885

--- Comment #21 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
(In reply to hyc from comment #19)
> That's all well and good. But, somebody had to go out of their way to
> develop the code to identify this case of new as being a dead store. Why was
> this worth anyone's time to do so? What performance benefit does this
> "optimization" bring, and is it really worth all of the obviously known
> breakage that it causes?

I don't know the answers to those questions, but somebody did do the effort to
implement it and test it:
https://gcc.gnu.org/ml/gcc-patches/2015-04/msg00782.html

and then add various options to control it:
https://gcc.gnu.org/ml/gcc-patches/2016-02/msg01651.html

so they probably have their own motivation to do this instead of something
else. Nobody raised any objections at the time.

> We all have important things to be doing. It doesn't appear that the time
> invested in this "feature" was time well spent.

For better or worse, we don't get to decide on what other people spent their
own time unless we pay them.
>From gcc-bugs-return-534768-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 14:39:04 2016
Return-Path: <gcc-bugs-return-534768-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 125047 invoked by alias); 15 Aug 2016 14:39:04 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 125034 invoked by uid 89); 15 Aug 2016 14:39:03 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 14:38:53 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/71885] Incorrect code generated with -01, memset() function call is missing
Date: Mon, 15 Aug 2016 14:39:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71885-4-ewHVQCFVSW@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71885-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71885-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02104.txt.bz2
Content-length: 906

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71885

--- Comment #22 from Jonathan Wakely <redi at gcc dot gnu.org> ---
(In reply to hyc from comment #14)
> "If no initialization is performed" - this is the constructor, whose job is
> to create and initialize the object, and you're preventing that
> initialization from happening. How is that logical?

The constructor doesn't do any initialization. That's the problem.

(In reply to hyc from comment #15)
> This bug report is talking about a store that occurs *during* the
> constructor. This does not *precede* the constructor.

That's entirely incorrect. The initialization in the buggy code is done in
operator new, which runs *before* the constructor.

If the initialization was done in the constructor the code would not have
undefined behaviour and would work correctly.

Please try to understand the issue before ranting about time well spent.
>From gcc-bugs-return-534769-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 14:53:11 2016
Return-Path: <gcc-bugs-return-534769-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 4129 invoked by alias); 15 Aug 2016 14:53:10 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 4118 invoked by uid 89); 15 Aug 2016 14:53:10 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 14:53:00 +0000
From: "kern at sibbald dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/71885] Incorrect code generated with -01, memset() function call is missing
Date: Mon, 15 Aug 2016 14:53:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: kern at sibbald dot com
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71885-4-VPNpXQvdqz@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71885-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71885-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02105.txt.bz2
Content-length: 529

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71885

--- Comment #23 from Kern Sibbald <kern at sibbald dot com> ---
In response to the last post of Jonathan Wakely.

Thanks, that is the first time someone on the gcc side has said something that
makes sense.  Of course, possibly I missed or misunderstood previous arguments.

That said, I still think the project made a bad decision on this one, and spent
time implementing something that has broken a lot of code and caused users (not
just developers) a lot of grief.
>From gcc-bugs-return-534770-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 15:07:13 2016
Return-Path: <gcc-bugs-return-534770-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 100922 invoked by alias); 15 Aug 2016 15:07:13 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 100420 invoked by uid 89); 15 Aug 2016 15:07:13 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.3.2 spammy=pay, reserved
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 15:07:03 +0000
From: "hyc at symas dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/71885] Incorrect code generated with -01, memset() function call is missing
Date: Mon, 15 Aug 2016 15:07:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: hyc at symas dot com
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71885-4-cKfiRQbvtQ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71885-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71885-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02106.txt.bz2
Content-length: 1904

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71885

--- Comment #24 from hyc at symas dot com ---
(In reply to Manuel López-Ibáñez from comment #21)
> (In reply to hyc from comment #19)
> > That's all well and good. But, somebody had to go out of their way to
> > develop the code to identify this case of new as being a dead store. Why was
> > this worth anyone's time to do so? What performance benefit does this
> > "optimization" bring, and is it really worth all of the obviously known
> > breakage that it causes?
> 
> I don't know the answers to those questions, but somebody did do the effort
> to implement it and test it:
> https://gcc.gnu.org/ml/gcc-patches/2015-04/msg00782.html

I see a patch, I don't see justification / motivation / profiling / benchmark
results quantifying the impact of this patch.

> and then add various options to control it:
> https://gcc.gnu.org/ml/gcc-patches/2016-02/msg01651.html
> 
> so they probably have their own motivation to do this instead of something
> else. Nobody raised any objections at the time.
> 
> > We all have important things to be doing. It doesn't appear that the time
> > invested in this "feature" was time well spent.
> 
> For better or worse, we don't get to decide on what other people spent their
> own time unless we pay them.

No, but you get to decide whether to accept the work or not based on whether it
actually solved a problem that programmers care about. Or whether the added
complexity was worth any added maintenance cost or compile time.

This feature is enabled at -O1, which is usually reserved for non-aggressive,
benign optimizations. In what way is this feature an optimization? How does it
qualify as benign? Where was *any* critical review of this thing?

When I was a gcc maintainer (1988-1996) a patch like this wouldn't have
proceeded without answers to these questions.
>From gcc-bugs-return-534771-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 15:10:23 2016
Return-Path: <gcc-bugs-return-534771-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 129068 invoked by alias); 15 Aug 2016 15:10:22 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 129052 invoked by uid 89); 15 Aug 2016 15:10:22 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=individuals
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 15:10:12 +0000
From: "manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/71885] Incorrect code generated with -01, memset() function call is missing
Date: Mon, 15 Aug 2016 15:10:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: manu at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71885-4-6WwJXY71BR@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71885-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71885-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02107.txt.bz2
Content-length: 1134

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71885

--- Comment #25 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
(In reply to Kern Sibbald from comment #23)
> That said, I still think the project made a bad decision on this one, and

The "project" doesn't make decisions. Individuals submit patches and other
individuals (or the same one) who have a long history of useful contributions
approve them if nobody speaks out.

Markus, you and I (and perhaps others) may agree that the potential gains in
optimization do not seem to justify the grief caused, but we (including you)
are not bothered enough to do the work required to change the status-quo (for
example, adding a warning to detect this case and only enabling this
optimization for -Ofast would be a good way to convince maintainers to change
the default).

Arguing from an assumption of bad faith ("g++'s tinkering with valid user's
programs should stop", "g++ generated bug") is not going to convince anyone to
do the work that you want to see done for you for free, only entrench them in
their own opinion and stop listening to you.
>From gcc-bugs-return-534772-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 16:12:34 2016
Return-Path: <gcc-bugs-return-534772-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 94542 invoked by alias); 15 Aug 2016 16:12:34 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 94533 invoked by uid 89); 15 Aug 2016 16:12:33 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:457
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 16:12:23 +0000
From: "jan.kratochvil at redhat dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72822] libiberty/ demangler crash
Date: Mon, 15 Aug 2016 16:12:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jan.kratochvil at redhat dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72822-4-eRsyQPZzbg@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72822-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72822-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02108.txt.bz2
Content-length: 420

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72822

--- Comment #2 from Jan Kratochvil <jan.kratochvil at redhat dot com> ---
Without a fix I do not know if it is the same problem or not:

_ZNK6clover6detail11basic_rangeINS_13adaptor_rangeIZNS_6kernel6launchERNS_13command_queueERKSt6vectorImSaImEESA_SA_EUlmE_JRS8_EEENS0_16iterator_adaptorISB_JN9__gnu_cxx17__normal_iteratorIPmS8_EEEEESJ_EcvT_IS6_IPjSaISN_EEvEEv
>From gcc-bugs-return-534773-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 16:18:16 2016
Return-Path: <gcc-bugs-return-534773-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 98146 invoked by alias); 15 Aug 2016 16:18:16 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 98136 invoked by uid 89); 15 Aug 2016 16:18:15 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:913
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 16:18:05 +0000
From: "segher at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/73650] powerpc: -mcpuå00mc hits ICE: insn does not satisfy its constraints
Date: Mon, 15 Aug 2016 16:18:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: segher at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: segher at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-73650-4-qEQvoCT8qR@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73650-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73650-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02109.txt.bz2
Content-length: 856

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73650

--- Comment #9 from Segher Boessenkool <segher at gcc dot gnu.org> ---
Author: segher
Date: Mon Aug 15 16:17:21 2016
New Revision: 239483

URL: https://gcc.gnu.org/viewcvs?rev=239483&root=gcc&view=rev
Log:
lra: A multiple_sets is not a simple_move_p (PR73650)

In the PR we have a PARALLEL of a move and a compare (a "mr." instruction).
The compare is dead, so single_set on it returns just the move.  Then,
simple_move_p returns true; but the instruction does need reloads in this
case.  This patch solves this by making simple_move_p return false for
every multiple_sets instruction.


        PR rtl-optimization/73650
        * lra-constraints.c (simple_move_p): If the insn is multiple_sets
        it is not a simple move.

Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/lra-constraints.c
>From gcc-bugs-return-534774-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 16:42:28 2016
Return-Path: <gcc-bugs-return-534774-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 88744 invoked by alias); 15 Aug 2016 16:42:28 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 88733 invoked by uid 89); 15 Aug 2016 16:42:27 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 16:42:17 +0000
From: "danielberger at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/76911] New: internal compiler segfault on illegal implicit cast to decimal64
Date: Mon, 15 Aug 2016 16:42:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: danielberger at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-76911-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02110.txt.bz2
Content-length: 1055

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76911

            Bug ID: 76911
           Summary: internal compiler segfault on illegal implicit cast to
                    decimal64
           Product: gcc
           Version: 6.1.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: danielberger at gmail dot com
  Target Milestone: ---

Created attachment 39445
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39445&action=edit
minimal source

minimal code - crash.cpp:

#include <decimal/decimal>
double get_double();
std::decimal::decimal64 test() {
  return get_double();  // invalid conversion
}

gcc 6.1.0
gcc -v -save-temps crash.cpp

this triggers "internal compiler error: Segmentation fault"

previous versions of such as gcc 5.3 give a compilation error:
10 : error: converting to 'std::decimal::decimal64' from initializer list would
use explicit constructor 'std::decimal::decimal64::decimal64(double)'
>From gcc-bugs-return-534775-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 16:43:19 2016
Return-Path: <gcc-bugs-return-534775-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 89884 invoked by alias); 15 Aug 2016 16:43:19 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 89873 invoked by uid 89); 15 Aug 2016 16:43:18 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 16:43:08 +0000
From: "danielberger at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/76911] internal compiler segfault on illegal implicit cast to decimal64
Date: Mon, 15 Aug 2016 16:43:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: danielberger at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: attachments.created
Message-ID: <bug-76911-4-OTPW0JARHH@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76911-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76911-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02111.txt.bz2
Content-length: 232

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76911

--- Comment #1 from danielberger at gmail dot com ---
Created attachment 39446
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39446&action=edit
stderr from compilation
>From gcc-bugs-return-534776-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 16:44:27 2016
Return-Path: <gcc-bugs-return-534776-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 91189 invoked by alias); 15 Aug 2016 16:44:27 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 91180 invoked by uid 89); 15 Aug 2016 16:44:26 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 16:44:16 +0000
From: "danielberger at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/76911] internal compiler segfault on illegal implicit cast to decimal64
Date: Mon, 15 Aug 2016 16:44:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: danielberger at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: attachments.created
Message-ID: <bug-76911-4-crSYggu3mJ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76911-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76911-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02112.txt.bz2
Content-length: 228

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76911

--- Comment #2 from danielberger at gmail dot com ---
Created attachment 39447
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39447&action=edit
preprocessed source
>From gcc-bugs-return-534777-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 17:19:25 2016
Return-Path: <gcc-bugs-return-534777-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 20959 invoked by alias); 15 Aug 2016 17:19:24 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 20948 invoked by uid 89); 15 Aug 2016 17:19:24 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:969
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 17:19:23 +0000
From: "thopre01 at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/76957] New: FAIL: gcc.dg/graphite/scop-dsyr2k.c scan-tree-dump-times graphite "number of SCoPs
Date: Mon, 15 Aug 2016 17:19:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: thopre01 at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter cc target_milestone cf_gcctarget attachments.created
Message-ID: <bug-76957-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02113.txt.bz2
Content-length: 1018

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76957

            Bug ID: 76957
           Summary: FAIL: gcc.dg/graphite/scop-dsyr2k.c
                    scan-tree-dump-times graphite "number of SCoPs
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: tree-optimization
          Assignee: unassigned at gcc dot gnu.org
          Reporter: thopre01 at gcc dot gnu.org
                CC: rguenth at gcc dot gnu.org
  Target Milestone: ---
            Target: arm-none-eabi

Created attachment 39449
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39449&action=edit
graphite dump after r239357

Hi,

Graphite scan directives in gcc.dg/graphite/scop-dsyr2k.c and
gcc.dg/graphite/scop-dsyrk.c started to fail on arm-none-eabi targets after
r239357.

Number of SCoPs changed from 1 to 0 in both case. Please find attached a dump
after the patch. If it is just a testism, please adjust component accordingly.
>From gcc-bugs-return-534778-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 17:25:59 2016
Return-Path: <gcc-bugs-return-534778-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 30112 invoked by alias); 15 Aug 2016 17:25:59 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 30099 invoked by uid 89); 15 Aug 2016 17:25:58 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:1252
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 17:25:48 +0000
From: "jason at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72775] [6/7 Regression] internal compiler error: in finish_expr_stmt, at cp/semantics.c:677
Date: Mon, 15 Aug 2016 17:25:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jason at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-72775-4-mAWv7iiZhU@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72775-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72775-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02114.txt.bz2
Content-length: 1248

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72775

Jason Merrill <jason at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jason at gcc dot gnu.org

--- Comment #4 from Jason Merrill <jason at gcc dot gnu.org> ---
(In reply to Martin Sebor from comment #3)
> (In reply to Marek Polacek from comment #1)
> > But before r233183 this code compiled fine.
> 
> It didn't do what one would expect at runtime, though, and neither did a
> program that used the aggregate initialization (i.e., struct S { bool b;
> char a[]; } s = { 1, "foo" };) because it treated the flexible array member
> as a zero-length array.  With the flexible array member improvements
> committed in 6.0, GCC accepts the latter, so it seems that the original test
> case should be accepted as well, as an extension.  I.e., I suggest to treat
> this as ice-on-valid code.

But the initialization happens in the default constructor, whereas allocating
space for the object happens before the constructor.  I don't think we should
try to support initialization of a flexible array member in a constructor.
>From gcc-bugs-return-534779-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 17:35:55 2016
Return-Path: <gcc-bugs-return-534779-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 40744 invoked by alias); 15 Aug 2016 17:35:55 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 40720 invoked by uid 89); 15 Aug 2016 17:35:54 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=1.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_05,GAPPY_SUBJECT autolearn=no version=3.3.2 spammy=router, Router, r.o.u.t.e.r, belkin
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 17:35:47 +0000
From: "waselandrnadehjn at yopmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug driver/76977] B.e.l.k.i.n R.o.u.t.e.r @@@@((((1.8.4.4.3.0.7.5.7.0.1 B.e.l.k.i.n R.o.u.t.e.r T.e.c.h S.u.p.p.o.r.t N.u.m.b.e.r,
Date: Mon, 15 Aug 2016 17:35:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: driver
X-Bugzilla-Version: tree-ssa
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: waselandrnadehjn at yopmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-76977-4-s2anej8FzV@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76977-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76977-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02115.txt.bz2
Content-length: 11716

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76977

--- Comment #1 from Wasla Hamrik <waselandrnadehjn at yopmail dot com> ---
Belkin Router. t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 Belkin
RouterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, Belkin Router 
c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r Belkin Router  p.h.o.n.e
n.u.m.b.e.r> Belkin Router t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 Belkin RouterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r,
Belkin Router  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r Belkin
Router  p.h.o.n.e n.u.m.b.e.r> Belkin Router t.e.c.h. su.p.po.r.t p.h.o.n.e
n.u.m.b.e.r 1 844-307-5701 Belkin RouterR.o.u.t.e.r tech s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r, Belkin Router  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e
n.u.m.b.e.r Belkin Router  p.h.o.n.e n.u.m.b.e.r> Belkin Router t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 Belkin RouterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, Belkin Router  c.u.s.t.o.m.e.r
s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r Belkin Router  p.h.o.n.e n.u.m.b.e.r>
Belkin Router t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 Belkin
RouterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, Belkin Router 
c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r Belkin Router  p.h.o.n.e
n.u.m.b.e.r> Belkin Router t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 Belkin RouterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r,
Belkin Router  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r Belkin
Router  p.h.o.n.e n.u.m.b.e.r> Belkin Router t.e.c.h. su.p.po.r.t p.h.o.n.e
n.u.m.b.e.r 1 844-307-5701 Belkin RouterR.o.u.t.e.r tech s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r, Belkin Router  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e
n.u.m.b.e.r Belkin Router  p.h.o.n.e n.u.m.b.e.r> Belkin Router t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 Belkin RouterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, Belkin Router  c.u.s.t.o.m.e.r
s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r Belkin Router  p.h.o.n.e n.u.m.b.e.r>
Belkin Router t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 Belkin
RouterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, Belkin Router 
c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r Belkin Router  p.h.o.n.e
n.u.m.b.e.r> Belkin Router t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 Belkin RouterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r,
Belkin Router  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r Belkin
Router  p.h.o.n.e n.u.m.b.e.r> Belkin Router t.e.c.h. su.p.po.r.t p.h.o.n.e
n.u.m.b.e.r 1 844-307-5701 Belkin RouterR.o.u.t.e.r tech s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r, Belkin Router  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e
n.u.m.b.e.r Belkin Router  p.h.o.n.e n.u.m.b.e.r> Belkin Router t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 Belkin RouterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, Belkin Router  c.u.s.t.o.m.e.r
s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r Belkin Router  p.h.o.n.e n.u.m.b.e.r>
Belkin Router t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 Belkin
RouterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, Belkin Router 
c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r Belkin Router  p.h.o.n.e
n.u.m.b.e.r> Belkin Router t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 Belkin RouterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r,
Belkin Router  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r Belkin
Router  p.h.o.n.e n.u.m.b.e.r> Belkin Router t.e.c.h. su.p.po.r.t p.h.o.n.e
n.u.m.b.e.r 1 844-307-5701 Belkin RouterR.o.u.t.e.r tech s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r, Belkin Router  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e
n.u.m.b.e.r Belkin Router  p.h.o.n.e n.u.m.b.e.r> Belkin Router t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 Belkin RouterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, Belkin Router  c.u.s.t.o.m.e.r
s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r Belkin Router  p.h.o.n.e n.u.m.b.e.r>
Belkin Router t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 Belkin
RouterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, Belkin Router 
c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r Belkin Router  p.h.o.n.e
n.u.m.b.e.r> Belkin Router t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 Belkin RouterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r,
Belkin Router  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r Belkin
Router  p.h.o.n.e n.u.m.b.e.r> Belkin Router t.e.c.h. su.p.po.r.t p.h.o.n.e
n.u.m.b.e.r 1 844-307-5701 Belkin RouterR.o.u.t.e.r tech s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r, Belkin Router  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e
n.u.m.b.e.r Belkin Router  p.h.o.n.e n.u.m.b.e.r> Belkin Router t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 Belkin RouterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, Belkin Router  c.u.s.t.o.m.e.r
s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r Belkin Router  p.h.o.n.e n.u.m.b.e.r>
Belkin Router t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 Belkin
RouterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, Belkin Router 
c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r Belkin Router  p.h.o.n.e
n.u.m.b.e.r> Belkin Router t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 Belkin RouterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r,
Belkin Router  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r Belkin
Router  p.h.o.n.e n.u.m.b.e.r> Belkin Router t.e.c.h. su.p.po.r.t p.h.o.n.e
n.u.m.b.e.r 1 844-307-5701 Belkin RouterR.o.u.t.e.r tech s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r, Belkin Router  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e
n.u.m.b.e.r Belkin Router  p.h.o.n.e n.u.m.b.e.r> Belkin Router t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 Belkin RouterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, Belkin Router  c.u.s.t.o.m.e.r
s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r Belkin Router  p.h.o.n.e n.u.m.b.e.r>
Belkin Router t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 Belkin
RouterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, Belkin Router 
c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r Belkin Router  p.h.o.n.e
n.u.m.b.e.r> Belkin Router t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 Belkin RouterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r,
Belkin Router  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r Belkin
Router  p.h.o.n.e n.u.m.b.e.r> Belkin Router t.e.c.h. su.p.po.r.t p.h.o.n.e
n.u.m.b.e.r 1 844-307-5701 Belkin RouterR.o.u.t.e.r tech s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r, Belkin Router  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e
n.u.m.b.e.r Belkin Router  p.h.o.n.e n.u.m.b.e.r> Belkin Router t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 Belkin RouterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, Belkin Router  c.u.s.t.o.m.e.r
s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r Belkin Router  p.h.o.n.e n.u.m.b.e.r>
Belkin Router t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 Belkin
RouterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, Belkin Router 
c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r Belkin Router  p.h.o.n.e
n.u.m.b.e.r> Belkin Router t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 Belkin RouterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r,
Belkin Router  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r Belkin
Router  p.h.o.n.e n.u.m.b.e.r> Belkin Router t.e.c.h. su.p.po.r.t p.h.o.n.e
n.u.m.b.e.r 1 844-307-5701 Belkin RouterR.o.u.t.e.r tech s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r, Belkin Router  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e
n.u.m.b.e.r Belkin Router  p.h.o.n.e n.u.m.b.e.r> Belkin Router t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 Belkin RouterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, Belkin Router  c.u.s.t.o.m.e.r
s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r Belkin Router  p.h.o.n.e n.u.m.b.e.r>
Belkin Router t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 Belkin
RouterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, Belkin Router 
c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r Belkin Router  p.h.o.n.e
n.u.m.b.e.r> Belkin Router t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 Belkin RouterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r,
Belkin Router  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r Belkin
Router  p.h.o.n.e n.u.m.b.e.r> Belkin Router t.e.c.h. su.p.po.r.t p.h.o.n.e
n.u.m.b.e.r 1 844-307-5701 Belkin RouterR.o.u.t.e.r tech s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r, Belkin Router  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e
n.u.m.b.e.r Belkin Router  p.h.o.n.e n.u.m.b.e.r> Belkin Router t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 Belkin RouterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, Belkin Router  c.u.s.t.o.m.e.r
s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r Belkin Router  p.h.o.n.e n.u.m.b.e.r>
Belkin Router t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 Belkin
RouterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, Belkin Router 
c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r Belkin Router  p.h.o.n.e
n.u.m.b.e.r> Belkin Router t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 Belkin RouterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r,
Belkin Router  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r Belkin
Router  p.h.o.n.e n.u.m.b.e.r> Belkin Router t.e.c.h. su.p.po.r.t p.h.o.n.e
n.u.m.b.e.r 1 844-307-5701 Belkin RouterR.o.u.t.e.r tech s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r, Belkin Router  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e
n.u.m.b.e.r Belkin Router  p.h.o.n.e n.u.m.b.e.r> Belkin Router t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 Belkin RouterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, Belkin Router  c.u.s.t.o.m.e.r
s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r Belkin Router  p.h.o.n.e n.u.m.b.e.r>
Belkin Router t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 Belkin
RouterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, Belkin Router 
c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r Belkin Router  p.h.o.n.e
n.u.m.b.e.r> Belkin Router t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 Belkin RouterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r,
Belkin Router  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r Belkin
Router  p.h.o.n.e n.u.m.b.e.r> Belkin Router t.e.c.h. su.p.po.r.t p.h.o.n.e
n.u.m.b.e.r 1 844-307-5701 Belkin RouterR.o.u.t.e.r tech s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r, Belkin Router  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e
n.u.m.b.e.r Belkin Router  p.h.o.n.e n.u.m.b.e.r> Belkin Router t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 Belkin RouterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, Belkin Router  c.u.s.t.o.m.e.r
s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r Belkin Router  p.h.o.n.e n.u.m.b.e.r>
Belkin Router t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 Belkin
RouterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, Belkin Router 
c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r Belkin Router  p.h.o.n.e
n.u.m.b.e.r> Belkin Router t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 Belkin RouterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r,
Belkin Router  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r Belkin
Router  p.h.o.n.e n.u.m.b.e.r> Belkin Router t.e.c.h. su.p.po.r.t p.h.o.n.e
n.u.m.b.e.r 1 844-307-5701 Belkin RouterR.o.u.t.e.r tech s.u.p.p.o.r.t
p.h.o.n.e n.u.m.b.e.r, Belkin Router  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e
n.u.m.b.e.r Belkin Router  p.h.o.n.e n.u.m.b.e.r>
>From gcc-bugs-return-534780-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 17:35:55 2016
Return-Path: <gcc-bugs-return-534780-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 40754 invoked by alias); 15 Aug 2016 17:35:55 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 40725 invoked by uid 89); 15 Aug 2016 17:35:55 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 17:35:44 +0000
From: "wschmidt at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/74585] powerpc64: Very poor code generation for homogeneous vector aggregates passed in registers
Date: Mon, 15 Aug 2016 17:35:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wschmidt at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-74585-4-rwI5spymPF@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-74585-4@http.gcc.gnu.org/bugzilla/>
References: <bug-74585-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02116.txt.bz2
Content-length: 1204

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74585

--- Comment #11 from Bill Schmidt <wschmidt at gcc dot gnu.org> ---
With the original test case, -mcpu=power8 is problematic because of the use of
the "swapping stores," whose RHS is a vec_select rather than a register or
subreg.  This prevents us from saving the RHS of the store for use in replacing
subsequent loads, running afoul of this logic in dse.c:record_store ():

  if (GET_CODE (body) == SET
      /* No place to keep the value after ra.  */
      && !reload_completed
      && (REG_P (SET_SRC (body))                   <= this part
          || GET_CODE (SET_SRC (body)) == SUBREG
          || CONSTANT_P (SET_SRC (body)))
      && !MEM_VOLATILE_P (mem)
      /* Sometimes the store and reload is used for truncation and              
         rounding.  */
      && !(FLOAT_MODE_P (GET_MODE (mem)) && (flag_float_store)))

We can circumvent this if we can use stvx to force the parameters to the stack,
which is legal since the stack slots are properly aligned.

However, even using -mcpu=power9, we don't handle removing the stores and
replacing the partial loads with register logic.
>From gcc-bugs-return-534782-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 17:39:37 2016
Return-Path: <gcc-bugs-return-534782-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 50281 invoked by alias); 15 Aug 2016 17:39:36 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 50267 invoked by uid 89); 15 Aug 2016 17:39:35 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 17:39:32 +0000
From: "trippels at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/76911] internal compiler segfault on illegal implicit cast to decimal64
Date: Mon, 15 Aug 2016 17:39:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: trippels at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-76911-4-YElILbCVpI@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76911-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76911-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02118.txt.bz2
Content-length: 461

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76911

Markus Trippelsdorf <trippels at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |trippels at gcc dot gnu.org

--- Comment #3 from Markus Trippelsdorf <trippels at gcc dot gnu.org> ---
I cannot reproduce this issue. Looks like it is already fixed.
>From gcc-bugs-return-534781-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 17:39:14 2016
Return-Path: <gcc-bugs-return-534781-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 49524 invoked by alias); 15 Aug 2016 17:39:13 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 49439 invoked by uid 89); 15 Aug 2016 17:39:12 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 17:39:07 +0000
From: "vanyacpp at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/76995] New: syntax error
Date: Mon, 15 Aug 2016 17:39:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: vanyacpp at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-76995-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02117.txt.bz2
Content-length: 812

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76995

            Bug ID: 76995
           Summary: syntax error
           Product: gcc
           Version: 6.2.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: vanyacpp at gmail dot com
  Target Milestone: ---

GCC shows syntax error on this code. Looks like it disambiguates the expression
"(mytype())(args...)" as cstyle-cast although "(args...)" is not a valid
cast-expression.

struct mytype
{
    template <typename... T>
    void operator()(T&& ...) const
    {}
};

template <typename... T>
void f(T&& ...args)
{
    (mytype())(args...); // error: expected binary operator before ')' token
}

int main()
{
    f(1, 2, 3);
}
>From gcc-bugs-return-534783-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 18:04:04 2016
Return-Path: <gcc-bugs-return-534783-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 55912 invoked by alias); 15 Aug 2016 18:04:03 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 54836 invoked by uid 89); 15 Aug 2016 18:04:02 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-0.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:2134
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 18:03:57 +0000
From: "wschmidt at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77034] New: [6.2RC regression] g++.dg/init/elide5.C fails on powerpc64-unknown-linux-gnu with -m32
Date: Mon, 15 Aug 2016 18:04:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wschmidt at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77034-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02119.txt.bz2
Content-length: 2182

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77034

            Bug ID: 77034
           Summary: [6.2RC regression] g++.dg/init/elide5.C fails on
                    powerpc64-unknown-linux-gnu with -m32
           Product: gcc
           Version: 6.2.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: wschmidt at gcc dot gnu.org
  Target Milestone: ---

Testing the release candidate, I see a regression versus the 6.1 release when
compiling the referenced test.  From the test log:

spawn -ignore SIGHUP
/home/wschmidt/gcc/build/gcc-6.2.0-RC-20160815/gcc/testsuit
e/g++1/../../xg++
-B/home/wschmidt/gcc/build/gcc-6.2.0-RC-20160815/gcc/testsuite
/g++1/../../
/home/wschmidt/gcc/gcc-6.2.0-RC-20160815/gcc/testsuite/g++.dg/init/
elide5.C -fno-diagnostics-show-caret -fdiagnostics-color=never -nostdinc++
-I/ho
me/wschmidt/gcc/build/gcc-6.2.0-RC-20160815/powerpc64-unknown-linux-gnu/32/libst
dc++-v3/include/powerpc64-unknown-linux-gnu
-I/home/wschmidt/gcc/build/gcc-6.2.0-RC-20160815/powerpc64-unknown-linux-gnu/32/libstdc++-v3/include
-I/home/wschmidt/gcc/gcc-6.2.0-RC-20160815/libstdc++-v3/libsupc++
-I/home/wschmidt/gcc/gcc-6.2.0-RC-20160815/libstdc++-v3/include/backward
-I/home/wschmidt/gcc/gcc-6.2.0-RC-20160815/libstdc++-v3/testsuite/util
-fmessage-length=0 -std=c++11 -pedantic-errors -Wno-long-long
-L/home/wschmidt/gcc/build/gcc-6.2.0-RC-20160815/powerpc64-unknown-linux-gnu/32/libstdc++-v3/src/.libs
-B/home/wschmidt/gcc/build/gcc-6.2.0-RC-20160815/powerpc64-unknown-linux-gnu/32/libstdc++-v3/src/.libs
-L/home/wschmidt/gcc/build/gcc-6.2.0-RC-20160815/powerpc64-unknown-linux-gnu/32/libstdc++-v3/src/.libs
-B/home/wschmidt/gcc/build/gcc-6.2.0-RC-20160815/powerpc64-unknown-linux-gnu/32/libitm/
-L/home/wschmidt/gcc/build/gcc-6.2.0-RC-20160815/powerpc64-unknown-linux-gnu/32/libitm/.libs
-lm -m32 -o elide5.exe
/home/wschmidt/gcc/gcc-6.2.0-RC-20160815/gcc/testsuite/g++.dg/init/elide5.C:4:42:
error: 'operator new' takes type 'size_t' ('unsigned int') as first parameter
[-fpermissive]
compiler exited with status 1
>From gcc-bugs-return-534784-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 18:06:36 2016
Return-Path: <gcc-bugs-return-534784-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 81728 invoked by alias); 15 Aug 2016 18:06:36 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 81717 invoked by uid 89); 15 Aug 2016 18:06:35 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:431
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 18:06:25 +0000
From: "wschmidt at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77034] [6.2RC regression] g++.dg/init/elide5.C fails on powerpc64-unknown-linux-gnu with -m32
Date: Mon, 15 Aug 2016 18:06:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wschmidt at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cf_gcctarget cc target_milestone
Message-ID: <bug-77034-4-ZoxV5L8v8F@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77034-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77034-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02120.txt.bz2
Content-length: 520

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77034

Bill Schmidt <wschmidt at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Target|                            |powerpc64-unknown-linux-gnu
                 CC|                            |jakub at gcc dot gnu.org,
                   |                            |rguenth at gcc dot gnu.org
   Target Milestone|---                         |6.2
>From gcc-bugs-return-534785-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 18:06:47 2016
Return-Path: <gcc-bugs-return-534785-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 82455 invoked by alias); 15 Aug 2016 18:06:46 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 82439 invoked by uid 89); 15 Aug 2016 18:06:46 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:579
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 18:06:45 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/76995] type-id/expression in cstyle-cast are disambiguated incorrectly
Date: Mon, 15 Aug 2016 18:06:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-76995-4-wdbg23Zti6@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76995-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76995-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02121.txt.bz2
Content-length: 600

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76995

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |INVALID

--- Comment #1 from Jonathan Wakely <redi at gcc dot gnu.org> ---
I'm pretty sure G++ is right to reject it. Clang and EDG give exactly the same
error.

If you remove the parentheses around mytype() or use (mytype{}) then there's no
problem.
>From gcc-bugs-return-534786-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 18:10:01 2016
Return-Path: <gcc-bugs-return-534786-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 35076 invoked by alias); 15 Aug 2016 18:10:01 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 34489 invoked by uid 89); 15 Aug 2016 18:10:00 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=0.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00,GAPPY_SUBJECT autolearn=no version=3.3.2 spammy=UD:P, C.u.s.t.o.m.e.r, UD:C.u.s.t.o.m.e.r, H.P
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 18:09:50 +0000
From: "wakelandrande at yopmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug debug/77042] New: HP Printer @@@(1-844-307-5701 H.P P.r.i.n.t.e.r C.u.s.t.o.m.e.r S.e.r.v.i.c.e N.u.m.b.e.r
Date: Mon, 15 Aug 2016 18:10:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: debug
X-Bugzilla-Version: trans-mem
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wakelandrande at yopmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77042-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02122.txt.bz2
Content-length: 11861

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77042

            Bug ID: 77042
           Summary: HP Printer @@@(1-844-307-5701 H.P P.r.i.n.t.e.r
                    C.u.s.t.o.m.e.r S.e.r.v.i.c.e N.u.m.b.e.r
           Product: gcc
           Version: trans-mem
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: debug
          Assignee: unassigned at gcc dot gnu.org
          Reporter: wakelandrande at yopmail dot com
  Target Milestone: ---

HP Printer @@@(1-844-307-5701 H.P P.r.i.n.t.e.r C.u.s.t.o.m.e.r S.e.r.v.i.c.e
N.u.m.b.e.r HP Printer @@@(1-844-307-5701 H.P P.r.i.n.t.e.r C.u.s.t.o.m.e.r
S.e.r.v.i.c.e N.u.m.b.e.r HP Printer @@@(1-844-307-5701 H.P P.r.i.n.t.e.r
C.u.s.t.o.m.e.r S.e.r.v.i.c.e N.u.m.b.e.r HP Printer @@@(1-844-307-5701 H.P
P.r.i.n.t.e.r C.u.s.t.o.m.e.r S.e.r.v.i.c.e N.u.m.b.e.r HP Printer. t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 HP PrinterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e
p.h.o.n.e n.u.m.b.e.r HP Printer  p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 HP PrinterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e
p.h.o.n.e n.u.m.b.e.r HP Printer  p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 HP PrinterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e
p.h.o.n.e n.u.m.b.e.r HP Printer  p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 HP PrinterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e
p.h.o.n.e n.u.m.b.e.r HP Printer  p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 HP PrinterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e
p.h.o.n.e n.u.m.b.e.r HP Printer  p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 HP PrinterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e
p.h.o.n.e n.u.m.b.e.r HP Printer  p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 HP PrinterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e
p.h.o.n.e n.u.m.b.e.r HP Printer  p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 HP PrinterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e
p.h.o.n.e n.u.m.b.e.r HP Printer  p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 HP PrinterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e
p.h.o.n.e n.u.m.b.e.r HP Printer  p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 HP PrinterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e
p.h.o.n.e n.u.m.b.e.r HP Printer  p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 HP PrinterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e
p.h.o.n.e n.u.m.b.e.r HP Printer  p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 HP PrinterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e
p.h.o.n.e n.u.m.b.e.r HP Printer  p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 HP PrinterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e
p.h.o.n.e n.u.m.b.e.r HP Printer  p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 HP PrinterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e
p.h.o.n.e n.u.m.b.e.r HP Printer  p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 HP PrinterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e
p.h.o.n.e n.u.m.b.e.r HP Printer  p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 HP PrinterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e
p.h.o.n.e n.u.m.b.e.r HP Printer  p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 HP PrinterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e
p.h.o.n.e n.u.m.b.e.r HP Printer  p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 HP PrinterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e
p.h.o.n.e n.u.m.b.e.r HP Printer  p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 HP PrinterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e
p.h.o.n.e n.u.m.b.e.r HP Printer  p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 HP PrinterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e
p.h.o.n.e n.u.m.b.e.r HP Printer  p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 HP PrinterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e
p.h.o.n.e n.u.m.b.e.r HP Printer  p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 HP PrinterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e
p.h.o.n.e n.u.m.b.e.r HP Printer  p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 HP PrinterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e
p.h.o.n.e n.u.m.b.e.r HP Printer  p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 HP PrinterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e
p.h.o.n.e n.u.m.b.e.r HP Printer  p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 HP PrinterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e
p.h.o.n.e n.u.m.b.e.r HP Printer  p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 HP PrinterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e
p.h.o.n.e n.u.m.b.e.r HP Printer  p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 HP PrinterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e
p.h.o.n.e n.u.m.b.e.r HP Printer  p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 HP PrinterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e
p.h.o.n.e n.u.m.b.e.r HP Printer  p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 HP PrinterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e
p.h.o.n.e n.u.m.b.e.r HP Printer  p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 HP PrinterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e
p.h.o.n.e n.u.m.b.e.r HP Printer  p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 HP PrinterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e
p.h.o.n.e n.u.m.b.e.r HP Printer  p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 HP PrinterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e
p.h.o.n.e n.u.m.b.e.r HP Printer  p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 HP PrinterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e
p.h.o.n.e n.u.m.b.e.r HP Printer  p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 HP PrinterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e
p.h.o.n.e n.u.m.b.e.r HP Printer  p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 HP PrinterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e
p.h.o.n.e n.u.m.b.e.r HP Printer  p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 HP PrinterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e
p.h.o.n.e n.u.m.b.e.r HP Printer  p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 HP PrinterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e
p.h.o.n.e n.u.m.b.e.r HP Printer  p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 HP PrinterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e
p.h.o.n.e n.u.m.b.e.r HP Printer  p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 HP PrinterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e
p.h.o.n.e n.u.m.b.e.r HP Printer  p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 HP PrinterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e
p.h.o.n.e n.u.m.b.e.r HP Printer  p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 HP PrinterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e
p.h.o.n.e n.u.m.b.e.r HP Printer  p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 HP PrinterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e
p.h.o.n.e n.u.m.b.e.r HP Printer  p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 HP PrinterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e
p.h.o.n.e n.u.m.b.e.r HP Printer  p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 HP PrinterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e
p.h.o.n.e n.u.m.b.e.r HP Printer  p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 HP PrinterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e
p.h.o.n.e n.u.m.b.e.r HP Printer  p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 HP PrinterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e
p.h.o.n.e n.u.m.b.e.r HP Printer  p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h.
su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1 844-307-5701 HP PrinterR.o.u.t.e.r tech
s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e
p.h.o.n.e n.u.m.b.e.r HP Printer  p.h.o.n.e n.u.m.b.e.r>
>From gcc-bugs-return-534787-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 18:12:39 2016
Return-Path: <gcc-bugs-return-534787-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 52638 invoked by alias); 15 Aug 2016 18:12:38 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 52628 invoked by uid 89); 15 Aug 2016 18:12:38 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=commitdiff
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 18:12:28 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug testsuite/77034] [6.2RC regression] g++.dg/init/elide5.C fails on powerpc64-unknown-linux-gnu with -m32
Date: Mon, 15 Aug 2016 18:12:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: testsuite
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: component
Message-ID: <bug-77034-4-vytezTJKVl@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77034-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77034-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02123.txt.bz2
Content-length: 514

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77034

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
          Component|c++                         |testsuite

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
The testsuite fix:
https://gcc.gnu.org/git/?p=gcc.git;a=commitdiff;h=064909814cdd4f40c909c34e8369dc2ba7d3d931

Just needs to be backported.
>From gcc-bugs-return-534788-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 18:20:29 2016
Return-Path: <gcc-bugs-return-534788-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 67923 invoked by alias); 15 Aug 2016 18:20:29 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 67903 invoked by uid 89); 15 Aug 2016 18:20:29 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=2.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_20,GAPPY_SUBJECT autolearn=no version=3.3.2 spammy=lno, UD:P, UD:C.u.s.t.o.m.e.r, C.u.s.t.o.m.e.r
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 18:20:20 +0000
From: "wakelandrandevv at yopmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug driver/77050] New: HP Printer @@@(1-844-307-5701 H.P P.r.i.n.t.e.r C.u.s.t.o.m.e.r S.e.r.v.i.c.e N.u.m.b.e.r
Date: Mon, 15 Aug 2016 18:20:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: driver
X-Bugzilla-Version: lno
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wakelandrandevv at yopmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77050-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02124.txt.bz2
Content-length: 12228

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77050

            Bug ID: 77050
           Summary: HP Printer @@@(1-844-307-5701 H.P P.r.i.n.t.e.r
                    C.u.s.t.o.m.e.r S.e.r.v.i.c.e N.u.m.b.e.r
           Product: gcc
           Version: lno
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: driver
          Assignee: unassigned at gcc dot gnu.org
          Reporter: wakelandrandevv at yopmail dot com
  Target Milestone: ---

HP Printer @@@(1-844-307-5701 H.P P.r.i.n.t.e.r C.u.s.t.o.m.e.r S.e.r.v.i.c.e
N.u.m.b.e.r HP Printer @@@(1-844-307-5701 H.P P.r.i.n.t.e.r C.u.s.t.o.m.e.r
S.e.r.v.i.c.e N.u.m.b.e.r HP Printer @@@(1-844-307-5701 H.P P.r.i.n.t.e.r
C.u.s.t.o.m.e.r S.e.r.v.i.c.e N.u.m.b.e.r HP Printer @@@(1-844-307-5701 H.P
P.r.i.n.t.e.r C.u.s.t.o.m.e.r S.e.r.v.i.c.e N.u.m.b.e.r HP Printer
@@@(1-844-307-5701 H.P P.r.i.n.t.e.r C.u.s.t.o.m.e.r S.e.r.v.i.c.e N.u.m.b.e.r
HP Printer @@@(1-844-307-5701 H.P P.r.i.n.t.e.r C.u.s.t.o.m.e.r S.e.r.v.i.c.e
N.u.m.b.e.r HP Printer. t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 HP PrinterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP
Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r HP Printer 
p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 HP PrinterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP
Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r HP Printer 
p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 HP PrinterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP
Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r HP Printer 
p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 HP PrinterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP
Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r HP Printer 
p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 HP PrinterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP
Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r HP Printer 
p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 HP PrinterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP
Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r HP Printer 
p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 HP PrinterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP
Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r HP Printer 
p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 HP PrinterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP
Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r HP Printer 
p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 HP PrinterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP
Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r HP Printer 
p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 HP PrinterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP
Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r HP Printer 
p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 HP PrinterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP
Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r HP Printer 
p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 HP PrinterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP
Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r HP Printer 
p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 HP PrinterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP
Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r HP Printer 
p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 HP PrinterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP
Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r HP Printer 
p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 HP PrinterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP
Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r HP Printer 
p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 HP PrinterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP
Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r HP Printer 
p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 HP PrinterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP
Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r HP Printer 
p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 HP PrinterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP
Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r HP Printer 
p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 HP PrinterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP
Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r HP Printer 
p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 HP PrinterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP
Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r HP Printer 
p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 HP PrinterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP
Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r HP Printer 
p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 HP PrinterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP
Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r HP Printer 
p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 HP PrinterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP
Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r HP Printer 
p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 HP PrinterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP
Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r HP Printer 
p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 HP PrinterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP
Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r HP Printer 
p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 HP PrinterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP
Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r HP Printer 
p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 HP PrinterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP
Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r HP Printer 
p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 HP PrinterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP
Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r HP Printer 
p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 HP PrinterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP
Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r HP Printer 
p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 HP PrinterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP
Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r HP Printer 
p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 HP PrinterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP
Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r HP Printer 
p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 HP PrinterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP
Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r HP Printer 
p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 HP PrinterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP
Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r HP Printer 
p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 HP PrinterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP
Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r HP Printer 
p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 HP PrinterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP
Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r HP Printer 
p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 HP PrinterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP
Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r HP Printer 
p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 HP PrinterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP
Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r HP Printer 
p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 HP PrinterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP
Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r HP Printer 
p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 HP PrinterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP
Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r HP Printer 
p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 HP PrinterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP
Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r HP Printer 
p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 HP PrinterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP
Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r HP Printer 
p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 HP PrinterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP
Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r HP Printer 
p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 HP PrinterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP
Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r HP Printer 
p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 HP PrinterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP
Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r HP Printer 
p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 HP PrinterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP
Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r HP Printer 
p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 HP PrinterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP
Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r HP Printer 
p.h.o.n.e n.u.m.b.e.r> HP Printer t.e.c.h. su.p.po.r.t p.h.o.n.e n.u.m.b.e.r 1
844-307-5701 HP PrinterR.o.u.t.e.r tech s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r, HP
Printer  c.u.s.t.o.m.e.r s.e.r.v.i.c.e p.h.o.n.e n.u.m.b.e.r HP Printer 
p.h.o.n.e n.u.m.b.e.r>
>From gcc-bugs-return-534789-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 18:47:37 2016
Return-Path: <gcc-bugs-return-534789-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 110702 invoked by alias); 15 Aug 2016 18:47:37 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 110690 invoked by uid 89); 15 Aug 2016 18:47:36 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 18:47:26 +0000
From: "uros at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72867] SSE/AVX/AVX512: incorrect optimization of VMINPS/VMAXPS at compile time
Date: Mon, 15 Aug 2016 18:47:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: uros at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: ubizjak at gmail dot com
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72867-4-DiNIh3QXrO@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72867-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72867-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02125.txt.bz2
Content-length: 1837

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72867

--- Comment #4 from uros at gcc dot gnu.org ---
Author: uros
Date: Mon Aug 15 18:46:53 2016
New Revision: 239487

URL: https://gcc.gnu.org/viewcvs?rev=239487&root=gcc&view=rev
Log:
        PR target/72867
        * config/i386/sse.md (<code><mode>3<mask_name><round_saeonly_name>):
        Emit ieee_<ieee_maxmin><mode>3<mask_name><round_saeonly_name>
        for !flag_finite_math_only or flag_signed_zeros.
        (*<code><mode>3<mask_name><round_saeonly_name>): Rename from
        *<code><mode>3_finite<mask_name><round_saeonly_name>.  Do not
        depend on flag_finite_math_only.
        (ieee_<ieee_maxmin><mode>3<mask_name><round_saeonly_name>):
        New insn pattern.
        (*<code><mode>3<mask_name><round_saeonly_name>): Remove.
        (*ieee_smin<mode>3): Ditto.
        (*ieee_smax<mode>3): Ditto.
        * config/i386/mmx.md (mmx_<code>v2sf3): Emit
        mmx_ieee_<ieee_maxmin>v2sf3 for !flag_finite_math_only or
        flag_signed_zeros.
        (*mmx_<code>v2sf3): Rename from *mmx_<code>v2sf3_finite.  Do not
        depend on flag_finite_math_only.
        (mmx_ieee_<ieee_maxmin>v2sf3): New insn pattern.
        (*mmx_<code>v2sf3): Remove.
        * config/i386/subst.md (round_saeonly_mask_arg3): New subst attribute.
        * config/i386/i386.c (ix86_expand_sse_fp_mimnax): Check
        flag_signed_zeros instead of !flag_unsafe_math_optimizations.

testsuite/ChangeLog:

        PR target/72867
        * gcc.target/i386/pr72867.c: New test.


Added:
    trunk/gcc/testsuite/gcc.target/i386/pr72867.c
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/config/i386/i386.c
    trunk/gcc/config/i386/i386.md
    trunk/gcc/config/i386/mmx.md
    trunk/gcc/config/i386/sse.md
    trunk/gcc/config/i386/subst.md
    trunk/gcc/testsuite/ChangeLog
>From gcc-bugs-return-534790-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 19:36:48 2016
Return-Path: <gcc-bugs-return-534790-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 117287 invoked by alias); 15 Aug 2016 19:36:47 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 117272 invoked by uid 89); 15 Aug 2016 19:36:47 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=quickbooks, QuickBooks, toll-free, Tollfree
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 19:36:37 +0000
From: "giujmji at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/77161] New: Support for QuickBooks - 1844 717 3767 Call USA/CA (Toll-free) Now -
Date: Mon, 15 Aug 2016 19:36:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: lto
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: giujmji at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77161-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02126.txt.bz2
Content-length: 1290

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77161

            Bug ID: 77161
           Summary: Support for QuickBooks - 1844 717 3767 Call USA/CA
                    (Toll-free) Now -
           Product: gcc
           Version: lto
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ada
          Assignee: unassigned at gcc dot gnu.org
          Reporter: giujmji at gmail dot com
  Target Milestone: ---

Support for QuickBooks - 1844 717 3767 Call USA/CA (Toll-free) Now -
qb technical support
qb technical support number
qb technical support number for usa
qb technical support phone
qb technical support phone number
qb technical support phone number for usa
qb technical support telephone
qb technical support telephone for usa
qb technical support telephone number
qb technical support telephone number for usa
qb technical support phone for usa
qb technical support contact
qb technical support contact for usa
qb technical support contact number
qb technical support contact number for usa
qb technical support help
qb technical support help for usa
qb technical support help number
qb technical support help number usa
qb technical support helpline
qb technical support helpline for usa
qb technical support helpline number
>From gcc-bugs-return-534791-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 19:46:32 2016
Return-Path: <gcc-bugs-return-534791-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 62014 invoked by alias); 15 Aug 2016 19:46:32 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 61144 invoked by uid 89); 15 Aug 2016 19:46:31 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: =?ISO-8859-1?Q?Yes, score=7.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50,BODY_8BITS,GARBLED_BODY,URI_OBFU_WWW autolearn=no version=3.3.2 spammy=вÑ, пÑ, оÑ, еÑ?X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 19:46:21 +0000
From: "fdgk456 at yopmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/77174] New: Call@1-800-982-1603 | Get quick help for www.office.com/setup, www.office.com/myaccount, www.office.com/verify
Date: Mon, 15 Aug 2016 19:46:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: fdgk456 at yopmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77174-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02127.txt.bz2
Content-length: 3974

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77174

            Bug ID: 77174
           Summary: Call@1-800-982-1603 | Get quick help for
                    www.office.com/setup, www.office.com/myaccount,
                    www.office.com/verify
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: fdgk456 at yopmail dot com
  Target Milestone: ---

Call@1-800-982-1603 | Get quick help for www.office.com/setup,
www.office.com/myaccount, www.office.com/verify, login.microsoftonline.com. ms
office help line ...
www.office.com/setup
www.office.com/setup and follow the on-screen instructions
www.office.com/setup 2016
www.office.com/setup home and student 2016
office 365 setup download
office.com/myaccount product key
install microsoft office 2013
home office setup
ms office setup free download
()()()()()(*)()()()()()()******///////////
www.office.com/setup microsoft install download office 365
www.msoffice-setup.us/
microsoft www office com setup www office com myaccount microsoft office 365
install download office online setup office com.


Office.Com/Setup | Microsoft Office Setup | www.office.com/setup
office.com-setup.com/
1-800-982-1603 - If you are installing Microsoft Office Setup, MS Office 2013,
Office Setup 365 or other Office Products and facing some problem. You can ...


www.office.com/setup | Microsoft Office Setup Key
www.msofficehelpline.com/
1-800-982-1603 | Get quick help for www.office.com/setup,
www.office.com/myaccount, www.office.com/verify, login.microsoftonline.com. ms
office help line ...

www.office.com/setup | Microsoft office setup | office.com/setup | Install ...
www.microsoftofficesetup.com/
visit www.office.com/setup Call 1-800-982-1603 www.office.com/setup fix Office
setup problems chat us for free Office.com/Setup, office.com/support or ask our
...

Microsoft Office Setup - Office.com
https://office.com/setup
A description for this result is not available because of this site's
robots.txt
Learn more
Office
https://setup.office.com/
Translate this page
Введите ключ продукта. Подключитесь к учетной записи Майкрософт. Подтвердите
параметры. Получите Office. Здравствуйте! Давайте приступим.
redeem your product key - Office.com
https://www.office.com/setup365
Things you should know before you start: If you are the first person in your
organization to redeem a product key for this product, your account will be
created as ...
Install Office on your PC or Mac - Microsoft Office - Office Support
https://support.office.com/.../Install-Office-on-your-PC-or-Mac-4414eaaf-0478-48be-...
Install Office on your PC, Mac, smartphone, or iPad. ... Go to office.com/setup
and redeem your key. Step 1. Go to www.office.com/myaccount. Step 2. Sign in
with ...
www.Office.com/setup Office Setup Enter Key
https://www.officecom-setup.com/
Get Right Office Setup. People expect to use Office on all their devices and
now it is possible. Enter Licence key/Activation key ; Click install; click
run.
www.office.com/setup, Office Setup and Support, Install, Activate ...
www.msoffice-setup.com/
Visit the website www.office.com/setup to install your Office setup, Call
1-888-490-6675. We will help your install your Office setup. If you are facing
problem ...
>From gcc-bugs-return-534792-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 19:51:07 2016
Return-Path: <gcc-bugs-return-534792-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 91905 invoked by alias); 15 Aug 2016 19:51:07 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 91894 invoked by uid 89); 15 Aug 2016 19:51:06 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyÞfect, petition
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 19:50:56 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/72830] istream::seekg should not reset eofbit if -std=c++98
Date: Mon, 15 Aug 2016 19:51:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 4.6.3
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72830-4-Pk6ucnAUOR@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72830-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72830-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02128.txt.bz2
Content-length: 489

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72830

--- Comment #3 from Jonathan Wakely <redi at gcc dot gnu.org> ---
(In reply to Alex Henrie from comment #0)
> I realize that I could petition the GERMLINE authors to change the loop
> condition (and I eventually will), but the fact that you can't get the old
> behavior even with -std=c++98 is a bug in GCC.

No, it's not a bug. The old behaviour was considered a defect in the language,
and so the fix is applied unconditionally.
>From gcc-bugs-return-534793-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 19:56:47 2016
Return-Path: <gcc-bugs-return-534793-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 98034 invoked by alias); 15 Aug 2016 19:56:47 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 98019 invoked by uid 89); 15 Aug 2016 19:56:44 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 19:56:34 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug web/72856] Trottle bug creation for newly created accounts (to limit spam)
Date: Mon, 15 Aug 2016 19:56:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: web
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: LpSolit at netscape dot net
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72856-4-6zRg2lKGLd@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72856-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72856-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02129.txt.bz2
Content-length: 625

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72856

--- Comment #9 from Jonathan Wakely <redi at gcc dot gnu.org> ---
(In reply to Frank Ch. Eigler from comment #6)
> Per-account rate limits seem so easy to overcome, with spammers already
> creating numerous verified junk accounts with ease.

They're using a new account for every bug today, because I'm closing the bugs
as spam as soon as they create them. It isn't stopping them.

> I would suggest focusing on spam-prevention content analysis (spamassassin
> style), and post-spam cleanup (blacklisting, history editing, bug hiding?)
> efforts.

This this this this.
>From gcc-bugs-return-534794-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 20:34:03 2016
Return-Path: <gcc-bugs-return-534794-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 111927 invoked by alias); 15 Aug 2016 20:34:02 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 111909 invoked by uid 89); 15 Aug 2016 20:34:02 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 20:33:52 +0000
From: "manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/61121] -O2 -ftree-parallelize-loops=0 for maximum not accepted in 4.9.0
Date: Mon, 15 Aug 2016 20:34:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: manu at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cf_gcctarget cc
Message-ID: <bug-61121-4-JiPyrTEGdC@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-61121-4@http.gcc.gnu.org/bugzilla/>
References: <bug-61121-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02130.txt.bz2
Content-length: 736

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61121

Manuel López-Ibáñez <manu at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Target|                            |x86_64-w64-mingw32
                 CC|                            |manu at gcc dot gnu.org

--- Comment #9 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
"This option implies -pthread, and thus is only supported on targets that have
support for -pthread."

Does x86_64-w64-mingw32 support -pthread? 


You are better off asking in the mingw mailing lists. There are no Windows
developers/users here.
>From gcc-bugs-return-534795-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 22:31:18 2016
Return-Path: <gcc-bugs-return-534795-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 28950 invoked by alias); 15 Aug 2016 22:31:18 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 28940 invoked by uid 89); 15 Aug 2016 22:31:17 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 22:31:07 +0000
From: "wschmidt at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/74585] powerpc64: Very poor code generation for homogeneous vector aggregates passed in registers
Date: Mon, 15 Aug 2016 22:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wschmidt at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-74585-4-gj6cnBMkWr@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-74585-4@http.gcc.gnu.org/bugzilla/>
References: <bug-74585-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02131.txt.bz2
Content-length: 380

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74585

--- Comment #12 from Bill Schmidt <wschmidt at gcc dot gnu.org> ---
The rest of the ugly code (once you ignore the loads/stores) is horrible
choices of register allocation.  Need to understand why we're not making use of
the high floating-point registers; too much copying back and forth between low
and high vector sets.
>From gcc-bugs-return-534796-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 15 23:11:07 2016
Return-Path: <gcc-bugs-return-534796-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 64415 invoked by alias); 15 Aug 2016 23:11:07 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 64401 invoked by uid 89); 15 Aug 2016 23:11:06 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Aug 2016 23:10:56 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/76957] FAIL: gcc.dg/graphite/scop-dsyr2k.c scan-tree-dump-times graphite "number of SCoPs
Date: Mon, 15 Aug 2016 23:11:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: priority bug_status version component cc resolution short_desc bug_severity
Message-ID: <bug-76957-4-bxfdgXUv7y@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76957-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76957-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02132.txt.bz2
Content-length: 1038

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76957

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P5                          |P3
             Status|RESOLVED                    |UNCONFIRMED
            Version|unknown                     |7.0
          Component|spam                        |tree-optimization
                 CC|                            |rguenth at gcc dot gnu.org
         Resolution|INVALID                     |---
            Summary|spam                        |FAIL:
                   |                            |gcc.dg/graphite/scop-dsyr2k
                   |                            |.c scan-tree-dump-times
                   |                            |graphite "number of SCoPs
           Severity|trivial                     |normal

--- Comment #2 from Jonathan Wakely <redi at gcc dot gnu.org> ---
Incorrectly closed as spam - sorry
>From gcc-bugs-return-534797-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 02:58:13 2016
Return-Path: <gcc-bugs-return-534797-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 114540 invoked by alias); 16 Aug 2016 02:57:58 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 114283 invoked by uid 89); 16 Aug 2016 02:57:39 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy 16-08-16, 20160816
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 02:57:29 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/76774] atomics on PPC: inconsistent widths for an _Atomic(_Bool) and for atomic_compare_exchange_strong on it
Date: Tue, 16 Aug 2016 02:57:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 4.9.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-76774-4-VEjl6NdofU@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76774-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76774-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02133.txt.bz2
Content-length: 513

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76774

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |WAITING
   Last reconfirmed|                            |2016-08-16
     Ever confirmed|0                           |1

--- Comment #3 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
What code were you expecting anyways?
>From gcc-bugs-return-534798-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 03:21:36 2016
Return-Path: <gcc-bugs-return-534798-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 3755 invoked by alias); 16 Aug 2016 03:21:36 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 3745 invoked by uid 89); 16 Aug 2016 03:21:36 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 03:21:25 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/66701] __cxxabiv1::__cxa_pure_virtual - can it take an argument of the pointer to the function that was called, please?
Date: Tue, 16 Aug 2016 03:21:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 4.8.4
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-66701-4-mYyMeie9zu@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-66701-4@http.gcc.gnu.org/bugzilla/>
References: <bug-66701-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02134.txt.bz2
Content-length: 604

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66701

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |INVALID

--- Comment #6 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Note now adays most calls to __cxa_pure_virtual  are replaced with
__builtin_unreachable so you won't even get the call to __cxa_pure_virtual  any
more so closing this as invalid.
>From gcc-bugs-return-534799-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 04:05:50 2016
Return-Path: <gcc-bugs-return-534799-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 19165 invoked by alias); 16 Aug 2016 04:05:50 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 19134 invoked by uid 89); 16 Aug 2016 04:05:49 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=UD:list, 3.6, Initially, applicable
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 04:05:39 +0000
From: "rs2740 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/76262] list-initialization prefers initializer_list over copy constructor
Date: Tue, 16 Aug 2016 04:05:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rs2740 at gmail dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-76262-4-c9u8BZs1UC@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76262-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76262-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02135.txt.bz2
Content-length: 1319

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76262

TC <rs2740 at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |rs2740 at gmail dot com

--- Comment #1 from TC <rs2740 at gmail dot com> ---
Post-DR2137, [dcl.init.list]/3.1 no longer applies to non-aggregates. Instead,
[dcl.init.list]/3.6 applies:

> Otherwise, if T is a class type, constructors are considered.
> The applicable constructors are enumerated and the best one
> is chosen through overload resolution ([over.match],
> [over.match.list]).

And [over.match.list] makes clear that initializer-list constructors are
preferred if at all viable:

> When objects of non-aggregate class type T are list-initialized
> such that [dcl.init.list] specifies that overload resolution
> is performed according to the rules in this section, overload
> resolution selects the constructor in two phases:
>  - Initially, the candidate functions are the initializer-list 
>    constructors ([dcl.init.list]) of the class T and the argument
>    list consists of the initializer list as a single argument.

[over.ics.rank] is irrelevant because the non-initializer-list constructors are
not even candidates.
>From gcc-bugs-return-534800-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 04:11:04 2016
Return-Path: <gcc-bugs-return-534800-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 65968 invoked by alias); 16 Aug 2016 04:11:04 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 65957 invoked by uid 89); 16 Aug 2016 04:11:03 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 04:10:53 +0000
From: "lucdanton at free dot fr" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/68437] [concepts] fold expression, pack expansion, and deduced constraint requirement
Date: Tue, 16 Aug 2016 04:11:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: lucdanton at free dot fr
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-68437-4-pqkgfG6sy6@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68437-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68437-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02136.txt.bz2
Content-length: 191

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68437

--- Comment #1 from lucdanton at free dot fr ---
This compiles using tip of the trunk. Presumably the concepts overhaul took
care
of it.
>From gcc-bugs-return-534801-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 07:15:50 2016
Return-Path: <gcc-bugs-return-534801-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 38131 invoked by alias); 16 Aug 2016 07:15:49 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 38114 invoked by uid 89); 16 Aug 2016 07:15:48 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=U*jason
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 07:15:38 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug testsuite/77034] [6.2RC regression] g++.dg/init/elide5.C fails on powerpc64-unknown-linux-gnu with -m32
Date: Tue, 16 Aug 2016 07:15:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: testsuite
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77034-4-diOmTwRv7L@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77034-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77034-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02137.txt.bz2
Content-length: 603

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77034

--- Comment #2 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Author: jakub
Date: Tue Aug 16 07:15:00 2016
New Revision: 239493

URL: https://gcc.gnu.org/viewcvs?rev=239493&root=gcc&view=rev
Log:
        PR testsuite/77034
        Backported from mainline
        2016-07-25  Jason Merrill  <jason@redhat.com>

        * g++.dg/init/elide5.C (operator new): Use decltype(sizeof(1)) instead
        of unsigned long.

Modified:
    branches/gcc-6-branch/gcc/testsuite/ChangeLog
    branches/gcc-6-branch/gcc/testsuite/g++.dg/init/elide5.C
>From gcc-bugs-return-534802-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 07:18:52 2016
Return-Path: <gcc-bugs-return-534802-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 45882 invoked by alias); 16 Aug 2016 07:18:52 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 45862 invoked by uid 89); 16 Aug 2016 07:18:51 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 07:18:40 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug testsuite/77034] [6.2RC regression] g++.dg/init/elide5.C fails on powerpc64-unknown-linux-gnu with -m32
Date: Tue, 16 Aug 2016 07:18:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: testsuite
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-77034-4-v52o1oOnVj@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77034-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77034-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02138.txt.bz2
Content-length: 437

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77034

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |FIXED

--- Comment #3 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Should be fixed now.
>From gcc-bugs-return-534803-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 07:36:05 2016
Return-Path: <gcc-bugs-return-534803-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 771 invoked by alias); 16 Aug 2016 07:36:05 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 760 invoked by uid 89); 16 Aug 2016 07:36:04 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy 16-08-16
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 07:35:54 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/76957] FAIL: gcc.dg/graphite/scop-dsyr2k.c scan-tree-dump-times graphite "number of SCoPs
Date: Tue, 16 Aug 2016 07:36:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-76957-4-NkIHcd85OX@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76957-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76957-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02139.txt.bz2
Content-length: 615

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76957

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-16
     Ever confirmed|0                           |1

--- Comment #3 from Richard Biener <rguenth at gcc dot gnu.org> ---
Confirmed.  As said in patch submission this is a niter analysis missed
optimization.  Same for the also failing gcc.dg/graphite/scop-dsyrk.c
>From gcc-bugs-return-534804-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 07:43:48 2016
Return-Path: <gcc-bugs-return-534804-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 17675 invoked by alias); 16 Aug 2016 07:43:47 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 17664 invoked by uid 89); 16 Aug 2016 07:43:46 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:2331
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 07:43:36 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/74585] powerpc64: Very poor code generation for homogeneous vector aggregates passed in registers
Date: Tue, 16 Aug 2016 07:43:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-74585-4-s19ATFBZWL@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-74585-4@http.gcc.gnu.org/bugzilla/>
References: <bug-74585-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02140.txt.bz2
Content-length: 2505

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74585

--- Comment #13 from Richard Biener <rguenth at gcc dot gnu.org> ---
(In reply to Bill Schmidt from comment #11)
> With the original test case, -mcpu=power8 is problematic because of the use
> of the "swapping stores," whose RHS is a vec_select rather than a register
> or subreg.  This prevents us from saving the RHS of the store for use in
> replacing subsequent loads, running afoul of this logic in
> dse.c:record_store ():
> 
>   if (GET_CODE (body) == SET
>       /* No place to keep the value after ra.  */
>       && !reload_completed
>       && (REG_P (SET_SRC (body))                   <= this part
>           || GET_CODE (SET_SRC (body)) == SUBREG
>           || CONSTANT_P (SET_SRC (body)))
>       && !MEM_VOLATILE_P (mem)
>       /* Sometimes the store and reload is used for truncation and          
> 
>          rounding.  */
>       && !(FLOAT_MODE_P (GET_MODE (mem)) && (flag_float_store)))
> 
> We can circumvent this if we can use stvx to force the parameters to the
> stack, which is legal since the stack slots are properly aligned.
> 
> However, even using -mcpu=power9, we don't handle removing the stores and
> replacing the partial loads with register logic.

You mean stores like the following?

(insn 13 12 14 2 (set (mem/c:V4SI (plus:DI (reg/f:DI 150 virtual-stack-vars)
                (const_int 112 [0x70])) [1 a+48 S16 A128])
        (vec_select:V4SI (reg:V4SI 190)
            (parallel [
                    (const_int 2 [0x2])
                    (const_int 3 [0x3])
                    (const_int 0 [0])
                    (const_int 1 [0x1])
                ]))) t.c:14 -1
     (nil))

I wonder why dse can't simply force the rhs to a register?  Of course if
power really has stores that do this vec_select but no non-store with
the operation then this might not be valid ...

Now, in the end this example just shows that lowering register passing
only at RTL expansion leads to a load of missed optimizations regarding
to parameter setup ... some scheme to apply the lowering on GIMPLE already
would be interesting to explore (but albeit quite a bit of work).  We'd
have a second set of "parameter decls" somewhere, like in struct function,
and use that when the IL is on lowered form.  Same for DECL_RESULT of course.
And then the interesting part is whether to expose the stack in some way or
restrict the lowering to decomposition/combining to registers.
>From gcc-bugs-return-534805-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 08:17:34 2016
Return-Path: <gcc-bugs-return-534805-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 89758 invoked by alias); 16 Aug 2016 08:17:33 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 89730 invoked by uid 89); 16 Aug 2016 08:17:32 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 08:17:22 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/76262] list-initialization prefers initializer_list over copy constructor
Date: Tue, 16 Aug 2016 08:17:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-76262-4-E9wbATEYs8@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76262-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76262-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02141.txt.bz2
Content-length: 188

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76262

--- Comment #2 from Jonathan Wakely <redi at gcc dot gnu.org> ---
In which case both EDG and Clang get this wrong, as they print "12"
>From gcc-bugs-return-534806-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 08:17:44 2016
Return-Path: <gcc-bugs-return-534806-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 90795 invoked by alias); 16 Aug 2016 08:17:44 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 90783 invoked by uid 89); 16 Aug 2016 08:17:43 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=1.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00,UNWANTED_LANGUAGE_BODY autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 08:17:37 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/77259] New: [6/7 Regression] ICE in emit_move_insn since r232167
Date: Tue, 16 Aug 2016 08:17:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77259-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02142.txt.bz2
Content-length: 1360

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77259

            Bug ID: 77259
           Summary: [6/7 Regression] ICE in emit_move_insn since r232167
           Product: gcc
           Version: 6.2.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: middle-end
          Assignee: unassigned at gcc dot gnu.org
          Reporter: jakub at gcc dot gnu.org
  Target Milestone: ---

template <typename, typename = int> class A;
template <typename, typename> struct A
{
  A (A &&);
};
template <typename S, typename T, typename U>
A<S> operator+(S *, const A<T, U> &);
template <typename S, typename T, typename U>
void operator+(const A<T, U> &, S *);
struct B
{
  template <typename V> B (V);
};
template <typename V> V foo (B) {}
class C;
template <typename> struct D
{
  C *operator->() { return d; }
  C *d;
};
struct C
{
  virtual A<int> bar ();
};
struct E
{
  ~E ();
  virtual A<char> bar (const B &) const;
};
template <typename> struct F : E
{
};
template <typename W> class F<D<W> > : E
{
  typedef D<W> f;
  A<char> bar (const B &) const try
    {
      f a = baz ();
    }
  catch (int)
    {
    }
  f baz () const
  {
    D<C> b = foo<D<C> >(0);
    "" + b->bar () + "";
  }
};
struct G : F<D<int> >
{
  G (int);
};
void test () { G (0); }

ICEs starting with r232167 in emit_move_insn.
>From gcc-bugs-return-534807-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 08:24:35 2016
Return-Path: <gcc-bugs-return-534807-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 113162 invoked by alias); 16 Aug 2016 08:24:19 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 113151 invoked by uid 89); 16 Aug 2016 08:24:19 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 08:24:08 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/77259] [6/7 Regression] ICE in emit_move_insn since r232167
Date: Tue, 16 Aug 2016 08:24:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on assigned_to target_milestone everconfirmed
Message-ID: <bug-77259-4-uWe0tyFWOl@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77259-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77259-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02143.txt.bz2
Content-length: 542

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77259

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |ASSIGNED
   Last reconfirmed|                            |2016-08-16
           Assignee|unassigned at gcc dot gnu.org      |jakub at gcc dot gnu.org
   Target Milestone|---                         |6.2
     Ever confirmed|0                           |1
>From gcc-bugs-return-534808-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 08:28:52 2016
Return-Path: <gcc-bugs-return-534808-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 120470 invoked by alias); 16 Aug 2016 08:28:52 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 120443 invoked by uid 89); 16 Aug 2016 08:28:52 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=3.7
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 08:28:41 +0000
From: "rs2740 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/76262] list-initialization prefers initializer_list over copy constructor
Date: Tue, 16 Aug 2016 08:28:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rs2740 at gmail dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-76262-4-e8j6UkuER3@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76262-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76262-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02144.txt.bz2
Content-length: 415

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76262

--- Comment #3 from TC <rs2740 at gmail dot com> ---
(In reply to Jonathan Wakely from comment #2)
> In which case both EDG and Clang get this wrong, as they print "12"

I know that Clang 3.7+ implemented DR1467 without 2137 (in which case "12"
would be the right output) - that led to
https://llvm.org/bugs/show_bug.cgi?id=23812.

I'm not familiar with EDG.
>From gcc-bugs-return-534809-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 08:36:57 2016
Return-Path: <gcc-bugs-return-534809-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 87349 invoked by alias); 16 Aug 2016 08:36:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 86211 invoked by uid 89); 16 Aug 2016 08:36:56 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyò, contained
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 08:36:46 +0000
From: "martin@mpa-garching.mpg.de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/77260] New: bogus warning with ENTRY in a function
Date: Tue, 16 Aug 2016 08:36:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: martin@mpa-garching.mpg.de
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-77260-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02145.txt.bz2
Content-length: 1679

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77260

            Bug ID: 77260
           Summary: bogus warning with ENTRY in a function
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: fortran
          Assignee: unassigned at gcc dot gnu.org
          Reporter: martin@mpa-garching.mpg.de
  Target Milestone: ---

Created attachment 39460
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39460&action=edit
test case

When compiling the test case below, current trunk gfortran warns about "f2"
being unused:

martin@martin-Latitude-E7450 ~/tmp $ gfortran -std=f2008 -W -Wall entry.f90 
entry.f90:11:8:

 entry f2
        1
Warning: Fortran 2008 obsolescent feature: ENTRY statement at (1)
entry.f90:9:10:

 integer f2
          1
Warning: Unused variable ‘f2’ declared at (1) [-Wunused-variable]

However, if I comment out the "integer f2" statement, gfortran produces an
error (as I would expect):
martin@martin-Latitude-E7450 ~/tmp $ gfortran -std=f2008 -W -Wall entry.f90 
entry.f90:11:8:

 entry f2
        1
Warning: Fortran 2008 obsolescent feature: ENTRY statement at (1)
entry.f90:4:12:

 public f1,f2
            1
Error: Contained function ‘f2’ at (1) has no IMPLICIT type
entry.f90:17:4:

 use foo
    1
Fatal Error: Can't open module file ‘foo.mod’ for reading at (1): No such file
or directory
compilation terminated.

I think the warning is bogus ... the entry somehow must be given an explicit
return type.
This behaviour happens on trunk and 5.4; I haven't tested other branches so
far.
>From gcc-bugs-return-534810-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 08:44:38 2016
Return-Path: <gcc-bugs-return-534810-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 109851 invoked by alias); 16 Aug 2016 08:44:37 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 109838 invoked by uid 89); 16 Aug 2016 08:44:36 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 08:44:26 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/76262] list-initialization prefers initializer_list over copy constructor
Date: Tue, 16 Aug 2016 08:44:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-76262-4-TgZOmdOjZb@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76262-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76262-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02146.txt.bz2
Content-length: 480

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76262

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |INVALID

--- Comment #4 from Jonathan Wakely <redi at gcc dot gnu.org> ---
OK so G++ already matches the post-2137 behaviour - thanks!
>From gcc-bugs-return-534811-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 09:00:34 2016
Return-Path: <gcc-bugs-return-534811-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 30109 invoked by alias); 16 Aug 2016 09:00:34 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 30073 invoked by uid 89); 16 Aug 2016 09:00:33 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00,KAM_LOTSOFHASH autolearn=no version=3.3.2 spammy 160805, sigabrt, SIGABRT, gcc-testresults
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 09:00:23 +0000
From: "ro at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libfortran/77261] New: gfortran.dg/random_3.f90 FAILs
Date: Tue, 16 Aug 2016 09:00:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libfortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ro at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter cc target_milestone cf_gcchost cf_gcctarget cf_gccbuild
Message-ID: <bug-77261-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02147.txt.bz2
Content-length: 3060

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77261

            Bug ID: 77261
           Summary: gfortran.dg/random_3.f90 FAILs
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: libfortran
          Assignee: unassigned at gcc dot gnu.org
          Reporter: ro at gcc dot gnu.org
                CC: jb at gcc dot gnu.org
  Target Milestone: ---
              Host: sparc*-sun-solaris2.*
            Target: sparc*-sun-solaris2.*
             Build: sparc*-sun-solaris2.*

Between 20160805 and 20160811, the gfortran.dg/random_3.f90 test started to
FAIL
on Solaris/SPARC (both 32 and 64-bit):

+FAIL: gfortran.dg/random_3.f90   -O0  execution test
+FAIL: gfortran.dg/random_3.f90   -O1  execution test
+FAIL: gfortran.dg/random_3.f90   -O2  execution test
+FAIL: gfortran.dg/random_3.f90   -O3 -fomit-frame-pointer -funroll-loops
-fpeel-loops -ftracer -finline-functions  execution test
+FAIL: gfortran.dg/random_3.f90   -O3 -g  execution test
+FAIL: gfortran.dg/random_3.f90   -Os  execution test

and according to gcc-testresults a couple of other targets are affected as
well:

at least aarch64, powerpc64*, and s390x.

This must be due to

2016-08-11  Janne Blomqvist  <jb@gcc.gnu.org>

        * intrinsics/random.c: Replace KISS with xorshift1024* using
        per-thread state.
        * runtime/main.c (init): Don't call random_seed_i4.

On Solaris/SPARC, I find

Thread 2 received signal SIGABRT, Aborted.
[Switching to Thread 1 (LWP 1)]
0xfef5b288 in __lwp_sigqueue () from /lib/libc.so.1
(gdb) where
#0  0xfef5b288 in __lwp_sigqueue () from /lib/libc.so.1
#1  0xfee97184 in raise () from /lib/libc.so.1
#2  0xfee6a170 in abort () from /lib/libc.so.1
#3  0xff2cec5c in _gfortrani_sys_abort ()
    at /vol/gcc/src/hg/trunk/local/libgfortran/runtime/error.c:182
#4  0xff368930 in _gfortran_abort ()
    at /vol/gcc/src/hg/trunk/local/libgfortran/intrinsics/abort.c:33
#5  0x000114a0 in random_4 ()
    at /vol/gcc/src/hg/trunk/local/gcc/testsuite/gfortran.dg/random_3.f90:28
#6  0x000114e4 in main (argc=1, argv=0xffbffa38)
    at /vol/gcc/src/hg/trunk/local/gcc/testsuite/gfortran.dg/random_3.f90:29
#7  0x00010ef0 in _start ()

#5  0x000114a0 in random_4 ()
    at /vol/gcc/src/hg/trunk/local/gcc/testsuite/gfortran.dg/random_3.f90:28
28        if (any ((r8 - r10) .gt. delta)) call abort
(gdb) p r8
$1 = (0.33531091697986526, 0.49560326111744801, 0.27202821216533879,
0.14310502215036824, 0.52840260117005033, 0.40848924836193379,
0.99531496953458853, 0.27001843112503765, 0.95295363932045984,
0.14316668825144485)
(gdb) p r10
$2 = (0.33531091697986526218176681400279274,
0.27202821216533887067191155296717697, 0.5284026011700503506437776191974859,
0.99531496953458854300698251805465629, 0.95295363932045989983140359118424494,
0.14316668825144487670941584544780525, 0.6092459765628781765258926440263291,
0.54591083895721370176324787139563687, 0.059215945881747894214465842169322417,
0.49226030310682212563454955026951127)

  Rainer
>From gcc-bugs-return-534812-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 09:08:19 2016
Return-Path: <gcc-bugs-return-534812-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 41672 invoked by alias); 16 Aug 2016 09:08:19 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 41659 invoked by uid 89); 16 Aug 2016 09:08:18 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 09:08:07 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/75402] std::condition_variable::wait_until wakes up constantly
Date: Tue, 16 Aug 2016 09:08:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-75402-4-LlUKcSAUIv@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-75402-4@http.gcc.gnu.org/bugzilla/>
References: <bug-75402-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02148.txt.bz2
Content-length: 593

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75402

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |WAITING
   Last reconfirmed|                            |2016-08-16
     Ever confirmed|0                           |1

--- Comment #2 from Jonathan Wakely <redi at gcc dot gnu.org> ---
Please provide the missing information requested by https://gcc.gnu.org/bugs/
including at least the output of gcc -v
>From gcc-bugs-return-534813-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 09:14:48 2016
Return-Path: <gcc-bugs-return-534813-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 58818 invoked by alias); 16 Aug 2016 09:14:48 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 58804 invoked by uid 89); 16 Aug 2016 09:14:47 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 09:14:37 +0000
From: "amker at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/72817] [7 Regression] wrong code at -O3 on x86_64-linux-gnu (in both 32-bit and 64-bit modes)
Date: Tue, 16 Aug 2016 09:14:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: amker at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: amker at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72817-4-RByrRmoPNI@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72817-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72817-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02149.txt.bz2
Content-length: 751

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72817

--- Comment #4 from amker at gcc dot gnu.org ---
Author: amker
Date: Tue Aug 16 09:13:50 2016
New Revision: 239494

URL: https://gcc.gnu.org/viewcvs?rev=239494&root=gcc&view=rev
Log:
        PR tree-optimization/72817
        PR tree-optimization/73450
        * tree-ssa-loop-niter.c (number_of_iterations_ne): Check
        multiple_of_p for adjusted IV.base.

        gcc/testsuite
        * gcc.dg/tree-ssa/pr72817.c: New test.
        * gcc.dg/tree-ssa/pr73450.c: New test.

Added:
    trunk/gcc/testsuite/gcc.dg/tree-ssa/pr72817.c
    trunk/gcc/testsuite/gcc.dg/tree-ssa/pr73450.c
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/tree-ssa-loop-niter.c
>From gcc-bugs-return-534814-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 09:14:59 2016
Return-Path: <gcc-bugs-return-534814-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 59506 invoked by alias); 16 Aug 2016 09:14:59 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 59480 invoked by uid 89); 16 Aug 2016 09:14:57 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 09:14:47 +0000
From: "amker at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/73450] [7 Regression] wrong code at -Os and above on x86_64-linux-gnu in both 32-bit and 64-bit modes (executable hangs)
Date: Tue, 16 Aug 2016 09:14:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: amker at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: DUPLICATE
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-73450-4-j2SHZ5hEpC@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73450-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73450-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02150.txt.bz2
Content-length: 751

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73450

--- Comment #4 from amker at gcc dot gnu.org ---
Author: amker
Date: Tue Aug 16 09:13:50 2016
New Revision: 239494

URL: https://gcc.gnu.org/viewcvs?rev=239494&root=gcc&view=rev
Log:
        PR tree-optimization/72817
        PR tree-optimization/73450
        * tree-ssa-loop-niter.c (number_of_iterations_ne): Check
        multiple_of_p for adjusted IV.base.

        gcc/testsuite
        * gcc.dg/tree-ssa/pr72817.c: New test.
        * gcc.dg/tree-ssa/pr73450.c: New test.

Added:
    trunk/gcc/testsuite/gcc.dg/tree-ssa/pr72817.c
    trunk/gcc/testsuite/gcc.dg/tree-ssa/pr73450.c
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/tree-ssa-loop-niter.c
>From gcc-bugs-return-534815-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 09:16:20 2016
Return-Path: <gcc-bugs-return-534815-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 61122 invoked by alias); 16 Aug 2016 09:16:20 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 61109 invoked by uid 89); 16 Aug 2016 09:16:19 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=prot_write, map_anonymous, PROT_WRITE, prot_read
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 09:16:08 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/75402] std::condition_variable::wait_until wakes up constantly
Date: Tue, 16 Aug 2016 09:16:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-75402-4-GG104MjUe7@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-75402-4@http.gcc.gnu.org/bugzilla/>
References: <bug-75402-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02151.txt.bz2
Content-length: 889

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=75402

--- Comment #3 from Jonathan Wakely <redi at gcc dot gnu.org> ---
I can't reproduce this with any version of GCC, so either you have a weird
config, or a weird kernel, or something else that is impossible to tell without
the requested info.

I see a single futex wait and the expected output:

futex(0x7ffc8707f5d4, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 1,
{1471338875, 919280648}, ffffffff) = -1 ETIMEDOUT (Connection timed out)
fstat(1, {st_mode=S_IFCHR|0600, st_rdev=makedev(136, 2), ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =
0x7f0fb8b88000
write(1, "new_now - now = 2000 ms\n", 24new_now - now = 2000 ms
) = 24
write(1, "Done.\n", 6Done.
)                  = 6
futex(0x7ffc8707f600, FUTEX_WAKE_PRIVATE, 1) = 0
exit_group(0)                           = ?
>From gcc-bugs-return-534816-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 09:18:34 2016
Return-Path: <gcc-bugs-return-534816-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 63204 invoked by alias); 16 Aug 2016 09:18:33 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 63098 invoked by uid 89); 16 Aug 2016 09:18:33 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy 160805, Rainer, rainer, reghunt
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 09:18:22 +0000
From: "ro at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/77262] New: [7 regression] Several libjava tests FAIL on 32-bit Solaris/x86
Date: Tue, 16 Aug 2016 09:18:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ro at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter cc target_milestone cf_gcchost cf_gcctarget cf_gccbuild
Message-ID: <bug-77262-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02152.txt.bz2
Content-length: 3755

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77262

            Bug ID: 77262
           Summary: [7 regression] Several libjava tests FAIL on 32-bit
                    Solaris/x86
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: middle-end
          Assignee: unassigned at gcc dot gnu.org
          Reporter: ro at gcc dot gnu.org
                CC: hubicka at gcc dot gnu.org
  Target Milestone: ---
              Host: i386-pc-solaris2.*
            Target: i386-pc-solaris2.*
             Build: i386-pc-solaris2.*

Between 20160805 and 20160811, several libjava tests started to FAIL (mostly
timeouts) on 32-bit Solaris/x86 (both in i386-pc-solaris2.* and
amd64-pc-solaris2.*
configurations):

WARNING: program timed out.
FAIL: InvokeReturn execution - source compiled test
WARNING: program timed out.
FAIL: InvokeReturn -findirect-dispatch execution - source compiled test
WARNING: program timed out.
FAIL: InvokeReturn -O3 execution - source compiled test
WARNING: program timed out.
FAIL: InvokeReturn -O3 -findirect-dispatch execution - source compiled test
WARNING: program timed out.
FAIL: PR3096 execution - source compiled test
WARNING: program timed out.
FAIL: PR3096 -findirect-dispatch execution - source compiled test
WARNING: program timed out.
FAIL: PR3096 -O3 execution - source compiled test
WARNING: program timed out.
FAIL: PR3096 -O3 -findirect-dispatch execution - source compiled test
FAIL: Serialization execution - source compiled test
FAIL: Serialization -findirect-dispatch execution - source compiled test
FAIL: Serialization -O3 execution - source compiled test
FAIL: Serialization -O3 -findirect-dispatch execution - source compiled test
WARNING: program timed out.
FAIL: md5test execution - source compiled test
WARNING: program timed out.
FAIL: md5test -findirect-dispatch execution - source compiled test
WARNING: program timed out.
FAIL: md5test -O3 execution - source compiled test
WARNING: program timed out.
FAIL: md5test -O3 -findirect-dispatch execution - source compiled test
FAIL: negzero execution - source compiled test
FAIL: negzero -findirect-dispatch execution - source compiled test
FAIL: negzero -O3 execution - source compiled test
FAIL: negzero -O3 -findirect-dispatch execution - source compiled test
WARNING: program timed out.
FAIL: pr21785 execution - source compiled test
WARNING: program timed out.
FAIL: pr21785 -findirect-dispatch execution - source compiled test
WARNING: program timed out.
FAIL: pr21785 -O3 execution - source compiled test
WARNING: program timed out.
FAIL: pr21785 -O3 -findirect-dispatch execution - source compiled test
FAIL: pr25676 output - source compiled test
FAIL: pr25676 -findirect-dispatch output - source compiled test
FAIL: pr25676 -O3 output - source compiled test
FAIL: pr25676 -O3 -findirect-dispatch output - source compiled test
WARNING: program timed out.
FAIL: shatest execution - source compiled test
WARNING: program timed out.
FAIL: shatest -findirect-dispatch execution - source compiled test
WARNING: program timed out.
FAIL: shatest -O3 execution - source compiled test
WARNING: program timed out.
FAIL: shatest -O3 -findirect-dispatch execution - source compiled test

A reghunt identified the following patch as the culprit:

2016-08-07  Jan Hubicka  <hubicka@ucw.cz>

       * tree-ssa-threadbackward.c: Include tree-inline.h
       (profitable_jump_thread_path): Use estimate_num_insns to estimate
       size of copied block; for cold paths reduce duplication.
       (find_jump_threads_backwards): Remove redundant tests.
       (pass_thread_jumps::gate): Enable for -Os.

I've not yet determinded what exactly is going wrong.

  Rainer
>From gcc-bugs-return-534817-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 09:19:34 2016
Return-Path: <gcc-bugs-return-534817-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 79737 invoked by alias); 16 Aug 2016 09:19:34 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 79515 invoked by uid 89); 16 Aug 2016 09:19:33 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:310, Orth, orth
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 09:19:23 +0000
From: "ro at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/77262] [7 regression] Several libjava tests FAIL on 32-bit Solaris/x86
Date: Tue, 16 Aug 2016 09:19:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ro at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-77262-4-oolouk6fux@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77262-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77262-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02153.txt.bz2
Content-length: 285

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77262

Rainer Orth <ro at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |7.0
>From gcc-bugs-return-534818-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 09:38:17 2016
Return-Path: <gcc-bugs-return-534818-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 56254 invoked by alias); 16 Aug 2016 09:38:16 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 56243 invoked by uid 89); 16 Aug 2016 09:38:16 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 09:38:06 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/72847] vector<bool> copy-assignment basic exception safety
Date: Tue, 16 Aug 2016 09:38:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-72847-4-vKo6hDyQVK@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72847-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72847-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02154.txt.bz2
Content-length: 402

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72847

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-16
     Ever confirmed|0                           |1
>From gcc-bugs-return-534819-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 09:45:39 2016
Return-Path: <gcc-bugs-return-534819-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 68321 invoked by alias); 16 Aug 2016 09:45:38 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 68291 invoked by uid 89); 16 Aug 2016 09:45:35 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 09:45:25 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/77259] [6/7 Regression] ICE in emit_move_insn since r232167
Date: Tue, 16 Aug 2016 09:45:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: attachments.created
Message-ID: <bug-77259-4-eSMX0NuSf5@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77259-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77259-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02155.txt.bz2
Content-length: 253

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77259

--- Comment #1 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Created attachment 39461
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39461&action=edit
gcc7-pr77259.patch

Untested fix.
>From gcc-bugs-return-534820-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 09:56:26 2016
Return-Path: <gcc-bugs-return-534820-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 92782 invoked by alias); 16 Aug 2016 09:56:26 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 92765 invoked by uid 89); 16 Aug 2016 09:56:25 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=3.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00,FOREIGN_BODY1 autolearn=no version=3.3.2 spammy=werden, verwendet
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 09:56:15 +0000
From: "bremende55 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77263] New: comment /* */ is ignored in some cases
Date: Tue, 16 Aug 2016 09:56:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: bremende55 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77263-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02156.txt.bz2
Content-length: 1696

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77263

            Bug ID: 77263
           Summary: comment /* */ is ignored in some cases
           Product: gcc
           Version: 6.1.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: bremende55 at gmail dot com
  Target Milestone: ---

The following code compiles and gives the correct result:
#include <iostream>
#include <regex>
#include <string>

int main() {
  std::string astring("// x /*  meaningless comment start  ");
  // /*
  std::string result = std::regex_replace(
                    astring, std::regex("//[^\n]*/\\*"),  "ZZ ");
  std::cout << "result = " << result << '\n';
  // expected: ZZ   meaningless comment start
  // */
  std::cout << "astring = " << astring << '\n';
}

BUT when I comment out the lines in the middle, i.e. 
#include <iostream>
#include <regex>
#include <string>

int main() {
  std::string astring("// x /*  meaningless comment start  ");
  /*
  std::string result = std::regex_replace(
                    astring, std::regex("//[^\n]*/\\*"),  "ZZ ");
  std::cout << "result = " << result << '\n';
  // expected: ZZ   meaningless comment start
  */
  std::cout << "astring = " << astring << '\n';
}

the compile detects errors in the out-commented code.
g++ -v 
yields:
Es werden eingebaute Spezifikationen verwendet.
COLLECT_GCC=g++
COLLECT_LTO_WRAPPER=/usr/local/lib/gcc/x86_64-pc-linux-gnu/6.1.0/lto-wrapper
Ziel: x86_64-pc-linux-gnu
Konfiguriert mit: ../gcc-6.1.0/configure --enable-languages=c,c++
Thread-Modell: posix
gcc-Version 6.1.0 (GCC)
>From gcc-bugs-return-534821-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 10:02:42 2016
Return-Path: <gcc-bugs-return-534821-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 103657 invoked by alias); 16 Aug 2016 10:02:42 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 103647 invoked by uid 89); 16 Aug 2016 10:02:41 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 10:02:31 +0000
From: "schwab@linux-m68k.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77263] comment /* */ is ignored in some cases
Date: Tue, 16 Aug 2016 10:02:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: schwab@linux-m68k.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-77263-4-LxLoxvPdxR@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77263-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77263-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02157.txt.bz2
Content-length: 446

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77263

Andreas Schwab <schwab@linux-m68k.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |INVALID

--- Comment #1 from Andreas Schwab <schwab@linux-m68k.org> ---
Multiline comments do not nest.
>From gcc-bugs-return-534822-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 10:08:58 2016
Return-Path: <gcc-bugs-return-534822-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 108127 invoked by alias); 16 Aug 2016 10:08:58 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 108104 invoked by uid 89); 16 Aug 2016 10:08:57 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=1.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00,DATE_IN_PAST_96_XX autolearn=no version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 10:08:47 +0000
From: "LpSolit at netscape dot net" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/50406] ld undefined reference to __MOD_str
Date: Tue, 16 Aug 2016 10:08:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: LpSolit at netscape dot net
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: DUPLICATE
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: version
Message-ID: <bug-50406-4-OXQaI2Q1z8@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-50406-4@http.gcc.gnu.org/bugzilla/>
References: <bug-50406-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02158.txt.bz2
Content-length: 397

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=50406

Vittorio Zecca <zeccav at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Version|4.8.0                       |7.0

--- Comment #4 from Vittorio Zecca <zeccav at gmail dot com> ---
Still there in gfortran 7.0 trunk 239276
>From gcc-bugs-return-534823-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 10:08:59 2016
Return-Path: <gcc-bugs-return-534823-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 108135 invoked by alias); 16 Aug 2016 10:08:58 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 108105 invoked by uid 89); 16 Aug 2016 10:08:57 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 10:08:53 +0000
From: "LpSolit at netscape dot net" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/67410] [5 Regression] c/c-typeck.c references out of bounds array
Date: Tue, 16 Aug 2016 10:08:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 5.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: LpSolit at netscape dot net
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: short_desc
Message-ID: <bug-67410-4-NYNGG7pkSs@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67410-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67410-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02159.txt.bz2
Content-length: 532

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67410

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|[5/6/7 Regression]          |[5 Regression] c/c-typeck.c
                   |c/c-typeck.c references out |references out of bounds
                   |of bounds array             |array

--- Comment #7 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Fixed for 6.2+ so far.
>From gcc-bugs-return-534824-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 10:10:03 2016
Return-Path: <gcc-bugs-return-534824-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 111848 invoked by alias); 16 Aug 2016 10:10:02 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 111795 invoked by uid 89); 16 Aug 2016 10:10:01 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=1.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00,DATE_IN_PAST_96_XX autolearn=no version=3.3.2 spammy=sk:__point
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 10:09:51 +0000
From: "LpSolit at netscape dot net" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug sanitizer/71042] libtsan requires __pointer_chk_guard@GLIBC_PRIVATE (6)
Date: Tue, 16 Aug 2016 10:10:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: sanitizer
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: LpSolit at netscape dot net
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-71042-4-XeNlRLAfmX@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71042-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71042-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02160.txt.bz2
Content-length: 438

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71042

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--- Comment #13 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Should be fixed now.
>From gcc-bugs-return-534825-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 10:11:11 2016
Return-Path: <gcc-bugs-return-534825-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 116460 invoked by alias); 16 Aug 2016 10:11:10 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 116447 invoked by uid 89); 16 Aug 2016 10:11:09 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=1.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00,DATE_IN_PAST_96_XX autolearn=no version=3.3.2 spammy=sk:__point, D*GLIBC_PRIVATE, libtsan, 71042
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 10:10:59 +0000
From: "LpSolit at netscape dot net" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug sanitizer/71042] libtsan requires __pointer_chk_guard@GLIBC_PRIVATE (6)
Date: Tue, 16 Aug 2016 10:11:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: sanitizer
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: LpSolit at netscape dot net
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-71042-4-sA0e22vKvM@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71042-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71042-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02161.txt.bz2
Content-length: 438

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71042

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--- Comment #13 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Should be fixed now.
>From gcc-bugs-return-534826-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 10:22:44 2016
Return-Path: <gcc-bugs-return-534826-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 10269 invoked by alias); 16 Aug 2016 10:22:44 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 10259 invoked by uid 89); 16 Aug 2016 10:22:43 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 10:22:33 +0000
From: "Peter.Sewell at cl dot cam.ac.uk" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/76774] atomics on PPC: inconsistent widths for an _Atomic(_Bool) and for atomic_compare_exchange_strong on it
Date: Tue, 16 Aug 2016 10:22:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 4.9.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: Peter.Sewell at cl dot cam.ac.uk
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-76774-4-etUkmLKBVl@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76774-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76774-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02162.txt.bz2
Content-length: 771

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76774

--- Comment #4 from Peter Sewell <Peter.Sewell at cl dot cam.ac.uk> ---
(In reply to Andrew Pinski from comment #3)
> What code were you expecting anyways?

I hadn't noticed how recent the other-size LL/SC were.  But then I would have
expected a 4-byte representation for _Atomic(_Bool) on the older machines, to
minimise the amount of code between the lwarx and stwcx; would that have some
other disadvantage?  

I don't think the code you've got is functionally wrong on normal h/w.  We
noticed this running in a semantics-based emulator that's very picky about
reading from uninitialised memory, but on normal h/w the extra memory will
AFAICS always be mapped and be within the same reservation granule.
>From gcc-bugs-return-534827-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 10:55:22 2016
Return-Path: <gcc-bugs-return-534827-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 119208 invoked by alias); 16 Aug 2016 10:55:22 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 119197 invoked by uid 89); 16 Aug 2016 10:55:21 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyw264, Hx-languages-length:1482, month
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 10:55:11 +0000
From: "burnus at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77264] New: [7 Regression] std::string's replace gives wrong results with C++17, works with C++11
Date: Tue, 16 Aug 2016 10:55:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: burnus at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status keywords bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77264-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02163.txt.bz2
Content-length: 1624

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77264

            Bug ID: 77264
           Summary: [7 Regression] std::string's replace gives wrong
                    results with C++17, works with C++11
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Keywords: wrong-code
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: burnus at gcc dot gnu.org
  Target Milestone: ---

Running
  g++ -std=c++11 test.cc && ./a.out > working
  g++ -std=c++17 test.cc && ./a.out > failing
  diff -U0 working failing
shows:
  --- working     2016-08-16 12:50:40.318596035 +0200
  +++ failing     2016-08-16 12:50:40.870592038 +0200
  @@ -1 +1 @@
  -RESULT: Running <This_Program>
  +RESULT: Running <>

Namely, the replace call does not work with --std=c++17, but only with
--std++11. I think it worked two weeks ago. It definitely worked a month ago.


// ----------- test.cc ----------------
#include <string>

std::string&
string_replace (std::string& str, const std::string& old_str,
                const std::string& new_str)
{
  size_t pos = 0;

  while ((pos = str.find(old_str, pos)) != std::string::npos)
    {
      str.replace (pos, old_str.length (), new_str);
      pos += new_str.length ();
    }

  return str;
}

int main () {
  std::string str("Running <PROGRAM_NAME>");
  std::string old_str("PROGRAM_NAME");
  std::string new_str("This_Program");

  __builtin_printf ("RESULT: %s\n",
                    string_replace(str, old_str, new_str).c_str());
  return 0;
}
>From gcc-bugs-return-534828-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 11:04:57 2016
Return-Path: <gcc-bugs-return-534828-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 65828 invoked by alias); 16 Aug 2016 11:04:57 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 65813 invoked by uid 89); 16 Aug 2016 11:04:56 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 11:04:46 +0000
From: "burnus at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77264] [7 Regression] std::string's replace gives wrong results with C++17, works with C++11
Date: Tue, 16 Aug 2016 11:04:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: burnus at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc target_milestone
Message-ID: <bug-77264-4-fwaHbOux2q@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77264-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77264-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02164.txt.bz2
Content-length: 1201

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77264

Tobias Burnus <burnus at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ville at gcc dot gnu.org
   Target Milestone|---                         |7.0

--- Comment #1 from Tobias Burnus <burnus at gcc dot gnu.org> ---
Looks as if r239370 is the culprit as it works when reverting the patch:

+2016-08-11  Ville Voutilainen  <ville.voutilainen@gmail.com>
+
+       Implement LWG 2758.
+       * include/bits/basic_string.h
+       (append(__sv_type, size_type, size_type)): Turn into a template,
+       change parameter type, constrain, add a conversion to __sv_type
+       from the dependent parameter type.
+       (assign(__sv_type, size_type, size_type)): Likewise.
+       (insert(size_type, __sv_type, size_type, size_type)): Likewise.
+       (replace(size_type, size_type, __sv_type, size_type, size_type)):
+       Likewise.
+       (compare(size_type, size_type,__sv_type, size_type, size_type)):
+       Likewise.
+       * testsuite/21_strings/basic_string/lwg2758.cc: New.
>From gcc-bugs-return-534829-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 11:06:33 2016
Return-Path: <gcc-bugs-return-534829-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 69928 invoked by alias); 16 Aug 2016 11:06:33 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 69915 invoked by uid 89); 16 Aug 2016 11:06:32 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=dominiq
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 11:06:22 +0000
From: "dominiq at lps dot ens.fr" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/77262] [7 regression] Several libjava tests FAIL on 32-bit Solaris/x86
Date: Tue, 16 Aug 2016 11:06:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dominiq at lps dot ens.fr
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77262-4-RrjiSL8ma6@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77262-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77262-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02165.txt.bz2
Content-length: 160

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77262

--- Comment #1 from Dominique d'Humieres <dominiq at lps dot ens.fr> ---
Duplicate of/related to pr71682?
>From gcc-bugs-return-534830-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 11:22:24 2016
Return-Path: <gcc-bugs-return-534830-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 123714 invoked by alias); 16 Aug 2016 11:22:23 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 123704 invoked by uid 89); 16 Aug 2016 11:22:22 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=guarantees, stv, vec_merge, Hx-languages-length:600
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 11:22:12 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/73350] AVX512: GCC optimizes away rounding flags
Date: Tue, 16 Aug 2016 11:22:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: attachments.created
Message-ID: <bug-73350-4-fBidBO8GCj@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73350-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73350-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02166.txt.bz2
Content-length: 550

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73350

--- Comment #3 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Created attachment 39462
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39462&action=edit
gcc7-pr73350-wip.patch

Untested patch with what I had in mind for the mask operands.  Perhaps some
extra arch specific pass that would optimize the VEC_MERGE with -1 mask into
non-VEC_MERGE would be helpful too (or do it in stv pass?), otherwise it will
sometimes be folded in cse, sometimes in combine, but with no guarantees.
>From gcc-bugs-return-534831-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 11:23:31 2016
Return-Path: <gcc-bugs-return-534831-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 125081 invoked by alias); 16 Aug 2016 11:23:31 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 125071 invoked by uid 89); 16 Aug 2016 11:23:30 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=pr76783.c, ssa_prop_init, UD:pr76783.c, UD:tree-ssa-propagate.c
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 11:23:20 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/76783] [7 Regression] wrong code with conditional vector assignment @ -Og
Date: Tue, 16 Aug 2016 11:23:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-76783-4-glWd3Q9JA6@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76783-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76783-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02167.txt.bz2
Content-length: 747

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76783

--- Comment #5 from Richard Biener <rguenth at gcc dot gnu.org> ---
Author: rguenth
Date: Tue Aug 16 11:22:47 2016
New Revision: 239496

URL: https://gcc.gnu.org/viewcvs?rev=239496&root=gcc&view=rev
Log:
2016-08-16  Richard Biener  <rguenther@suse.de>

        PR tree-optimization/76783
        * tree-ssa-propagate.c (ssa_prop_init): Use RPO order.  Clear
        BB visited flags at start.

        * gcc.dg/pr76783.c: New testcase.
        * gcc.dg/tree-ssa/pr69270-2.c: Adjust.

Added:
    trunk/gcc/testsuite/gcc.dg/pr76783.c
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/testsuite/gcc.dg/tree-ssa/pr69270-2.c
    trunk/gcc/tree-ssa-propagate.c
>From gcc-bugs-return-534832-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 11:24:17 2016
Return-Path: <gcc-bugs-return-534832-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 125967 invoked by alias); 16 Aug 2016 11:24:03 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 125929 invoked by uid 89); 16 Aug 2016 11:24:02 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:1068
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 11:23:56 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/76783] [7 Regression] wrong code with conditional vector assignment @ -Og
Date: Tue, 16 Aug 2016 11:24:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status component resolution
Message-ID: <bug-76783-4-yvyYpi3jsZ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76783-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76783-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02168.txt.bz2
Content-length: 1174

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76783

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
          Component|tree-optimization           |c
         Resolution|---                         |FIXED

--- Comment #5 from Richard Biener <rguenth at gcc dot gnu.org> ---
Author: rguenth
Date: Tue Aug 16 11:22:47 2016
New Revision: 239496

URL: https://gcc.gnu.org/viewcvs?rev=239496&root=gcc&view=rev
Log:
2016-08-16  Richard Biener  <rguenther@suse.de>

        PR tree-optimization/76783
        * tree-ssa-propagate.c (ssa_prop_init): Use RPO order.  Clear
        BB visited flags at start.

        * gcc.dg/pr76783.c: New testcase.
        * gcc.dg/tree-ssa/pr69270-2.c: Adjust.

Added:
    trunk/gcc/testsuite/gcc.dg/pr76783.c
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/testsuite/gcc.dg/tree-ssa/pr69270-2.c
    trunk/gcc/tree-ssa-propagate.c

--- Comment #6 from Richard Biener <rguenth at gcc dot gnu.org> ---
Fixed.
>From gcc-bugs-return-534833-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 11:24:33 2016
Return-Path: <gcc-bugs-return-534833-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 126750 invoked by alias); 16 Aug 2016 11:24:26 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 126018 invoked by uid 89); 16 Aug 2016 11:24:13 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 11:24:03 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/76783] [7 Regression] wrong code with conditional vector assignment @ -Og
Date: Tue, 16 Aug 2016 11:24:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status component resolution
Message-ID: <bug-76783-4-7HbDTlChby@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76783-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76783-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02169.txt.bz2
Content-length: 480

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76783

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
          Component|tree-optimization           |c
         Resolution|---                         |FIXED

--- Comment #6 from Richard Biener <rguenth at gcc dot gnu.org> ---
Fixed.
>From gcc-bugs-return-534834-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 11:25:01 2016
Return-Path: <gcc-bugs-return-534834-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 127854 invoked by alias); 16 Aug 2016 11:25:01 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 127821 invoked by uid 89); 16 Aug 2016 11:25:00 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 11:24:50 +0000
From: "trippels at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/71885] Incorrect code generated with -01, memset() function call is missing
Date: Tue, 16 Aug 2016 11:25:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: trippels at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71885-4-I2blVNXszv@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71885-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71885-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02170.txt.bz2
Content-length: 824

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71885

--- Comment #26 from Markus Trippelsdorf <trippels at gcc dot gnu.org> ---
For future reference here is a nice, short example from Bernd Edlinger:

markus@x4 tmp % cat lifetime-dse.cpp
#include <assert.h>
#include <stdlib.h>
#include <string.h>

struct A {
  A() {}
  void *operator new(size_t s) {
    void *ptr = malloc(s);
    memset(ptr, 0xFF, s);
    return ptr;
  }
  int value;
};

int main() {
  A *a = new A;
  assert(a->value == -1); /* Use of uninitialized value */
}

markus@x4 tmp % g++ -O2 -flifetime-dse=1 lifetime-dse.cpp
markus@x4 tmp % ./a.out

markus@x4 tmp % g++ -O2 -flifetime-dse=2 lifetime-dse.cpp
markus@x4 tmp % ./a.out
a.out: lifetime-dse.cpp:17: int main(): Assertion `a->value == -1' failed.
[1]    21394 abort      ./a.out
>From gcc-bugs-return-534835-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 11:26:13 2016
Return-Path: <gcc-bugs-return-534835-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 129568 invoked by alias); 16 Aug 2016 11:26:13 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 129559 invoked by uid 89); 16 Aug 2016 11:26:13 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=suspicious, testresults
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 11:26:02 +0000
From: "ro at CeBiTec dot Uni-Bielefeld.DE" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/77262] [7 regression] Several libjava tests FAIL on 32-bit Solaris/x86
Date: Tue, 16 Aug 2016 11:26:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ro at CeBiTec dot Uni-Bielefeld.DE
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77262-4-iCqrQMNbDk@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77262-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77262-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02171.txt.bz2
Content-length: 428

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77262

--- Comment #2 from ro at CeBiTec dot Uni-Bielefeld.DE <ro at CeBiTec dot Uni-Bielefeld.DE> ---
> --- Comment #1 from Dominique d'Humieres <dominiq at lps dot ens.fr> ---
> Duplicate of/related to pr71682?

It's indeed suspicious that exactly the same set of tests is affected,
but my reghunt (and previous testresults) point at a totally different
patch.

        Rainer
>From gcc-bugs-return-534837-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 11:34:32 2016
Return-Path: <gcc-bugs-return-534837-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 5022 invoked by alias); 16 Aug 2016 11:34:32 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 5006 invoked by uid 89); 16 Aug 2016 11:34:31 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=our
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 11:34:21 +0000
From: "wschmidt at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/74585] powerpc64: Very poor code generation for homogeneous vector aggregates passed in registers
Date: Tue, 16 Aug 2016 11:34:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wschmidt at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-74585-4-OQrcfjjoFP@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-74585-4@http.gcc.gnu.org/bugzilla/>
References: <bug-74585-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02173.txt.bz2
Content-length: 2859

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74585

--- Comment #14 from Bill Schmidt <wschmidt at gcc dot gnu.org> ---
(In reply to Richard Biener from comment #13)
> 
> You mean stores like the following?
> 
> (insn 13 12 14 2 (set (mem/c:V4SI (plus:DI (reg/f:DI 150 virtual-stack-vars)
>                 (const_int 112 [0x70])) [1 a+48 S16 A128])
>         (vec_select:V4SI (reg:V4SI 190)
>             (parallel [
>                     (const_int 2 [0x2])
>                     (const_int 3 [0x3])
>                     (const_int 0 [0])
>                     (const_int 1 [0x1])
>                 ]))) t.c:14 -1
>      (nil))
> 
> I wonder why dse can't simply force the rhs to a register?  Of course if
> power really has stores that do this vec_select but no non-store with
> the operation then this might not be valid ...

Right, the problem is our limited selection of vector stores on POWER8.  We can
either use stvx, which requires that the address be 16-byte aligned, or we can
use stxvd2x (what you see here), which has the odd property of being a
big-endian store even on a little-endian system.  We can't force the rhs to a
register because that would have the unwanted side effect of converting an
unaligned load to a forcibly aligned load (masking off the low-order 4 bits).

Now, for parameters, this is legal because the stack slots are 16-byte aligned,
but DSE doesn't know that.  I don't think we want to pollute DSE with extra
logic for this architectural anomaly, so it's probably best if we do some more
work to figure out when we can safely use the aligning store.  (Something
that's been on the back burner for a while, but this discovery makes it more
important.)

For POWER9, we have unaligned stores with proper endian behavior, so it won't
be a problem except for POWER8.

> 
> Now, in the end this example just shows that lowering register passing
> only at RTL expansion leads to a load of missed optimizations regarding
> to parameter setup ... some scheme to apply the lowering on GIMPLE already
> would be interesting to explore (but albeit quite a bit of work).  We'd
> have a second set of "parameter decls" somewhere, like in struct function,
> and use that when the IL is on lowered form.  Same for DECL_RESULT of course.
> And then the interesting part is whether to expose the stack in some way or
> restrict the lowering to decomposition/combining to registers.

Right...lots of work here, and of course some added complexity to ABI
implementation for new and existing targets.  But small structures/arrays
passed entirely in registers is a not-uncommon ABI feature, and even just
exposing those early could be helpful.  (Complications set in when you run out
of registers halfway through a structure and so forth, so even just lowering
that sort of thing early would not be trivial.)
>From gcc-bugs-return-534836-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 11:34:01 2016
Return-Path: <gcc-bugs-return-534836-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 4218 invoked by alias); 16 Aug 2016 11:34:01 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 4186 invoked by uid 89); 16 Aug 2016 11:34:00 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:983
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 11:33:49 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/72847] vector<bool> copy-assignment basic exception safety
Date: Tue, 16 Aug 2016 11:34:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72847-4-GJVB6cosfd@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72847-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72847-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02172.txt.bz2
Content-length: 1004

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72847

--- Comment #1 from Jonathan Wakely <redi at gcc dot gnu.org> ---
Author: redi
Date: Tue Aug 16 11:33:16 2016
New Revision: 239497

URL: https://gcc.gnu.org/viewcvs?rev=239497&root=gcc&view=rev
Log:
PR 72847 Prevent double-free in std::vector<bool>

        PR libstdc++/72847
        * include/bits/stl_bvector.h (_Bvector_base::_M_deallocate): Zero
        pointers to start and end of storage.
        * testsuite/23_containers/vector/bool/72847.cc: New test.
        * include/bits/vector.tcc (vector<bool>::_M_reallocate): Only update
        _M_finish after deallocating.
        (vector<bool>::_M_fill_insert): Likewise.
        (vector<bool>::_M_insert_range): Likewise.
        (vector<bool>::_M_insert_aux): Likewise.

Added:
    trunk/libstdc++-v3/testsuite/23_containers/vector/bool/72847.cc
Modified:
    trunk/libstdc++-v3/ChangeLog
    trunk/libstdc++-v3/include/bits/stl_bvector.h
    trunk/libstdc++-v3/include/bits/vector.tcc
>From gcc-bugs-return-534838-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 11:37:28 2016
Return-Path: <gcc-bugs-return-534838-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 9512 invoked by alias); 16 Aug 2016 11:37:28 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 9503 invoked by uid 89); 16 Aug 2016 11:37:27 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 11:37:26 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/72847] vector<bool> copy-assignment basic exception safety
Date: Tue, 16 Aug 2016 11:37:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution target_milestone
Message-ID: <bug-72847-4-j6hcCUz8Kj@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72847-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72847-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02174.txt.bz2
Content-length: 501

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72847

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED
   Target Milestone|---                         |7.0

--- Comment #2 from Jonathan Wakely <redi at gcc dot gnu.org> ---
Fixed, thanks for the report.
>From gcc-bugs-return-534839-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 11:38:46 2016
Return-Path: <gcc-bugs-return-534839-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 10459 invoked by alias); 16 Aug 2016 11:38:45 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 10447 invoked by uid 89); 16 Aug 2016 11:38:44 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=interfere, resp
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 11:38:35 +0000
From: "bremende55 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77263] comment /* */ is ignored in some cases
Date: Tue, 16 Aug 2016 11:38:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: bremende55 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-77263-4-O2KzAzIpjJ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77263-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77263-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02175.txt.bz2
Content-length: 731

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77263

Jo <bremende55 at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |UNCONFIRMED
         Resolution|INVALID                     |---

--- Comment #2 from Jo <bremende55 at gmail dot com> ---
(In reply to Andreas Schwab from comment #1)
> Multiline comments do not nest.

There is only ONE multiline comment, so there is nothing to nest. The other /*
resp. */ character sequences are within literals, enclosed with double qoutes.
 /* and */ as part of a C-string literal should not interfere with /* */ in the
code.
>From gcc-bugs-return-534840-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 11:43:04 2016
Return-Path: <gcc-bugs-return-534840-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 23394 invoked by alias); 16 Aug 2016 11:43:04 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 23376 invoked by uid 89); 16 Aug 2016 11:43:03 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 11:42:53 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77263] comment /* */ is ignored in some cases
Date: Tue, 16 Aug 2016 11:43:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-77263-4-BVIu6oJhzg@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77263-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77263-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02176.txt.bz2
Content-length: 665

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77263

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |INVALID

--- Comment #3 from Jonathan Wakely <redi at gcc dot gnu.org> ---
(In reply to Jo from comment #2)
>  /* and */ as part of a C-string literal should not interfere with /* */ in
> the code.

They are no part of a string-literal, they are part of a comment, and the
comment is terminated by the first */ token.
>From gcc-bugs-return-534841-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 11:54:46 2016
Return-Path: <gcc-bugs-return-534841-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 53921 invoked by alias); 16 Aug 2016 11:54:46 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 53904 invoked by uid 89); 16 Aug 2016 11:54:45 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyÊsting, mingw-w64, mingww64, assessment
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 11:54:35 +0000
From: "sisyphus1 at optusnet dot com.au" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/77265] New: Casting an extended precision long double "inf" to __float128 results in "nan"
Date: Tue, 16 Aug 2016 11:54:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: sisyphus1 at optusnet dot com.au
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-77265-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02177.txt.bz2
Content-length: 1744

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77265

            Bug ID: 77265
           Summary: Casting an extended precision long double "inf" to
                    __float128 results in "nan"
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: sisyphus1 at optusnet dot com.au
  Target Milestone: ---

Created attachment 39463
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39463&action=edit
Demonstrates the bug that I've described

Hi,

First up ... I've nominated that this is "A problem with the C compiler front
end".
My apologies if that assessment is incorrect.

Attached is the demo program (bug492.c) which I've built on Ubuntu-16.04LTS
(gcc-5.4.0) with the command:

$ gcc -Wall -Wextra -fno-strict-aliasing -fwrapv -o bug492 bug492.c -lquadmath

The output of that program is:

inf inf
Looks like we have a NaN instead of Inf
inf nan

and I take it that demonstrates that an extended precision (80-bit) long double
+infinity, when cast to a __float128, is transformed into a NaN.


I originally reported this as a mingw-w64 bug (over a year ago) at:
https://sourceforge.net/p/mingw-w64/bugs/479/

It's only recently that I've encountered the same behaviour with gcc on linux.
(I think this might be because I generally use more modern versions of gcc on
Windows than I do on linux.)

I guess it might be considered as a somewhat minor quibble ... but it has
actually become quite a PITA for me.

Can something be done ? ... or do I just need to keep implementing workarounds
?

Thank you all for your excellent work.

Cheers,
Rob
>From gcc-bugs-return-534842-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 11:57:45 2016
Return-Path: <gcc-bugs-return-534842-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 60065 invoked by alias); 16 Aug 2016 11:57:44 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 60056 invoked by uid 89); 16 Aug 2016 11:57:44 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 11:57:33 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77264] [7 Regression] std::string's replace gives wrong results with C++17, works with C++11
Date: Tue, 16 Aug 2016 11:57:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-77264-4-EwGYfN7s18@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77264-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77264-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02178.txt.bz2
Content-length: 719

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77264

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-16
     Ever confirmed|0                           |1

--- Comment #2 from Jonathan Wakely <redi at gcc dot gnu.org> ---
We end up in the new replace() overload when we should be in the const char*
one here:

    basic_string&
    replace(size_type __pos, size_type __n, const basic_string& __str)
    { return this->replace(__pos, __n, __str._M_data(), __str.size()); }
>From gcc-bugs-return-534843-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 12:01:46 2016
Return-Path: <gcc-bugs-return-534843-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 69194 invoked by alias); 16 Aug 2016 12:01:45 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 69161 invoked by uid 89); 16 Aug 2016 12:01:43 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 12:01:33 +0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug web/77266] New: test mark_spam.py
Date: Tue, 16 Aug 2016 12:01:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: web
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77266-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02179.txt.bz2
Content-length: 451

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77266

            Bug ID: 77266
           Summary: test mark_spam.py
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: web
          Assignee: unassigned at gcc dot gnu.org
          Reporter: marxin at gcc dot gnu.org
  Target Milestone: ---

Please do not mark this issue. I'll remove it eventually.
>From gcc-bugs-return-534844-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 12:02:11 2016
Return-Path: <gcc-bugs-return-534844-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 70017 invoked by alias); 16 Aug 2016 12:02:11 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 70001 invoked by uid 89); 16 Aug 2016 12:02:10 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:166
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 12:02:00 +0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug web/77266] test mark_spam.py
Date: Tue, 16 Aug 2016 12:02:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: web
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77266-4-hdct9ntkq0@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77266-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77266-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02180.txt.bz2
Content-length: 138

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77266

--- Comment #1 from Martin Liška <marxin at gcc dot gnu.org> ---
Next comment.
>From gcc-bugs-return-534845-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 12:05:38 2016
Return-Path: <gcc-bugs-return-534845-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 89977 invoked by alias); 16 Aug 2016 12:05:38 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 89960 invoked by uid 89); 16 Aug 2016 12:05:37 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 12:05:27 +0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug web/77266] test mark_spam.py
Date: Tue, 16 Aug 2016 12:05:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: web
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: attachments.created
Message-ID: <bug-77266-4-v7hhMud29n@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77266-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77266-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02181.txt.bz2
Content-length: 237

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77266

--- Comment #2 from Martin Liška <marxin at gcc dot gnu.org> ---
Created attachment 39464
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39464&action=edit
test1

test2
>From gcc-bugs-return-534846-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 12:06:41 2016
Return-Path: <gcc-bugs-return-534846-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 91070 invoked by alias); 16 Aug 2016 12:06:41 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 91060 invoked by uid 89); 16 Aug 2016 12:06:40 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 12:06:39 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/77264] [7 Regression] std::string's replace gives wrong results with C++17, works with C++11
Date: Tue, 16 Aug 2016 12:06:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77264-4-KwdFVnb5l7@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77264-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77264-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02182.txt.bz2
Content-length: 283

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77264

--- Comment #3 from Jonathan Wakely <redi at gcc dot gnu.org> ---
Reduced:

#include <string>

int main () {
  std::string str("xyz");
  char c = 'Y';
  str.replace(1, 1, &c, 1);
  if (str[1] != 'Y')
    __builtin_abort();
}
>From gcc-bugs-return-534847-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 12:15:18 2016
Return-Path: <gcc-bugs-return-534847-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 104004 invoked by alias); 16 Aug 2016 12:15:18 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 103982 invoked by uid 89); 16 Aug 2016 12:15:17 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 12:14:58 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/77264] [7 Regression] std::string's replace gives wrong results with C++17, works with C++11
Date: Tue, 16 Aug 2016 12:15:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77264-4-p4oWttBCuV@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77264-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77264-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02183.txt.bz2
Content-length: 1026

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77264

--- Comment #4 from Jonathan Wakely <redi at gcc dot gnu.org> ---
(In reply to Jonathan Wakely from comment #2)
> We end up in the new replace() overload when we should be in the const char*
> one here:
> 
>     basic_string&
>     replace(size_type __pos, size_type __n, const basic_string& __str)
>     { return this->replace(__pos, __n, __str._M_data(), __str.size()); }

We could fix Tobias's example by changing this to use c_str() instead of
_M_data(), which would pass a const char* and so call the desired overload.

That wouldn't help comment 3 though, where a (non-const) char* is passed
directly, which requires a conversion to call the overload for const char*, and
so the new overload taking a string_view is chosen by overload resolution.

With the new overload str.replace(0, 1, &c, 1) is equivalent to str.replace(0,
1, string_view{&c, 1}, 1) which replaces the specified substring with
string_view{&c, 1}.substr(1) rather than string_view{&c, 1}.
>From gcc-bugs-return-534848-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 12:20:29 2016
Return-Path: <gcc-bugs-return-534848-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 121044 invoked by alias); 16 Aug 2016 12:20:29 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 121030 invoked by uid 89); 16 Aug 2016 12:20:28 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 12:20:18 +0000
From: "bremende55 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77263] comment /* */ is ignored in some cases
Date: Tue, 16 Aug 2016 12:20:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: bremende55 at gmail dot com
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77263-4-lY8PE2AjQr@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77263-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77263-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02184.txt.bz2
Content-length: 442

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77263

--- Comment #4 from Jo <bremende55 at gmail dot com> ---
(In reply to Jonathan Wakely from comment #3)
> (In reply to Jo from comment #2)
> >  /* and */ as part of a C-string literal should not interfere with /* */ in
> > the code.
> 
> They are no part of a string-literal, they are part of a comment, and the
> comment is terminated by the first */ token.

ok, I got it. Thank you.
>From gcc-bugs-return-534849-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 12:22:50 2016
Return-Path: <gcc-bugs-return-534849-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 122677 invoked by alias); 16 Aug 2016 12:22:50 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 122666 invoked by uid 89); 16 Aug 2016 12:22:49 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=trick
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 12:22:39 +0000
From: "ville.voutilainen at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/77264] [7 Regression] std::string's replace gives wrong results with C++17, works with C++11
Date: Tue, 16 Aug 2016 12:22:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ville.voutilainen at gmail dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-77264-4-pNfeNh3PZo@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77264-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77264-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02185.txt.bz2
Content-length: 521

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77264

Ville Voutilainen <ville.voutilainen at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ville.voutilainen at gmail dot com

--- Comment #5 from Ville Voutilainen <ville.voutilainen at gmail dot com> ---
Well, it seems that disambiguating with a properly exclusive sfinae constraint
should do the trick.
>From gcc-bugs-return-534850-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 12:35:21 2016
Return-Path: <gcc-bugs-return-534850-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 6558 invoked by alias); 16 Aug 2016 12:35:21 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 6541 invoked by uid 89); 16 Aug 2016 12:35:20 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 12:35:10 +0000
From: "dominiq at lps dot ens.fr" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/77262] [7 regression] Several libjava tests FAIL on 32-bit Solaris/x86
Date: Tue, 16 Aug 2016 12:35:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dominiq at lps dot ens.fr
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77262-4-Fb0WzSQEEk@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77262-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77262-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02186.txt.bz2
Content-length: 402

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77262

--- Comment #3 from Dominique d'Humieres <dominiq at lps dot ens.fr> ---
> It's indeed suspicious that exactly the same set of tests is affected,
> but my reghunt (and previous testresults) point at a totally different
> patch.

Well, I have r237556 reverted in my working tree to silence the failures. This
revision only changes PRED_LOOP_EXIT.
>From gcc-bugs-return-534851-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 12:54:26 2016
Return-Path: <gcc-bugs-return-534851-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 15925 invoked by alias); 16 Aug 2016 12:54:25 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 15915 invoked by uid 89); 16 Aug 2016 12:54:25 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyÊsting
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 12:54:14 +0000
From: "ubizjak at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libgcc/77265] Casting an extended precision long double "inf" to __float128 results in "nan"
Date: Tue, 16 Aug 2016 12:54:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libgcc
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ubizjak at gmail dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on component everconfirmed
Message-ID: <bug-77265-4-taGfdIeGuJ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77265-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77265-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02187.txt.bz2
Content-length: 833

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77265

Uroš Bizjak <ubizjak at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-16
          Component|c                           |libgcc
     Ever confirmed|0                           |1

--- Comment #1 from Uroš Bizjak <ubizjak at gmail dot com> ---
__extendxftf does not convert (clear) explicit lead bit to an implicit.
extended-precision does not utilize implicit/hidden bit.

So, 0x7fff80..0 that represents extended-precision infinity gets converted
directly to 0x7fff80....0 that represents quad-precision NaN.

Confirmed, soft-fp should be fixed.
>From gcc-bugs-return-534852-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 13:00:33 2016
Return-Path: <gcc-bugs-return-534852-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 39468 invoked by alias); 16 Aug 2016 13:00:32 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 39459 invoked by uid 89); 16 Aug 2016 13:00:32 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=agrees
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 13:00:22 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/77264] [7 Regression] std::string's replace gives wrong results with C++17, works with C++11
Date: Tue, 16 Aug 2016 13:00:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77264-4-p53MukBjUj@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77264-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77264-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02188.txt.bz2
Content-length: 277

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77264

--- Comment #6 from Jonathan Wakely <redi at gcc dot gnu.org> ---
The patch at https://gcc.gnu.org/ml/gcc-patches/2016-08/msg01179.html would fix
it, but I'll wait a bit to see if the committee agrees with that solution.
>From gcc-bugs-return-534853-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 13:10:59 2016
Return-Path: <gcc-bugs-return-534853-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 92727 invoked by alias); 16 Aug 2016 13:10:58 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 92704 invoked by uid 89); 16 Aug 2016 13:10:57 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 13:10:47 +0000
From: "amker at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/69848] poor vectorization of a loop from SPEC2006 464.h264ref
Date: Tue, 16 Aug 2016 13:10:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: amker at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-69848-4-WShBdkULRn@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69848-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69848-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02189.txt.bz2
Content-length: 790

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69848

--- Comment #16 from amker at gcc dot gnu.org ---
Author: amker
Date: Tue Aug 16 13:09:40 2016
New Revision: 239502

URL: https://gcc.gnu.org/viewcvs?rev=239502&root=gcc&view=rev
Log:
        PR tree-optimization/69848
        * config/aarch64/aarch64-simd.md (vcond<mode><mode>): Invert NE
        and swtich operands to avoid additional NOT instruction.
        (vcond<v_cmp_mixed><mode>): Ditto.
        (vcondu<mode><mode>, vcondu<mode><v_cmp_mixed>): Ditto.

        gcc/testsuite
        * gcc.target/aarch64/simd/vcond-ne-bit.c: New test.

Added:
    trunk/gcc/testsuite/gcc.target/aarch64/simd/vcond-ne-bit.c
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/config/aarch64/aarch64-simd.md
    trunk/gcc/testsuite/ChangeLog
>From gcc-bugs-return-534854-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 13:12:18 2016
Return-Path: <gcc-bugs-return-534854-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 115107 invoked by alias); 16 Aug 2016 13:12:18 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 115026 invoked by uid 89); 16 Aug 2016 13:12:17 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 13:12:07 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/76774] atomics on PPC: inconsistent widths for an _Atomic(_Bool) and for atomic_compare_exchange_strong on it
Date: Tue, 16 Aug 2016 13:12:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 4.9.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-76774-4-X6660YazO3@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76774-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76774-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02190.txt.bz2
Content-length: 1318

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76774

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |RESOLVED
         Resolution|---                         |INVALID

--- Comment #5 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
(In reply to Peter Sewell from comment #4)
> (In reply to Andrew Pinski from comment #3)
> > What code were you expecting anyways?
> 
> I hadn't noticed how recent the other-size LL/SC were.  But then I would
> have expected a 4-byte representation for _Atomic(_Bool) on the older
> machines, to minimise the amount of code between the lwarx and stwcx; would
> that have some other disadvantage?

Yes that would break Abis. In that power7 compiled code would be incompatible
with power9 one. 

> 
> I don't think the code you've got is functionally wrong on normal h/w.  We
> noticed this running in a semantics-based emulator that's very picky about
> reading from uninitialised memory, but on normal h/w the extra memory will
> AFAICS always be mapped and be within the same reservation granule.

Sorry but there is nothing that can be done here. This is a similar issue on
mips too.
>From gcc-bugs-return-534855-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 13:15:44 2016
Return-Path: <gcc-bugs-return-534855-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 29616 invoked by alias); 16 Aug 2016 13:15:44 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 29410 invoked by uid 89); 16 Aug 2016 13:15:43 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyÊsting
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 13:15:33 +0000
From: "ubizjak at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libgcc/77265] Casting an extended precision long double "inf" to __float128 results in "nan"
Date: Tue, 16 Aug 2016 13:15:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libgcc
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ubizjak at gmail dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-77265-4-S8nlIJ8oju@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77265-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77265-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02191.txt.bz2
Content-length: 477

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77265

Uroš Bizjak <ubizjak at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jakub at gcc dot gnu.org,
                   |                            |joseph at codesourcery dot com

--- Comment #2 from Uroš Bizjak <ubizjak at gmail dot com> ---
CCs added.
>From gcc-bugs-return-534856-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 13:22:55 2016
Return-Path: <gcc-bugs-return-534856-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 65256 invoked by alias); 16 Aug 2016 13:22:55 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 65245 invoked by uid 89); 16 Aug 2016 13:22:54 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyúILs
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 13:22:44 +0000
From: "ro at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/67419] gfortran.dg/large_real_kind_2.F90 FAILs
Date: Tue, 16 Aug 2016 13:22:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ro at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-67419-4-KMOncVqcbz@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67419-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67419-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02192.txt.bz2
Content-length: 535

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67419

Rainer Orth <ro at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |RESOLVED
         Resolution|---                         |FIXED

--- Comment #13 from Rainer Orth <ro at gcc dot gnu.org> ---
I had bug

21787172 _Q_sqrt returns Nan

filed.  The issue has been fixed in a later build of Solaris 12, so closing.

  Rainer
>From gcc-bugs-return-534857-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 13:25:50 2016
Return-Path: <gcc-bugs-return-534857-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 77256 invoked by alias); 16 Aug 2016 13:25:49 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 77221 invoked by uid 89); 16 Aug 2016 13:25:48 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=mpx
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 13:25:38 +0000
From: "aivchenk at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77267] New: MPX does not work in a presence of "-Wl,-as-needed" option (Ubuntu default)
Date: Tue, 16 Aug 2016 13:25:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: aivchenk at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77267-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02193.txt.bz2
Content-length: 1395

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77267

            Bug ID: 77267
           Summary: MPX does not work in a presence of "-Wl,-as-needed"
                    option (Ubuntu default)
           Product: gcc
           Version: 6.1.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: target
          Assignee: unassigned at gcc dot gnu.org
          Reporter: aivchenk at gmail dot com
  Target Milestone: ---

When compiling with -Wl,-as-needed libmpx.so and libmpxwrappers.so are not
linked:
>gcc -fcheck-pointer-bounds -mmpx any_mpx_test.c -Wl,-as-needed
> ldd a.out 
        linux-vdso.so.1 (0x00007ffc687a0000)
        libc.so.6 => /lib64/libc.so.6 (0x00000035c8c00000)
        /lib64/ld-linux-x86-64.so.2 (0x000055e88586f000)

And hence, MPX does not work.

(In a working scenario it should be like that:
> ldd a.out 
        linux-vdso.so.1 (0x00007fff53fe7000)
        libmpx.so.0 => /lib64/libmpx.so.0 (0x00007f135ac34000)
        libmpxwrappers.so.0 => /lib64/libmpxwrappers.so.0 (0x00007f135aa31000)
        libc.so.6 => /lib64/libc.so.6 (0x00000035c8c00000)
        libpthread.so.0 => /lib64/libpthread.so.0 (0x00000035c9400000)
        /lib64/ld-linux-x86-64.so.2 (0x0000558619680000)
)

This case is important because on Debian/Ubuntu -no-as-needed option is always
implicitly added while linking.
>From gcc-bugs-return-534858-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 13:45:49 2016
Return-Path: <gcc-bugs-return-534858-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 14633 invoked by alias); 16 Aug 2016 13:45:49 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 14618 invoked by uid 89); 16 Aug 2016 13:45:48 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 13:45:38 +0000
From: "olegendo at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug debug/69073] internal compiler error: in maybe_record_trace_start
Date: Tue, 16 Aug 2016 13:45:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: debug
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: olegendo at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-69073-4-y27YKOFzY1@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69073-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69073-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02194.txt.bz2
Content-length: 394

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69073

Oleg Endo <olegendo at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |olegendo at gcc dot gnu.org

--- Comment #5 from Oleg Endo <olegendo at gcc dot gnu.org> ---
Maybe PR 71109?
>From gcc-bugs-return-534859-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 13:54:26 2016
Return-Path: <gcc-bugs-return-534859-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 41430 invoked by alias); 16 Aug 2016 13:54:26 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 41421 invoked by uid 89); 16 Aug 2016 13:54:25 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=occur
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 13:54:15 +0000
From: "olegendo at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/41880] CONSTANT_ADDRESS_P undefined.
Date: Tue, 16 Aug 2016 13:54:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 4.5.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: olegendo at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-41880-4-v1MQ8RiDoi@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-41880-4@http.gcc.gnu.org/bugzilla/>
References: <bug-41880-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02195.txt.bz2
Content-length: 452

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=41880

Oleg Endo <olegendo at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |olegendo at gcc dot gnu.org

--- Comment #3 from Oleg Endo <olegendo at gcc dot gnu.org> ---
This doesn't occur with GCC 5+, right?  I have never hit this problem ...
>From gcc-bugs-return-534860-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 13:59:23 2016
Return-Path: <gcc-bugs-return-534860-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 55748 invoked by alias); 16 Aug 2016 13:59:23 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 55738 invoked by uid 89); 16 Aug 2016 13:59:23 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:402
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 13:59:12 +0000
From: "joseph at codesourcery dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libgcc/77265] Casting an extended precision long double "inf" to __float128 results in "nan"
Date: Tue, 16 Aug 2016 13:59:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libgcc
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: joseph at codesourcery dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77265-4-vpIjxSWgHU@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77265-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77265-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02196.txt.bz2
Content-length: 319

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77265

--- Comment #3 from joseph at codesourcery dot com <joseph at codesourcery dot com> ---
The natural fix is to the extended precision unpacking, to make it clear 
the high bit so everything else can treat it like a normal IEEE format.  
I'll test a patch.
>From gcc-bugs-return-534861-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 14:15:04 2016
Return-Path: <gcc-bugs-return-534861-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 125784 invoked by alias); 16 Aug 2016 14:15:03 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 124625 invoked by uid 89); 16 Aug 2016 14:15:02 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 14:14:52 +0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/36412] gcov -l -p exceeds maximum file name length
Date: Tue, 16 Aug 2016 14:15:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 4.1.2
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-36412-4-uo64XMkdwK@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-36412-4@http.gcc.gnu.org/bugzilla/>
References: <bug-36412-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02197.txt.bz2
Content-length: 722

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=36412

--- Comment #5 from Martin Liška <marxin at gcc dot gnu.org> ---
Author: marxin
Date: Tue Aug 16 14:14:18 2016
New Revision: 239503

URL: https://gcc.gnu.org/viewcvs?rev=239503&root=gcc&view=rev
Log:
gcov: add new option (--hash-filenames) (PR

        PR gcov-profile/36412
        * doc/gcov.texi: Document --hash-filenames(-x).
        * gcov.c (print_usage): Add the option.
        (process_args): Process the option, sort options alphabetically.
        (md5sum_to_hex): New function.
        (make_gcov_file_name): Do the md5sum and append it to a
        filename.

Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/doc/gcov.texi
    trunk/gcc/gcov.c
>From gcc-bugs-return-534862-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 14:23:57 2016
Return-Path: <gcc-bugs-return-534862-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 55470 invoked by alias); 16 Aug 2016 14:23:57 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 55457 invoked by uid 89); 16 Aug 2016 14:23:56 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 14:23:46 +0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/36412] gcov -l -p exceeds maximum file name length
Date: Tue, 16 Aug 2016 14:23:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 4.1.2
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-36412-4-3cSjsTYyYi@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-36412-4@http.gcc.gnu.org/bugzilla/>
References: <bug-36412-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02198.txt.bz2
Content-length: 442

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=36412

Martin Liška <marxin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--- Comment #6 from Martin Liška <marxin at gcc dot gnu.org> ---
Fixed on trunk.
>From gcc-bugs-return-534863-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 14:40:43 2016
Return-Path: <gcc-bugs-return-534863-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 114870 invoked by alias); 16 Aug 2016 14:40:43 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 114550 invoked by uid 89); 16 Aug 2016 14:40:42 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=evil, permanently
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 14:40:32 +0000
From: "LpSolit at netscape dot net" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug web/72856] Trottle bug creation for newly created accounts (to limit spam)
Date: Tue, 16 Aug 2016 14:40:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: web
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: LpSolit at netscape dot net
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: LpSolit at netscape dot net
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72856-4-CoryPZOi46@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72856-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72856-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02199.txt.bz2
Content-length: 850

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72856

--- Comment #10 from Frédéric Buclin <LpSolit at netscape dot net> ---
(In reply to Frank Ch. Eigler from comment #6)
> Per-account rate limits seem so easy to overcome, with spammers already
> creating numerous verified junk accounts with ease.

I banned several ranges of IP addresses, and also permanently banned some
domain names. Logs show that all evil attempts made today have been
successfully blocked (for how long?).


> I would suggest focusing on spam-prevention content analysis (spamassassin
> style), and post-spam cleanup (blacklisting, history editing, bug hiding?)
> efforts.

Content analysis has been (partially) implemented today. If the bug report is
considered to be spam, the bug report is automatically rejected and the user
account automatically disabled.
>From gcc-bugs-return-534864-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 14:53:57 2016
Return-Path: <gcc-bugs-return-534864-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 27787 invoked by alias); 16 Aug 2016 14:53:57 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 27771 invoked by uid 89); 16 Aug 2016 14:53:56 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=mwahab
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 14:53:46 +0000
From: "mwahab at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/72824] [5/6 Regression] Signed floating point zero semantics broken at optimization level -O3 (tree-loop-distribute-patterns)
Date: Tue, 16 Aug 2016 14:53:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mwahab at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-72824-4-IMvIugoOie@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72824-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72824-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02200.txt.bz2
Content-length: 505

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72824

mwahab at gcc dot gnu.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mwahab at gcc dot gnu.org

--- Comment #11 from mwahab at gcc dot gnu.org ---
The new test-case gcc.c-torture/execute/ieee/pr72824-2.c is failing for
arm-none-linux-gnueabihf with gcc-6 and trunk.

I'm still looking into why.
Matthew
>From gcc-bugs-return-534866-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 14:58:49 2016
Return-Path: <gcc-bugs-return-534866-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 37908 invoked by alias); 16 Aug 2016 14:58:49 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 37891 invoked by uid 89); 16 Aug 2016 14:58:48 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=OUTPUT, UD:rr.com, PROGRAM
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 14:58:38 +0000
From: "jdinardo at nycap dot rr.com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/77268] New: Vector erase call destructor for last element twice and doesn't call destructor for eased element.
Date: Tue, 16 Aug 2016 14:58:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jdinardo at nycap dot rr.com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-77268-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02202.txt.bz2
Content-length: 1553

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77268

            Bug ID: 77268
           Summary: Vector erase call destructor for last element twice
                    and doesn't call destructor for eased element.
           Product: gcc
           Version: 6.1.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: libstdc++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: jdinardo at nycap dot rr.com
  Target Milestone: ---

Created attachment 39465
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39465&action=edit
Small  33 line program which shows the problem.

Vector erase is asked to erase 3rd element of 5 element vector. The
destructor for the last(fifth) element is called twice and the destructor
for the 3rd element is not called. The 3rd element is erased but the malloced
memory is never freed. BUG 47305 seems to imply that this is ok. If that is the
case, then pleas ignore this.

VERSION - g++ -v
    Using built-in specs.
    COLLECT_GCC=g++
    COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/6.1.1/lto-wrapper
    Target: x86_64-pc-linux-gnu
    Configured with: /build/gcc/src/gcc/configure --prefix=/usr
--libdir=/usr/li
    Thread model: posix
    gcc version 6.1.1 20160802 (GCC)

System is Arch Linux

MAKEFILE
    CPPFLAGS=-g -Wall -lfltk
    ALL:hello t1 v1

MAKEFILE OUTPUT - no warnings or errors
    g++  -g -Wall -lfltk   v1.cc   -o v1

COMMAND LINE
    v1

SMALL 33 LINE TEST PROGRAM 
    Included as attachment
>From gcc-bugs-return-534865-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 14:58:02 2016
Return-Path: <gcc-bugs-return-534865-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 35467 invoked by alias); 16 Aug 2016 14:58:02 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 34863 invoked by uid 89); 16 Aug 2016 14:58:01 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 14:57:51 +0000
From: "emsr at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/32187] Complex __float128 is rejected
Date: Tue, 16 Aug 2016 14:58:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 4.3.0
X-Bugzilla-Keywords: rejects-valid
X-Bugzilla-Severity: normal
X-Bugzilla-Who: emsr at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-32187-4-yWWGMnQHKv@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-32187-4@http.gcc.gnu.org/bugzilla/>
References: <bug-32187-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02201.txt.bz2
Content-length: 14544

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=32187

--- Comment #10 from emsr at gcc dot gnu.org ---
Author: emsr
Date: Tue Aug 16 14:56:55 2016
New Revision: 239504

URL: https://gcc.gnu.org/viewcvs?rev=239504&root=gcc&view=rev
Log:
Commit Joseph Myers Implement C _FloatN, _FloatNx types [version 5] to the
branch.
This is to test impact on my use of __float128 and comlex.
gcc:
2016-07-22  Joseph Myers  <joseph@codesourcery.com>

        PR c/32187
        * tree-core.h (TI_COMPLEX_FLOAT16_TYPE)
        (TI_COMPLEX_FLOATN_NX_TYPE_FIRST, TI_COMPLEX_FLOAT32_TYPE)
        (TI_COMPLEX_FLOAT64_TYPE, TI_COMPLEX_FLOAT128_TYPE)
        (TI_COMPLEX_FLOAT32X_TYPE, TI_COMPLEX_FLOAT64X_TYPE)
        (TI_COMPLEX_FLOAT128X_TYPE, TI_FLOAT16_TYPE, TI_FLOATN_TYPE_FIRST)
        (TI_FLOATN_NX_TYPE_FIRST, TI_FLOAT32_TYPE, TI_FLOAT64_TYPE)
        (TI_FLOAT128_TYPE, TI_FLOATN_TYPE_LAST, TI_FLOAT32X_TYPE)
        (TI_FLOATNX_TYPE_FIRST, TI_FLOAT64X_TYPE, TI_FLOAT128X_TYPE)
        (TI_FLOATNX_TYPE_LAST, TI_FLOATN_NX_TYPE_LAST): New enum
        tree_index values.
        (NUM_FLOATN_TYPES, NUM_FLOATNX_TYPES, NUM_FLOATN_NX_TYPES): New
        macros.
        (struct floatn_type_info): New structure type.
        (floatn_nx_types): New variable declaration.
        * tree.h (FLOATN_TYPE_NODE, FLOATN_NX_TYPE_NODE)
        (FLOATNX_TYPE_NODE, float128_type_node, float64x_type_node)
        (COMPLEX_FLOATN_NX_TYPE_NODE): New macros.
        * tree.c (floatn_nx_types): New variable.
        (build_common_tree_nodes): Initialize _FloatN, _FloatNx and
        corresponding complex types.
        * target.def (floatn_mode): New hook.
        * targhooks.c: Include "real.h".
        (default_floatn_mode): New function.
        * targhooks.h (default_floatn_mode): New prototype.
        * doc/extend.texi (Floating Types): Document _FloatN and _FloatNx
        types.
        * doc/sourcebuild.texi (float@var{n}, float@var{n}x): Document new
        effective-target keywords.
        * doc/tm.texi.in (TARGET_FLOATN_MODE): New @hook.
        * doc/tm.texi: Regenerate.
        * ginclude/float.h (LDBL_DECIMAL_DIG): Define to
        __LDBL_DECIMAL_DIG__, not __DECIMAL_DIG__.
        [__STDC_WANT_IEC_60559_TYPES_EXT__]: Define macros from TS
        18661-3.
        * real.h (struct real_format): Add field ieee_bits.
        * real.c (ieee_single_format, mips_single_format)
        (motorola_single_format, spu_single_format, ieee_double_format)
        (mips_double_format, motorola_double_format)
        (ieee_extended_motorola_format, ieee_extended_intel_96_format)
        (ieee_extended_intel_128_format)
        (ieee_extended_intel_96_round_53_format, ibm_extended_format)
        (mips_extended_format, ieee_quad_format, mips_quad_format)
        (vax_f_format, vax_d_format, vax_g_format, decimal_single_format)
        (decimal_double_format, decimal_quad_format, ieee_half_format)
        (arm_half_format, real_internal_format: Initialize ieee_bits
        field.
        * config/i386/i386.c (ix86_init_builtin_types): Do not initialize
        float128_type_node.  Set float80_type_node to float64x_type_node
        if appropriate and long_double_type_node not appropriate.
        * config/ia64/ia64.c (ia64_init_builtins): Likewise.
        * config/pdp11/pdp11.c (pdp11_f_format, pdp11_d_format):
        Initialize ieee_bits field.
        * config/rs6000/rs6000.c (TARGET_FLOATN_MODE): New macro.
        (rs6000_init_builtins): Set ieee128_float_type_node to
        float128_type_node.
        (rs6000_floatn_mode): New function.

gcc/c:
2016-07-22  Joseph Myers  <joseph@codesourcery.com>

        PR c/32187
        * c-tree.h (cts_floatn_nx): New enum c_typespec_keyword value.
        (struct c_declspecs): Add field floatn_nx_idx.
        * c-decl.c (declspecs_add_type, finish_declspecs): Handle _FloatN
        and _FloatNx type specifiers.
        * c-parser.c (c_keyword_starts_typename, c_token_starts_declspecs)
        (c_parser_declspecs, c_parser_attribute_any_word)
        (c_parser_objc_selector): Use CASE_RID_FLOATN_NX.
        * c-typeck.c (c_common_type): Handle _FloatN and _FloatNx types.
        (convert_arguments): Avoid promoting _FloatN and _FloatNx types
        narrower than double.

gcc/c-family:
2016-07-22  Joseph Myers  <joseph@codesourcery.com>

        PR c/32187
        * c-common.h (RID_FLOAT16, RID_FLOATN_NX_FIRST, RID_FLOAT32)
        (RID_FLOAT64, RID_FLOAT128, RID_FLOAT32X, RID_FLOAT64X)
        (RID_FLOAT128X): New enum rid values.
        (CASE_RID_FLOATN_NX): New macro.
        * c-common.c (c_common_reswords): Add _FloatN and _FloatNx
        keywords.
        (c_common_type_for_mode): Check for _FloatN and _FloatNx and
        corresponding complex types.
        (c_common_nodes_and_builtins): For non-C++, register _FloatN and
        _FloatNx and corresponding complex types.
        (keyword_begins_type_specifier): Use CASE_RID_FLOATN_NX.
        * c-cppbuiltin.c (builtin_define_float_constants): Check _FloatN
        and _FloatNx types for the widest type for determining
        DECIMAL_DIG.  Define __LDBL_DECIMAL_DIG__ as well as
        __DECIMAL_DIG__ for long double.  Handle FMA_SUFFIX being NULL.
        (c_cpp_builtins): Call builtin_define_float_constants for _FloatN
        and _FloatNx types.
        * c-lex.c (interpret_float): Handle _FloatN and _FloatNx
        constants.
        * c-pretty-print.c (pp_c_floating_constant): Handle _FloatN and
        _FloatNx types.

gcc/fortran:
2016-07-22  Joseph Myers  <joseph@codesourcery.com>

        PR c/32187
        * trans-types.h (float128_type_node): Rename to
        gfc_float128_type_node.
        (complex_float128_type_node): Rename to
        gfc_complex_float128_type_node.
        * iso-c-binding.def, trans-intrinsic.c, trans-types.c: All users
        changed.

gcc/testsuite:
2016-07-22  Joseph Myers  <joseph@codesourcery.com>

        PR c/32187
        * lib/target-supports.exp (check_effective_target_float16)
        (check_effective_target_float32, check_effective_target_float64)
        (check_effective_target_float128, check_effective_target_float32x)
        (check_effective_target_float64x)
        (check_effective_target_float128x): New procedures.
        * gcc.dg/dfp/floatn.c, gcc.dg/float128-typeof.c,
        gcc.dg/float128x-typeof.c, gcc.dg/float16-typeof.c,
        gcc.dg/float32-typeof.c, gcc.dg/float32x-typeof.c,
        gcc.dg/float64-typeof.c, gcc.dg/float64x-typeof.c,
        gcc.dg/floatn-arithconv.c, gcc.dg/floatn-errs.c,
        gcc.dg/floatn-typeof.h, gcc.dg/torture/float128-basic.c,
        gcc.dg/torture/float128-complex.c,
        gcc.dg/torture/float128-floath.c, gcc.dg/torture/float128-tg.c,
        gcc.dg/torture/float128x-basic.c,
        gcc.dg/torture/float128x-complex.c,
        gcc.dg/torture/float128x-floath.c, gcc.dg/torture/float128x-tg.c,
        gcc.dg/torture/float16-basic.c, gcc.dg/torture/float16-complex.c,
        gcc.dg/torture/float16-floath.c, gcc.dg/torture/float16-tg.c,
        gcc.dg/torture/float32-basic.c, gcc.dg/torture/float32-complex.c,
        gcc.dg/torture/float32-floath.c, gcc.dg/torture/float32-tg.c,
        gcc.dg/torture/float32x-basic.c,
        gcc.dg/torture/float32x-complex.c,
        gcc.dg/torture/float32x-floath.c, gcc.dg/torture/float32x-tg.c,
        gcc.dg/torture/float64-basic.c, gcc.dg/torture/float64-complex.c,
        gcc.dg/torture/float64-floath.c, gcc.dg/torture/float64-tg.c,
        gcc.dg/torture/float64x-basic.c,
        gcc.dg/torture/float64x-complex.c,
        gcc.dg/torture/float64x-floath.c, gcc.dg/torture/float64x-tg.c,
        gcc.dg/torture/floatn-basic.h, gcc.dg/torture/floatn-complex.h,
        gcc.dg/torture/floatn-convert.c, gcc.dg/torture/floatn-floath.h,
        gcc.dg/torture/floatn-tg.h,
        gcc.dg/torture/fp-int-convert-float128-ieee-timode.c,
        gcc.dg/torture/fp-int-convert-float128-ieee.c,
        gcc.dg/torture/fp-int-convert-float128x-timode.c,
        gcc.dg/torture/fp-int-convert-float128x.c,
        gcc.dg/torture/fp-int-convert-float16-timode.c,
        gcc.dg/torture/fp-int-convert-float16.c,
        gcc.dg/torture/fp-int-convert-float32-timode.c,
        gcc.dg/torture/fp-int-convert-float32.c,
        gcc.dg/torture/fp-int-convert-float32x-timode.c,
        gcc.dg/torture/fp-int-convert-float32x.c,
        gcc.dg/torture/fp-int-convert-float64-timode.c,
        gcc.dg/torture/fp-int-convert-float64.c,
        gcc.dg/torture/fp-int-convert-float64x-timode.c,
        gcc.dg/torture/fp-int-convert-float64x.c: New tests.

libcpp:
2016-07-22  Joseph Myers  <joseph@codesourcery.com>

        PR c/32187
        * include/cpplib.h (CPP_N_FLOATN, CPP_N_FLOATNX)
        (CPP_N_WIDTH_FLOATN_NX, CPP_FLOATN_SHIFT, CPP_FLOATN_MAX): New
        macros.
        * expr.c (interpret_float_suffix): Handle fN, fNx, FN and FNx
        suffixes.


Added:
    branches/tr29124/gcc/testsuite/gcc.dg/dfp/floatn.c
    branches/tr29124/gcc/testsuite/gcc.dg/float128-typeof.c
    branches/tr29124/gcc/testsuite/gcc.dg/float128x-typeof.c
    branches/tr29124/gcc/testsuite/gcc.dg/float16-typeof.c
    branches/tr29124/gcc/testsuite/gcc.dg/float32-typeof.c
    branches/tr29124/gcc/testsuite/gcc.dg/float32x-typeof.c
    branches/tr29124/gcc/testsuite/gcc.dg/float64-typeof.c
    branches/tr29124/gcc/testsuite/gcc.dg/float64x-typeof.c
    branches/tr29124/gcc/testsuite/gcc.dg/floatn-arithconv.c
    branches/tr29124/gcc/testsuite/gcc.dg/floatn-errs.c
    branches/tr29124/gcc/testsuite/gcc.dg/floatn-typeof.h
    branches/tr29124/gcc/testsuite/gcc.dg/torture/float128-basic.c
    branches/tr29124/gcc/testsuite/gcc.dg/torture/float128-complex.c
    branches/tr29124/gcc/testsuite/gcc.dg/torture/float128-floath.c
    branches/tr29124/gcc/testsuite/gcc.dg/torture/float128-tg.c
    branches/tr29124/gcc/testsuite/gcc.dg/torture/float128x-basic.c
    branches/tr29124/gcc/testsuite/gcc.dg/torture/float128x-complex.c
    branches/tr29124/gcc/testsuite/gcc.dg/torture/float128x-floath.c
    branches/tr29124/gcc/testsuite/gcc.dg/torture/float128x-tg.c
    branches/tr29124/gcc/testsuite/gcc.dg/torture/float16-basic.c
    branches/tr29124/gcc/testsuite/gcc.dg/torture/float16-complex.c
    branches/tr29124/gcc/testsuite/gcc.dg/torture/float16-floath.c
    branches/tr29124/gcc/testsuite/gcc.dg/torture/float16-tg.c
    branches/tr29124/gcc/testsuite/gcc.dg/torture/float32-basic.c
    branches/tr29124/gcc/testsuite/gcc.dg/torture/float32-complex.c
    branches/tr29124/gcc/testsuite/gcc.dg/torture/float32-floath.c
    branches/tr29124/gcc/testsuite/gcc.dg/torture/float32-tg.c
    branches/tr29124/gcc/testsuite/gcc.dg/torture/float32x-basic.c
    branches/tr29124/gcc/testsuite/gcc.dg/torture/float32x-complex.c
    branches/tr29124/gcc/testsuite/gcc.dg/torture/float32x-floath.c
    branches/tr29124/gcc/testsuite/gcc.dg/torture/float32x-tg.c
    branches/tr29124/gcc/testsuite/gcc.dg/torture/float64-basic.c
    branches/tr29124/gcc/testsuite/gcc.dg/torture/float64-complex.c
    branches/tr29124/gcc/testsuite/gcc.dg/torture/float64-floath.c
    branches/tr29124/gcc/testsuite/gcc.dg/torture/float64-tg.c
    branches/tr29124/gcc/testsuite/gcc.dg/torture/float64x-basic.c
    branches/tr29124/gcc/testsuite/gcc.dg/torture/float64x-complex.c
    branches/tr29124/gcc/testsuite/gcc.dg/torture/float64x-floath.c
    branches/tr29124/gcc/testsuite/gcc.dg/torture/float64x-tg.c
    branches/tr29124/gcc/testsuite/gcc.dg/torture/floatn-basic.h
    branches/tr29124/gcc/testsuite/gcc.dg/torture/floatn-complex.h
    branches/tr29124/gcc/testsuite/gcc.dg/torture/floatn-convert.c
    branches/tr29124/gcc/testsuite/gcc.dg/torture/floatn-floath.h
    branches/tr29124/gcc/testsuite/gcc.dg/torture/floatn-tg.h
   
branches/tr29124/gcc/testsuite/gcc.dg/torture/fp-int-convert-float128-ieee-timode.c
   
branches/tr29124/gcc/testsuite/gcc.dg/torture/fp-int-convert-float128-ieee.c
   
branches/tr29124/gcc/testsuite/gcc.dg/torture/fp-int-convert-float128x-timode.c
    branches/tr29124/gcc/testsuite/gcc.dg/torture/fp-int-convert-float128x.c
   
branches/tr29124/gcc/testsuite/gcc.dg/torture/fp-int-convert-float16-timode.c
    branches/tr29124/gcc/testsuite/gcc.dg/torture/fp-int-convert-float16.c
   
branches/tr29124/gcc/testsuite/gcc.dg/torture/fp-int-convert-float32-timode.c
    branches/tr29124/gcc/testsuite/gcc.dg/torture/fp-int-convert-float32.c
   
branches/tr29124/gcc/testsuite/gcc.dg/torture/fp-int-convert-float32x-timode.c
    branches/tr29124/gcc/testsuite/gcc.dg/torture/fp-int-convert-float32x.c
   
branches/tr29124/gcc/testsuite/gcc.dg/torture/fp-int-convert-float64-timode.c
    branches/tr29124/gcc/testsuite/gcc.dg/torture/fp-int-convert-float64.c
   
branches/tr29124/gcc/testsuite/gcc.dg/torture/fp-int-convert-float64x-timode.c
    branches/tr29124/gcc/testsuite/gcc.dg/torture/fp-int-convert-float64x.c
Modified:
    branches/tr29124/gcc/ChangeLog
    branches/tr29124/gcc/c-family/ChangeLog
    branches/tr29124/gcc/c-family/c-common.c
    branches/tr29124/gcc/c-family/c-common.h
    branches/tr29124/gcc/c-family/c-cppbuiltin.c
    branches/tr29124/gcc/c-family/c-lex.c
    branches/tr29124/gcc/c-family/c-pretty-print.c
    branches/tr29124/gcc/c/ChangeLog
    branches/tr29124/gcc/c/c-decl.c
    branches/tr29124/gcc/c/c-parser.c
    branches/tr29124/gcc/c/c-tree.h
    branches/tr29124/gcc/c/c-typeck.c
    branches/tr29124/gcc/config/i386/i386.c
    branches/tr29124/gcc/config/ia64/ia64.c
    branches/tr29124/gcc/config/pdp11/pdp11.c
    branches/tr29124/gcc/config/rs6000/rs6000.c
    branches/tr29124/gcc/doc/extend.texi
    branches/tr29124/gcc/doc/sourcebuild.texi
    branches/tr29124/gcc/doc/tm.texi
    branches/tr29124/gcc/doc/tm.texi.in
    branches/tr29124/gcc/fortran/ChangeLog
    branches/tr29124/gcc/fortran/iso-c-binding.def
    branches/tr29124/gcc/fortran/trans-intrinsic.c
    branches/tr29124/gcc/fortran/trans-types.c
    branches/tr29124/gcc/fortran/trans-types.h
    branches/tr29124/gcc/ginclude/float.h
    branches/tr29124/gcc/real.c
    branches/tr29124/gcc/real.h
    branches/tr29124/gcc/target.def
    branches/tr29124/gcc/targhooks.c
    branches/tr29124/gcc/targhooks.h
    branches/tr29124/gcc/testsuite/ChangeLog
    branches/tr29124/gcc/testsuite/lib/target-supports.exp
    branches/tr29124/gcc/tree-core.h
    branches/tr29124/gcc/tree.c
    branches/tr29124/gcc/tree.h
    branches/tr29124/libcpp/ChangeLog
    branches/tr29124/libcpp/expr.c
    branches/tr29124/libcpp/include/cpplib.h
>From gcc-bugs-return-534867-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 15:33:50 2016
Return-Path: <gcc-bugs-return-534867-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 5281 invoked by alias); 16 Aug 2016 15:33:49 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 5256 invoked by uid 89); 16 Aug 2016 15:33:49 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:598
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 15:33:38 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/77268] Vector erase call destructor for last element twice and doesn't call destructor for eased element.
Date: Tue, 16 Aug 2016 15:33:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-77268-4-KdFNMaxDmH@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77268-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77268-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02203.txt.bz2
Content-length: 576

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77268

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |INVALID

--- Comment #1 from Jonathan Wakely <redi at gcc dot gnu.org> ---
Your test is completely broken, you need to define copy assignment operator to
prevent two objects referring to the same pointer (and deleting it twice).
>From gcc-bugs-return-534868-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 16:04:06 2016
Return-Path: <gcc-bugs-return-534868-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 105725 invoked by alias); 16 Aug 2016 16:04:05 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 105713 invoked by uid 89); 16 Aug 2016 16:04:04 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 16:03:54 +0000
From: "jsm28 at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/77269] New: __builtin_isinf_sign does not work for __float128
Date: Tue, 16 Aug 2016 16:04:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jsm28 at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter cc target_milestone
Message-ID: <bug-77269-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02204.txt.bz2
Content-length: 1381

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77269

            Bug ID: 77269
           Summary: __builtin_isinf_sign does not work for __float128
           Product: gcc
           Version: 6.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: tree-optimization
          Assignee: unassigned at gcc dot gnu.org
          Reporter: jsm28 at gcc dot gnu.org
                CC: murphyp at linux dot vnet.ibm.com
  Target Milestone: ---

The __builtin_isinf_sign folding does

        tree signbit_fn = mathfn_built_in_1
          (TREE_TYPE (arg), CFN_BUILT_IN_SIGNBIT, 0);

which only works for float, double and long double.  This means that despite
both __builtin_isinf and (since the fix for bug 36757) __builtin_signbit being
type-generic and so working for other floating-point types such as __float128
without needing any type-specific variants of the built-in functions to exist
for those types, __builtin_isinf_sign does not; instead, you get undefined
references to __builtin_isinf_sign at link time if you call it for __float128
arguments.

E.g., on x86_64,

int f (__float128 a) { return __builtin_isinf_sign (a); }

generates a call to __builtin_isinf_sign, when it should be expanded inline
even for -O0 (and glibc currently expects to be able to use
__builtin_isinf_sign in defining the isinf macro).
>From gcc-bugs-return-534869-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 16:24:36 2016
Return-Path: <gcc-bugs-return-534869-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 27835 invoked by alias); 16 Aug 2016 16:24:33 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 27813 invoked by uid 89); 16 Aug 2016 16:24:29 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 16:24:19 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72867] SSE/AVX/AVX512: incorrect optimization of VMINPS/VMAXPS at compile time
Date: Tue, 16 Aug 2016 16:24:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: ubizjak at gmail dot com
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72867-4-lAl3IzsMw3@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72867-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72867-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02205.txt.bz2
Content-length: 440

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72867

--- Comment #5 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Author: jakub
Date: Tue Aug 16 16:23:46 2016
New Revision: 239505

URL: https://gcc.gnu.org/viewcvs?rev=239505&root=gcc&view=rev
Log:
        PR target/72867
        * gcc.target/i386/pr72867.c: Add -msse to dg-options.

Modified:
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/testsuite/gcc.target/i386/pr72867.c
>From gcc-bugs-return-534870-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 16:40:42 2016
Return-Path: <gcc-bugs-return-534870-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 3905 invoked by alias); 16 Aug 2016 16:40:42 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 3892 invoked by uid 89); 16 Aug 2016 16:40:41 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:1306, 3DNow, 3dnow, 3DNow!
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 16:40:31 +0000
From: "nightstrike at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/77270] New: Flag -mprftchw is shared with 3dnow for -march=k8
Date: Tue, 16 Aug 2016 16:40:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: nightstrike at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_file_loc bug_status bug_severity priority component assigned_to reporter cc target_milestone
Message-ID: <bug-77270-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02206.txt.bz2
Content-length: 1513

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77270

            Bug ID: 77270
           Summary: Flag -mprftchw is shared with 3dnow for -march=k8
           Product: gcc
           Version: 6.1.0
               URL: https://gcc.gnu.org/ml/gcc/2016-05/msg00000.html
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: middle-end
          Assignee: unassigned at gcc dot gnu.org
          Reporter: nightstrike at gmail dot com
                CC: ubizjak at gmail dot com, venkataramanan.kumar at amd dot com
  Target Milestone: ---

See https://gcc.gnu.org/ml/gcc/2016-05/msg00000.html

Using -march=native on a k8 platform does not add -mprfchw to the options list,
while using -march=k8 on a different platform does add the switch.

From Venkataramanan:

>       3DNow! instruction extensions         = true
>       3DNow! instructions                   = true

It has 3Dnow support.  "prefetchw" is available with 3dnow.

>       misaligned SSE mode                    = false
>       3DNow! PREFETCH/PREFETCHW instructions = false

It does not have 3DNowprefetch enabling ISA flag -mprftchw is not correct for
-march=k8.

>       OS visible workaround                  = false
>       instruction based sampling             = false

I think  we need to file bug for this.  Need to check with Uros why the flag
-mprfchw is shared with 3dnow.

To work around this issue you can use -mno-prfchw when building with -march=k8.
>From gcc-bugs-return-534871-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 16:48:55 2016
Return-Path: <gcc-bugs-return-534871-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 23070 invoked by alias); 16 Aug 2016 16:48:54 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 23058 invoked by uid 89); 16 Aug 2016 16:48:54 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:629
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 16:48:49 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/67485] expmed.c sanitizer detects overflow
Date: Tue, 16 Aug 2016 16:48:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-67485-4-cglvO4kCHJ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67485-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67485-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02207.txt.bz2
Content-length: 625

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67485

--- Comment #5 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Author: jakub
Date: Tue Aug 16 16:48:16 2016
New Revision: 239507

URL: https://gcc.gnu.org/viewcvs?rev=239507&root=gcc&view=rev
Log:
        PR middle-end/67485
        * expmed.c (expand_mult_const): Change val_so_far's type to UHWI,
        only cast it to SHWI for the final comparison.

        * gcc.c-torture/compile/pr67485.c: New test.

Added:
    trunk/gcc/testsuite/gcc.c-torture/compile/pr67485.c
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/expmed.c
    trunk/gcc/testsuite/ChangeLog
>From gcc-bugs-return-534872-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 16:51:32 2016
Return-Path: <gcc-bugs-return-534872-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 40600 invoked by alias); 16 Aug 2016 16:51:32 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 40563 invoked by uid 89); 16 Aug 2016 16:51:31 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 16:51:21 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/71910] ICE on valid OpenMP code
Date: Tue, 16 Aug 2016 16:51:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords: ice-on-valid-code, openmp
X-Bugzilla-Severity: minor
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71910-4-XRh2N8IIJs@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71910-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71910-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02208.txt.bz2
Content-length: 627

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71910

--- Comment #6 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Author: jakub
Date: Tue Aug 16 16:50:47 2016
New Revision: 239508

URL: https://gcc.gnu.org/viewcvs?rev=239508&root=gcc&view=rev
Log:
        PR target/71910
        * tree-cfg.c (execute_fixup_cfg): Add node variable, use it.  Before
inlining,
        add cgraph edge for the added __builtin_unreachable call.

        * g++.dg/gomp/pr71910.C: New test.

Added:
    trunk/gcc/testsuite/g++.dg/gomp/pr71910.C
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/tree-cfg.c
>From gcc-bugs-return-534873-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 17:00:22 2016
Return-Path: <gcc-bugs-return-534873-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 57260 invoked by alias); 16 Aug 2016 17:00:04 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 57207 invoked by uid 89); 16 Aug 2016 17:00:03 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=UD:ht, tkoenig
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 16:59:53 +0000
From: "tkoenig at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/71902] [5/6/7 Regression] Unneeded temporary on reallocatable character assignment
Date: Tue, 16 Aug 2016 17:00:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: tkoenig at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: tkoenig at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_file_loc
Message-ID: <bug-71902-4-xHLvvDtjwS@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71902-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71902-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02209.txt.bz2
Content-length: 581

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71902

Thomas Koenig <tkoenig at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                URL|                            |https://gcc.gnu.org/ml/gcc-
                   |                            |patches/2016-08/msg01076.ht
                   |                            |ml

--- Comment #8 from Thomas Koenig <tkoenig at gcc dot gnu.org> ---
Patch at https://gcc.gnu.org/ml/gcc-patches/2016-08/msg01076.html .
>From gcc-bugs-return-534874-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 17:32:14 2016
Return-Path: <gcc-bugs-return-534874-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 9119 invoked by alias); 16 Aug 2016 17:32:14 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 9044 invoked by uid 89); 16 Aug 2016 17:32:13 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00,KAM_ASCII_DIVIDERS autolearn=no version=3.3.2 spammy=4.8.5, UD:ru
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 17:32:03 +0000
From: "frast at mail dot spbnit.ru" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77271] New: flag -std=c++98 cannot set _GLIBCXX_USE_CXX11_ABI properly
Date: Tue, 16 Aug 2016 17:32:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: frast at mail dot spbnit.ru
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77271-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02210.txt.bz2
Content-length: 3715

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77271

            Bug ID: 77271
           Summary: flag -std=c++98 cannot set _GLIBCXX_USE_CXX11_ABI
                    properly
           Product: gcc
           Version: 5.4.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: frast at mail dot spbnit.ru
  Target Milestone: ---

I have a library compiled by previous version of G++ with default -std=c++98

Building an executable with default flags for 4.8.5 produces unresolved
symbols:
..... undefined reference to
`libebml::EbmlString::operator=(std::__cxx11::basic_string<char,
std::char_traits<char>, std::allocator<char> > const&)'

The problem has been resolved by adding -std=c++98 flag.

The same problem has been detected with gcc version 5.4.0 20160609 (Ubuntu
5.4.0-6ubuntu1~16.04.2)

My investigation of the problem shows, that the problem in the file
/usr/include/x86_64-linux-gnu/c++/5.4.0/bits/c++config.h
lines 194-234
=================================== cut ===================================
namespace std
{
  typedef __SIZE_TYPE__         size_t;
  typedef __PTRDIFF_TYPE__      ptrdiff_t;

#if __cplusplus >= 201103L
  typedef decltype(nullptr)     nullptr_t;
#endif
}

# define _GLIBCXX_USE_DUAL_ABI 1

#if ! _GLIBCXX_USE_DUAL_ABI
// Ignore any pre-defined value of _GLIBCXX_USE_CXX11_ABI
# undef _GLIBCXX_USE_CXX11_ABI
#endif

#ifndef _GLIBCXX_USE_CXX11_ABI
# define _GLIBCXX_USE_CXX11_ABI 1
#endif

#if _GLIBCXX_USE_CXX11_ABI
namespace std
{
  inline namespace __cxx11 __attribute__((__abi_tag__ ("cxx11"))) { }
}
namespace __gnu_cxx
{
  inline namespace __cxx11 __attribute__((__abi_tag__ ("cxx11"))) { }
}
# define _GLIBCXX_NAMESPACE_CXX11 __cxx11::
# define _GLIBCXX_BEGIN_NAMESPACE_CXX11 namespace __cxx11 {
# define _GLIBCXX_END_NAMESPACE_CXX11 }
# define _GLIBCXX_DEFAULT_ABI_TAG _GLIBCXX_ABI_TAG_CXX11
#else
# define _GLIBCXX_NAMESPACE_CXX11
# define _GLIBCXX_BEGIN_NAMESPACE_CXX11
# define _GLIBCXX_END_NAMESPACE_CXX11
# define _GLIBCXX_DEFAULT_ABI_TAG
#endif
=================================== end cut ===================================

Independent of the key '-std=' this file sets to _GLIBCXX_USE_CXX11_ABI = 1

I have fixed this problem by using '-std=c++98 -D_GLIBCXX_USE_CXX11_ABI=0'

But probably it will be better apply a patch for all comunity

=================================== cut ===================================
***************
***************
*** 207,215 ****
  // Ignore any pre-defined value of _GLIBCXX_USE_CXX11_ABI
  # undef _GLIBCXX_USE_CXX11_ABI
  #endif

! #ifndef _GLIBCXX_USE_CXX11_ABI
  # define _GLIBCXX_USE_CXX11_ABI 1
  #endif

  #if _GLIBCXX_USE_CXX11_ABI
--- 207,217 ----
  // Ignore any pre-defined value of _GLIBCXX_USE_CXX11_ABI
  # undef _GLIBCXX_USE_CXX11_ABI
  #endif

! #if __cplusplus < 201103L
! # define _GLIBCXX_USE_CXX11_ABI 0
! #elif ! defined(_GLIBCXX_USE_CXX11_ABI)
  # define _GLIBCXX_USE_CXX11_ABI 1
  #endif
=================================== end cut ===================================

Thanks.
>From gcc-bugs-return-534875-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 17:42:32 2016
Return-Path: <gcc-bugs-return-534875-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 29770 invoked by alias); 16 Aug 2016 17:42:32 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 29756 invoked by uid 89); 16 Aug 2016 17:42:31 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=fverboseasm, fverbose-asm, ac
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 17:42:21 +0000
From: "nightstrike at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/77270] Flag -mprftchw is shared with 3dnow for -march=k8
Date: Tue, 16 Aug 2016 17:42:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: nightstrike at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords
Message-ID: <bug-77270-4-wF4jKN6Xaj@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77270-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77270-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02211.txt.bz2
Content-length: 1007

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77270

nightstrike <nightstrike at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |wrong-code

--- Comment #1 from nightstrike <nightstrike at gmail dot com> ---
This should trigger the prefetchw instruction with -march=k8 -O3:

void f() {
    extern int size;
    int i;

    float * fvec;
    float * fptr = (float *) get();
    for(i = 0; i < size; ++i)
        fvec[i] = fptr[i];

    int * ivec;
    int * iptr = (int *) get();
    for(i = 0; i < size; ++i)
        ivec[i] = iptr[i];
}


If I give an "extern void * get()" prototype for get, if there's only one
vector loop, or if size is local, the prefetchw instruction goes away.

$ gcc -fverbose-asm -S a.c -march=k8 -O3; grep prefetchw a.s
        prefetchw       464(%rcx)       #
        prefetchw       (%rdx)  # ivtmp.37
>From gcc-bugs-return-534876-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 17:53:29 2016
Return-Path: <gcc-bugs-return-534876-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 59259 invoked by alias); 16 Aug 2016 17:53:28 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 59245 invoked by uid 89); 16 Aug 2016 17:53:27 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyw271
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 17:53:17 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77271] flag -std=c++98 cannot set _GLIBCXX_USE_CXX11_ABI properly
Date: Tue, 16 Aug 2016 17:53:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: WONTFIX
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-77271-4-DBYbjpZNht@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77271-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77271-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02212.txt.bz2
Content-length: 589

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77271

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |WONTFIX

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
This is expected and was a known breakage in the abi. It was designed so that
libstdc++ abi would backwards compatible but not libraries which used the newer
gcc.
>From gcc-bugs-return-534877-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 18:17:15 2016
Return-Path: <gcc-bugs-return-534877-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 74109 invoked by alias); 16 Aug 2016 18:17:15 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 74099 invoked by uid 89); 16 Aug 2016 18:17:15 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 18:17:05 +0000
From: "zeccav at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libgcc/77273] New: 1 << 31 is undefined in gcc/config/i386/cpuid.h:93
Date: Tue, 16 Aug 2016 18:17:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libgcc
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: minor
X-Bugzilla-Who: zeccav at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77273-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02213.txt.bz2
Content-length: 898

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77273

            Bug ID: 77273
           Summary: 1 << 31 is undefined in gcc/config/i386/cpuid.h:93
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: minor
          Priority: P3
         Component: libgcc
          Assignee: unassigned at gcc dot gnu.org
          Reporter: zeccav at gmail dot com
  Target Milestone: ---

While compiling gcc itself, the sanitizer complains as follows:

gcc-trunk-239276/libgcc/config/i386/cpuinfo.c:346:17: runtime error: left shift
of 1 by 31 places cannot be represented in type 'int'

cpuinfo.c:346 is "if (ebx & bit_AVX512VL)"

bit_AVX512VL is defined in cpuid.h:249 as

#define bit_AVX512VL    (1 << 31)

I believe 1 << 31 is undefined, because "1" is int,
it should be 1u << 31 or 1U << 31

cpuid.h:66 is "#define bit_3DNOW       (1 << 31)" by the way
>From gcc-bugs-return-534878-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 18:20:19 2016
Return-Path: <gcc-bugs-return-534878-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 82154 invoked by alias); 16 Aug 2016 18:20:19 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 82143 invoked by uid 89); 16 Aug 2016 18:20:18 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 18:20:07 +0000
From: "dmalcolm at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/72857] incorrect caret location in -Wformat for width and precision given by asterisk
Date: Tue, 16 Aug 2016 18:20:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: minor
X-Bugzilla-Who: dmalcolm at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: dmalcolm at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72857-4-BQ3OOBnV7T@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72857-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72857-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02214.txt.bz2
Content-length: 4896

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72857

--- Comment #2 from David Malcolm <dmalcolm at gcc dot gnu.org> ---
Author: dmalcolm
Date: Tue Aug 16 18:19:34 2016
New Revision: 239510

URL: https://gcc.gnu.org/viewcvs?rev=239510&root=gcc&view=rev
Log:
Fix caret locations in format_type_warning (PR c/72857)

gcc/c-family/ChangeLog:
        PR c/72857
        * c-common.c (substring_loc::get_range): Rename to...
        (substring_loc::get_location): ...this, converting param from a
        source_range * to a location_t *.  Call
        get_source_location_for_substring rather than
        get_source_range_for_substring, and pass in m_caret_idx.
        * c-common.h (substring_loc::substring_loc): Add param "caret_idx".
        (substring_loc::get_range): Replace with...
        (substring_loc::get_location): ...this.
        (substring_loc::set_caret_index): New method.
        (substring_loc): Add field m_caret_idx.
        * c-format.c (format_warning_va): Update for above changes.
        Rename local "substring_loc" to "fmt_substring_loc" to avoid
        clashing with type name.
        (format_warning_at_char): Add caret_idx param to substring_loc ctor.
        (check_argument_type): Likewise.
        (format_type_warning): Rename param "fmt_loc" to "whole_fmt_loc"
        Use a copy when emitting warnings, setting the caret index from TYPE.

gcc/ChangeLog:
        PR c/72857
        * input.c (get_source_range_for_substring): Rename to...
        (get_source_location_for_substring): ...this, adding param
        "caret_idx", and converting output param from source_range * to
        location_t *.
        (get_source_range_for_char): New function.
        (get_num_source_ranges_for_substring): Update comment to reflect
        above renaming.
        (assert_char_at_range): Update to use get_source_range_for_char
        rather than get_source_range_for_substring.
        (test_lexer_string_locations_concatenation_2): Likewise.
        * substring-locations.h (get_source_range_for_substring): Rename
        to...
        (get_source_location_for_substring): ...this, and adding param
        "caret_idx", and converting output param from source_range * to
        location_t *.

gcc/testsuite/ChangeLog:
        PR c/72857
        * gcc.dg/format/asm_fprintf-1.c: Restore column numbers
        for embedded NUL.
        * gcc.dg/format/c90-printf-1.c: Restore column numbers.
        * gcc.dg/format/diagnostic-ranges.c (test_hex): Update expected
        caret placement.
        (test_oct): Likewise.
        (test_multiple): Likewise.
        (test_field_width_specifier): Likewise.
        (test_field_width_specifier_2): New function.
        (test_field_precision_specifier): New function.
        (test_embedded_nul): Update expected caret placement.
        (test_non_contiguous_strings): Update line number.
        * gcc.dg/plugin/diagnostic-test-string-literals-1.c
        (__emit_string_literal_range): Add "caret_idx" param.
        (test_simple_string_literal): Add value for new param, updating
        expected output..
        (test_concatenated_string_literal): Likewise.
        (test_multiline_string_literal): Likewise.
        (test_hex): Likewise.
        (test_oct): Likewise.
        (test_multiple): Likewise.
        (test_ucn4): Likewise.
        (test_ucn8): Likewise.
        (test_u8): Likewise.
        (test_u): Likewise; update expected message, from "range" to
        "location".
        (test_U): Likewise.
        (test_L): Likewise.
        (test_macro): Add value for new param.
        * gcc.dg/plugin/diagnostic-test-string-literals-2.c
        (__emit_string_literal_range): Add "caret_idx" param.
        (test_stringified_token_1): Add value for new param.  Update
        expected message, from "range" to "location".
        (test_stringized_token_2): Likewise, adding param to macro.
        (test_stringified_token_3): Likewise.
        * gcc.dg/plugin/diagnostic_plugin_test_string_literals.c
        (emit_warning): Convert param from source_range to location_t.
        (test_string_literals): Add caret_idx param, and use it when
        constructing a substring_loc.  Update error message, from
        "range" to "location".


Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/c-family/ChangeLog
    trunk/gcc/c-family/c-common.c
    trunk/gcc/c-family/c-common.h
    trunk/gcc/c-family/c-format.c
    trunk/gcc/input.c
    trunk/gcc/substring-locations.h
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/testsuite/gcc.dg/format/asm_fprintf-1.c
    trunk/gcc/testsuite/gcc.dg/format/c90-printf-1.c
    trunk/gcc/testsuite/gcc.dg/format/diagnostic-ranges.c
    trunk/gcc/testsuite/gcc.dg/plugin/diagnostic-test-string-literals-1.c
    trunk/gcc/testsuite/gcc.dg/plugin/diagnostic-test-string-literals-2.c
    trunk/gcc/testsuite/gcc.dg/plugin/diagnostic_plugin_test_string_literals.c
>From gcc-bugs-return-534879-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 18:22:34 2016
Return-Path: <gcc-bugs-return-534879-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 84801 invoked by alias); 16 Aug 2016 18:22:34 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 84792 invoked by uid 89); 16 Aug 2016 18:22:33 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 18:22:23 +0000
From: "dmalcolm at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/72857] incorrect caret location in -Wformat for width and precision given by asterisk
Date: Tue, 16 Aug 2016 18:22:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: minor
X-Bugzilla-Who: dmalcolm at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: dmalcolm at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-72857-4-2rMgBeauMa@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72857-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72857-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02215.txt.bz2
Content-length: 453

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72857

David Malcolm <dmalcolm at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #3 from David Malcolm <dmalcolm at gcc dot gnu.org> ---
Should be fixed as of r239510.
>From gcc-bugs-return-534880-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 18:55:26 2016
Return-Path: <gcc-bugs-return-534880-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 112373 invoked by alias); 16 Aug 2016 18:55:26 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 112358 invoked by uid 89); 16 Aug 2016 18:55:25 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=cpuid, sk:option_, sk:OPTION_
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 18:55:15 +0000
From: "ubizjak at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/77270] Flag -mprftchw is shared with 3dnow for -march=k8
Date: Tue, 16 Aug 2016 18:55:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ubizjak at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77270-4-XTSUXcbLbZ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77270-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77270-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02216.txt.bz2
Content-length: 672

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77270

--- Comment #2 from Uroš Bizjak <ubizjak at gmail dot com> ---
The problem is in the fact that for -march=native, the driver will pass
-mno-prfchw, since the relevant bit is not present in cpuid flags.

Following code in i386.c:

  /* Enable prefetch{,w} instructions for -m3dnow and -mprefetchwt1.  */
  if (TARGET_3DNOW_P (opts->x_ix86_isa_flags)
      || TARGET_PREFETCHWT1_P (opts->x_ix86_isa_flags))
    opts->x_ix86_isa_flags
      |= OPTION_MASK_ISA_PRFCHW & ~opts->x_ix86_isa_flags_explicit;

will then try to set the option, but it won't succeed, due to the above
handling of explicit compile flags.
>From gcc-bugs-return-534881-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 20:04:49 2016
Return-Path: <gcc-bugs-return-534881-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 12513 invoked by alias); 16 Aug 2016 20:04:49 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 12471 invoked by uid 89); 16 Aug 2016 20:04:46 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 20:04:36 +0000
From: "ppalka at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/71336] Suboptimal x86 code generated for "(a & 1) ? (CST1 + CST2) : CST1"
Date: Tue, 16 Aug 2016 20:04:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ppalka at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71336-4-0flngS6w4n@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71336-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71336-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02217.txt.bz2
Content-length: 535

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71336

--- Comment #4 from Patrick Palka <ppalka at gcc dot gnu.org> ---
On a related note I noticed the final code for

int test(int a) {
    return (a & CST) * 4 + 3;
}

is not optimal when CST is a power of two, e.g. when CST=8:

_Z4testi:
.LFB0:
        .cfi_startproc
        andl    $8, %edi
        leal    0(,%rdi,4), %eax
        addl    $3, %eax
        ret

The leal and the addl could be combined into a single leal.  When CST is not a
power of two then there is no addl.
>From gcc-bugs-return-534882-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 20:20:22 2016
Return-Path: <gcc-bugs-return-534882-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 74156 invoked by alias); 16 Aug 2016 20:20:22 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 74145 invoked by uid 89); 16 Aug 2016 20:20:21 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 20:20:11 +0000
From: "romain.geissler at amadeus dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72104] Inner templated class with stream operator fails to compile
Date: Tue, 16 Aug 2016 20:20:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: romain.geissler at amadeus dot com
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-72104-4-jrRviaqktq@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72104-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72104-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02218.txt.bz2
Content-length: 468

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72104

Romain Geissler <romain.geissler at amadeus dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |INVALID

--- Comment #4 from Romain Geissler <romain.geissler at amadeus dot com> ---
Ok, thanks for the reply.
>From gcc-bugs-return-534883-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 20:26:20 2016
Return-Path: <gcc-bugs-return-534883-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 89492 invoked by alias); 16 Aug 2016 20:26:19 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 89475 invoked by uid 89); 16 Aug 2016 20:26:18 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=kargl
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 20:26:08 +0000
From: "kargl at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/77260] bogus warning with ENTRY in a function
Date: Tue, 16 Aug 2016 20:26:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: minor
X-Bugzilla-Who: kargl at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: priority bug_status cf_reconfirmed_on everconfirmed bug_severity
Message-ID: <bug-77260-4-y9O6o9PIhc@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77260-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77260-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02219.txt.bz2
Content-length: 559

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77260

kargl at gcc dot gnu.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P3                          |P4
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-16
     Ever confirmed|0                           |1
           Severity|normal                      |minor

--- Comment #1 from kargl at gcc dot gnu.org ---
Patch submitted.
>From gcc-bugs-return-534884-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 20:45:14 2016
Return-Path: <gcc-bugs-return-534884-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 124413 invoked by alias); 16 Aug 2016 20:45:14 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 124399 invoked by uid 89); 16 Aug 2016 20:45:13 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=UD:php
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 20:45:03 +0000
From: "deller at gmx dot de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/68733] [6/7 Regression] FAIL: libgomp.c/target-29.c (internal compiler error)
Date: Tue, 16 Aug 2016 20:45:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: deller at gmx dot de
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-68733-4-pQVVSNkw1n@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68733-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68733-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02220.txt.bz2
Content-length: 487

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68733

deller at gmx dot de changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |deller at gmx dot de

--- Comment #5 from deller at gmx dot de ---
Seems the problem still exists with gcc-6.1:
https://buildd.debian.org/status/fetch.php?pkg=cdo&arch=hppa&ver=1.7.2%2Bdfsg.1-1&stamp=1471364161
>From gcc-bugs-return-534885-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 20:49:58 2016
Return-Path: <gcc-bugs-return-534885-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 25281 invoked by alias); 16 Aug 2016 20:49:58 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 25269 invoked by uid 89); 16 Aug 2016 20:49:56 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 20:49:46 +0000
From: "yanp.bugz at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77274] New: GCC uses copy constructor in member initializer list instead of simple initialization
Date: Tue, 16 Aug 2016 20:49:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: yanp.bugz at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77274-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02221.txt.bz2
Content-length: 1394

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77274

            Bug ID: 77274
           Summary: GCC uses copy constructor in member initializer list
                    instead of simple initialization
           Product: gcc
           Version: 5.4.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: yanp.bugz at gmail dot com
  Target Milestone: ---

Code example:

struct C{
        static int count;
        C(int, int) {count++;}
};

#define BUG

struct C1{
        static int count;
        explicit C1() {count++;}
        C1(const C1& ) 
        #ifdef BUG
        = delete;
        #else
        {
                cout<<"copy ctor\n";
                count++;
        }
        C1(C1&& ) {
                cout<<"move ctor\n";
                count++;
        }
        #endif
};

struct D{
        D() : c(C(2,3)), cc(3,4) c1(C1()) {}
        C c, cc;
        C1 c1;
};

Compiler gives you error:
new.cxx: In constructor ‘D::D()’:
new.cxx:79:35: error: use of deleted function ‘C1::C1(const C1&)’
  D() : c(C(2,3)), cc(3,4), c1(C1()) {}
                                   ^
new.cxx:63:2: note: declared here
  C1(const C1& ) 
  ^

However if you undef BUG you will notice that none of copy/move ctors were
called
>From gcc-bugs-return-534886-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 21:24:36 2016
Return-Path: <gcc-bugs-return-534886-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 102056 invoked by alias); 16 Aug 2016 21:24:36 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 102044 invoked by uid 89); 16 Aug 2016 21:24:35 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=surrounds, sk:link-op, linkoptionshtml, UD:Link-Options.html
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 21:24:25 +0000
From: "payerle at umd dot edu" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug web/77275] New: Description of -l option refers only to static libraries, not dynamic/shared libraries
Date: Tue, 16 Aug 2016 21:24:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: web
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: trivial
X-Bugzilla-Who: payerle at umd dot edu
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77275-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02222.txt.bz2
Content-length: 2328

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77275

            Bug ID: 77275
           Summary: Description of -l option refers only to static
                    libraries, not dynamic/shared libraries
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: trivial
          Priority: P3
         Component: web
          Assignee: unassigned at gcc dot gnu.org
          Reporter: payerle at umd dot edu
  Target Milestone: ---

Referring to
https://gcc.gnu.org/onlinedocs/gcc/Link-Options.html#Link-Options
and all the other places that occurs.  Issue seems to go back to at least to
gcc 4.4.7

In particular, in the description of the -l option, there is text

<quote>
The linker searches a standard list of directories for the library, which is
actually a file named liblibrary.a
</quote> 

and

<quote>
The only difference between using an -l option and specifying a file name is
that -l surrounds library with ‘lib’ and ‘.a’ and searches several directories.
</quote>

These should be corrected to include shared libraries, which may also be
specified by the -l option.  It would probably be good to add something along
the lines of how the compiler selects if multiple files matching --- my
experience is .so files are preferred to .a, but not sure if all library
directories are searched for .so, then all searched for .a, or if each library
directory in order is searched for .so then .a.  Assuming the latter, something
like
<quote>
The linker searches a standard list of directories, in order, for the first
matching shared library (actually a file named liblibrary.so) or standard
library (actually a file named liblibrary.a) that is found.  If a matching
shared library and static library are found in the same directory, the shared
library is preferred.
</quote>

The second line could be changed to something like
<quote>
The only difference between using an -l option and specifying a file name is
that -l surrounds library with ‘lib’ and either '.so' and ‘.a’  and searches
several directories
</quote>

The text re handling archive files probably also needs to be updating to
mentioned shared object files, but my lack of expertise makes me reluctant to
even attempt to fix that.
>From gcc-bugs-return-534887-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 21:25:49 2016
Return-Path: <gcc-bugs-return-534887-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 103658 invoked by alias); 16 Aug 2016 21:25:49 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 103647 invoked by uid 89); 16 Aug 2016 21:25:48 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 21:25:37 +0000
From: "seurer at linux dot vnet.ibm.com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/72817] [7 Regression] wrong code at -O3 on x86_64-linux-gnu (in both 32-bit and 64-bit modes)
Date: Tue, 16 Aug 2016 21:25:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: seurer at linux dot vnet.ibm.com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: amker at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-72817-4-uuBsQME0P5@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72817-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72817-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02223.txt.bz2
Content-length: 1378

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72817

Bill Seurer <seurer at linux dot vnet.ibm.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |seurer at linux dot vnet.ibm.com

--- Comment #5 from Bill Seurer <seurer at linux dot vnet.ibm.com> ---
The new test case pr72817.c hangs on powerpc both BE and LE

Executing on host: /home/seurer/gcc/build/gcc-trunk/gcc/xgcc
-B/home/seurer/gcc/build/gcc-trunk/gcc/
/home/seurer/gcc/gcc-trunk/gcc/testsuite/gcc.dg/tree-ssa/pr72817.c 
-fno-diagnostics-show-caret -fdiagnostics-color=never   -O3  -lm    -o
./pr72817.exe    (timeout = 300)
spawn /home/seurer/gcc/build/gcc-trunk/gcc/xgcc
-B/home/seurer/gcc/build/gcc-trunk/gcc/
/home/seurer/gcc/gcc-trunk/gcc/testsuite/gcc.dg/tree-ssa/pr72817.c
-fno-diagnostics-show-caret -fdiagnostics-color=never -O3 -lm -o ./pr72817.exe
PASS: gcc.dg/tree-ssa/pr72817.c (test for excess errors)
Setting LD_LIBRARY_PATH to
:/home/seurer/gcc/build/gcc-trunk/gcc::/home/seurer/gcc/build/gcc-trunk/gcc:/home/wschmidt/gcc/install/gcc-5_1/lib64
spawn [open ...]
WARNING: program timed out.
FAIL: gcc.dg/tree-ssa/pr72817.c execution test
testcase /home/seurer/gcc/gcc-trunk/gcc/testsuite/gcc.dg/tree-ssa/tree-ssa.exp
completed in 301 seconds
>From gcc-bugs-return-534888-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 21:31:51 2016
Return-Path: <gcc-bugs-return-534888-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 41733 invoked by alias); 16 Aug 2016 21:31:51 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 41715 invoked by uid 89); 16 Aug 2016 21:31:50 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 21:31:40 +0000
From: "jsm28 at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libgcc/77265] Casting an extended precision long double "inf" to __float128 results in "nan"
Date: Tue, 16 Aug 2016 21:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libgcc
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jsm28 at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77265-4-lS13WH3IvQ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77265-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77265-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02224.txt.bz2
Content-length: 6923

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77265

--- Comment #4 from Joseph S. Myers <jsm28 at gcc dot gnu.org> ---
Author: jsm28
Date: Tue Aug 16 21:30:56 2016
New Revision: 239513

URL: https://gcc.gnu.org/viewcvs?rev=239513&root=gcc&view=rev
Log:
Update soft-fp from glibc (PR libgcc/77265).

This patch updates soft-fp from glibc, bringing in the fix for PR
libgcc/77265, XFmode extension to TFmode wrongly turning an infinity
into a NaN.  A test for that bug is added.

Bootstrapped with no regressions on x86_64-pc-linux-gnu.

        PR libgcc/77265
gcc/testsuite:
        * gcc.dg/torture/float128-extend-inf.c: New test.

libgcc:
        * soft-fp/adddf3.c: Update from glibc.
        * soft-fp/addsf3.c: Likewise.
        * soft-fp/addtf3.c: Likewise.
        * soft-fp/divdf3.c: Likewise.
        * soft-fp/divsf3.c: Likewise.
        * soft-fp/divtf3.c: Likewise.
        * soft-fp/double.h: Likewise.
        * soft-fp/eqdf2.c: Likewise.
        * soft-fp/eqsf2.c: Likewise.
        * soft-fp/eqtf2.c: Likewise.
        * soft-fp/extenddftf2.c: Likewise.
        * soft-fp/extended.h: Likewise.
        * soft-fp/extendsfdf2.c: Likewise.
        * soft-fp/extendsftf2.c: Likewise.
        * soft-fp/extendxftf2.c: Likewise.
        * soft-fp/fixdfdi.c: Likewise.
        * soft-fp/fixdfsi.c: Likewise.
        * soft-fp/fixdfti.c: Likewise.
        * soft-fp/fixsfdi.c: Likewise.
        * soft-fp/fixsfsi.c: Likewise.
        * soft-fp/fixsfti.c: Likewise.
        * soft-fp/fixtfdi.c: Likewise.
        * soft-fp/fixtfsi.c: Likewise.
        * soft-fp/fixtfti.c: Likewise.
        * soft-fp/fixunsdfdi.c: Likewise.
        * soft-fp/fixunsdfsi.c: Likewise.
        * soft-fp/fixunsdfti.c: Likewise.
        * soft-fp/fixunssfdi.c: Likewise.
        * soft-fp/fixunssfsi.c: Likewise.
        * soft-fp/fixunssfti.c: Likewise.
        * soft-fp/fixunstfdi.c: Likewise.
        * soft-fp/fixunstfsi.c: Likewise.
        * soft-fp/fixunstfti.c: Likewise.
        * soft-fp/floatdidf.c: Likewise.
        * soft-fp/floatdisf.c: Likewise.
        * soft-fp/floatditf.c: Likewise.
        * soft-fp/floatsidf.c: Likewise.
        * soft-fp/floatsisf.c: Likewise.
        * soft-fp/floatsitf.c: Likewise.
        * soft-fp/floattidf.c: Likewise.
        * soft-fp/floattisf.c: Likewise.
        * soft-fp/floattitf.c: Likewise.
        * soft-fp/floatundidf.c: Likewise.
        * soft-fp/floatundisf.c: Likewise.
        * soft-fp/floatunditf.c: Likewise.
        * soft-fp/floatunsidf.c: Likewise.
        * soft-fp/floatunsisf.c: Likewise.
        * soft-fp/floatunsitf.c: Likewise.
        * soft-fp/floatuntidf.c: Likewise.
        * soft-fp/floatuntisf.c: Likewise.
        * soft-fp/floatuntitf.c: Likewise.
        * soft-fp/gedf2.c: Likewise.
        * soft-fp/gesf2.c: Likewise.
        * soft-fp/getf2.c: Likewise.
        * soft-fp/ledf2.c: Likewise.
        * soft-fp/lesf2.c: Likewise.
        * soft-fp/letf2.c: Likewise.
        * soft-fp/muldf3.c: Likewise.
        * soft-fp/mulsf3.c: Likewise.
        * soft-fp/multf3.c: Likewise.
        * soft-fp/negdf2.c: Likewise.
        * soft-fp/negsf2.c: Likewise.
        * soft-fp/negtf2.c: Likewise.
        * soft-fp/op-1.h: Likewise.
        * soft-fp/op-2.h: Likewise.
        * soft-fp/op-4.h: Likewise.
        * soft-fp/op-8.h: Likewise.
        * soft-fp/op-common.h: Likewise.
        * soft-fp/quad.h: Likewise.
        * soft-fp/single.h: Likewise.
        * soft-fp/soft-fp.h: Likewise.
        * soft-fp/subdf3.c: Likewise.
        * soft-fp/subsf3.c: Likewise.
        * soft-fp/subtf3.c: Likewise.
        * soft-fp/truncdfsf2.c: Likewise.
        * soft-fp/trunctfdf2.c: Likewise.
        * soft-fp/trunctfsf2.c: Likewise.
        * soft-fp/trunctfxf2.c: Likewise.
        * soft-fp/unorddf2.c: Likewise.
        * soft-fp/unordsf2.c: Likewise.
        * soft-fp/unordtf2.c: Likewise.

Added:
    trunk/gcc/testsuite/gcc.dg/torture/float128-extend-inf.c
Modified:
    trunk/gcc/testsuite/ChangeLog
    trunk/libgcc/ChangeLog
    trunk/libgcc/soft-fp/adddf3.c
    trunk/libgcc/soft-fp/addsf3.c
    trunk/libgcc/soft-fp/addtf3.c
    trunk/libgcc/soft-fp/divdf3.c
    trunk/libgcc/soft-fp/divsf3.c
    trunk/libgcc/soft-fp/divtf3.c
    trunk/libgcc/soft-fp/double.h
    trunk/libgcc/soft-fp/eqdf2.c
    trunk/libgcc/soft-fp/eqsf2.c
    trunk/libgcc/soft-fp/eqtf2.c
    trunk/libgcc/soft-fp/extenddftf2.c
    trunk/libgcc/soft-fp/extended.h
    trunk/libgcc/soft-fp/extendsfdf2.c
    trunk/libgcc/soft-fp/extendsftf2.c
    trunk/libgcc/soft-fp/extendxftf2.c
    trunk/libgcc/soft-fp/fixdfdi.c
    trunk/libgcc/soft-fp/fixdfsi.c
    trunk/libgcc/soft-fp/fixdfti.c
    trunk/libgcc/soft-fp/fixsfdi.c
    trunk/libgcc/soft-fp/fixsfsi.c
    trunk/libgcc/soft-fp/fixsfti.c
    trunk/libgcc/soft-fp/fixtfdi.c
    trunk/libgcc/soft-fp/fixtfsi.c
    trunk/libgcc/soft-fp/fixtfti.c
    trunk/libgcc/soft-fp/fixunsdfdi.c
    trunk/libgcc/soft-fp/fixunsdfsi.c
    trunk/libgcc/soft-fp/fixunsdfti.c
    trunk/libgcc/soft-fp/fixunssfdi.c
    trunk/libgcc/soft-fp/fixunssfsi.c
    trunk/libgcc/soft-fp/fixunssfti.c
    trunk/libgcc/soft-fp/fixunstfdi.c
    trunk/libgcc/soft-fp/fixunstfsi.c
    trunk/libgcc/soft-fp/fixunstfti.c
    trunk/libgcc/soft-fp/floatdidf.c
    trunk/libgcc/soft-fp/floatdisf.c
    trunk/libgcc/soft-fp/floatditf.c
    trunk/libgcc/soft-fp/floatsidf.c
    trunk/libgcc/soft-fp/floatsisf.c
    trunk/libgcc/soft-fp/floatsitf.c
    trunk/libgcc/soft-fp/floattidf.c
    trunk/libgcc/soft-fp/floattisf.c
    trunk/libgcc/soft-fp/floattitf.c
    trunk/libgcc/soft-fp/floatundidf.c
    trunk/libgcc/soft-fp/floatundisf.c
    trunk/libgcc/soft-fp/floatunditf.c
    trunk/libgcc/soft-fp/floatunsidf.c
    trunk/libgcc/soft-fp/floatunsisf.c
    trunk/libgcc/soft-fp/floatunsitf.c
    trunk/libgcc/soft-fp/floatuntidf.c
    trunk/libgcc/soft-fp/floatuntisf.c
    trunk/libgcc/soft-fp/floatuntitf.c
    trunk/libgcc/soft-fp/gedf2.c
    trunk/libgcc/soft-fp/gesf2.c
    trunk/libgcc/soft-fp/getf2.c
    trunk/libgcc/soft-fp/ledf2.c
    trunk/libgcc/soft-fp/lesf2.c
    trunk/libgcc/soft-fp/letf2.c
    trunk/libgcc/soft-fp/muldf3.c
    trunk/libgcc/soft-fp/mulsf3.c
    trunk/libgcc/soft-fp/multf3.c
    trunk/libgcc/soft-fp/negdf2.c
    trunk/libgcc/soft-fp/negsf2.c
    trunk/libgcc/soft-fp/negtf2.c
    trunk/libgcc/soft-fp/op-1.h
    trunk/libgcc/soft-fp/op-2.h
    trunk/libgcc/soft-fp/op-4.h
    trunk/libgcc/soft-fp/op-8.h
    trunk/libgcc/soft-fp/op-common.h
    trunk/libgcc/soft-fp/quad.h
    trunk/libgcc/soft-fp/single.h
    trunk/libgcc/soft-fp/soft-fp.h
    trunk/libgcc/soft-fp/subdf3.c
    trunk/libgcc/soft-fp/subsf3.c
    trunk/libgcc/soft-fp/subtf3.c
    trunk/libgcc/soft-fp/truncdfsf2.c
    trunk/libgcc/soft-fp/trunctfdf2.c
    trunk/libgcc/soft-fp/trunctfsf2.c
    trunk/libgcc/soft-fp/trunctfxf2.c
    trunk/libgcc/soft-fp/unorddf2.c
    trunk/libgcc/soft-fp/unordsf2.c
    trunk/libgcc/soft-fp/unordtf2.c
>From gcc-bugs-return-534889-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 21:34:18 2016
Return-Path: <gcc-bugs-return-534889-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 55138 invoked by alias); 16 Aug 2016 21:34:18 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 55120 invoked by uid 89); 16 Aug 2016 21:34:17 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 21:34:07 +0000
From: "jsm28 at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libgcc/77265] Casting an extended precision long double "inf" to __float128 results in "nan"
Date: Tue, 16 Aug 2016 21:34:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libgcc
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jsm28 at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution target_milestone
Message-ID: <bug-77265-4-n0DpkrwTcT@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77265-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77265-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02225.txt.bz2
Content-length: 490

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77265

Joseph S. Myers <jsm28 at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED
   Target Milestone|---                         |7.0

--- Comment #5 from Joseph S. Myers <jsm28 at gcc dot gnu.org> ---
Fixed for GCC 7.
>From gcc-bugs-return-534890-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 22:07:40 2016
Return-Path: <gcc-bugs-return-534890-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 39734 invoked by alias); 16 Aug 2016 22:07:39 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 38888 invoked by uid 89); 16 Aug 2016 22:07:39 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 22:07:29 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/72817] [7 Regression] wrong code at -O3 on x86_64-linux-gnu (in both 32-bit and 64-bit modes)
Date: Tue, 16 Aug 2016 22:07:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: amker at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72817-4-iZOQNfa9fV@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72817-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72817-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02226.txt.bz2
Content-length: 470

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72817

--- Comment #6 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Author: jakub
Date: Tue Aug 16 22:06:45 2016
New Revision: 239514

URL: https://gcc.gnu.org/viewcvs?rev=239514&root=gcc&view=rev
Log:
        PR tree-optimization/72817
        * gcc.dg/tree-ssa/pr72817.c (a): Change type from char to signed char.

Modified:
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/testsuite/gcc.dg/tree-ssa/pr72817.c
>From gcc-bugs-return-534891-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 22:44:11 2016
Return-Path: <gcc-bugs-return-534891-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 126155 invoked by alias); 16 Aug 2016 22:44:11 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 126138 invoked by uid 89); 16 Aug 2016 22:44:10 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=varies
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 22:44:00 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug web/77275] Description of -l option refers only to static libraries, not dynamic/shared libraries
Date: Tue, 16 Aug 2016 22:44:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: web
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: documentation
X-Bugzilla-Severity: trivial
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-77275-4-Y6zhMayaVu@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77275-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77275-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02227.txt.bz2
Content-length: 2003

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77275

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-16
     Ever confirmed|0                           |1

--- Comment #1 from Jonathan Wakely <redi at gcc dot gnu.org> ---
(In reply to Tom Payerle from comment #0)
> These should be corrected to include shared libraries, which may also be
> specified by the -l option.  It would probably be good to add something
> along the lines of how the compiler selects if multiple files matching ---

The compiler doesn't select anything, the linker does. GCC just passes the
option directly to the linker.

> my experience is .so files are preferred to .a, but not sure if all library
> directories are searched for .so, then all searched for .a, or if each
> library directory in order is searched for .so then .a.  Assuming the
> latter, something like
> <quote>
> The linker searches a standard list of directories, in order, for the first
> matching shared library (actually a file named liblibrary.so) or standard
> library (actually a file named liblibrary.a) that is found.  If a matching
> shared library and static library are found in the same directory, the
> shared library is preferred.
> </quote>

That's not entirely accurate, the precise semantics depend on the linker, which
is not part of GCC and varies from platform to platform.

> The second line could be changed to something like
> <quote>
> The only difference between using an -l option and specifying a file name is
> that -l surrounds library with ‘lib’ and either '.so' and ‘.a’  and searches
> several directories
> </quote>

Or .dylib, or other OS-specific extensions.

I think it would be better to just say the details depend on the linker.
>From gcc-bugs-return-534892-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 22:46:04 2016
Return-Path: <gcc-bugs-return-534892-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 128054 invoked by alias); 16 Aug 2016 22:46:04 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 128041 invoked by uid 89); 16 Aug 2016 22:46:03 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 22:45:53 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77271] flag -std=c++98 cannot set _GLIBCXX_USE_CXX11_ABI properly
Date: Tue, 16 Aug 2016 22:46:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: resolution
Message-ID: <bug-77271-4-xaduh98vDL@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77271-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77271-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02228.txt.bz2
Content-length: 588

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77271

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|WONTFIX                     |INVALID

--- Comment #2 from Jonathan Wakely <redi at gcc dot gnu.org> ---
This isn't WONTFIX, it's just INVALID. The macro _GLIBCXX_USE_CXX11_ABI and the
-std option are supposed to be entirely independent.

This is documented at
https://gcc.gnu.org/onlinedocs/libstdc++/manual/using_dual_abi.html
>From gcc-bugs-return-534893-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 22:47:27 2016
Return-Path: <gcc-bugs-return-534893-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 129238 invoked by alias); 16 Aug 2016 22:47:26 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 129227 invoked by uid 89); 16 Aug 2016 22:47:26 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 22:47:15 +0000
From: "zeccav at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug debug/67482] dwarf2out.c sanitizer detects undefined behaviour negation of -9223372036854775808
Date: Tue, 16 Aug 2016 22:47:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: debug
X-Bugzilla-Version: 5.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: zeccav at gmail dot com
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-67482-4-aOeDMuKO4O@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67482-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67482-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02229.txt.bz2
Content-length: 350

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67482

Vittorio Zecca <zeccav at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |RESOLVED
         Resolution|---                         |FIXED
>From gcc-bugs-return-534894-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 22:51:12 2016
Return-Path: <gcc-bugs-return-534894-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 10636 invoked by alias); 16 Aug 2016 22:51:12 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 10627 invoked by uid 89); 16 Aug 2016 22:51:11 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 22:51:01 +0000
From: "zeccav at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/67496] trans-array.c sanitizer runtime error: load of value 124, which is not a valid value for type 'bool'
Date: Tue, 16 Aug 2016 22:51:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 5.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: zeccav at gmail dot com
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-67496-4-qpHy4nN6eP@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67496-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67496-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02230.txt.bz2
Content-length: 268

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67496

--- Comment #11 from Vittorio Zecca <zeccav at gmail dot com> ---
Still in trunk 7.0

gcc-trunk-239276/gcc/fortran/trans-array.c:2243:27: runtime error: load of
value 48, which is not a valid value for type 'bool'
>From gcc-bugs-return-534895-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 22:53:03 2016
Return-Path: <gcc-bugs-return-534895-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 12488 invoked by alias); 16 Aug 2016 22:53:02 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 12474 invoked by uid 89); 16 Aug 2016 22:53:02 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:365
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 22:52:51 +0000
From: "zeccav at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/67496] trans-array.c sanitizer runtime error: load of value 124, which is not a valid value for type 'bool'
Date: Tue, 16 Aug 2016 22:53:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: minor
X-Bugzilla-Who: zeccav at gmail dot com
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: version bug_severity
Message-ID: <bug-67496-4-1wWZLtyJ54@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67496-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67496-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02231.txt.bz2
Content-length: 345

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67496

Vittorio Zecca <zeccav at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Version|5.2.0                       |7.0
           Severity|normal                      |minor
>From gcc-bugs-return-534896-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 16 23:31:18 2016
Return-Path: <gcc-bugs-return-534896-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 113667 invoked by alias); 16 Aug 2016 23:31:18 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 113654 invoked by uid 89); 16 Aug 2016 23:31:17 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:1745, sk:0xffff, oo
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Aug 2016 23:31:12 +0000
From: "msebor at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77276] New: strlen expanded inline with -Os, emits larger code than with -O2
Date: Tue, 16 Aug 2016 23:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: msebor at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77276-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02232.txt.bz2
Content-length: 2091

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77276

            Bug ID: 77276
           Summary: strlen expanded inline with -Os, emits larger code
                    than with -O2
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: target
          Assignee: unassigned at gcc dot gnu.org
          Reporter: msebor at gcc dot gnu.org
  Target Milestone: ---

On x86_64 (but not on powerpc64le, for example), a call to __builtin_strlen
with a non-constant argument is expanded inline at -Os (as well as -Og and
-O1), but not at -O2 even though the size of the code emitted at -O2 is less
than that at -Os.

$ (set -x && cat xyz.c && for o in s 2; do /build/gcc-trunk-svn/gcc/xgcc -B
/build/gcc-trunk-svn/gcc -O$o -Wall -Wextra -c xyz.c && objdump -d xyz.o; done)
+ cat xyz.c
static const char* volatile s = "123";

unsigned f (void)
{
  return __builtin_strlen (s);
}
+ for o in s 2
+ /build/gcc-trunk-svn/gcc/xgcc -B /build/gcc-trunk-svn/gcc -Os -Wall -Wextra
-c xyz.c
+ objdump -d xyz.o

xyz.o:     file format elf64-x86-64


Disassembly of section .text:

0000000000000000 <f>:
   0:   48 8b 3d 00 00 00 00    mov    0x0(%rip),%rdi        # 7 <f+0x7>
   7:   31 c0                   xor    %eax,%eax
   9:   48 83 c9 ff             or     $0xffffffffffffffff,%rcx
   d:   f2 ae                   repnz scas %es:(%rdi),%al
   f:   48 89 c8                mov    %rcx,%rax
  12:   48 f7 d0                not    %rax
  15:   48 ff c8                dec    %rax
  18:   c3                      retq   
+ for o in s 2
+ /build/gcc-trunk-svn/gcc/xgcc -B /build/gcc-trunk-svn/gcc -O2 -Wall -Wextra
-c xyz.c
+ objdump -d xyz.o

xyz.o:     file format elf64-x86-64


Disassembly of section .text:

0000000000000000 <f>:
   0:   48 83 ec 08             sub    $0x8,%rsp
   4:   48 8b 3d 00 00 00 00    mov    0x0(%rip),%rdi        # b <f+0xb>
   b:   e8 00 00 00 00          callq  10 <f+0x10>
  10:   48 83 c4 08             add    $0x8,%rsp
  14:   c3                      retq
>From gcc-bugs-return-534897-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 01:00:46 2016
Return-Path: <gcc-bugs-return-534897-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 14925 invoked by alias); 17 Aug 2016 01:00:44 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 14825 invoked by uid 89); 17 Aug 2016 01:00:37 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=5.3.1
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 01:00:27 +0000
From: "bruck.michael at googlemail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77277] New: -fdiagnostics-color=always disabled on _WIN32 for no discernible reason
Date: Wed, 17 Aug 2016 01:00:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.3.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: bruck.michael at googlemail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77277-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02233.txt.bz2
Content-length: 951

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77277

            Bug ID: 77277
           Summary: -fdiagnostics-color=always disabled on _WIN32 for no
                    discernible reason
           Product: gcc
           Version: 5.3.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: bruck.michael at googlemail dot com
  Target Milestone: ---

diagnostic-color.c completely disables colorization for the _WIN32 platform. 

However both the most recent Windows 10 cmd.exe terminal as well as existing
terminal emulators available on older Windows versions fully support the Escape
sequences generated by gcc.

Proposal:
-fdiagnostics-color=always should always emit color codes

If isatty() is not reliable or unavailable on _WIN32 then should_colorize()
could be short-circuited to return false on _WIN32.
>From gcc-bugs-return-534898-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 01:11:25 2016
Return-Path: <gcc-bugs-return-534898-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 30110 invoked by alias); 17 Aug 2016 01:11:25 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 30095 invoked by uid 89); 17 Aug 2016 01:11:23 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy¯aik, 2016-08-17, 20160817, among
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 01:11:13 +0000
From: "manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77277] -fdiagnostics-color=always disabled on _WIN32
Date: Wed, 17 Aug 2016 01:11:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.3.1
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: manu at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on cc cf_gcchost short_desc everconfirmed
Message-ID: <bug-77277-4-OY1Ex9BBgO@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77277-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77277-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02234.txt.bz2
Content-length: 1300

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77277

Manuel López-Ibáñez <manu at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |diagnostic
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-17
                 CC|                            |manu at gcc dot gnu.org
               Host|                            |windows
            Summary|-fdiagnostics-color=always  |-fdiagnostics-color=always
                   |disabled on _WIN32 for no   |disabled on _WIN32
                   |discernible reason          |
     Ever confirmed|0                           |1

--- Comment #1 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
(In reply to Michael Bruck from comment #0)
> diagnostic-color.c completely disables colorization for the _WIN32 platform. 

The reason is that nobody among the current developers is using Windows AFAIK,
thus nobody so far has been interested in implementing (and testing) this.

If you are, please see: 

https://gcc.gnu.org/wiki/GettingStarted#Basics:_Contributing_to_GCC_in_10_easy_steps
>From gcc-bugs-return-534899-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 02:00:35 2016
Return-Path: <gcc-bugs-return-534899-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 49953 invoked by alias); 17 Aug 2016 02:00:34 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 49542 invoked by uid 89); 17 Aug 2016 02:00:34 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 02:00:23 +0000
From: "rusty at rustcorp dot com.au" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/76732] GCC should warn on repeated initializer for same array element / struct member.
Date: Wed, 17 Aug 2016 02:00:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rusty at rustcorp dot com.au
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-76732-4-v06Nh8ncmN@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76732-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76732-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02235.txt.bz2
Content-length: 911

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76732

--- Comment #6 from rusty at rustcorp dot com.au ---
"manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org> writes:
> https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76732
>
> Manuel López-Ibáñez <manu at gcc dot gnu.org> changed:
>
>            What    |Removed                     |Added
> ----------------------------------------------------------------------------
>                  CC|                            |manu at gcc dot gnu.org
>
> --- Comment #3 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
> GCC already warns for this (for C)
>
> test.c:1:32: warning: initialized field overwritten [-Woverride-init]
>  int x[] = { [0] = 1, +3, [1] = 1 };

Ah, thanks!

Surprised -Wall doesn't set -Woverride-init then; presume this was a
conscious decision?

I'll add it to my CFLAGS.

Thanks again!
Rusty.
>From gcc-bugs-return-534900-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 02:33:08 2016
Return-Path: <gcc-bugs-return-534900-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 128245 invoked by alias); 17 Aug 2016 02:33:08 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 128232 invoked by uid 89); 17 Aug 2016 02:33:07 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 02:32:56 +0000
From: "manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/76732] Improve Woverride-init
Date: Wed, 17 Aug 2016 02:33:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: manu at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: short_desc bug_severity
Message-ID: <bug-76732-4-TzXsjNULR1@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76732-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76732-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02236.txt.bz2
Content-length: 764

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76732

Manuel López-Ibáñez <manu at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|GCC should warn on repeated |Improve Woverride-init
                   |initializer for same array  |
                   |element / struct member.    |
           Severity|normal                      |enhancement

--- Comment #7 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
> Surprised -Wall doesn't set -Woverride-init then; presume this was a
> conscious decision?

It is enabled by -Wextra. You can find the rationale here: PR24010

Clang warns by default.
>From gcc-bugs-return-534901-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 07:00:50 2016
Return-Path: <gcc-bugs-return-534901-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 17327 invoked by alias); 17 Aug 2016 07:00:49 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 17274 invoked by uid 89); 17 Aug 2016 07:00:45 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=0.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Closing
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 07:00:35 +0000
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/76911] internal compiler segfault on illegal implicit cast to decimal64
Date: Wed, 17 Aug 2016 07:00:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: marxin at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cc resolution
Message-ID: <bug-76911-4-6IytIUzBwp@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76911-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76911-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02237.txt.bz2
Content-length: 633

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76911

Martin Liška <marxin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
                 CC|                            |marxin at gcc dot gnu.org
         Resolution|---                         |FIXED

--- Comment #4 from Martin Liška <marxin at gcc dot gnu.org> ---
I can confirm that 6.1.0 really ICEs, however the bug was fixed by r236395.
Thus all active branches are fine. Closing as resolved.
>From gcc-bugs-return-534902-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 07:28:16 2016
Return-Path: <gcc-bugs-return-534902-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 57374 invoked by alias); 17 Aug 2016 07:28:15 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 57361 invoked by uid 89); 17 Aug 2016 07:28:14 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy¾neficial, libfortran, misoptimized, st_write
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 07:28:04 +0000
From: "tkoenig at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libfortran/77278] New: Use LTO for libgfortran
Date: Wed, 17 Aug 2016 07:28:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libfortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: tkoenig at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77278-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02238.txt.bz2
Content-length: 1527

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77278

            Bug ID: 77278
           Summary: Use LTO for libgfortran
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: enhancement
          Priority: P3
         Component: libfortran
          Assignee: unassigned at gcc dot gnu.org
          Reporter: tkoenig at gcc dot gnu.org
  Target Milestone: ---

In order to aid optimization, it could be beneficial to
build libgfortran as an lto-enabled library. There could be
a big win for functions being called via constant propagation,
especially for I/O and array operations.

With I/O, checking for large number of options at runtime could
be avoided.  Array operations could profit from cases where arrays
are contiguous, when the library needs to take non-contiguous cases
into account.

Some discussion starts here.

https://gcc.gnu.org/ml/fortran/2016-08/msg00069.html

What has been done so far to identify potential problems
was to manually add -flto -ffat-lto-objects to the Makefile
in libgfortran and compile a simple program with -flto.

This led to error messages like

lto1: warning: type of '_gfortran_st_write' does not match original declaration
[-Wlto-type-mismatch] ../../../trunk/libgfortran/io/transfer.c:3746:1: note:
'st_write' was previously declared here
../../../trunk/libgfortran/io/transfer.c:3746:1: note: code may be misoptimized
unless -fno-strict-aliasing is used

so there is likely work to do on the library side and on the LTO side.
>From gcc-bugs-return-534903-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 07:52:35 2016
Return-Path: <gcc-bugs-return-534903-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 125752 invoked by alias); 17 Aug 2016 07:52:34 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 125658 invoked by uid 89); 17 Aug 2016 07:52:33 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 07:52:23 +0000
From: "mpolacek at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/70250] Compilation hangs without optimization.
Date: Wed, 17 Aug 2016 07:52:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mpolacek at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cc resolution
Message-ID: <bug-70250-4-weazcsOKeJ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70250-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70250-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02239.txt.bz2
Content-length: 578

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70250

Marek Polacek <mpolacek at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |RESOLVED
                 CC|                            |mpolacek at gcc dot gnu.org
         Resolution|---                         |INVALID

--- Comment #4 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
GCC 4.9 is now out of support and I cannot reproduce with GCC 5, so closing.
>From gcc-bugs-return-534904-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 08:12:41 2016
Return-Path: <gcc-bugs-return-534904-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 123036 invoked by alias); 17 Aug 2016 08:12:41 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 123026 invoked by uid 89); 17 Aug 2016 08:12:40 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy 16-08-17, 20160817
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 08:12:30 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/23855] loop header should also be pulled out of the inner loop too
Date: Wed, 17 Aug 2016 08:12:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 4.1.0
X-Bugzilla-Keywords: missed-optimization, patch
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-23855-4-xW57VGZ88p@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-23855-4@http.gcc.gnu.org/bugzilla/>
References: <bug-23855-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02240.txt.bz2
Content-length: 926

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=23855

--- Comment #31 from Richard Biener <rguenth at gcc dot gnu.org> ---
Author: rguenth
Date: Wed Aug 17 08:11:32 2016
New Revision: 239523

URL: https://gcc.gnu.org/viewcvs?rev=239523&root=gcc&view=rev
Log:
2016-08-17  Richard Biener  <rguenther@suse.de>

        PR tree-optimization/23855
        * tree-ssa-loop-unswitch.c: Include tree-ssa-loop-manip.h.
        (tree_unswitch_outer_loop): Iterate find_loop_guard as long as we
        find guards to hoist.  Do not update SSA form but rewrite virtuals
        into loop closed SSA.
        (find_loop_guard): Adjust to skip already hoisted guards.  Do
        not mark virtuals for renaming or update SSA form.

        * gcc.dg/loop-unswitch-2.c: Adjust.

Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/testsuite/gcc.dg/loop-unswitch-2.c
    trunk/gcc/tree-ssa-loop-unswitch.c
>From gcc-bugs-return-534905-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 08:20:14 2016
Return-Path: <gcc-bugs-return-534905-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 31321 invoked by alias); 17 Aug 2016 08:20:13 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 31307 invoked by uid 89); 17 Aug 2016 08:20:13 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 08:20:03 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/23855] loop header should also be pulled out of the inner loop too
Date: Wed, 17 Aug 2016 08:20:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 4.1.0
X-Bugzilla-Keywords: missed-optimization, patch
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution target_milestone
Message-ID: <bug-23855-4-jMdla5owLT@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-23855-4@http.gcc.gnu.org/bugzilla/>
References: <bug-23855-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02241.txt.bz2
Content-length: 499

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=23855

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED
   Target Milestone|---                         |7.0

--- Comment #32 from Richard Biener <rguenth at gcc dot gnu.org> ---
Fixed fully for GCC 7.
>From gcc-bugs-return-534906-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 08:21:06 2016
Return-Path: <gcc-bugs-return-534906-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 32441 invoked by alias); 17 Aug 2016 08:21:06 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 32429 invoked by uid 89); 17 Aug 2016 08:21:05 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=(unknown)
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 08:20:55 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/23970] loop-invariant-motion is not doing it's work
Date: Wed, 17 Aug 2016 08:21:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: dep_changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 4.1.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-23970-4-sFFynuGiqj@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-23970-4@http.gcc.gnu.org/bugzilla/>
References: <bug-23970-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02242.txt.bz2
Content-length: 487

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=23970
Bug 23970 depends on bug 23855, which changed state.

Bug 23855 Summary: loop header should also be pulled out of the inner loop too
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=23855

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED
>From gcc-bugs-return-534907-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 08:21:48 2016
Return-Path: <gcc-bugs-return-534907-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 33422 invoked by alias); 17 Aug 2016 08:21:48 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 33409 invoked by uid 89); 17 Aug 2016 08:21:47 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 08:21:37 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/60042] vectorizer still does too many dependence tests for himeno:jacobi
Date: Wed, 17 Aug 2016 08:21:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: dep_changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-60042-4-vQO1iu1B5I@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-60042-4@http.gcc.gnu.org/bugzilla/>
References: <bug-60042-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02243.txt.bz2
Content-length: 487

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60042
Bug 60042 depends on bug 23855, which changed state.

Bug 23855 Summary: loop header should also be pulled out of the inner loop too
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=23855

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED
>From gcc-bugs-return-534908-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 08:39:03 2016
Return-Path: <gcc-bugs-return-534908-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 21082 invoked by alias); 17 Aug 2016 08:39:03 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 21071 invoked by uid 89); 17 Aug 2016 08:39:02 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 08:38:52 +0000
From: "paolo.carlini at oracle dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/71665] [5/6 Regression] ICE on invalid C++ code with non-integral constant enumerator value: in cxx_eval_constant_expression, at cp/constexpr.c:3918
Date: Wed, 17 Aug 2016 08:39:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: paolo.carlini at oracle dot com
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution assigned_to
Message-ID: <bug-71665-4-r9kZzL5t2n@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71665-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71665-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02244.txt.bz2
Content-length: 759

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71665

Paolo Carlini <paolo.carlini at oracle dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED
           Assignee|paolo.carlini at oracle dot com    |unassigned at gcc dot gnu.org

--- Comment #7 from Paolo Carlini <paolo.carlini at oracle dot com> ---
The testcase doesn't cause an ICE in release mode in the release branches,
thus, being this just an ICE on invalid, I'm not going to backport the fix. If
somebody really cares, can ask on gcc-patches if a tested backport is ok to go
in.
>From gcc-bugs-return-534909-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 08:49:42 2016
Return-Path: <gcc-bugs-return-534909-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 37019 invoked by alias); 17 Aug 2016 08:49:42 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 36376 invoked by uid 89); 17 Aug 2016 08:49:41 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 08:49:31 +0000
From: "mpolacek at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/71514] ICE on C11 code with atomic exchange at -O1 and above on x86_64-linux-gnu: in copy_reference_ops_from_ref, at tree-ssa-sccvn.c:879
Date: Wed, 17 Aug 2016 08:49:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mpolacek at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71514-4-RD1ju4pSln@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71514-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71514-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02245.txt.bz2
Content-length: 173

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71514

--- Comment #10 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
Ok, looking at the get_atomic_generic_size issue.
>From gcc-bugs-return-534910-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 09:14:09 2016
Return-Path: <gcc-bugs-return-534910-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 127746 invoked by alias); 17 Aug 2016 09:14:08 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 127734 invoked by uid 89); 17 Aug 2016 09:14:07 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=meet
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 09:13:57 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/52904] -Wstrict-overflow false alarm with bounded loop
Date: Wed, 17 Aug 2016 09:14:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 4.7.0
X-Bugzilla-Keywords: diagnostic, missed-optimization, xfail
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: REOPENED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_status resolution
Message-ID: <bug-52904-4-0aEyjhIJ9M@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-52904-4@http.gcc.gnu.org/bugzilla/>
References: <bug-52904-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02246.txt.bz2
Content-length: 670

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=52904

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |xfail
             Status|RESOLVED                    |REOPENED
         Resolution|WORKSFORME                  |---

--- Comment #13 from Richard Biener <rguenth at gcc dot gnu.org> ---
Re-opening because I am fixing a bug that makes the diagnostic re-appear (it
was "fixed" by a bug that caused us to meet [0, +INF] and [1, +INF(OVF)] as [0,
+INF]
rather than [0, +INF(OVF)]).
>From gcc-bugs-return-534911-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 09:35:40 2016
Return-Path: <gcc-bugs-return-534911-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 122404 invoked by alias); 17 Aug 2016 09:35:40 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 122378 invoked by uid 89); 17 Aug 2016 09:35:39 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:523, D*pl
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 09:35:28 +0000
From: "jyong at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/66488] segfault on sizeof(long) < sizeof(void*) and large GCC memory usage
Date: Wed, 17 Aug 2016 09:35:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 5.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jyong at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-66488-4-0sLqQzR4ln@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-66488-4@http.gcc.gnu.org/bugzilla/>
References: <bug-66488-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02247.txt.bz2
Content-length: 472

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66488

--- Comment #13 from jyong at gcc dot gnu.org ---
Author: jyong
Date: Wed Aug 17 09:34:52 2016
New Revision: 239525

URL: https://gcc.gnu.org/viewcvs?rev=239525&root=gcc&view=rev
Log:
016-08-17  Stanislaw Halik  <sthalik@misaki.pl>

        PR target/66488
        * config/i386/xm-mingw32.h (HOST_BITS_PER_PTR): Define if __x86_64__.


Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/config/i386/xm-mingw32.h
>From gcc-bugs-return-534912-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 09:46:31 2016
Return-Path: <gcc-bugs-return-534912-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 40017 invoked by alias); 17 Aug 2016 09:46:31 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 39999 invoked by uid 89); 17 Aug 2016 09:46:30 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=sp2, 4.3.0
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 09:46:20 +0000
From: "Alexeev-O@gaz-is.ru" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77279] New: build error in isl/ctx.h
Date: Wed, 17 Aug 2016 09:46:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: critical
X-Bugzilla-Who: Alexeev-O@gaz-is.ru
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77279-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02248.txt.bz2
Content-length: 553

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77279

            Bug ID: 77279
           Summary: build error in isl/ctx.h
           Product: gcc
           Version: 6.1.0
            Status: UNCONFIRMED
          Severity: critical
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: Alexeev-O@gaz-is.ru
  Target Milestone: ---

system: SLES 11 sp2 64bit
gcc: 4.3.0

Try to build gcc 6.1.0 from sources.
Get error:
.../isl/include/isl/ctx.h:83: error: comma at end of enumerator list
>From gcc-bugs-return-534913-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 09:50:46 2016
Return-Path: <gcc-bugs-return-534913-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 52601 invoked by alias); 17 Aug 2016 09:50:45 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 52584 invoked by uid 89); 17 Aug 2016 09:50:44 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:173, UD:A
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 09:50:34 +0000
From: "Alexeev-O@gaz-is.ru" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77279] build error in isl/ctx.h
Date: Wed, 17 Aug 2016 09:50:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: critical
X-Bugzilla-Who: Alexeev-O@gaz-is.ru
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77279-4-YMBK4twOAo@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77279-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77279-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02249.txt.bz2
Content-length: 134

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77279

--- Comment #1 from Oleg.A <Alexeev-O@gaz-is.ru> ---
correction: use gcc: 4.3.4
>From gcc-bugs-return-534914-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 09:57:34 2016
Return-Path: <gcc-bugs-return-534914-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 66175 invoked by alias); 17 Aug 2016 09:57:33 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 66154 invoked by uid 89); 17 Aug 2016 09:57:32 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 09:57:28 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/77269] __builtin_isinf_sign does not work for __float128
Date: Wed, 17 Aug 2016 09:57:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-77269-4-sYMH6zPNps@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77269-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77269-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02250.txt.bz2
Content-length: 484

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77269

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-17
     Ever confirmed|0                           |1

--- Comment #1 from Richard Biener <rguenth at gcc dot gnu.org> ---
Confirmed.
>From gcc-bugs-return-534915-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 10:09:33 2016
Return-Path: <gcc-bugs-return-534915-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 123399 invoked by alias); 17 Aug 2016 10:09:32 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 123380 invoked by uid 89); 17 Aug 2016 10:09:32 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy\x015, 0.15
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 10:09:22 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77279] build error in isl/ctx.h
Date: Wed, 17 Aug 2016 10:09:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: critical
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-77279-4-uRZK6A1Yl6@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77279-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77279-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02251.txt.bz2
Content-length: 748

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77279

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |rguenth at gcc dot gnu.org

--- Comment #2 from Richard Biener <rguenth at gcc dot gnu.org> ---
It works with isl 0.16.1 for me (yes, download_prerequesites uses 0.15).

isl 0.15 has

typedef enum {
        isl_stat_error = -1,
        isl_stat_ok = 0,
} isl_stat;

at this point but that parses just fine for me with GCC 4.3.4.

I do remember seeing sth like this though.  Can you quote the full error
please?
Trying to reproduce on the branch head now.
>From gcc-bugs-return-534916-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 10:31:19 2016
Return-Path: <gcc-bugs-return-534916-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 101387 invoked by alias); 17 Aug 2016 10:31:19 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 101375 invoked by uid 89); 17 Aug 2016 10:31:18 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=mmd
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 10:31:08 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77279] build error in isl/ctx.h
Date: Wed, 17 Aug 2016 10:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: critical
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-77279-4-cwQXSUwmDp@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77279-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77279-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02252.txt.bz2
Content-length: 2213

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77279

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-17
     Ever confirmed|0                           |1

--- Comment #3 from Richard Biener <rguenth at gcc dot gnu.org> ---
Confirmed on branch head after ./download_prerequesites plus a simple
./configure && make.

g++ -std=gnu++98 -fno-PIE -c   -g -DIN_GCC     -fno-exceptions -fno-rtti
-fasynchronous-unwind-tables -W -Wall -Wwrite-strings -Wcast-qual -Wno-format
-Wmissing-format-attribute -Woverloaded-virtual -pedantic -Wno-long-long
-Wno-variadic-macros -Wno-overlength-strings -fno-common  -DHAVE_CONFIG_H -I.
-I. -I/space/rguenther/src/svn/gcc-6-branch/gcc
-I/space/rguenther/src/svn/gcc-6-branch/gcc/.
-I/space/rguenther/src/svn/gcc-6-branch/gcc/../include
-I/space/rguenther/src/svn/gcc-6-branch/gcc/../libcpp/include
-I/abuild/rguenther/obj/./gmp -I/space/rguenther/src/svn/gcc-6-branch/gmp
-I/abuild/rguenther/obj/./mpfr -I/space/rguenther/src/svn/gcc-6-branch/mpfr
-I/space/rguenther/src/svn/gcc-6-branch/mpc/src 
-I/space/rguenther/src/svn/gcc-6-branch/gcc/../libdecnumber
-I/space/rguenther/src/svn/gcc-6-branch/gcc/../libdecnumber/bid
-I../libdecnumber -I/space/rguenther/src/svn/gcc-6-branch/gcc/../libbacktrace
-I/abuild/rguenther/obj/./isl/include
-I/space/rguenther/src/svn/gcc-6-branch/isl/include  -o graphite.o -MT
graphite.o -MMD -MP -MF ./.deps/graphite.TPo
/space/rguenther/src/svn/gcc-6-branch/gcc/graphite.c
In file included from
/space/rguenther/src/svn/gcc-6-branch/isl/include/isl/options.h:14,
                 from /space/rguenther/src/svn/gcc-6-branch/gcc/graphite.h:26,
                 from /space/rguenther/src/svn/gcc-6-branch/gcc/graphite.c:55:
/space/rguenther/src/svn/gcc-6-branch/isl/include/isl/ctx.h:83: error: comma at
end of enumerator list
make[3]: *** [graphite.o] Error 1

for some reason we are adding -pedantic which triggers this.

Starting with GCC 4.4 (4.4.5 at least) this is only a warning.
>From gcc-bugs-return-534917-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 10:33:28 2016
Return-Path: <gcc-bugs-return-534917-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 103409 invoked by alias); 17 Aug 2016 10:33:28 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 103399 invoked by uid 89); 17 Aug 2016 10:33:27 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Leaving, UD:A
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 10:33:17 +0000
From: "Alexeev-O@gaz-is.ru" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77279] build error in isl/ctx.h
Date: Wed, 17 Aug 2016 10:33:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: critical
X-Bugzilla-Who: Alexeev-O@gaz-is.ru
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77279-4-hP9kYkmYfA@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77279-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77279-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02253.txt.bz2
Content-length: 1523

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77279

--- Comment #4 from Oleg.A <Alexeev-O@gaz-is.ru> ---
g++ -std=gnu++98 -fno-PIE -c   -g -DIN_GCC     -fno-exceptions -fno-rtti
-fasynchronous-unwind-tables -W -Wall -Wwrite-strings -Wcast-qual -Wno-format
-Wmissing-format-attribute -Woverloaded-virtual -pedantic -Wno-long-long
-Wno-variadic-macros -Wno-overlength-strings -fno-common  -DHAVE_CONFIG_H -I.
-I. -I../../gcc -I../../gcc/. -I../../gcc/../include
-I../../gcc/../libcpp/include -I/home/gis/gcc/gcc-6.1.0/build/./gmp
-I/home/gis/gcc/gcc-6.1.0/gmp -I/home/gis/gcc/gcc-6.1.0/build/./mpfr
-I/home/gis/gcc/gcc-6.1.0/mpfr -I/home/gis/gcc/gcc-6.1.0/mpc/src 
-I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/bid -I../libdecnumber
-I../../gcc/../libbacktrace -I/home/gis/gcc/gcc-6.1.0/build/./isl/include
-I/home/gis/gcc/gcc-6.1.0/isl/include  -o graphite.o -MT graphite.o -MMD -MP
-MF ./.deps/graphite.TPo ../../gcc/graphite.c
In file included from /home/gis/gcc/gcc-6.1.0/isl/include/isl/options.h:14,
                 from ../../gcc/graphite.h:26,
                 from ../../gcc/graphite.c:55:
/home/gis/gcc/gcc-6.1.0/isl/include/isl/ctx.h:83: error: comma at end of
enumerator list
make[3]: *** [graphite.o] Error 1
make[3]: Leaving directory `/home/gis/gcc/gcc-6.1.0/build/gcc'
make[2]: *** [all-stage1-gcc] Error 2
make[2]: Leaving directory `/home/gis/gcc/gcc-6.1.0/build'
make[1]: *** [stage1-bubble] Error 2
make[1]: Leaving directory `/home/gis/gcc/gcc-6.1.0/build'
make: *** [all] Error 2
>From gcc-bugs-return-534918-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 10:39:10 2016
Return-Path: <gcc-bugs-return-534918-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 5539 invoked by alias); 17 Aug 2016 10:39:10 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 5520 invoked by uid 89); 17 Aug 2016 10:39:09 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 10:38:59 +0000
From: "mpolacek at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/71514] ICE on C11 code with atomic exchange at -O1 and above on x86_64-linux-gnu: in copy_reference_ops_from_ref, at tree-ssa-sccvn.c:879
Date: Wed, 17 Aug 2016 10:39:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mpolacek at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71514-4-fysOf6LatZ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71514-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71514-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02254.txt.bz2
Content-length: 230

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71514

--- Comment #11 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
Is it ok if I change the C FE to reject pointer-to-VLA and pointer-to-function
arguments for __atomic_*?
>From gcc-bugs-return-534919-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 11:52:38 2016
Return-Path: <gcc-bugs-return-534919-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 123893 invoked by alias); 17 Aug 2016 11:52:38 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 123879 invoked by uid 89); 17 Aug 2016 11:52:35 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_05 autolearn=ham version=3.3.2 spammy=infinities, limitation, sk:gfortra, re-visit
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 11:52:25 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/76490] [5/6/7 Regression] when use -O2 -fcheck-founds compiler appears to hang and consumes all memory
Date: Wed, 17 Aug 2016 11:52:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords: compile-time-hog, memory-hog
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-76490-4-mV97B8D6pF@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76490-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76490-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02255.txt.bz2
Content-length: 1244

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76490

--- Comment #6 from Richard Biener <rguenth at gcc dot gnu.org> ---
Author: rguenth
Date: Wed Aug 17 11:51:51 2016
New Revision: 239529

URL: https://gcc.gnu.org/viewcvs?rev=239529&root=gcc&view=rev
Log:
2016-08-17  Richard Biener  <rguenther@suse.de>

        PR tree-optimization/76490
        * tree-vrp.c (update_value_range): Preserve overflow infinities
        when intersecting with ranges from get_range_info.
        (operand_less_p): Handle overflow infinities correctly.
        (value_range_constant_singleton): Use vrp_operand_equal_p
        to handle overflow max/min correctly.
        (vrp_valueize): Likewise.
        (union_ranges): Likewise.
        (intersect_ranges): Likewise.
        (vrp_visit_phi_node): Improve iteration limitation to only
        apply when we'll possibly re-visit the PHI via a changed argument
        on the backedge.

        * gfortran.fortran-torture/compile/pr76490.f90: New testcase.
        * gcc.dg/pr52904.c: XFAIL.

Added:
    trunk/gcc/testsuite/gfortran.fortran-torture/compile/pr76490.f90
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/testsuite/gcc.dg/pr52904.c
    trunk/gcc/tree-vrp.c
>From gcc-bugs-return-534920-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 12:00:42 2016
Return-Path: <gcc-bugs-return-534920-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 18236 invoked by alias); 17 Aug 2016 12:00:42 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 17575 invoked by uid 89); 17 Aug 2016 12:00:41 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 12:00:31 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/76490] [5/6 Regression] when use -O2 -fcheck-founds compiler appears to hang and consumes all memory
Date: Wed, 17 Aug 2016 12:00:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords: compile-time-hog, memory-hog
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cf_known_to_work short_desc cf_known_to_fail
Message-ID: <bug-76490-4-1GHN6hlpqV@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76490-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76490-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02256.txt.bz2
Content-length: 729

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76490

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
      Known to work|                            |7.0
            Summary|[5/6/7 Regression] when use |[5/6 Regression] when use
                   |-O2 -fcheck-founds compiler |-O2 -fcheck-founds compiler
                   |appears to hang and         |appears to hang and
                   |consumes all memory         |consumes all memory
      Known to fail|7.0                         |6.2.0

--- Comment #7 from Richard Biener <rguenth at gcc dot gnu.org> ---
Fixed on trunk sofar.
>From gcc-bugs-return-534921-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 12:06:33 2016
Return-Path: <gcc-bugs-return-534921-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 68769 invoked by alias); 17 Aug 2016 12:06:33 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 68749 invoked by uid 89); 17 Aug 2016 12:06:32 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 12:06:22 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77274] GCC uses copy constructor in member initializer list instead of simple initialization
Date: Wed, 17 Aug 2016 12:06:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-77274-4-5U2NNQQf9K@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77274-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77274-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02257.txt.bz2
Content-length: 566

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77274

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |INVALID

--- Comment #1 from Jonathan Wakely <redi at gcc dot gnu.org> ---
The copy can be optimized away, but the object still has to be copyable for
that to happen. If you delete the copy constructor it's not copyable.
>From gcc-bugs-return-534922-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 12:09:07 2016
Return-Path: <gcc-bugs-return-534922-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 72335 invoked by alias); 17 Aug 2016 12:09:07 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 72315 invoked by uid 89); 17 Aug 2016 12:09:06 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:265
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 12:08:56 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77274] GCC uses copy constructor in member initializer list instead of simple initialization
Date: Wed, 17 Aug 2016 12:09:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77274-4-Xg17VNmlMQ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77274-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77274-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02258.txt.bz2
Content-length: 165

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77274

--- Comment #2 from Jonathan Wakely <redi at gcc dot gnu.org> ---
See https://gcc.gnu.org/wiki/FAQ#copyelision
>From gcc-bugs-return-534923-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 13:29:45 2016
Return-Path: <gcc-bugs-return-534923-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 76685 invoked by alias); 17 Aug 2016 13:29:44 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 76674 invoked by uid 89); 17 Aug 2016 13:29:44 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 13:29:34 +0000
From: "ro at CeBiTec dot Uni-Bielefeld.DE" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/77262] [7 regression] Several libjava tests FAIL on 32-bit Solaris/x86
Date: Wed, 17 Aug 2016 13:29:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ro at CeBiTec dot Uni-Bielefeld.DE
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77262-4-CZcOWFAofV@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77262-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77262-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02259.txt.bz2
Content-length: 652

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77262

--- Comment #4 from ro at CeBiTec dot Uni-Bielefeld.DE <ro at CeBiTec dot Uni-Bielefeld.DE> ---
> --- Comment #3 from Dominique d'Humieres <dominiq at lps dot ens.fr> ---
>> It's indeed suspicious that exactly the same set of tests is affected,
>> but my reghunt (and previous testresults) point at a totally different
>> patch.
>
> Well, I have r237556 reverted in my working tree to silence the failures. This
> revision only changes PRED_LOOP_EXIT.

I've now applied such a reversion to otherwise unmodifed top-of-tree and
the failures are gone just the same.  Very strange.

        Rainer
>From gcc-bugs-return-534924-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 13:36:56 2016
Return-Path: <gcc-bugs-return-534924-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 48261 invoked by alias); 17 Aug 2016 13:36:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 45430 invoked by uid 89); 17 Aug 2016 13:36:55 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=nonnull, non-null
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 13:36:45 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/67496] trans-array.c sanitizer runtime error: load of value 124, which is not a valid value for type 'bool'
Date: Wed, 17 Aug 2016 13:36:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: minor
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status assigned_to attachments.created
Message-ID: <bug-67496-4-ti5OjNpqfJ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67496-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67496-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02260.txt.bz2
Content-length: 921

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67496

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |ASSIGNED
           Assignee|unassigned at gcc dot gnu.org      |jakub at gcc dot gnu.org

--- Comment #12 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Created attachment 39466
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39466&action=edit
gcc7-pr67496.patch

Untested fix.  u.cl is obviously valid only for type == BT_CHARACTER, for
e.g. BT_DERIVED in the testcase it is u.derived instead.  So, trying to
unconditionally dereference it is invalid.  Not to mention if the type happens
to be BT_HOLLERITH, then it could have non-zero u.pad, so u.cl could be
non-NULL, yet it wouldn't be even a valid pointer.
>From gcc-bugs-return-534925-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 13:39:38 2016
Return-Path: <gcc-bugs-return-534925-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 47279 invoked by alias); 17 Aug 2016 13:39:37 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 47268 invoked by uid 89); 17 Aug 2016 13:39:37 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:2795
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 13:39:26 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/77264] [7 Regression] std::string's replace gives wrong results with C++17, works with C++11
Date: Wed, 17 Aug 2016 13:39:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77264-4-CoSu54dAUJ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77264-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77264-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02261.txt.bz2
Content-length: 3094

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77264

--- Comment #7 from Jonathan Wakely <redi at gcc dot gnu.org> ---
Author: redi
Date: Wed Aug 17 13:38:52 2016
New Revision: 239532

URL: https://gcc.gnu.org/viewcvs?rev=239532&root=gcc&view=rev
Log:
PR 77264 constrain new std::basic_string overloads

        PR libstdc++/77264
        * include/bits/basic_string.h (operator=(__sv_type)
        (append(__sv_type), assign(__sv_type), insert(size_type, __sv_type))
        (replace(size_type, size_type, __sv_type))
        (replace(const_iterator, const_iterator, __sv_type))
        (find(__sv_type, size_type), rfind(__sv_type, size_type))
        (compare(size_type, size_type, __sv_type)): Reformat.
        (_If_sv): Define helper for SFINAE constaints.
        (append(const _Tp&, size_type, size_type))
        (assign(const _Tp&, size_type, size_type))
        (insert(size_type, const _Tp&, size_type, size_type))
        (replace(size_type, size_type, const _Tp&, size_type, size_type)):
        Use _If_sv.
        * testsuite/21_strings/basic_string/modifiers/append/char/4.cc: Test
        SFINAE constraints.
        * testsuite/21_strings/basic_string/modifiers/append/wchar_t/4.cc:
        Likewise.
        * testsuite/21_strings/basic_string/modifiers/replace/char/7.cc:
        Likewise.
        * testsuite/21_strings/basic_string/modifiers/replace/wchar_t/7.cc:
        Likewise.
        * testsuite/21_strings/basic_string/modifiers/assign/char/4.cc:
        Likewise.
        * testsuite/21_strings/basic_string/modifiers/assign/wchar_t/4.cc:
        Likewise.
        * testsuite/21_strings/basic_string/modifiers/insert/char/3.cc:
        Likewise.
        * testsuite/21_strings/basic_string/modifiers/insert/wchar_t/3.cc:
        Likewise.
        * testsuite/21_strings/basic_string/modifiers/replace/char/7.cc:
        Likewise.
        * testsuite/21_strings/basic_string/operations/compare/char/2.cc:
        Likewise.
        * testsuite/21_strings/basic_string/operations/compare/wchar_t/2.cc:
        Likewise.

Modified:
    trunk/libstdc++-v3/ChangeLog
    trunk/libstdc++-v3/include/bits/basic_string.h
   
trunk/libstdc++-v3/testsuite/21_strings/basic_string/modifiers/append/char/4.cc
   
trunk/libstdc++-v3/testsuite/21_strings/basic_string/modifiers/append/wchar_t/4.cc
   
trunk/libstdc++-v3/testsuite/21_strings/basic_string/modifiers/assign/char/4.cc
   
trunk/libstdc++-v3/testsuite/21_strings/basic_string/modifiers/assign/wchar_t/4.cc
   
trunk/libstdc++-v3/testsuite/21_strings/basic_string/modifiers/insert/char/3.cc
   
trunk/libstdc++-v3/testsuite/21_strings/basic_string/modifiers/insert/wchar_t/3.cc
   
trunk/libstdc++-v3/testsuite/21_strings/basic_string/modifiers/replace/char/7.cc
   
trunk/libstdc++-v3/testsuite/21_strings/basic_string/modifiers/replace/wchar_t/7.cc
   
trunk/libstdc++-v3/testsuite/21_strings/basic_string/operations/compare/char/2.cc
   
trunk/libstdc++-v3/testsuite/21_strings/basic_string/operations/compare/wchar_t/2.cc
>From gcc-bugs-return-534926-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 13:42:15 2016
Return-Path: <gcc-bugs-return-534926-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 52457 invoked by alias); 17 Aug 2016 13:42:15 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 52443 invoked by uid 89); 17 Aug 2016 13:42:14 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyL, 16.04.2, 5406ubuntu1, 16042
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 13:42:04 +0000
From: "jorg at bnl dot gov" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/77280] New: program using sizeof(array) fails after adding a statement with sizeof(array)
Date: Wed, 17 Aug 2016 13:42:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: lto
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jorg at bnl dot gov
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-77280-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02262.txt.bz2
Content-length: 1334

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77280

            Bug ID: 77280
           Summary: program using sizeof(array) fails after adding a
                    statement with sizeof(array)
           Product: gcc
           Version: lto
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: jorg at bnl dot gov
  Target Milestone: ---

Created attachment 39467
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39467&action=edit
source

Bug appears in:
gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.2)
gcc version 4.8.4 (Ubuntu 4.8.4-2ubuntu1~14.04.3) (64 bit)
clang version 3.8.0-2ubuntu4 (tags/RELEASE_380/final)

Bug is not in:
gcc version 4.8.4 (Ubuntu 4.8.4-2ubuntu1~14.04.3) (32 bit) 
pgcc 15.7-0 (portland group)

The attached code works correctly when 1) the two lines 
 45       unsigned int lx = sizeof(t);
 46       printf("lx %d\n", lx);
are removed or 2) the line 
 44        int a=0;
is added.
How to run:
>gcc 4.c
>a.out bug
should print
#####  #    #  ####  
#      #    # #    # 
#####  #    # #      
#    # #    # #  ### 
#    # #    # #    # 
#####   ####   ####  
lx 162
(The program was taken from www.gowrikumar.com/c/index.php)
>From gcc-bugs-return-534928-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 13:57:26 2016
Return-Path: <gcc-bugs-return-534928-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 113851 invoked by alias); 17 Aug 2016 13:57:25 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 113829 invoked by uid 89); 17 Aug 2016 13:57:24 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 13:57:20 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/77264] [7 Regression] std::string's replace gives wrong results with C++17, works with C++11
Date: Wed, 17 Aug 2016 13:57:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-77264-4-15dScZY6QK@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77264-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77264-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02264.txt.bz2
Content-length: 425

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77264

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--- Comment #8 from Jonathan Wakely <redi at gcc dot gnu.org> ---
Fixed.
>From gcc-bugs-return-534927-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 13:57:15 2016
Return-Path: <gcc-bugs-return-534927-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 113010 invoked by alias); 17 Aug 2016 13:57:15 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 112993 invoked by uid 89); 17 Aug 2016 13:57:14 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:810
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 13:57:04 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/77259] [6/7 Regression] ICE in emit_move_insn since r232167
Date: Wed, 17 Aug 2016 13:57:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77259-4-TKUQGxFOTl@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77259-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77259-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02263.txt.bz2
Content-length: 817

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77259

--- Comment #2 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Author: jakub
Date: Wed Aug 17 13:56:30 2016
New Revision: 239537

URL: https://gcc.gnu.org/viewcvs?rev=239537&root=gcc&view=rev
Log:
        PR middle-end/77259
        * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children): If
        turning a call into __builtin_unreachable-like noreturn call, adjust
        gimple_call_set_fntype.
        * tree-cfgcleanup.c (fixup_noreturn_call): Remove lhs also if
        gimple_call_fntype has void return type.

        * g++.dg/ipa/devirt-52.C: New test.

Added:
    trunk/gcc/testsuite/g++.dg/ipa/devirt-52.C
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/tree-cfgcleanup.c
    trunk/gcc/tree-ssa-pre.c
>From gcc-bugs-return-534931-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 14:00:48 2016
Return-Path: <gcc-bugs-return-534931-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 118245 invoked by alias); 17 Aug 2016 14:00:47 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 117959 invoked by uid 89); 17 Aug 2016 14:00:40 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 14:00:30 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/77280] program using sizeof(array) fails after adding a statement with sizeof(array)
Date: Wed, 17 Aug 2016 14:00:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: lto
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77280-4-UJD8y3JZdY@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77280-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77280-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02267.txt.bz2
Content-length: 725

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77280

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Comment on attachment 39467
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39467
source

Pr has an undefined value the first time through the loop.

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Comment on attachment 39467
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39467
source

Pr has an undefined value the first time through the loop.

--- Comment #3 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Comment on attachment 39467
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39467
source

Pr has an undefined value the first time through the loop.
>From gcc-bugs-return-534929-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 14:00:47 2016
Return-Path: <gcc-bugs-return-534929-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 118138 invoked by alias); 17 Aug 2016 14:00:47 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 117960 invoked by uid 89); 17 Aug 2016 14:00:40 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 14:00:30 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/77280] program using sizeof(array) fails after adding a statement with sizeof(array)
Date: Wed, 17 Aug 2016 14:00:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: lto
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77280-4-S5tIw73RX3@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77280-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77280-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02265.txt.bz2
Content-length: 725

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77280

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Comment on attachment 39467
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39467
source

Pr has an undefined value the first time through the loop.

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Comment on attachment 39467
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39467
source

Pr has an undefined value the first time through the loop.

--- Comment #3 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Comment on attachment 39467
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39467
source

Pr has an undefined value the first time through the loop.
>From gcc-bugs-return-534930-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 14:00:47 2016
Return-Path: <gcc-bugs-return-534930-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 118151 invoked by alias); 17 Aug 2016 14:00:47 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 117961 invoked by uid 89); 17 Aug 2016 14:00:40 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 14:00:30 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/77280] program using sizeof(array) fails after adding a statement with sizeof(array)
Date: Wed, 17 Aug 2016 14:00:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: lto
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77280-4-DcrC9X0liV@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77280-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77280-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02266.txt.bz2
Content-length: 277

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77280

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Comment on attachment 39467
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39467
source

Pr has an undefined value the first time through the loop.
>From gcc-bugs-return-534932-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 14:04:14 2016
Return-Path: <gcc-bugs-return-534932-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 124682 invoked by alias); 17 Aug 2016 14:04:14 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 124661 invoked by uid 89); 17 Aug 2016 14:04:13 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 14:04:03 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/77280] program using sizeof(array) fails after adding a statement with sizeof(array)
Date: Wed, 17 Aug 2016 14:04:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: lto
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-77280-4-EpxPTNVQYO@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77280-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77280-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02268.txt.bz2
Content-length: 1363

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77280

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |INVALID

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Comment on attachment 39467
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39467
source

Pr has an undefined value the first time through the loop.

--- Comment #3 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Comment on attachment 39467
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39467
source

Pr has an undefined value the first time through the loop.

--- Comment #4 from Jonathan Wakely <redi at gcc dot gnu.org> ---
(In reply to Jorg Kewisch from comment #0)
> The attached code works correctly when 1) the two lines 
>  45       unsigned int lx = sizeof(t);
>  46       printf("lx %d\n", lx);
> are removed or 2) the line 
>  44        int a=0;
> is added.

This kind of behaviour almost always means you have a bug that is sensitive to
the exact layout of variables on the stack (as is the case here, where you are
using the garbage value of pr). It's very unlikely to be a bug in the compiler.
>From gcc-bugs-return-534933-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 14:05:41 2016
Return-Path: <gcc-bugs-return-534933-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 125907 invoked by alias); 17 Aug 2016 14:05:41 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 125891 invoked by uid 89); 17 Aug 2016 14:05:40 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 14:05:30 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug testsuite/72840] PASS->NA: 20_util/ratio/cons/cons_overflow_neg.cc
Date: Wed, 17 Aug 2016 14:05:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: testsuite
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-72840-4-B3QM3MFluw@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72840-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72840-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02269.txt.bz2
Content-length: 424

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72840

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |FIXED

--- Comment #3 from Jonathan Wakely <redi at gcc dot gnu.org> ---
Fixed
>From gcc-bugs-return-534934-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 14:10:04 2016
Return-Path: <gcc-bugs-return-534934-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 61898 invoked by alias); 17 Aug 2016 14:10:03 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 61877 invoked by uid 89); 17 Aug 2016 14:10:02 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 14:09:52 +0000
From: "tulipawn at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug gcov-profile/69004] Building t-engine on ARM fails during -fprofile-use stage
Date: Wed, 17 Aug 2016 14:10:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: gcov-profile
X-Bugzilla-Version: 5.3.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: tulipawn at gmail dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-69004-4-gRBSO0wv09@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69004-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69004-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02270.txt.bz2
Content-length: 188

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69004

--- Comment #35 from PeteVine <tulipawn at gmail dot com> ---
Probably not the first time something managed to slip past `gcov_exit`?
>From gcc-bugs-return-534935-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 14:40:54 2016
Return-Path: <gcc-bugs-return-534935-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 69198 invoked by alias); 17 Aug 2016 14:40:53 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 69188 invoked by uid 89); 17 Aug 2016 14:40:52 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy\x0f, zeros
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 14:40:42 +0000
From: "mwahab at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77281] New: [ARM] Wrong code generated for move of constant vector with mix of signed and unsigned zeros
Date: Wed, 17 Aug 2016 14:40:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mwahab at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77281-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02271.txt.bz2
Content-length: 923

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77281

            Bug ID: 77281
           Summary: [ARM] Wrong code generated for move of constant vector
                    with mix of signed and unsigned zeros
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: target
          Assignee: unassigned at gcc dot gnu.org
          Reporter: mwahab at gcc dot gnu.org
  Target Milestone: ---

Test gcc.c-torture/execute/ieee/pr72824-2.c fails for arm targets because the
code generated to move a vector of signed and unsigned zeros treats it as a
vector of unsigned zeros.

That is, an assignment x = { 0.f, -0.f, 0.f, -0.f } is treated as the
assignment x = { 0.f, 0.f, 0.f, 0.f }. 

This is due to config/arm/arm.c/neon_valid_immediate using real_equal to
compare the vector elements.

Seen on trunk and gcc-6.
>From gcc-bugs-return-534936-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 14:43:24 2016
Return-Path: <gcc-bugs-return-534936-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 126068 invoked by alias); 17 Aug 2016 14:43:23 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 126059 invoked by uid 89); 17 Aug 2016 14:43:23 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 14:43:13 +0000
From: "mwahab at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77281] [ARM] Wrong code generated for move of constant vector with mix of signed and unsigned zeros
Date: Wed, 17 Aug 2016 14:43:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mwahab at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cf_gcctarget
Message-ID: <bug-77281-4-4gy5EWJOWL@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77281-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77281-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02272.txt.bz2
Content-length: 373

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77281

mwahab at gcc dot gnu.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Target|                            |arm

--- Comment #1 from mwahab at gcc dot gnu.org ---
I think I've got a fix and I'm testing it now.
>From gcc-bugs-return-534937-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 14:47:24 2016
Return-Path: <gcc-bugs-return-534937-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 7918 invoked by alias); 17 Aug 2016 14:47:24 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 7491 invoked by uid 89); 17 Aug 2016 14:47:23 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 14:47:13 +0000
From: "mwahab at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/72824] [5/6 Regression] Signed floating point zero semantics broken at optimization level -O3 (tree-loop-distribute-patterns)
Date: Wed, 17 Aug 2016 14:47:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mwahab at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72824-4-UTS5RqUcrR@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72824-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72824-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02273.txt.bz2
Content-length: 407

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72824

--- Comment #12 from mwahab at gcc dot gnu.org ---
(In reply to mwahab from comment #11)
> The new test-case gcc.c-torture/execute/ieee/pr72824-2.c is failing for
> arm-none-linux-gnueabihf with gcc-6 and trunk.
> 
> I'm still looking into why.
> Matthew

This is a bug in the arm backend. I've opened PR target/77281 and I'm testing a
fix.
Matthew
>From gcc-bugs-return-534938-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 15:02:00 2016
Return-Path: <gcc-bugs-return-534938-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 120799 invoked by alias); 17 Aug 2016 15:01:59 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 120788 invoked by uid 89); 17 Aug 2016 15:01:59 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 15:01:49 +0000
From: "manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/77280] program using sizeof(array) fails after adding a statement with sizeof(array)
Date: Wed, 17 Aug 2016 15:01:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: lto
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: manu at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-77280-4-Qd5MzYypwt@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77280-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77280-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02274.txt.bz2
Content-length: 529

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77280

Manuel López-Ibáñez <manu at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |manu at gcc dot gnu.org

--- Comment #5 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
And we do not warn because of PR18501, which ends up assuming that pr is
initialized to 5 (with optimization).
>From gcc-bugs-return-534939-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 15:32:28 2016
Return-Path: <gcc-bugs-return-534939-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 10957 invoked by alias); 17 Aug 2016 15:32:28 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 10246 invoked by uid 89); 17 Aug 2016 15:32:27 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 15:32:17 +0000
From: "alahay01 at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71752] [7 Regression] ICE in compute_live_loop_exits, at tree-ssa-loop-manip.c:229 w/ -O1 -ftree-vectorize
Date: Wed, 17 Aug 2016 15:32:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: alahay01 at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: alahay01 at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71752-4-KJ1mUrpgo7@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71752-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71752-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02275.txt.bz2
Content-length: 741

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71752

--- Comment #4 from alahay01 at gcc dot gnu.org ---
Author: alahay01
Date: Wed Aug 17 15:31:44 2016
New Revision: 239542

URL: https://gcc.gnu.org/viewcvs?rev=239542&root=gcc&view=rev
Log:
2015-08-17  Alan Hayward <alan.hayward@arm.com>

        PR tree-optimization/71752
        * tree-vect-loop.c (vectorizable_reduction): Keep SLP operand ordering.
        * tree-vect-slp.c (vect_get_slp_defs): Handle null operands.

        PR tree-optimization/71752
        * gcc.dg/vect/pr71752.c: New


Added:
    trunk/gcc/testsuite/gcc.dg/vect/pr71752.c
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/tree-vect-loop.c
    trunk/gcc/tree-vect-slp.c
>From gcc-bugs-return-534940-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 15:34:46 2016
Return-Path: <gcc-bugs-return-534940-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 56496 invoked by alias); 17 Aug 2016 15:34:45 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 56480 invoked by uid 89); 17 Aug 2016 15:34:44 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:467
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 15:34:34 +0000
From: "alahay01 at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71752] [7 Regression] ICE in compute_live_loop_exits, at tree-ssa-loop-manip.c:229 w/ -O1 -ftree-vectorize
Date: Wed, 17 Aug 2016 15:34:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: alahay01 at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: alahay01 at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-71752-4-1IxjNDXBg1@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71752-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71752-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02276.txt.bz2
Content-length: 437

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71752

alahay01 at gcc dot gnu.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #5 from alahay01 at gcc dot gnu.org ---
Use the correct operands when SLP vectorising.
>From gcc-bugs-return-534941-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 16:22:50 2016
Return-Path: <gcc-bugs-return-534941-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 125312 invoked by alias); 17 Aug 2016 16:22:50 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 125299 invoked by uid 89); 17 Aug 2016 16:22:49 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 16:22:39 +0000
From: "joseph at codesourcery dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/71514] ICE on C11 code with atomic exchange at -O1 and above on x86_64-linux-gnu: in copy_reference_ops_from_ref, at tree-ssa-sccvn.c:879
Date: Wed, 17 Aug 2016 16:22:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: joseph at codesourcery dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71514-4-jYkONrBUyc@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71514-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71514-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02277.txt.bz2
Content-length: 319

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71514

--- Comment #12 from joseph at codesourcery dot com <joseph at codesourcery dot com> ---
On Wed, 17 Aug 2016, mpolacek at gcc dot gnu.org wrote:

> Is it ok if I change the C FE to reject pointer-to-VLA and pointer-to-function
> arguments for __atomic_*?

Yes.
>From gcc-bugs-return-534942-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 16:31:25 2016
Return-Path: <gcc-bugs-return-534942-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 15085 invoked by alias); 17 Aug 2016 16:31:24 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 15075 invoked by uid 89); 17 Aug 2016 16:31:24 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 16:31:14 +0000
From: "mpolacek at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/71514] ICE on C11 code with atomic exchange at -O1 and above on x86_64-linux-gnu: in copy_reference_ops_from_ref, at tree-ssa-sccvn.c:879
Date: Wed, 17 Aug 2016 16:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mpolacek at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: mpolacek at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status assigned_to
Message-ID: <bug-71514-4-oOVh5lJYvc@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71514-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71514-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02278.txt.bz2
Content-length: 475

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71514

Marek Polacek <mpolacek at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED
           Assignee|unassigned at gcc dot gnu.org      |mpolacek at gcc dot gnu.org

--- Comment #13 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
Ok, testing a patch.
>From gcc-bugs-return-534943-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 16:35:53 2016
Return-Path: <gcc-bugs-return-534943-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 17298 invoked by alias); 17 Aug 2016 16:35:53 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 17282 invoked by uid 89); 17 Aug 2016 16:35:52 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 16:35:42 +0000
From: "msebor at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/57536] Inconsistent behavior of strlen inline and unroll
Date: Wed, 17 Aug 2016 16:35:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: msebor at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc everconfirmed cf_known_to_fail
Message-ID: <bug-57536-4-s53ZawECr6@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-57536-4@http.gcc.gnu.org/bugzilla/>
References: <bug-57536-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02279.txt.bz2
Content-length: 654

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57536

Martin Sebor <msebor at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-17
                 CC|                            |msebor at gcc dot gnu.org
     Ever confirmed|0                           |1
      Known to fail|                            |4.9.3, 5.3.0, 6.1.0, 7.0

--- Comment #3 from Martin Sebor <msebor at gcc dot gnu.org> ---
Confirmed in the duplicate bug 77276.
>From gcc-bugs-return-534944-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 16:37:13 2016
Return-Path: <gcc-bugs-return-534944-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 19249 invoked by alias); 17 Aug 2016 16:37:13 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 19240 invoked by uid 89); 17 Aug 2016 16:37:12 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 16:37:02 +0000
From: "msebor at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77276] strlen expanded inline with -Os, emits larger code than with -O2
Date: Wed, 17 Aug 2016 16:37:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: msebor at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: DUPLICATE
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-77276-4-xLMmoLpl0d@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77276-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77276-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02280.txt.bz2
Content-length: 516

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77276

Martin Sebor <msebor at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |DUPLICATE

--- Comment #1 from Martin Sebor <msebor at gcc dot gnu.org> ---
Resolving as a dupe of bug 57536.

*** This bug has been marked as a duplicate of bug 57536 ***
>From gcc-bugs-return-534945-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 16:37:34 2016
Return-Path: <gcc-bugs-return-534945-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 19982 invoked by alias); 17 Aug 2016 16:37:34 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 19973 invoked by uid 89); 17 Aug 2016 16:37:33 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 16:37:23 +0000
From: "msebor at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/57536] Inconsistent behavior of strlen inline and unroll
Date: Wed, 17 Aug 2016 16:37:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: msebor at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-57536-4-HFGRXBDSl1@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-57536-4@http.gcc.gnu.org/bugzilla/>
References: <bug-57536-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02281.txt.bz2
Content-length: 181

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57536

--- Comment #4 from Martin Sebor <msebor at gcc dot gnu.org> ---
*** Bug 77276 has been marked as a duplicate of this bug. ***
>From gcc-bugs-return-534946-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 17:40:08 2016
Return-Path: <gcc-bugs-return-534946-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 15279 invoked by alias); 17 Aug 2016 17:40:08 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 15186 invoked by uid 89); 17 Aug 2016 17:40:07 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=flexible
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 17:39:57 +0000
From: "msebor at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72775] [6/7 Regression] internal compiler error: in finish_expr_stmt, at cp/semantics.c:677
Date: Wed, 17 Aug 2016 17:40:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: msebor at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72775-4-72Ph0eWcmC@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72775-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72775-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02282.txt.bz2
Content-length: 458

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72775

--- Comment #5 from Martin Sebor <msebor at gcc dot gnu.org> ---
Would it be possible to take the size of the in-class initialized flexible
array member into account when computing the size of the object to allocate? 
That way the example in comment #0 could be accepted and handled correctly but
one where the flexible array member were initialized in a ctor-initializer list
could be rejected.
>From gcc-bugs-return-534947-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 18:09:04 2016
Return-Path: <gcc-bugs-return-534947-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 103812 invoked by alias); 17 Aug 2016 18:09:03 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 103799 invoked by uid 89); 17 Aug 2016 18:09:03 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=emails
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 18:08:52 +0000
From: "seurer at linux dot vnet.ibm.com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/77282] New: [7 regression] test case gcc.dg/autopar/pr46193.c fails starting with r239414
Date: Wed, 17 Aug 2016 18:09:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: seurer at linux dot vnet.ibm.com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77282-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02283.txt.bz2
Content-length: 737

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77282

            Bug ID: 77282
           Summary: [7 regression] test case gcc.dg/autopar/pr46193.c
                    fails starting with r239414
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: tree-optimization
          Assignee: unassigned at gcc dot gnu.org
          Reporter: seurer at linux dot vnet.ibm.com
  Target Milestone: ---

PASS: gcc.dg/autopar/pr46193.c (test for excess errors)
FAIL: gcc.dg/autopar/pr46193.c scan-tree-dump-times parloops2 "parallelizing
inner loop" 2

>From the test results emails this is failing across multiple systems (power,
x86, arm, ...)
>From gcc-bugs-return-534949-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 19:09:27 2016
Return-Path: <gcc-bugs-return-534949-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 14234 invoked by alias); 17 Aug 2016 19:09:27 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 13616 invoked by uid 89); 17 Aug 2016 19:09:26 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 19:09:22 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/67496] trans-array.c sanitizer runtime error: load of value 124, which is not a valid value for type 'bool'
Date: Wed, 17 Aug 2016 19:09:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: minor
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-67496-4-4BoByNmnVV@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67496-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67496-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02285.txt.bz2
Content-length: 646

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67496

--- Comment #13 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Author: jakub
Date: Wed Aug 17 19:08:49 2016
New Revision: 239544

URL: https://gcc.gnu.org/viewcvs?rev=239544&root=gcc&view=rev
Log:
        PR fortran/67496
        * trans-array.c (trans_array_constructor): Load
        expr->ts.u.cl->length_from_typespec only if expr->ts.type is
        BT_CHARACTER.

        * gfortran.dg/pr67496.f90: New test.

Added:
    trunk/gcc/testsuite/gfortran.dg/pr67496.f90
Modified:
    trunk/gcc/fortran/ChangeLog
    trunk/gcc/fortran/trans-array.c
    trunk/gcc/testsuite/ChangeLog
>From gcc-bugs-return-534948-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 19:09:05 2016
Return-Path: <gcc-bugs-return-534948-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 12854 invoked by alias); 17 Aug 2016 19:09:05 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 12844 invoked by uid 89); 17 Aug 2016 19:09:04 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 19:08:54 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug driver/70132] ARM -mcpu=native can cause a double free abort.
Date: Wed, 17 Aug 2016 19:09:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: driver
X-Bugzilla-Version: 4.9.2
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: ktkachov at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 4.9.4
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-70132-4-IEL8v4mJ3U@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70132-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70132-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02284.txt.bz2
Content-length: 300

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70132

--- Comment #15 from Jonathan Wakely <redi at gcc dot gnu.org> ---
(In reply to Jeffrey Walton from comment #14)
> Bump... I don't think this has made it into Debian's 4.9.2-10.

Bumping this won't help if the Debian packagers aren't reading it.
>From gcc-bugs-return-534950-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 19:10:59 2016
Return-Path: <gcc-bugs-return-534950-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 16174 invoked by alias); 17 Aug 2016 19:10:59 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 16160 invoked by uid 89); 17 Aug 2016 19:10:58 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-1.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00,CLAIM_SUBJECT autolearn=no version=3.3.2 spammy=claim
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 19:10:48 +0000
From: "manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/67079] Webpages and manual still claim that C++11 support is experimental
Date: Wed, 17 Aug 2016 19:10:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: manu at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-67079-4-ru4UNTgBcS@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67079-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67079-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02286.txt.bz2
Content-length: 474

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67079

Manuel López-Ibáñez <manu at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |FIXED

--- Comment #1 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
This got fixed.
>From gcc-bugs-return-534951-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 19:28:49 2016
Return-Path: <gcc-bugs-return-534951-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 46100 invoked by alias); 17 Aug 2016 19:28:49 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 45407 invoked by uid 89); 17 Aug 2016 19:28:48 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy 160723, 2016-07-23, wrt, 2016817
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 19:28:38 +0000
From: "manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/66290] wrong location for -Wunused-macros
Date: Wed, 17 Aug 2016 19:28:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: manu at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cf_reconfirmed_on cc version
Message-ID: <bug-66290-4-RBXEd0oC56@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-66290-4@http.gcc.gnu.org/bugzilla/>
References: <bug-66290-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02287.txt.bz2
Content-length: 765

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66290

Manuel López-Ibáñez <manu at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Last reconfirmed|2016-07-23 00:00:00         |2016-8-17
                 CC|                            |dmalcolm at gcc dot gnu.org
            Version|unknown                     |7.0

--- Comment #2 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
I don't care much about this particular warning, but either we do not print a
caret line when the column is zero or we print it at column 1. But the current
behavior is broken and a regression w.r.t. how it was working in 4.9.
>From gcc-bugs-return-534952-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 20:00:51 2016
Return-Path: <gcc-bugs-return-534952-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 16961 invoked by alias); 17 Aug 2016 20:00:51 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 16910 invoked by uid 89); 17 Aug 2016 20:00:50 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 20:00:40 +0000
From: "amker at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/72817] [7 Regression] wrong code at -O3 on x86_64-linux-gnu (in both 32-bit and 64-bit modes)
Date: Wed, 17 Aug 2016 20:00:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: amker at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: amker at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72817-4-VeCX5VwLmq@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72817-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72817-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02288.txt.bz2
Content-length: 1317

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72817

--- Comment #7 from amker at gcc dot gnu.org ---
(In reply to Bill Seurer from comment #5)
> The new test case pr72817.c hangs on powerpc both BE and LE
> 
> Executing on host: /home/seurer/gcc/build/gcc-trunk/gcc/xgcc
> -B/home/seurer/gcc/build/gcc-trunk/gcc/
> /home/seurer/gcc/gcc-trunk/gcc/testsuite/gcc.dg/tree-ssa/pr72817.c 
> -fno-diagnostics-show-caret -fdiagnostics-color=never   -O3  -lm    -o
> ./pr72817.exe    (timeout = 300)
> spawn /home/seurer/gcc/build/gcc-trunk/gcc/xgcc
> -B/home/seurer/gcc/build/gcc-trunk/gcc/
> /home/seurer/gcc/gcc-trunk/gcc/testsuite/gcc.dg/tree-ssa/pr72817.c
> -fno-diagnostics-show-caret -fdiagnostics-color=never -O3 -lm -o
> ./pr72817.exe
> PASS: gcc.dg/tree-ssa/pr72817.c (test for excess errors)
> Setting LD_LIBRARY_PATH to
> :/home/seurer/gcc/build/gcc-trunk/gcc::/home/seurer/gcc/build/gcc-trunk/gcc:/
> home/wschmidt/gcc/install/gcc-5_1/lib64
> spawn [open ...]
> WARNING: program timed out.
> FAIL: gcc.dg/tree-ssa/pr72817.c execution test
> testcase
> /home/seurer/gcc/gcc-trunk/gcc/testsuite/gcc.dg/tree-ssa/tree-ssa.exp
> completed in 301 seconds

Thanks for reporting.
This may indicate something is still wrong in NE_EXPR analysis.  I am OoO right
now and will look into this once I get back.
>From gcc-bugs-return-534953-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 20:05:03 2016
Return-Path: <gcc-bugs-return-534953-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 23848 invoked by alias); 17 Aug 2016 20:05:02 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 23838 invoked by uid 89); 17 Aug 2016 20:05:02 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy, 083, 0102, l62
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 20:04:52 +0000
From: "bergner at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/77283] New: Revision 238005 disables loop unrolling
Date: Wed, 17 Aug 2016 20:05:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: bergner at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77283-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02289.txt.bz2
Content-length: 3464

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77283

            Bug ID: 77283
           Summary: Revision 238005 disables loop unrolling
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: tree-optimization
          Assignee: unassigned at gcc dot gnu.org
          Reporter: bergner at gcc dot gnu.org
  Target Milestone: ---

Revision 238005 (richi's fix to path splitting to handle empty else blocks)
disables loop unrolling for the test case below (extracted from one of our
benchmarks) leading to a performance regression.

bergner@genoa:~/gcc/BUGS/$ cat foo.c 
void
foo (double *x, double *a, double *b, long n, double limit)
{
  long i;
  for (i=0; i < n; i++)
    if (a[i] < limit)
      x[i] = b[i];
}
bergner@genoa:~/gcc/BUGS/$
/home/bergner/gcc/build/gcc-fsf-mainline-r238005/gcc/xgcc
-B/home/bergner/gcc/build/gcc-fsf-mainline-r238005/gcc -O3 -funroll-loops -S
foo.c 
bergner@genoa:~/gcc/BUGS/$ cat foo.s 

foo:
        cmpdi 0,6,0
        ble 0,.L1
        sldi 6,6,3
        li 9,0
        .p2align 4,,15
.L3:
        lfdx 0,4,9
        fcmpu 7,0,1
        bnl 7,.L8
        lfdx 2,5,9
        stfdx 2,3,9
        addi 9,9,8
        cmpld 5,9,6
        bne 5,.L3
.L1:
        blr
        .p2align 4,,15
.L8:
        addi 9,9,8
        cmpld 1,9,6
        bne 1,.L3
        blr


bergner@genoa:~/gcc/BUGS/$
/home/bergner/gcc/build/gcc-fsf-mainline-r238004/gcc/xgcc
-B/home/bergner/gcc/build/gcc-fsf-mainline-r238004/gcc -O3 -funroll-loops -S
foo.c 
bergner@genoa:~/gcc/BUGS/$ cat foo.s

foo:
        cmpdi 0,6,0
        ble 0,.L1
        lfd 0,0(4)
        sldi 6,6,3
        addi 8,6,-8
        srdi 0,8,3
        rldicl 10,0,0,61
        fcmpu 7,0,1
        blt 7,.L8
.L59:
        li 9,8
        cmpld 1,9,6
        beq 1,.L1
        cmpdi 5,10,0
        beq 5,.L30
        cmpdi 6,10,1
        beq 6,.L46
        cmpdi 0,10,2
        beq 0,.L47
        cmpdi 7,10,3
        beq 7,.L48
        cmpdi 1,10,4
        beq 1,.L49
        cmpdi 5,10,5
        beq 5,.L50
        cmpdi 6,10,6
        beq 6,.L51
        lfdx 3,4,9
        fcmpu 0,3,1
        bnl 0,.L61
        lfdx 4,5,9
        stfdx 4,3,9
.L61:
        addi 9,9,8
.L51:
        lfdx 5,4,9
        fcmpu 7,5,1
        bnl 7,.L62
        lfdx 6,5,9
        stfdx 6,3,9
.L62:
        addi 9,9,8
.L50:
        lfdx 7,4,9
        fcmpu 1,7,1
        bnl 1,.L63
        lfdx 8,5,9
        stfdx 8,3,9
[snip]


An executable version of the test case above is:

bergner@genoa:~/gcc/BUGS/LTC144447$ cat loop.c 
#define SIZE 1024*1000

void
__attribute__ ((noinline))
foo (double *x, double *a, double *b, long n, double limit)
{
  long i;
  for (i=0; i < n; i++)
    if (a[i] < limit)
      x[i] = b[i];
}

double x[SIZE], a[SIZE], b[SIZE];

int
main (void)
{
  long i;
  for (i=0; i < 3000; i++)
    foo (x, a, b, SIZE, 1.0);
  return 0;
}

bergner@genoa:~/gcc/BUGS/$
/home/bergner/gcc/build/gcc-fsf-mainline-r238004/gcc/xgcc
-B/home/bergner/gcc/build/gcc-fsf-mainline-r238004/gcc -O3 -funroll-loops
loop.c 
bergner@genoa:~/gcc/BUGS/$ time ./a.out 

real    0m3.729s
user    0m3.690s
sys     0m0.021s

bergner@genoa:~/gcc/BUGS/$
/home/bergner/gcc/build/gcc-fsf-mainline-r238005/gcc/xgcc
-B/home/bergner/gcc/build/gcc-fsf-mainline-r238005/gcc -O3 -funroll-loops
loop.c 
bergner@genoa:~/gcc/BUGS/$ time ./a.out 

real    0m6.939s
user    0m6.851s
sys     0m0.040s
>From gcc-bugs-return-534954-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 20:10:27 2016
Return-Path: <gcc-bugs-return-534954-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 34705 invoked by alias); 17 Aug 2016 20:10:22 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 34340 invoked by uid 89); 17 Aug 2016 20:10:19 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 20:10:09 +0000
From: "bergner at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/77283] Revision 238005 disables loop unrolling
Date: Wed, 17 Aug 2016 20:10:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: bergner at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-77283-4-gJGnftwWr4@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77283-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77283-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02290.txt.bz2
Content-length: 723

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77283

Peter Bergner <bergner at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |dje at gcc dot gnu.org,
                   |                            |rguenth at gcc dot gnu.org,
                   |                            |wschmidt at gcc dot gnu.org

--- Comment #1 from Peter Bergner <bergner at gcc dot gnu.org> ---
This was tested on powerpc64le-linux, but given the patch that caused this is
target independent, I'm guessing this affects other targets as well.  I haven't
confirmed that yet though.
>From gcc-bugs-return-534955-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 20:18:15 2016
Return-Path: <gcc-bugs-return-534955-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 69536 invoked by alias); 17 Aug 2016 20:18:14 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 69497 invoked by uid 89); 17 Aug 2016 20:18:14 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 20:18:03 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/72817] [7 Regression] wrong code at -O3 on x86_64-linux-gnu (in both 32-bit and 64-bit modes)
Date: Wed, 17 Aug 2016 20:18:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: amker at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72817-4-AinrSFArzL@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72817-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72817-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02291.txt.bz2
Content-length: 404

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72817

--- Comment #8 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
(In reply to amker from comment #7)
> Thanks for reporting.
> This may indicate something is still wrong in NE_EXPR analysis.  I am OoO
> right now and will look into this once I get back.

This has been an signed vs. unsigned char issue, see #c6.  I believe it should
be fixed now.
>From gcc-bugs-return-534956-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 20:19:45 2016
Return-Path: <gcc-bugs-return-534956-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 71147 invoked by alias); 17 Aug 2016 20:19:45 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 71136 invoked by uid 89); 17 Aug 2016 20:19:44 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 20:19:34 +0000
From: "bergner at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/77283] Revision 238005 disables loop unrolling
Date: Wed, 17 Aug 2016 20:19:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: bergner at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77283-4-kC3IwERd1n@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77283-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77283-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02292.txt.bz2
Content-length: 247

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77283

--- Comment #2 from Peter Bergner <bergner at gcc dot gnu.org> ---
For documentation purposes, the upstream patch that caused this is:

https://gcc.gnu.org/ml/gcc-patches/2016-07/msg00189.html
>From gcc-bugs-return-534957-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 20:22:26 2016
Return-Path: <gcc-bugs-return-534957-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 107267 invoked by alias); 17 Aug 2016 20:22:25 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 107253 invoked by uid 89); 17 Aug 2016 20:22:24 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 20:22:14 +0000
From: "seurer at linux dot vnet.ibm.com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/72817] [7 Regression] wrong code at -O3 on x86_64-linux-gnu (in both 32-bit and 64-bit modes)
Date: Wed, 17 Aug 2016 20:22:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: seurer at linux dot vnet.ibm.com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: amker at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72817-4-8xl64uFXUD@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72817-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72817-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02293.txt.bz2
Content-length: 207

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72817

--- Comment #9 from Bill Seurer <seurer at linux dot vnet.ibm.com> ---
I just ran a check and it is working now on powerpc.  Thanks for the quick fix!
>From gcc-bugs-return-534958-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 21:24:46 2016
Return-Path: <gcc-bugs-return-534958-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 115303 invoked by alias); 17 Aug 2016 21:24:45 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 115290 invoked by uid 89); 17 Aug 2016 21:24:45 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 21:24:35 +0000
From: "su at cs dot ucdavis.edu" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77284] New: ICE on valid C++11 code using initializer list: in potential_constant_expression_1, at cp/constexpr.c:5480
Date: Wed, 17 Aug 2016 21:24:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: su at cs dot ucdavis.edu
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77284-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02294.txt.bz2
Content-length: 3670

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77284

            Bug ID: 77284
           Summary: ICE on valid C++11 code using initializer list: in
                    potential_constant_expression_1, at
                    cp/constexpr.c:5480
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: su at cs dot ucdavis.edu
  Target Milestone: ---

It also affects 6.x and 5.x, and is a regression from 4.9.x. 


$ g++-trunk -v
Using built-in specs.
COLLECT_GCC=g++-trunk
COLLECT_LTO_WRAPPER=/usr/local/gcc-trunk/libexec/gcc/x86_64-pc-linux-gnu/7.0.0/lto-wrapper
Target: x86_64-pc-linux-gnu
Configured with: ../gcc-source-trunk/configure --enable-languages=c,c++,lto
--prefix=/usr/local/gcc-trunk --disable-bootstrap
Thread model: posix
gcc version 7.0.0 20160817 (experimental) [trunk revision 239527] (GCC)
$
$ g++-4.9 -std=c++11 -c small.cpp
$ clang++-3.8 -std=c++11 -c small.cpp
$ 
$ g++-trunk -std=c++11 -c small.cpp
small.cpp: In function ‘void foo(A&)’:
small.cpp:10:18: sorry, unimplemented: unexpected AST of kind cleanup_stmt
   for (A a : { v }) {};
                  ^
small.cpp:10:18: internal compiler error: in potential_constant_expression_1,
at cp/constexpr.c:5480
0x8bf447 potential_constant_expression_1
        ../../gcc-source-trunk/gcc/cp/constexpr.c:5480
0x8bf317 potential_constant_expression_1
        ../../gcc-source-trunk/gcc/cp/constexpr.c:5039
0x8be601 potential_constant_expression_1
        ../../gcc-source-trunk/gcc/cp/constexpr.c:5399
0x8bef10 potential_constant_expression_1
        ../../gcc-source-trunk/gcc/cp/constexpr.c:5281
0x8c0050 potential_static_init_expression
        ../../gcc-source-trunk/gcc/cp/constexpr.c:5497
0x8c0050 potential_nondependent_static_init_expression(tree_node*)
        ../../gcc-source-trunk/gcc/cp/constexpr.c:5545
0x8c1579 maybe_constant_init(tree_node*, tree_node*)
        ../../gcc-source-trunk/gcc/cp/constexpr.c:4704
0x67f83b set_up_extended_ref_temp
        ../../gcc-source-trunk/gcc/cp/call.c:9965
0x67f83b extend_ref_init_temps_1
        ../../gcc-source-trunk/gcc/cp/call.c:10123
0x7314b0 store_init_value(tree_node*, tree_node*, vec<tree_node*, va_gc,
vl_embed>**, int)
        ../../gcc-source-trunk/gcc/cp/typeck2.c:799
0x68cb8c check_initializer
        ../../gcc-source-trunk/gcc/cp/decl.c:6230
0x6b732d cp_finish_decl(tree_node*, tree_node*, bool, tree_node*, int)
        ../../gcc-source-trunk/gcc/cp/decl.c:6888
0x78dd82 cp_convert_range_for(tree_node*, tree_node*, tree_node*, bool)
        ../../gcc-source-trunk/gcc/cp/parser.c:11449
0x7be0d0 cp_parser_range_for
        ../../gcc-source-trunk/gcc/cp/parser.c:11333
0x7be0d0 cp_parser_for
        ../../gcc-source-trunk/gcc/cp/parser.c:11234
0x7be0d0 cp_parser_iteration_statement
        ../../gcc-source-trunk/gcc/cp/parser.c:11733
0x7b3d99 cp_parser_statement
        ../../gcc-source-trunk/gcc/cp/parser.c:10446
0x7b533c cp_parser_statement_seq_opt
        ../../gcc-source-trunk/gcc/cp/parser.c:10857
0x7b542f cp_parser_compound_statement
        ../../gcc-source-trunk/gcc/cp/parser.c:10811
0x7b55df cp_parser_function_body
        ../../gcc-source-trunk/gcc/cp/parser.c:20830
Please submit a full bug report,
with preprocessed source if appropriate.
Please include the complete backtrace with any bug report.
See <http://gcc.gnu.org/bugs.html> for instructions.
$


---------------------------------


#include <initializer_list>

struct A
{ 
  ~A () {}
};

void foo (A & v)
{ 
  for (A a : { v }) {};
}
>From gcc-bugs-return-534960-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 22:34:49 2016
Return-Path: <gcc-bugs-return-534960-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 48275 invoked by alias); 17 Aug 2016 22:34:49 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 48262 invoked by uid 89); 17 Aug 2016 22:34:48 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 22:34:38 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug driver/69540] add a short info on .so priority in -l
Date: Wed, 17 Aug 2016 22:34:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: driver
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: documentation
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: DUPLICATE
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-69540-4-G9ZC88y16r@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69540-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69540-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02296.txt.bz2
Content-length: 504

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69540

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |DUPLICATE

--- Comment #3 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Dup of bug 50250.

*** This bug has been marked as a duplicate of bug 50250 ***
>From gcc-bugs-return-534961-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 22:34:59 2016
Return-Path: <gcc-bugs-return-534961-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 48974 invoked by alias); 17 Aug 2016 22:34:59 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 48960 invoked by uid 89); 17 Aug 2016 22:34:58 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 22:34:48 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug driver/50250] Driver documentation on -l does not mention shared libraries
Date: Wed, 17 Aug 2016 22:34:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: driver
X-Bugzilla-Version: 4.7.0
X-Bugzilla-Keywords: documentation
X-Bugzilla-Severity: minor
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-50250-4-9UnK7OQ2jR@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-50250-4@http.gcc.gnu.org/bugzilla/>
References: <bug-50250-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02297.txt.bz2
Content-length: 652

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=50250

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |payerle at umd dot edu
                 CC|                            |arkadiusz at drabczyk dot org

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
*** Bug 77275 has been marked as a duplicate of this bug. ***

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
*** Bug 69540 has been marked as a duplicate of this bug. ***
>From gcc-bugs-return-534959-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 22:34:28 2016
Return-Path: <gcc-bugs-return-534959-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 47541 invoked by alias); 17 Aug 2016 22:34:28 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 47528 invoked by uid 89); 17 Aug 2016 22:34:27 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 22:34:17 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug driver/77275] Description of -l option refers only to static libraries, not dynamic/shared libraries
Date: Wed, 17 Aug 2016 22:34:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: driver
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: documentation
X-Bugzilla-Severity: trivial
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: DUPLICATE
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-77275-4-rdBWAppPNV@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77275-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77275-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02295.txt.bz2
Content-length: 504

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77275

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |DUPLICATE

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Dup of bug 50250.

*** This bug has been marked as a duplicate of bug 50250 ***
>From gcc-bugs-return-534963-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 22:35:51 2016
Return-Path: <gcc-bugs-return-534963-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 50851 invoked by alias); 17 Aug 2016 22:35:51 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 50839 invoked by uid 89); 17 Aug 2016 22:35:50 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 22:35:40 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug driver/50250] Driver documentation on -l does not mention shared libraries
Date: Wed, 17 Aug 2016 22:35:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: driver
X-Bugzilla-Version: 4.7.0
X-Bugzilla-Keywords: documentation
X-Bugzilla-Severity: minor
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc bug_status cf_reconfirmed_on see_also everconfirmed
Message-ID: <bug-50250-4-7uNwH65EYO@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-50250-4@http.gcc.gnu.org/bugzilla/>
References: <bug-50250-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02299.txt.bz2
Content-length: 1225

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=50250

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |payerle at umd dot edu
                 CC|                            |arkadiusz at drabczyk dot org
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-17
           See Also|                            |https://bugzilla.novell.com
                   |                            |/show_bug.cgi?id=674696
     Ever confirmed|0                           |1

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
*** Bug 77275 has been marked as a duplicate of this bug. ***

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
*** Bug 69540 has been marked as a duplicate of this bug. ***

--- Comment #3 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Confirmed.

Really this documentation should just point to ld's documentation on your
system since -l is passed directly without any change.  As it is also incorrect
for windows systems.
>From gcc-bugs-return-534962-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 22:35:10 2016
Return-Path: <gcc-bugs-return-534962-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 49742 invoked by alias); 17 Aug 2016 22:35:10 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 49714 invoked by uid 89); 17 Aug 2016 22:35:09 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 22:34:59 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug driver/50250] Driver documentation on -l does not mention shared libraries
Date: Wed, 17 Aug 2016 22:35:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: driver
X-Bugzilla-Version: 4.7.0
X-Bugzilla-Keywords: documentation
X-Bugzilla-Severity: minor
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-50250-4-IQnkgAwCxT@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-50250-4@http.gcc.gnu.org/bugzilla/>
References: <bug-50250-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02298.txt.bz2
Content-length: 652

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=50250

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |payerle at umd dot edu
                 CC|                            |arkadiusz at drabczyk dot org

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
*** Bug 77275 has been marked as a duplicate of this bug. ***

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
*** Bug 69540 has been marked as a duplicate of this bug. ***
>From gcc-bugs-return-534964-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 22:42:59 2016
Return-Path: <gcc-bugs-return-534964-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 58220 invoked by alias); 17 Aug 2016 22:42:59 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 58211 invoked by uid 89); 17 Aug 2016 22:42:58 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 22:42:48 +0000
From: "amodra at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/72771] [6/7 Regression] powerpc64le ICE with -mcpu=power9
Date: Wed, 17 Aug 2016 22:42:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: amodra at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: amodra at gmail dot com
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72771-4-XpUXC6PVq5@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72771-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72771-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02300.txt.bz2
Content-length: 900

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72771

--- Comment #8 from Alan Modra <amodra at gcc dot gnu.org> ---
Author: amodra
Date: Wed Aug 17 22:41:22 2016
New Revision: 239549

URL: https://gcc.gnu.org/viewcvs?rev=239549&root=gcc&view=rev
Log:
[RELOAD] Don't assume subreg mem address is ok

This patch fixes a case where reload blindly assumes a subreg mem is
OK if its address has been partially reloaded by legitimize_reload_address.

        PR rtl-optimization/72771
        * reload.c (find_reloads): Don't assume that a subreg mem is OK
        when find_reloads_toplev returns address_reloaded==-1.
        (alternative_allows_const_pool_ref): Update comment.
testsuite/
        * gcc.c-torture/compile/pr72771.c: New.

Added:
    trunk/gcc/testsuite/gcc.c-torture/compile/pr72771.c
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/reload.c
    trunk/gcc/testsuite/ChangeLog
>From gcc-bugs-return-534965-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 17 23:41:35 2016
Return-Path: <gcc-bugs-return-534965-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 4781 invoked by alias); 17 Aug 2016 23:41:34 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 4758 invoked by uid 89); 17 Aug 2016 23:41:27 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 Aug 2016 23:41:17 +0000
From: "amodra at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/72771] [6/7 Regression] powerpc64le ICE with -mcpu=power9
Date: Wed, 17 Aug 2016 23:41:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: amodra at gmail dot com
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: amodra at gmail dot com
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-72771-4-OWXdWhC6QC@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72771-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72771-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02301.txt.bz2
Content-length: 507

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72771

Alan Modra <amodra at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #9 from Alan Modra <amodra at gmail dot com> ---
Fixed on trunk.  Will need backporting if float<QHI:mode><FP_ISA3:mode>2 is
added to gcc-6 branch.
>From gcc-bugs-return-534966-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 01:13:11 2016
Return-Path: <gcc-bugs-return-534966-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 78005 invoked by alias); 18 Aug 2016 01:13:10 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 77988 invoked by uid 89); 18 Aug 2016 01:13:09 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:1234
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 01:12:59 +0000
From: "cesar at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/70828] broken array-type subarrays inside acc data in openacc
Date: Thu, 18 Aug 2016 01:13:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: openacc, openmp
X-Bugzilla-Severity: normal
X-Bugzilla-Who: cesar at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-70828-4-bdFOa3r4fc@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70828-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70828-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02302.txt.bz2
Content-length: 1300

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70828

--- Comment #2 from cesar at gcc dot gnu.org ---
Author: cesar
Date: Thu Aug 18 01:12:15 2016
New Revision: 239554

URL: https://gcc.gnu.org/viewcvs?rev=239554&root=gcc&view=rev
Log:
        PR middle-end/70828

        gcc/
        * gimplify.c (struct gimplify_omp_ctx): Add tree clauses member.
        (new_omp_context): Initialize clauses to NULL_TREE.
        (gimplify_scan_omp_clauses): Set clauses in the gimplify_omp_ctx.
        (omp_clause_matching_array_ref): New function.
        (gomp_needs_data_present): New function.
        (gimplify_adjust_omp_clauses_1): Use preset or pointer omp clause map
        kinds when creating implicit data clauses for OpenACC offloaded
        variables defined used an acc data region as necessary. 

        libgomp/
        * testsuite/libgomp.oacc-c-c++-common/pr70828.c: New test.
        * testsuite/libgomp.oacc-fortran/pr70828.f90: New test.


Added:
   
branches/gomp-4_0-branch/libgomp/testsuite/libgomp.oacc-c-c++-common/pr70828.c
    branches/gomp-4_0-branch/libgomp/testsuite/libgomp.oacc-fortran/pr70828.f90
Modified:
    branches/gomp-4_0-branch/gcc/ChangeLog.gomp
    branches/gomp-4_0-branch/gcc/gimplify.c
    branches/gomp-4_0-branch/libgomp/ChangeLog.gomp
>From gcc-bugs-return-534967-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 06:05:11 2016
Return-Path: <gcc-bugs-return-534967-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 41543 invoked by alias); 18 Aug 2016 06:05:10 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 41287 invoked by uid 89); 18 Aug 2016 06:05:09 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy 16-08-18, 20160818
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 06:04:59 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/77283] [7 Regression] Revision 238005 disables loop unrolling
Date: Thu, 18 Aug 2016 06:05:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on target_milestone short_desc everconfirmed
Message-ID: <bug-77283-4-LWq67UaTiI@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77283-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77283-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02303.txt.bz2
Content-length: 968

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77283

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |missed-optimization
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-18
   Target Milestone|---                         |7.0
            Summary|Revision 238005 disables    |[7 Regression] Revision
                   |loop unrolling              |238005 disables loop
                   |                            |unrolling
     Ever confirmed|0                           |1

--- Comment #3 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
I noticed path splitting doing some weird stuff with loops even in GCC 6
(though I don't have a testcase right now that shows it being worse off).

Confirmed for this case.
>From gcc-bugs-return-534968-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 06:07:20 2016
Return-Path: <gcc-bugs-return-534968-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 42761 invoked by alias); 18 Aug 2016 06:07:19 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 42750 invoked by uid 89); 18 Aug 2016 06:07:18 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 06:07:08 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug other/68783] Improve verification of loop->latch in verify_loop_structure
Date: Thu, 18 Aug 2016 06:07:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: other
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-68783-4-KaJsI9pK7R@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68783-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68783-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02304.txt.bz2
Content-length: 500

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68783

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-18
     Ever confirmed|0                           |1

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
I assume this is still true.
>From gcc-bugs-return-534969-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 07:25:24 2016
Return-Path: <gcc-bugs-return-534969-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 113720 invoked by alias); 18 Aug 2016 07:25:23 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 113711 invoked by uid 89); 18 Aug 2016 07:25:23 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Lucky, ah, 5.1, minimal
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 07:25:12 +0000
From: "jan.willem.ps at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77285] New: extern thread_local linkage
Date: Thu, 18 Aug 2016 07:25:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jan.willem.ps at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77285-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02305.txt.bz2
Content-length: 1275

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77285

            Bug ID: 77285
           Summary: extern thread_local linkage
           Product: gcc
           Version: 5.1.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: jan.willem.ps at gmail dot com
  Target Milestone: ---

Minimal test case:

cat > a.h <<EOF
#pragma once
#include <string>
extern thread_local std::string gFeelingLucky;
EOF

cat > a.cpp <<EOF
#include "a.h"
thread_local std::string gFeelingLucky = "Lucky";
EOF

cat > main.cpp <<EOF
#include "a.h"
#include <iostream>

int main() {
std::cout << "I'm feeling " << gFeelingLucky << '\n';
}
EOF

c++ -std=c++11 main.cpp a.cpp -o main
Output:
/tmp/cc1AJnUy.o: In function `_ZTW13gFeelingLucky':
main.cpp:(.text._ZTW13gFeelingLucky[_ZTW13gFeelingLucky]+0x5): undefined
reference to `_ZTH13gFeelingLucky'
collect2: error: ld returned 1 exit status

I've used the docker images on dockerhub to verify:
docker run -it --rm gcc:5.1 bash

This does work on gcc 4.9.0 (docker run --rm -it gcc:4.9.0 bash), so it looks
like a regression (see bug #55800).

It also doesn't work with gcc 6.1 (docker run -it --rm gcc:6.1 bash).
>From gcc-bugs-return-534970-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 07:57:09 2016
Return-Path: <gcc-bugs-return-534970-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 16563 invoked by alias); 18 Aug 2016 07:57:09 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 16552 invoked by uid 89); 18 Aug 2016 07:57:08 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:846
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 07:56:58 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77284] [5/6/7 Regression] ICE on valid C++11 code using initializer list: in potential_constant_expression_1, at cp/constexpr.c:5480
Date: Thu, 18 Aug 2016 07:57:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc target_milestone short_desc everconfirmed
Message-ID: <bug-77284-4-13nQK8zEdx@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77284-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77284-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02306.txt.bz2
Content-length: 1112

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77284

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-18
                 CC|                            |jakub at gcc dot gnu.org,
                   |                            |jason at gcc dot gnu.org
   Target Milestone|---                         |5.5
            Summary|ICE on valid C++11 code     |[5/6/7 Regression] ICE on
                   |using initializer list: in  |valid C++11 code using
                   |potential_constant_expressi |initializer list: in
                   |on_1, at                    |potential_constant_expressi
                   |cp/constexpr.c:5480         |on_1, at
                   |                            |cp/constexpr.c:5480
     Ever confirmed|0                           |1

--- Comment #1 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Started with r218653.
>From gcc-bugs-return-534971-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 08:42:37 2016
Return-Path: <gcc-bugs-return-534971-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 117209 invoked by alias); 18 Aug 2016 08:42:36 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 117198 invoked by uid 89); 18 Aug 2016 08:42:36 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:391
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 08:42:26 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/49792] OpenMP workshare: Wrong result with array assignment
Date: Thu, 18 Aug 2016 08:42:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 4.7.0
X-Bugzilla-Keywords: openmp, wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-49792-4-HavLdgZ6C3@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-49792-4@http.gcc.gnu.org/bugzilla/>
References: <bug-49792-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02307.txt.bz2
Content-length: 420

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=49792

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #5 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
.
>From gcc-bugs-return-534973-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 08:43:40 2016
Return-Path: <gcc-bugs-return-534973-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 121007 invoked by alias); 18 Aug 2016 08:43:40 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 120985 invoked by uid 89); 18 Aug 2016 08:43:39 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 08:43:36 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/71687] ICE in omp_add_variable, at gimplify.c:5821
Date: Thu, 18 Aug 2016 08:43:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-71687-4-MtQQrzvadE@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71687-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71687-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02309.txt.bz2
Content-length: 423

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71687

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #6 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Fixed.
>From gcc-bugs-return-534972-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 08:43:08 2016
Return-Path: <gcc-bugs-return-534972-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 119991 invoked by alias); 18 Aug 2016 08:43:08 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 119977 invoked by uid 89); 18 Aug 2016 08:43:07 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy¯fect
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 08:42:57 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/77283] [7 Regression] Revision 238005 disables loop unrolling
Date: Thu, 18 Aug 2016 08:43:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-77283-4-MUXUh6Mgf2@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77283-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77283-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02308.txt.bz2
Content-length: 1314

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77283

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |law at gcc dot gnu.org

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
I don't like (and see the point of) path-splitting but the patch was to avoid a
regression with PRE code-hoisting.  The path-splitting code is incredibly
stupid
when it comes to cost modeling.  That is, it tries to expose CSE but doesn't
actually verify there is any likeliness in achieving that.  In fact, if the
block we duplicate (the latch) doesn't contain any stmts (in this case just
the IV increment) then there is _zero_ CSE possibility.  Improving
path-splitting
for this case is welcome.  Or just remove that stupid pass and wire it into
a pass that can actually (opportunistically) perform the CSE before deciding
to duplicate the tail.

Note that unrolling likely gives up because of the loop now having two latches?

Note that there was a plan to move RTL unrolling (-funroll-loops) to GIMPLE,
but that wouldn't affect fallout like SMS not being able to unroll (not sure
if that can handle conditional code at all).
>From gcc-bugs-return-534974-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 08:57:26 2016
Return-Path: <gcc-bugs-return-534974-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 44524 invoked by alias); 18 Aug 2016 08:57:25 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 44511 invoked by uid 89); 18 Aug 2016 08:57:24 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 08:57:14 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77285] [5/6/7 Regression] extern thread_local linkage
Date: Thu, 18 Aug 2016 08:57:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.1.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on cf_known_to_work short_desc everconfirmed cf_known_to_fail
Message-ID: <bug-77285-4-lXc5nim5g8@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77285-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77285-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02310.txt.bz2
Content-length: 729

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77285

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |wrong-code
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-18
      Known to work|                            |4.9.4
            Summary|extern thread_local linkage |[5/6/7 Regression] extern
                   |                            |thread_local linkage
     Ever confirmed|0                           |1
      Known to fail|                            |5.4.0, 6.1.0, 7.0
>From gcc-bugs-return-534975-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 09:00:36 2016
Return-Path: <gcc-bugs-return-534975-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 56354 invoked by alias); 18 Aug 2016 09:00:35 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 55178 invoked by uid 89); 18 Aug 2016 09:00:28 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00,KAM_ASCII_DIVIDERS autolearn=no version=3.3.2 spammy=PHIs, UD:si.phi, siphi, si.phi
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 09:00:18 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/77283] [7 Regression] Revision 238005 disables loop unrolling
Date: Thu, 18 Aug 2016 09:00:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77283-4-2KdrkXDjQ1@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77283-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77283-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02311.txt.bz2
Content-length: 3583

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77283

--- Comment #5 from Richard Biener <rguenth at gcc dot gnu.org> ---
Patch to fix the testcase, but will eventually regress the path-splitting
testcase again.  The IV increment may be combined with a stmt in the
path thus more analysis would be required here.  I guess if there are
no non-virtual PHIs in the joiner in addition to <= 2 stmts then we can
be reasonably sure of no CSE possibilities.

Index: gcc/gimple-ssa-split-paths.c
===================================================================
--- gcc/gimple-ssa-split-paths.c        (revision 239560)
+++ gcc/gimple-ssa-split-paths.c        (working copy)
@@ -200,6 +200,12 @@ is_feasible_trace (basic_block bb)
        }
     }

+  /* If the join block has only the conditional and possibly an IV
+     increment there are no possible CSE/DCE opportunities to expose by
+     duplicating it.  */
+  if (num_stmts_in_join <= 2)
+    return false;
+
   /* We may want something here which looks at dataflow and tries
      to guess if duplication of BB is likely to result in simplification
      of instructions in BB in either the original or the duplicate.  */


Or simply look at all PHIs
(no PHIs == no CSE/DCE possibility anyway) and see if any of its result
has a use in the joiner.  If not -> fail.

Index: gcc/gimple-ssa-split-paths.c
===================================================================
--- gcc/gimple-ssa-split-paths.c        (revision 239560)
+++ gcc/gimple-ssa-split-paths.c        (working copy)
@@ -32,6 +32,9 @@ along with GCC; see the file COPYING3.
 #include "tracer.h"
 #include "predict.h"
 #include "params.h"
+#include "gimple-ssa.h"
+#include "tree-phinodes.h"
+#include "ssa-iterators.h"

 /* Given LATCH, the latch block in a loop, see if the shape of the
    path reaching LATCH is suitable for being split by duplication.
@@ -200,6 +203,34 @@ is_feasible_trace (basic_block bb)
        }
     }

+  /* If the joiner has no PHIs with uses inside it there is zero chance
+     of CSE/DCE possibilities exposed by duplicating it.  */
+  bool found_phi_with_uses_in_bb = false;
+  for (gphi_iterator si = gsi_start_phis (bb); ! gsi_end_p (si);
+       gsi_next (&si))
+    {
+      gphi *phi = si.phi ();
+      use_operand_p use_p;
+      imm_use_iterator iter;
+      FOR_EACH_IMM_USE_FAST (use_p, iter, gimple_phi_result (phi))
+       if (gimple_bb (USE_STMT (use_p)) == bb)
+         {
+           found_phi_with_uses_in_bb = true;
+           break;
+         }
+      if (found_phi_with_uses_in_bb)
+       break;
+    }
+  if (! found_phi_with_uses_in_bb)
+    {
+      if (dump_file && (dump_flags & TDF_DETAILS))
+       fprintf (dump_file,
+                "Block %d is a join that does not expose CSE/DCE "
+                "opportunities when duplicated.\n",
+                bb->index);
+      return false;
+    }
+
   /* We may want something here which looks at dataflow and tries
      to guess if duplication of BB is likely to result in simplification
      of instructions in BB in either the original or the duplicate.  */


This one FAILs gcc.dg/tree-ssa/split-path-7.c though.  But it looks quite
artificial (with empty if blocks, etc.).  Looking at the IL definitely only
one path is profitable to split.  Jeff?
>From gcc-bugs-return-534976-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 09:22:46 2016
Return-Path: <gcc-bugs-return-534976-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 123436 invoked by alias); 18 Aug 2016 09:22:46 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 123419 invoked by uid 89); 18 Aug 2016 09:22:45 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 09:22:39 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/77279] build error in isl/ctx.h
Date: Thu, 18 Aug 2016 09:22:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: critical
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status component resolution target_milestone cf_known_to_fail
Message-ID: <bug-77279-4-M6PTqWT1mX@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77279-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77279-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02312.txt.bz2
Content-length: 643

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77279

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
          Component|c++                         |bootstrap
         Resolution|---                         |FIXED
   Target Milestone|---                         |6.2
      Known to fail|                            |6.1.0

--- Comment #5 from Richard Biener <rguenth at gcc dot gnu.org> ---
Fixed for GCC 6.2 by patching the downloaded tarball.
>From gcc-bugs-return-534977-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 09:28:47 2016
Return-Path: <gcc-bugs-return-534977-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 10239 invoked by alias); 18 Aug 2016 09:28:47 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 10197 invoked by uid 89); 18 Aug 2016 09:28:46 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 09:28:40 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77285] [5/6/7 Regression] extern thread_local linkage
Date: Thu, 18 Aug 2016 09:28:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.1.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-77285-4-h8v8nR7keU@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77285-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77285-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02313.txt.bz2
Content-length: 411

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77285

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |5.5

--- Comment #1 from Richard Biener <rguenth at gcc dot gnu.org> ---
I suppose it works when you remove #pragma once?
>From gcc-bugs-return-534979-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 09:34:49 2016
Return-Path: <gcc-bugs-return-534979-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 50482 invoked by alias); 18 Aug 2016 09:34:49 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 50461 invoked by uid 89); 18 Aug 2016 09:34:48 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=slipped
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 09:34:44 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/77282] [7 regression] test case gcc.dg/autopar/pr46193.c fails starting with r239414
Date: Thu, 18 Aug 2016 09:34:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on assigned_to target_milestone everconfirmed
Message-ID: <bug-77282-4-UpFBczxUx9@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77282-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77282-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02315.txt.bz2
Content-length: 735

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77282

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |missed-optimization
             Status|UNCONFIRMED                 |ASSIGNED
   Last reconfirmed|                            |2016-08-18
           Assignee|unassigned at gcc dot gnu.org      |rguenth at gcc dot gnu.org
   Target Milestone|---                         |7.0
     Ever confirmed|0                           |1

--- Comment #1 from Richard Biener <rguenth at gcc dot gnu.org> ---
Confirmed.  Must have slipped through my testing.
>From gcc-bugs-return-534978-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 09:34:07 2016
Return-Path: <gcc-bugs-return-534978-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 43009 invoked by alias); 18 Aug 2016 09:34:06 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 42743 invoked by uid 89); 18 Aug 2016 09:34:05 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 09:33:55 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/77283] [7 Regression] Revision 238005 disables loop unrolling
Date: Thu, 18 Aug 2016 09:34:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77283-4-IeDY8FsL3d@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77283-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77283-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02314.txt.bz2
Content-length: 609

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77283

--- Comment #6 from Richard Biener <rguenth at gcc dot gnu.org> ---
I'm reasonably happy with the PHI logic so I am going to test it.  It's quite
on the do-more-duplicating side for memory references (just uses the virtual
operand PHI to see if there are any loads/stores in the joiner).

For the case of

  if (a)
    i = i + 1;
  else
    ...;
  j = i + 1;

thus CSE opportunities on one/both paths this is something that PRE catches
already.  So we're not actually looking for CSE opportunities but opportunities
for simplification or DCE/DSE.
>From gcc-bugs-return-534980-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 09:44:49 2016
Return-Path: <gcc-bugs-return-534980-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 73471 invoked by alias); 18 Aug 2016 09:44:49 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 73462 invoked by uid 89); 18 Aug 2016 09:44:48 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=PHIs, 239560
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 09:44:38 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/77282] [7 regression] test case gcc.dg/autopar/pr46193.c fails starting with r239414
Date: Thu, 18 Aug 2016 09:44:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77282-4-Ty6l0eApRo@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77282-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77282-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02316.txt.bz2
Content-length: 1128

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77282

--- Comment #2 from Richard Biener <rguenth at gcc dot gnu.org> ---
Ok, so autopar is limited by the same issues as vectorization (loop carried
dependences via non-reduction PHIs) and thus should enable the PRE code that
inhibits such transforms.  Would the testcase have vectorization enabled it
would "work".

Index: gcc/tree-ssa-pre.c
===================================================================
--- gcc/tree-ssa-pre.c  (revision 239560)
+++ gcc/tree-ssa-pre.c  (working copy)
@@ -4270,7 +4275,7 @@ eliminate_dom_walker::before_dom_childre
          if (sprime
              && TREE_CODE (sprime) == SSA_NAME
              && do_pre
-             && flag_tree_loop_vectorize
+             && (flag_tree_loop_vectorize || flag_tree_parallelize_loops)
              && loop_outer (b->loop_father)
              && has_zero_uses (sprime)
              && bitmap_bit_p (inserted_exprs, SSA_NAME_VERSION (sprime))

fixes this.
>From gcc-bugs-return-534981-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 10:06:28 2016
Return-Path: <gcc-bugs-return-534981-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 70132 invoked by alias); 18 Aug 2016 10:06:28 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 70123 invoked by uid 89); 18 Aug 2016 10:06:27 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 10:06:17 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/77282] [7 regression] test case gcc.dg/autopar/pr46193.c fails starting with r239414
Date: Thu, 18 Aug 2016 10:06:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-77282-4-SjISrLnBWc@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77282-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77282-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02317.txt.bz2
Content-length: 429

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77282

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #3 from Richard Biener <rguenth at gcc dot gnu.org> ---
Fixed.
>From gcc-bugs-return-534982-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 10:06:49 2016
Return-Path: <gcc-bugs-return-534982-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 70895 invoked by alias); 18 Aug 2016 10:06:48 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 70882 invoked by uid 89); 18 Aug 2016 10:06:47 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 10:06:37 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/77282] [7 regression] test case gcc.dg/autopar/pr46193.c fails starting with r239414
Date: Thu, 18 Aug 2016 10:06:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-77282-4-AWfMF1Goox@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77282-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77282-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02318.txt.bz2
Content-length: 975

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77282

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #3 from Richard Biener <rguenth at gcc dot gnu.org> ---
Fixed.

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
Author: rguenth
Date: Thu Aug 18 10:06:03 2016
New Revision: 239565

URL: https://gcc.gnu.org/viewcvs?rev=239565&root=gcc&view=rev
Log:
2016-08-18  Richard Biener  <rguenther@suse.de>

        PR tree-optimization/77282
        * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children):
        When doing auto-parallelizing also prevent use of PHIs that
        carry dependences across loop backedges.

Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/tree-ssa-pre.c
>From gcc-bugs-return-534983-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 10:17:54 2016
Return-Path: <gcc-bugs-return-534983-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 119601 invoked by alias); 18 Aug 2016 10:17:53 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 118543 invoked by uid 89); 18 Aug 2016 10:17:52 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:226
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 10:17:42 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77285] [5/6/7 Regression] extern thread_local linkage
Date: Thu, 18 Aug 2016 10:17:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.1.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77285-4-DtBLAIQ8vA@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77285-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77285-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02319.txt.bz2
Content-length: 165

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77285

--- Comment #2 from Jonathan Wakely <redi at gcc dot gnu.org> ---
No, using header guards makes no difference.
>From gcc-bugs-return-534984-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 10:22:25 2016
Return-Path: <gcc-bugs-return-534984-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 6203 invoked by alias); 18 Aug 2016 10:22:25 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 6190 invoked by uid 89); 18 Aug 2016 10:22:24 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=mavx2, sk:interpr, Hx-languages-length:1498, 2090
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 10:22:14 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/77286] New: [7 Regression] ICE in fold_convert_loc, at fold-const.c:2248 building 435.gromacs
Date: Thu, 18 Aug 2016 10:22:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status keywords bug_severity priority component assigned_to reporter target_milestone cf_gcctarget
Message-ID: <bug-77286-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02320.txt.bz2
Content-length: 1593

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77286

            Bug ID: 77286
           Summary: [7 Regression] ICE in fold_convert_loc, at
                    fold-const.c:2248 building 435.gromacs
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Keywords: ice-on-valid-code
          Severity: normal
          Priority: P3
         Component: tree-optimization
          Assignee: unassigned at gcc dot gnu.org
          Reporter: rguenth at gcc dot gnu.org
  Target Milestone: ---
            Target: x86_64-*-*

/home/gcc/spec/sb-czerny-head-64-2006/x86_64/install-hack/bin/../libexec/gcc/x86_64-pc-linux-gnu/7.0.0/cc1
-fpreprocessed coupling.i -quiet -dumpbase coupling.c -mavx2 -mtune=generic
-march=x86-64 -auxbase-strip coupling.o -Ofast -version -o coupling.s
coupling.c: In function 'nosehoover_tcoupl':
coupling.c:364:6: internal compiler error: in fold_convert_loc, at
fold-const.c:2248
 void nosehoover_tcoupl(t_grpopts *opts,t_groups *grps,
      ^~~~~~~~~~~~~~~~~
0x7d2f67 fold_convert_loc(unsigned int, tree_node*, tree_node*)
        /gcc/spec/sb-czerny-head-64-2006/gcc/gcc/fold-const.c:2247
0x102ee2a chrec_convert_1
        /gcc/spec/sb-czerny-head-64-2006/gcc/gcc/tree-chrec.c:1364
0xab6b71 interpret_rhs_expr
        /gcc/spec/sb-czerny-head-64-2006/gcc/gcc/tree-scalar-evolution.c:1795
0xab460c interpret_gimple_assign
        /gcc/spec/sb-czerny-head-64-2006/gcc/gcc/tree-scalar-evolution.c:2008
0xab460c analyze_scalar_evolution_1
        /gcc/spec/sb-czerny-head-64-2006/gcc/gcc/tree-scalar-evolution.c:2090
>From gcc-bugs-return-534985-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 10:22:36 2016
Return-Path: <gcc-bugs-return-534985-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 6884 invoked by alias); 18 Aug 2016 10:22:36 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 6867 invoked by uid 89); 18 Aug 2016 10:22:35 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 10:22:26 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77285] [5/6/7 Regression] extern thread_local linkage
Date: Thu, 18 Aug 2016 10:22:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.1.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77285-4-uo2jeivbYn@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77285-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77285-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02321.txt.bz2
Content-length: 628

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77285

--- Comment #3 from Jonathan Wakely <redi at gcc dot gnu.org> ---
Without the header:

cat > a.cpp <<EOF
#include <string>
thread_local std::string gFeelingLucky;
EOF

cat > main.cpp <<EOF
#include <string>
extern thread_local std::string gFeelingLucky;

int main() {
 return gFeelingLucky.length();
}
EOF

g++11 main.cpp a.cpp -o main
/tmp/ccpboHS6.o: In function `TLS wrapper function for gFeelingLucky':
main.cpp:(.text._ZTW13gFeelingLucky[_ZTW13gFeelingLucky]+0x5): undefined
reference to `TLS init function for gFeelingLucky'
collect2: error: ld returned 1 exit status
>From gcc-bugs-return-534986-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 10:26:38 2016
Return-Path: <gcc-bugs-return-534986-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 11164 invoked by alias); 18 Aug 2016 10:26:38 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 11125 invoked by uid 89); 18 Aug 2016 10:26:37 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=ao
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 10:26:27 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77285] [5/6/7 Regression] extern thread_local linkage
Date: Thu, 18 Aug 2016 10:26:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.1.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-77285-4-FMitnn22A9@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77285-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77285-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02322.txt.bz2
Content-length: 1376

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77285

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jason at gcc dot gnu.org

--- Comment #4 from Jonathan Wakely <redi at gcc dot gnu.org> ---
The reference to the TLS init function in main.o doesn't have the abi_tag:

nm a.o
                 U _GLOBAL_OFFSET_TABLE_
0000000000000000 B _Z13gFeelingLuckyB5cxx11
                 U _ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1Ev
                 U _ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev
0000000000000000 r _ZStL19piecewise_construct
0000000000000000 T _ZTH13gFeelingLuckyB5cxx11
                 U __cxa_thread_atexit
                 U __dso_handle
0000000000000020 b __tls_guard
0000000000000000 t __tls_init

nm main.o
                 U _GLOBAL_OFFSET_TABLE_
                 U _Z13gFeelingLuckyB5cxx11
                 U
_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv
0000000000000000 r _ZStL19piecewise_construct
                 U _ZTH13gFeelingLucky
0000000000000000 W _ZTW13gFeelingLucky
0000000000000000 T main

Compare _ZTH13gFeelingLuckyB5cxx11 and _ZTH13gFeelingLucky

The TLS wrapper function (_ZTW) also doesn't have the abi tag.
>From gcc-bugs-return-534987-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 10:26:38 2016
Return-Path: <gcc-bugs-return-534987-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 11178 invoked by alias); 18 Aug 2016 10:26:38 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 11124 invoked by uid 89); 18 Aug 2016 10:26:37 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 10:26:35 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/77286] [7 Regression] ICE in fold_convert_loc, at fold-const.c:2248 building 435.gromacs
Date: Thu, 18 Aug 2016 10:26:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77286-4-SRVtMixtFq@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77286-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77286-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02323.txt.bz2
Content-length: 747

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77286

--- Comment #1 from Richard Biener <rguenth at gcc dot gnu.org> ---
Seen with r239549 and checking disabled.  Current TOT leads to

coupling.c: In function ‘nosehoover_tcoupl’:
coupling.c:364:6: error: invalid operands in binary operation
 void nosehoover_tcoupl(t_grpopts *opts,t_groups *grps,
      ^~~~~~~~~~~~~~~~~
_182 = .MEM_183 + _179;
coupling.c:364:6: error: invalid operands in gimple comparison
if (i_184 < .MEM_183)
coupling.c:364:6: error: invalid operands in binary operation
_192 = .MEM_183 + _179;
coupling.c:364:6: error: invalid PHI argument
.MEM_183
coupling.c:364:6: error: incompatible types in PHI argument 0
int

void
...

not in my dev tree though.
>From gcc-bugs-return-534988-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 10:30:38 2016
Return-Path: <gcc-bugs-return-534988-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 44609 invoked by alias); 18 Aug 2016 10:30:35 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 44557 invoked by uid 89); 18 Aug 2016 10:30:29 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:1377
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 10:30:21 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77285] [5/6/7 Regression] extern thread_local linkage
Date: Thu, 18 Aug 2016 10:30:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.1.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77285-4-beUhHFhC24@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77285-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77285-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02324.txt.bz2
Content-length: 1477

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77285

--- Comment #5 from Jonathan Wakely <redi at gcc dot gnu.org> ---
Reduced:

cat >a.cpp <<EOF
struct __attribute__((abi_tag("tag"))) X { ~X() { }int i = 0; };
thread_local X gFeelingLucky;
EOF

cat >main.cpp <<EOF
struct __attribute__((abi_tag("tag"))) X { ~X() { }int i = 0; };
extern thread_local X gFeelingLucky;

int main() {
 return gFeelingLucky.i;
}
EOF

g++ main.cpp a.cpp
/tmp/ccTyHWNr.o: In function `TLS wrapper function for gFeelingLucky':
main.cpp:(.text._ZTW13gFeelingLucky[_ZTW13gFeelingLucky]+0x5): undefined
reference to `TLS init function for gFeelingLucky'
collect2: error: ld returned 1 exit status

nm a.o 
                 U _GLOBAL_OFFSET_TABLE_
0000000000000000 B _Z13gFeelingLuckyB5cxx11
                 U _ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1Ev
                 U _ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev
0000000000000000 r _ZStL19piecewise_construct
0000000000000000 T _ZTH13gFeelingLuckyB5cxx11
                 U __cxa_thread_atexit
                 U __dso_handle
0000000000000020 b __tls_guard
0000000000000000 t __tls_init

nm main.o
                 U _GLOBAL_OFFSET_TABLE_
                 U _Z13gFeelingLuckyB5cxx11
                 U
_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv
0000000000000000 r _ZStL19piecewise_construct
                 U _ZTH13gFeelingLucky
0000000000000000 W _ZTW13gFeelingLucky
0000000000000000 T main
>From gcc-bugs-return-534989-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 10:32:07 2016
Return-Path: <gcc-bugs-return-534989-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 47275 invoked by alias); 18 Aug 2016 10:32:07 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 47252 invoked by uid 89); 18 Aug 2016 10:32:06 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=if-conversion
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 10:32:01 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/77286] [7 Regression] ICE in fold_convert_loc, at fold-const.c:2248 building 435.gromacs
Date: Thu, 18 Aug 2016 10:32:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77286-4-tIjNoITAUk@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77286-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77286-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02325.txt.bz2
Content-length: 220

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77286

--- Comment #2 from Richard Biener <rguenth at gcc dot gnu.org> ---
Ok, looks like my if-conversion patch is at least partly responsible for the
current TOT fallout.
>From gcc-bugs-return-534990-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 10:32:49 2016
Return-Path: <gcc-bugs-return-534990-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 48182 invoked by alias); 18 Aug 2016 10:32:49 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 48172 invoked by uid 89); 18 Aug 2016 10:32:48 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:747
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 10:32:38 +0000
From: "mpolacek at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/7652] -Wswitch-break : Warn if a switch case falls through
Date: Thu, 18 Aug 2016 10:32:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: mpolacek at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: mpolacek at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-7652-4-MKDLE2Efcp@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-7652-4@http.gcc.gnu.org/bugzilla/>
References: <bug-7652-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02326.txt.bz2
Content-length: 761

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=7652

--- Comment #59 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
Author: mpolacek
Date: Thu Aug 18 10:28:03 2016
New Revision: 239566

URL: https://gcc.gnu.org/viewcvs?rev=239566&root=gcc&view=rev
Log:
        PR c/7652
gcc/cp/
        * call.c (add_builtin_candidate): Add gcc_fallthrough.
        * cxx-pretty-print.c (pp_cxx_unqualified_id): Likewise.
        * parser.c (cp_parser_skip_to_end_of_statement): Likewise.
        (cp_parser_cache_defarg): Likewise.
libcpp/
        * pch.c (write_macdef): Add CPP_FALLTHRU.

Modified:
    trunk/gcc/cp/ChangeLog
    trunk/gcc/cp/call.c
    trunk/gcc/cp/cxx-pretty-print.c
    trunk/gcc/cp/parser.c
    trunk/libcpp/ChangeLog
    trunk/libcpp/pch.c
>From gcc-bugs-return-534991-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 10:33:12 2016
Return-Path: <gcc-bugs-return-534991-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 49054 invoked by alias); 18 Aug 2016 10:33:12 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 49034 invoked by uid 89); 18 Aug 2016 10:33:11 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=conflict
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 10:33:09 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77285] [5/6/7 Regression] extern thread_local linkage
Date: Thu, 18 Aug 2016 10:33:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.1.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77285-4-2IxOY81WyY@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77285-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77285-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02327.txt.bz2
Content-length: 1131

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77285

--- Comment #6 from Jonathan Wakely <redi at gcc dot gnu.org> ---
Oops, sorry that's the nm output for the wrong objects, the output for the
reduced examples is:

nm a.o 
                 U _GLOBAL_OFFSET_TABLE_
0000000000000000 B _Z13gFeelingLuckyB3tag
0000000000000000 W _ZN1XB3tagD1Ev
0000000000000000 W _ZN1XB3tagD2Ev
0000000000000000 n _ZN1XB3tagD5Ev
0000000000000000 T _ZTH13gFeelingLuckyB3tag
                 U __cxa_thread_atexit
                 U __dso_handle
0000000000000004 b __tls_guard
0000000000000000 t __tls_init

nm main.o
                 U _GLOBAL_OFFSET_TABLE_
                 U _Z13gFeelingLuckyB3tag
                 U _ZTH13gFeelingLucky
0000000000000000 W _ZTW13gFeelingLucky
0000000000000000 T main


The definition is _ZTH13gFeelingLuckyB3tag but the extern reference is
ZTH13gFeelingLucky

The wrapper function should probably be tagged too, so it doesn't conflict with
a symbol for the untagged object, otherwise a library that contains both
_ZTH13gFeelingLuckyB3tag and _ZTH13gFeelingLucky would get the wrong one via
the wrapper function.
>From gcc-bugs-return-534992-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 10:35:48 2016
Return-Path: <gcc-bugs-return-534992-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 71684 invoked by alias); 18 Aug 2016 10:35:48 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 71674 invoked by uid 89); 18 Aug 2016 10:35:47 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-0.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00,UNWANTED_LANGUAGE_BODY autolearn=ham version=3.3.2 spammy=int*, vmovdqu, Align, UD:blogspot.com
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 10:35:37 +0000
From: "kobalicek.petr at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77287] New: Much worse code generated compared to clang (stack alignment and spills)
Date: Thu, 18 Aug 2016 10:35:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: kobalicek.petr at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77287-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02328.txt.bz2
Content-length: 7930

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77287

            Bug ID: 77287
           Summary: Much worse code generated compared to clang (stack
                    alignment and spills)
           Product: gcc
           Version: 6.1.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: kobalicek.petr at gmail dot com
  Target Milestone: ---

A simple function (artificial code):

#include <immintrin.h>

int fn(
  const int* px, const int* py,
  const int* pz, const int* pw,
  const int* pa, const int* pb,
  const int* pc, const int* pd) {

  __m256i a0 = _mm256_loadu_si256((__m256i*)px);
  __m256i a1 = _mm256_loadu_si256((__m256i*)py);
  __m256i a2 = _mm256_loadu_si256((__m256i*)pz);
  __m256i a3 = _mm256_loadu_si256((__m256i*)pw);
  __m256i a4 = _mm256_loadu_si256((__m256i*)pa);
  __m256i b0 = _mm256_loadu_si256((__m256i*)pb);
  __m256i b1 = _mm256_loadu_si256((__m256i*)pc);
  __m256i b2 = _mm256_loadu_si256((__m256i*)pd);
  __m256i b3 = _mm256_loadu_si256((__m256i*)pc + 1);
  __m256i b4 = _mm256_loadu_si256((__m256i*)pd + 1);

  __m256i x0 = _mm256_packus_epi16(a0, b0);
  __m256i x1 = _mm256_packus_epi16(a1, b1);
  __m256i x2 = _mm256_packus_epi16(a2, b2);
  __m256i x3 = _mm256_packus_epi16(a3, b3);
  __m256i x4 = _mm256_packus_epi16(a4, b4);

  x0 = _mm256_add_epi16(x0, a0);
  x1 = _mm256_add_epi16(x1, a1);
  x2 = _mm256_add_epi16(x2, a2);
  x3 = _mm256_add_epi16(x3, a3);
  x4 = _mm256_add_epi16(x4, a4);

  x0 = _mm256_sub_epi16(x0, b0);
  x1 = _mm256_sub_epi16(x1, b1);
  x2 = _mm256_sub_epi16(x2, b2);
  x3 = _mm256_sub_epi16(x3, b3);
  x4 = _mm256_sub_epi16(x4, b4);

  x0 = _mm256_packus_epi16(x0, x1);
  x0 = _mm256_packus_epi16(x0, x2);
  x0 = _mm256_packus_epi16(x0, x3);
  x0 = _mm256_packus_epi16(x0, x4);
  return _mm256_extract_epi32(x0, 1);
}

Produces the following asm when compiled by GCC (annotated by me):

  ; GCC 6.1 -O2 -Wall -mavx2 -m32 -fomit-frame-pointer
  lea       ecx, [esp+4]                      ; Return address
  and       esp, -32                          ; Align the stack to 32 bytes
  push      DWORD PTR [ecx-4]                 ; Push returned address
  push      ebp                               ; Save frame-pointer even if I
told GCC to not to
  mov       ebp, esp
  push      edi                               ; Save GP regs
  push      esi
  push      ebx
  push      ecx
  sub       esp, 296                          ; Reserve stack for YMM spills
  mov       eax, DWORD PTR [ecx+16]           ; LOAD 'pa'
  mov       esi, DWORD PTR [ecx+4]            ; LOAD 'py'
  mov       edi, DWORD PTR [ecx]              ; LOAD 'px'
  mov       ebx, DWORD PTR [ecx+8]            ; LOAD 'pz'
  mov       edx, DWORD PTR [ecx+12]           ; LOAD 'pw'
  mov       DWORD PTR [ebp-120], eax          ; SPILL 'pa'
  mov       eax, DWORD PTR [ecx+20]           ; LOAD 'pb'
  mov       DWORD PTR [ebp-152], eax          ; SPILL 'pb'
  mov       eax, DWORD PTR [ecx+24]           ; LOAD 'pc'
  vmovdqu   ymm4, YMMWORD PTR [esi]
  mov       ecx, DWORD PTR [ecx+28]           ; LOAD 'pd'
  vmovdqu   ymm7, YMMWORD PTR [edi]
  vmovdqa   YMMWORD PTR [ebp-56], ymm4        ; SPILL VEC
  vmovdqu   ymm4, YMMWORD PTR [ebx]
  mov       ebx, DWORD PTR [ebp-152]          ; LOAD 'pb'
  vmovdqa   YMMWORD PTR [ebp-88], ymm4        ; SPILL VEC
  vmovdqu   ymm4, YMMWORD PTR [edx]
  mov       edx, DWORD PTR [ebp-120]          ; LOAD 'pa'
  vmovdqu   ymm6, YMMWORD PTR [edx]
  vmovdqa   YMMWORD PTR [ebp-120], ymm6       ; SPILL VEC
  vmovdqu   ymm0, YMMWORD PTR [ecx]
  vmovdqu   ymm6, YMMWORD PTR [ebx]
  vmovdqa   ymm5, ymm0                        ; Why to move anything when using
AVX?
  vmovdqu   ymm0, YMMWORD PTR [eax+32]
  vmovdqu   ymm2, YMMWORD PTR [eax]
  vmovdqa   ymm1, ymm0                        ; Why to move anything when using
AVX?
  vmovdqu   ymm0, YMMWORD PTR [ecx+32]
  vmovdqa   YMMWORD PTR [ebp-152], ymm2
  vmovdqa   ymm3, ymm0                        ; Why to move anything when using
AVX?
  vpackuswb ymm0, ymm7, ymm6
  vmovdqa   YMMWORD PTR [ebp-184], ymm5       ; SPILL VEC
  vmovdqa   YMMWORD PTR [ebp-248], ymm3       ; SPILL VEC
  vmovdqa   YMMWORD PTR [ebp-280], ymm0       ; SPILL VEC
  vmovdqa   ymm0, YMMWORD PTR [ebp-56]        ; ALLOC VEC
  vmovdqa   YMMWORD PTR [ebp-216], ymm1       ; SPILL VEC
  vpackuswb ymm2, ymm0, YMMWORD PTR [ebp-152] ; Uses SPILL slot
  vmovdqa   ymm0, YMMWORD PTR [ebp-88]        ; ALLOC VEC
  vpackuswb ymm1, ymm4, YMMWORD PTR [ebp-216] ; Uses SPILL slot
  vpackuswb ymm5, ymm0, YMMWORD PTR [ebp-184] ; Uses SPILL slot
  vmovdqa   ymm0, YMMWORD PTR [ebp-120]       ; ALLOC VEC
  vpaddw    ymm2, ymm2, YMMWORD PTR [ebp-56]  ; Uses SPILL slot
  vpsubw    ymm2, ymm2, YMMWORD PTR [ebp-152] ; Uses SPILL slot
  vpackuswb ymm3, ymm0, YMMWORD PTR [ebp-248] ; Uses SPILL slot
  vpaddw    ymm0, ymm7, YMMWORD PTR [ebp-280] ; Uses SPILL slot
  vpsubw    ymm0, ymm0, ymm6
  vmovdqa   ymm7, YMMWORD PTR [ebp-120]       ; ALLOC VEC
  vpackuswb ymm0, ymm0, ymm2
  vpaddw    ymm2, ymm4, ymm1
  vpsubw    ymm2, ymm2, YMMWORD PTR [ebp-216] ; Uses SPILL slot
  vmovdqa   YMMWORD PTR [ebp-312], ymm3       ; SPILL VEC
  vpaddw    ymm3, ymm5, YMMWORD PTR [ebp-88]  ; Uses SPILL slot
  vpsubw    ymm3, ymm3, YMMWORD PTR [ebp-184] ; Uses SPILL slot
  vpackuswb ymm0, ymm0, ymm3
  vpaddw    ymm1, ymm7, YMMWORD PTR [ebp-312] ; Uses SPILL slot
  vpsubw    ymm1, ymm1, YMMWORD PTR [ebp-248] ; Uses SPILL slot
  vpackuswb ymm0, ymm0, ymm2
  vpackuswb ymm0, ymm0, ymm1
  vpextrd   eax, xmm0, 1                      ; Return value
  vzeroupper
  add       esp, 296
  pop       ecx
  pop       ebx
  pop       esi
  pop       edi
  pop       ebp
  lea       esp, [ecx-4]
  ret

While clang produces just this:

  ; Clang 3.8 -O2 -Wall -mavx2 -m32 -fomit-frame-pointer
  mov       eax, dword ptr [esp + 32]     ; LOAD 'pd'
  mov       ecx, dword ptr [esp + 4]      ; LOAD 'px'
  vmovdqu   ymm0, ymmword ptr [ecx]
  mov       ecx, dword ptr [esp + 8]      ; LOAD 'py'
  vmovdqu   ymm1, ymmword ptr [ecx]
  mov       ecx, dword ptr [esp + 12]     ; LOAD 'pz'
  vmovdqu  ymm2, ymmword ptr [ecx]
  mov       ecx, dword ptr [esp + 16]     ; LOAD 'pw'
  vmovdqu   ymm3, ymmword ptr [ecx]
  mov       ecx, dword ptr [esp + 20]     ; LOAD 'pa'
  vmovdqu   ymm4, ymmword ptr [ecx]
  mov       ecx, dword ptr [esp + 24]     ; LOAD 'pb'
  vmovdqu   ymm5, ymmword ptr [ecx]
  mov       ecx, dword ptr [esp + 28]     ; LOAD 'pc'
  vpackuswb ymm6, ymm0, ymm5
  vpsubw    ymm0, ymm0, ymm5
  vmovdqu   ymm5, ymmword ptr [ecx]
  vpaddw    ymm0, ymm0, ymm6
  vpackuswb ymm6, ymm1, ymm5
  vpsubw    ymm1, ymm1, ymm5
  vmovdqu   ymm5, ymmword ptr [eax]
  vpaddw    ymm1, ymm1, ymm6
  vpackuswb ymm6, ymm2, ymm5
  vpsubw    ymm2, ymm2, ymm5
  vmovdqu   ymm5, ymmword ptr [ecx + 32]
  vpaddw    ymm2, ymm2, ymm6
  vpackuswb ymm6, ymm3, ymm5
  vpsubw    ymm3, ymm3, ymm5
  vmovdqu   ymm5, ymmword ptr [eax + 32]
  vpaddw    ymm3, ymm3, ymm6
  vpackuswb ymm6, ymm4, ymm5
  vpsubw    ymm4, ymm4, ymm5
  vpaddw    ymm4, ymm4, ymm6
  vpackuswb ymm0, ymm0, ymm1
  vpackuswb ymm0, ymm0, ymm2
  vpackuswb ymm0, ymm0, ymm3
  vpackuswb ymm0, ymm0, ymm4
  vpextrd   eax, xmm0, 1                  ; Return value
  vzeroupper
  ret

I have written about this in my blog here:  
 
https://asmbits.blogspot.com/2016/08/comparing-register-allocator-of-gcc-and.html

Problems summary:

  1. Spilling GPRs in our case is not needed at all
  2. Spilling YMMs is also questionable as some instructions can be reordered,
see clang output
  3. Frame pointer is preserved even when I compiled with -fomit-frame-pointer
  4. Using [ebp-X] instead of [esp+Y] produces longer code when `X > 128 && Y <
128`.

You can quickly verify the outputs by pasting the source here:
https://gcc.godbolt.org/
>From gcc-bugs-return-534993-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 10:37:23 2016
Return-Path: <gcc-bugs-return-534993-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 73829 invoked by alias); 18 Aug 2016 10:37:23 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 73816 invoked by uid 89); 18 Aug 2016 10:37:22 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 10:37:12 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77285] [5/6/7 Regression] extern thread_local linkage
Date: Thu, 18 Aug 2016 10:37:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.1.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77285-4-BJgntkivTV@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77285-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77285-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02329.txt.bz2
Content-length: 314

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77285

--- Comment #7 from Jonathan Wakely <redi at gcc dot gnu.org> ---
The examples only work with GCC 4.9.4 because the abi_tag doesn't have any
effect before GCC 5, but it's still a regression because of the effect on
std::string variables, which are now tagged.
>From gcc-bugs-return-534994-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 10:45:51 2016
Return-Path: <gcc-bugs-return-534994-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 81494 invoked by alias); 18 Aug 2016 10:45:51 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 81477 invoked by uid 89); 18 Aug 2016 10:45:50 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:647
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 10:45:40 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/77286] [7 Regression] ICE in fold_convert_loc, at fold-const.c:2248 building 435.gromacs
Date: Thu, 18 Aug 2016 10:45:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on assigned_to everconfirmed attachments.created
Message-ID: <bug-77286-4-JILdqgXHeC@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77286-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77286-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02330.txt.bz2
Content-length: 684

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77286

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |ASSIGNED
   Last reconfirmed|                            |2016-08-18
           Assignee|unassigned at gcc dot gnu.org      |rguenth at gcc dot gnu.org
     Ever confirmed|0                           |1

--- Comment #3 from Richard Biener <rguenth at gcc dot gnu.org> ---
Created attachment 39468
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39468&action=edit
autoreduced testcase
>From gcc-bugs-return-534995-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 10:49:19 2016
Return-Path: <gcc-bugs-return-534995-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 111461 invoked by alias); 18 Aug 2016 10:49:19 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 111452 invoked by uid 89); 18 Aug 2016 10:49:18 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 10:49:08 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77287] Much worse code generated compared to clang (stack alignment and spills)
Date: Thu, 18 Aug 2016 10:49:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: component
Message-ID: <bug-77287-4-SxwfNdWruT@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77287-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77287-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02331.txt.bz2
Content-length: 622

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77287

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
          Component|c++                         |target

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Try adding -march=intel or-mtune=intel . The default tuning for gcc is generic
which is combination of Intel and amd tuning. And because amd tuning needs not
to use gprs and SIMD registers at the same time spilling is faster there. It
tunes for that.
>From gcc-bugs-return-534996-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 10:53:56 2016
Return-Path: <gcc-bugs-return-534996-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 113749 invoked by alias); 18 Aug 2016 10:53:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 113739 invoked by uid 89); 18 Aug 2016 10:53:55 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-0.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50 autolearn=ham version=3.3.2 spammy=verifying, UD:tree-into-ssa.c, tree-into-ssa.c, treeintossac
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 10:53:45 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/77286] [7 Regression] ICE in fold_convert_loc, at fold-const.c:2248 building 435.gromacs
Date: Thu, 18 Aug 2016 10:53:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-77286-4-YsbaF451F7@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77286-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77286-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02332.txt.bz2
Content-length: 1127

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77286

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |7.0

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
Actually it's the vectorizer messing up the IL.  Seems to be related to the
tree-ssa-loop-manip.c change in

2016-08-17  Richard Biener  <rguenther@suse.de>

        * tree-ssa.c: Include tree-cfg.h and tree-dfa.h.
        (verify_vssa): New function verifying virtual SSA form.
        (verify_ssa): Call it.
        * tree-ssa-loop-manip.c (slpeel_update_phi_nodes_for_guard2):
        Do not apply loop-closed SSA handling to virtuals.
        * ssa-iterators.h (op_iter_init): Handle GIMPLE_TRANSACTION.
        * tree-into-ssa.c (prepare_use_sites_for): Skip virtual SSA names
        when rewriting their symbol.
        (prepare_def_site_for): Likewise.
        * tree-chkp-opt.c (chkp_reduce_bounds_lifetime): Clear virtual
        operands of moved stmts.
>From gcc-bugs-return-534997-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 11:07:37 2016
Return-Path: <gcc-bugs-return-534997-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 74930 invoked by alias); 18 Aug 2016 11:07:36 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 74913 invoked by uid 89); 18 Aug 2016 11:07:36 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:341, petr, Petr, management
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 11:07:25 +0000
From: "kobalicek.petr at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77287] Much worse code generated compared to clang (stack alignment and spills)
Date: Thu, 18 Aug 2016 11:07:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: kobalicek.petr at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77287-4-q3iW7WP8eV@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77287-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77287-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02333.txt.bz2
Content-length: 255

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77287

--- Comment #2 from Petr <kobalicek.petr at gmail dot com> ---
With '-mtune=intel' the push/pop sequence is gone, but YMM register management
remains the same - 24 memory accesses more than clang.
>From gcc-bugs-return-534998-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 11:38:54 2016
Return-Path: <gcc-bugs-return-534998-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 82134 invoked by alias); 18 Aug 2016 11:38:54 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 82125 invoked by uid 89); 18 Aug 2016 11:38:53 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=updatessa, update-ssa, Hx-languages-length:482
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 11:38:43 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/77286] [7 Regression] ICE in fold_convert_loc, at fold-const.c:2248 building 435.gromacs
Date: Thu, 18 Aug 2016 11:38:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77286-4-dusFd5VFhY@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77286-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77286-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02334.txt.bz2
Content-length: 376

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77286

--- Comment #5 from Richard Biener <rguenth at gcc dot gnu.org> ---
Ok, again slpeels incredibly fragile manual SSA updating which relies on PHI
nodes
to appear in exactly the same order...  which is AFAIK why I at some point
removed that lc-PHI handling bail-out I re-added.  We can't rely on update-ssa
to perform it.
>From gcc-bugs-return-534999-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 11:48:59 2016
Return-Path: <gcc-bugs-return-534999-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 108616 invoked by alias); 18 Aug 2016 11:48:59 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 108607 invoked by uid 89); 18 Aug 2016 11:48:58 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyÞlorie, delorie
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 11:48:48 +0000
From: "olegendo at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/62180] (RX600) - compiler doesn't honor -fstrict-volatile-bitfields and generates incorrect machine code for I/O register access
Date: Thu, 18 Aug 2016 11:48:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: olegendo at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-62180-4-4bK1itXYgg@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-62180-4@http.gcc.gnu.org/bugzilla/>
References: <bug-62180-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02335.txt.bz2
Content-length: 699

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=62180

Oleg Endo <olegendo at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |olegendo at gcc dot gnu.org

--- Comment #6 from Oleg Endo <olegendo at gcc dot gnu.org> ---
(In reply to DJ Delorie from comment #4)
> Perhaps you need this patch:
> 
> https://gcc.gnu.org/ml/gcc-patches/2014-06/msg00993.html

DJ, did you actually commit that patch?

In any case, I think this issue can be closed.  Using bitfields for hardware
access is not really a safe thing to do.  E.g. see also PR 67644.
>From gcc-bugs-return-535000-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 12:02:15 2016
Return-Path: <gcc-bugs-return-535000-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 2269 invoked by alias); 18 Aug 2016 12:02:14 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 2260 invoked by uid 89); 18 Aug 2016 12:02:14 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:937
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 12:02:03 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/77287] Much worse code generated compared to clang (stack alignment and spills)
Date: Thu, 18 Aug 2016 12:02:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: ra
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords cf_gcctarget bug_status cf_reconfirmed_on cc component everconfirmed
Message-ID: <bug-77287-4-ymJiPrYo0w@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77287-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77287-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02336.txt.bz2
Content-length: 1116

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77287

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |ra
             Target|                            |x86_64-*-*, i?86-*-*
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-18
                 CC|                            |vmakarov at gcc dot gnu.org
          Component|target                      |rtl-optimization
     Ever confirmed|0                           |1

--- Comment #3 from Richard Biener <rguenth at gcc dot gnu.org> ---
-fschedule-insns improves things here - and LRA seems to be more happy to
spill/reload rather than rematerialize.  But in the end the testcase requires
careful scheduling of the operations to reduce register lifetime and thus
allow optimal RA with the limited number of registers available.

We force a frame pointer because we have to re-align the stack for possible
spills.
>From gcc-bugs-return-535001-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 12:10:21 2016
Return-Path: <gcc-bugs-return-535001-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 17936 invoked by alias); 18 Aug 2016 12:10:21 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 16059 invoked by uid 89); 18 Aug 2016 12:10:13 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 12:10:03 +0000
From: "ysrumyan at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71077] [7 Regression] gcc -lto raises ICE
Date: Thu, 18 Aug 2016 12:10:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ysrumyan at gmail dot com
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: ppalka at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71077-4-ZSLeCRp4Pb@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71077-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71077-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02337.txt.bz2
Content-length: 1947

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71077

--- Comment #7 from Yuri Rumyantsev <ysrumyan at gmail dot com> ---
I checked that proposed patch fixed RF for 176.gcc.

Please, go ahead and commit your patch to trunk.
Thanks.
Yuri.

2016-08-12 20:14 GMT+03:00 patrick at parcs dot ath.cx
<gcc-bugzilla@gcc.gnu.org>:
> https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71077
>
> --- Comment #6 from patrick at parcs dot ath.cx ---
> On Fri, 12 Aug 2016, ysrumyan at gmail dot com wrote:
>
>> https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71077
>>
>> Yuri Rumyantsev <ysrumyan at gmail dot com> changed:
>>
>>            What    |Removed                     |Added
>> ----------------------------------------------------------------------------
>>                  CC|                            |ysrumyan at gmail dot com
>>
>> --- Comment #5 from Yuri Rumyantsev <ysrumyan at gmail dot com> ---
>> We found out that after r235653 with minor change of int->bool type 176.gcc
>> still RF on HSW machine in 32-bit if opt level equal 3. If we turn off VRP
>> phase by -fno-tree-vrp option benchmark is passed. Need to understand why this
>> simplification affects on it.
>
> My only guess is that the combining step still doesn't handle
> VECTOR_CSTs correctly. Could you please check if this patch fixes the
> runtime failure?
>
> diff --git a/gcc/tree-ssa-threadedge.c b/gcc/tree-ssa-threadedge.c
> index 170e456..0db7bda 100644
> --- a/gcc/tree-ssa-threadedge.c
> +++ b/gcc/tree-ssa-threadedge.c
> @@ -577,6 +577,7 @@ simplify_control_stmt_condition_1 (edge e,
>    if (handle_dominating_asserts
>        && (cond_code == EQ_EXPR || cond_code == NE_EXPR)
>        && TREE_CODE (op0) == SSA_NAME
> +      && INTEGRAL_TYPE_P (TREE_TYPE (op0))
>        && integer_zerop (op1))
>      {
>        gimple *def_stmt = SSA_NAME_DEF_STMT (op0);
>
> --
> You are receiving this mail because:
> You are on the CC list for the bug.
>From gcc-bugs-return-535002-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 12:12:19 2016
Return-Path: <gcc-bugs-return-535002-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 19215 invoked by alias); 18 Aug 2016 12:12:18 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 19202 invoked by uid 89); 18 Aug 2016 12:12:18 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=opportunity
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 12:12:07 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/77283] [7 Regression] Revision 238005 disables loop unrolling
Date: Thu, 18 Aug 2016 12:12:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: attachments.created
Message-ID: <bug-77283-4-2DSWyuvMEQ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77283-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77283-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02338.txt.bz2
Content-length: 1019

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77283

--- Comment #7 from Richard Biener <rguenth at gcc dot gnu.org> ---
Created attachment 39469
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39469&action=edit
patch

Ok, causes

FAIL: gcc.dg/tree-ssa/pr69270.c scan-tree-dump-not dom3 "bit_xor"
FAIL: gcc.dg/tree-ssa/pr69270.c scan-tree-dump-times dom3 "Folded to: _[0-9]+ = 
0;" 1
FAIL: gcc.dg/tree-ssa/pr69270.c scan-tree-dump-times dom3 "Folded to: _[0-9]+ = 
1;" 1
FAIL: gcc.dg/tree-ssa/pr69270.c scan-tree-dump-times dom3 "Replaced
.bufferstep_
[0-9]+. with constant .0." 1
FAIL: gcc.dg/tree-ssa/pr69270.c scan-tree-dump-times dom3 "Replaced
.bufferstep_
[0-9]+. with constant .1." 1

which is where path-splitting exposes a jump threading opportunity it seems
as jump threading is not happy to perform the operation in one go.

Also my adjustment of gcc.dg/tree-ssa/split-path-7.c was only good in my dev
tree for some reason.  Otherwise bootstrapped / tested on
x86_64-unknown-linux-gnu.
>From gcc-bugs-return-535003-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 12:15:18 2016
Return-Path: <gcc-bugs-return-535003-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 23446 invoked by alias); 18 Aug 2016 12:15:18 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 23379 invoked by uid 89); 18 Aug 2016 12:15:17 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=g10, G10, U*dj, Hx-languages-length:830
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 12:15:06 +0000
From: "olegendo at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/71338] [RL78] mulu instruction not used on G10
Date: Thu, 18 Aug 2016 12:15:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: olegendo at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71338-4-qfqIMjB8fr@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71338-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71338-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02339.txt.bz2
Content-length: 861

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71338

--- Comment #6 from Oleg Endo <olegendo at gcc dot gnu.org> ---
Author: olegendo
Date: Thu Aug 18 12:14:33 2016
New Revision: 239568

URL: https://gcc.gnu.org/viewcvs?rev=239568&root=gcc&view=rev
Log:
gcc/
        Backport from mainline
        2016-06-17  DJ Delorie  <dj@redhat.com>

        PR target/71338
        * config/rl78/rl78-expand.c (umulqihi3): Enable for G10.
        * config/rl78/rl78-virtual.c (umulhi3_shift_virt): Likewise.
        (umulqihi3_virt): Likewise.
        * config/rl78/rl78-real.c (umulhi3_shift_real): Likewise.
        (umulqihi3_real): Likewise.


Modified:
    branches/gcc-5-branch/gcc/ChangeLog
    branches/gcc-5-branch/gcc/config/rl78/rl78-expand.md
    branches/gcc-5-branch/gcc/config/rl78/rl78-real.md
    branches/gcc-5-branch/gcc/config/rl78/rl78-virt.md
>From gcc-bugs-return-535004-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 12:24:33 2016
Return-Path: <gcc-bugs-return-535004-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 38876 invoked by alias); 18 Aug 2016 12:24:33 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 38867 invoked by uid 89); 18 Aug 2016 12:24:32 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:651
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 12:24:22 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/77283] [7 Regression] Revision 238005 disables loop unrolling
Date: Thu, 18 Aug 2016 12:24:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77283-4-EPsgcOXSJF@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77283-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77283-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02340.txt.bz2
Content-length: 615

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77283

--- Comment #8 from Richard Biener <rguenth at gcc dot gnu.org> ---
(In reply to Richard Biener from comment #7)
> Also my adjustment of gcc.dg/tree-ssa/split-path-7.c was only good in my dev
> tree for some reason.  Otherwise bootstrapped / tested on
> x86_64-unknown-linux-gnu.

Ah, that's because my dev tree has store commoning during sinking which turns

  if ()
    *dp = ...
  else
    *dp = ...
  if (++dp)
    goto loop;

into

  if ()
    ...
  else
    ...
  *dp = ...
  if (++dp)
    goto loop;

making the block artificially interesting.
>From gcc-bugs-return-535005-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 12:26:32 2016
Return-Path: <gcc-bugs-return-535005-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 43591 invoked by alias); 18 Aug 2016 12:26:32 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 43580 invoked by uid 89); 18 Aug 2016 12:26:32 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 12:26:21 +0000
From: "olegendo at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/71338] [RL78] mulu instruction not used on G10
Date: Thu, 18 Aug 2016 12:26:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: olegendo at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71338-4-GkTV7dgitM@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71338-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71338-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02341.txt.bz2
Content-length: 861

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71338

--- Comment #7 from Oleg Endo <olegendo at gcc dot gnu.org> ---
Author: olegendo
Date: Thu Aug 18 12:25:47 2016
New Revision: 239569

URL: https://gcc.gnu.org/viewcvs?rev=239569&root=gcc&view=rev
Log:
gcc/
        Backport from mainline
        2016-06-17  DJ Delorie  <dj@redhat.com>

        PR target/71338
        * config/rl78/rl78-expand.c (umulqihi3): Enable for G10.
        * config/rl78/rl78-virtual.c (umulhi3_shift_virt): Likewise.
        (umulqihi3_virt): Likewise.
        * config/rl78/rl78-real.c (umulhi3_shift_real): Likewise.
        (umulqihi3_real): Likewise.


Modified:
    branches/gcc-6-branch/gcc/ChangeLog
    branches/gcc-6-branch/gcc/config/rl78/rl78-expand.md
    branches/gcc-6-branch/gcc/config/rl78/rl78-real.md
    branches/gcc-6-branch/gcc/config/rl78/rl78-virt.md
>From gcc-bugs-return-535006-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 12:26:43 2016
Return-Path: <gcc-bugs-return-535006-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 47145 invoked by alias); 18 Aug 2016 12:26:42 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 47130 invoked by uid 89); 18 Aug 2016 12:26:41 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 12:26:31 +0000
From: "manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/59980] Diagnostics relating to template-specialisations using enums.
Date: Thu, 18 Aug 2016 12:26:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 4.8.1
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: manu at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc everconfirmed
Message-ID: <bug-59980-4-ZKICb8mHX8@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-59980-4@http.gcc.gnu.org/bugzilla/>
References: <bug-59980-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02342.txt.bz2
Content-length: 1309

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=59980

Manuel López-Ibáñez <manu at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-18
                 CC|                            |manu at gcc dot gnu.org
     Ever confirmed|0                           |1

--- Comment #5 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
Clang prints:

prog.cc:19:9: error: no member named 'fn' in 's1<e1::t2>'; did you mean
's1<t1>::fn'?
        s1<t2>::fn();   // Causes an error to be emitted that I'd like to
modify the format of.
        ^~~~~~~~~~
        s1<t1>::fn
prog.cc:8:21: note: 's1<t1>::fn' declared here
        static void fn() {}
                    ^
prog.cc:21:9: error: no member named 'fn' in 's2<e2::t4>'; did you mean
's2<e2::t3>::fn'?
        s2<e2::t4>::fn();       // Causes an error to be emitted that I'd like
to modify the format of.
        ^~~~~~~~~~~~~~
        s2<e2::t3>::fn
prog.cc:14:21: note: 's2<e2::t3>::fn' declared here
        static void fn() {}
                    ^

It should be possible to do this in g++ nowadays.
>From gcc-bugs-return-535007-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 12:28:52 2016
Return-Path: <gcc-bugs-return-535007-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 53124 invoked by alias); 18 Aug 2016 12:28:52 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 53096 invoked by uid 89); 18 Aug 2016 12:28:51 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 12:28:41 +0000
From: "olegendo at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/71338] [RL78] mulu instruction not used on G10
Date: Thu, 18 Aug 2016 12:28:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: olegendo at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-71338-4-BsRpaLDiUa@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71338-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71338-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02343.txt.bz2
Content-length: 436

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71338

Oleg Endo <olegendo at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |FIXED

--- Comment #8 from Oleg Endo <olegendo at gcc dot gnu.org> ---
Fixed and backported.
>From gcc-bugs-return-535008-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 12:29:03 2016
Return-Path: <gcc-bugs-return-535008-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 53840 invoked by alias); 18 Aug 2016 12:29:02 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 53821 invoked by uid 89); 18 Aug 2016 12:29:01 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 12:28:56 +0000
From: "manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/49774] [meta-bug] restrict qualification aliasing issues
Date: Thu, 18 Aug 2016 12:29:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 4.7.0
X-Bugzilla-Keywords: meta-bug
X-Bugzilla-Severity: normal
X-Bugzilla-Who: manu at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on dependson everconfirmed alias
Message-ID: <bug-49774-4-EB54WIzs9Z@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-49774-4@http.gcc.gnu.org/bugzilla/>
References: <bug-49774-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02344.txt.bz2
Content-length: 1000

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=49774

Manuel López-Ibáñez <manu at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-18
         Depends on|                            |50419, 65330
     Ever confirmed|0                           |1
              Alias|                            |restrict

--- Comment #1 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
confirm so that it doesn't show up in the list of UNCONFIRMED.


Referenced Bugs:

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=50419
[Bug 50419] Bad interaction between data-ref and disambiguation with restrict
pointers
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65330
[Bug 65330] restrict should be considered when folding through references from
global vars
>From gcc-bugs-return-535009-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 12:34:24 2016
Return-Path: <gcc-bugs-return-535009-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 69778 invoked by alias); 18 Aug 2016 12:34:23 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 69758 invoked by uid 89); 18 Aug 2016 12:34:22 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 12:34:12 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/50419] Casts to restrict pointers have no effect
Date: Thu, 18 Aug 2016 12:34:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 4.7.0
X-Bugzilla-Keywords: alias, missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on short_desc everconfirmed
Message-ID: <bug-50419-4-sd184l9nLz@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-50419-4@http.gcc.gnu.org/bugzilla/>
References: <bug-50419-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02345.txt.bz2
Content-length: 932

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=50419

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |alias, missed-optimization
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-18
            Summary|Bad interaction between     |Casts to restrict pointers
                   |data-ref and disambiguation |have no effect
                   |with restrict pointers      |
     Ever confirmed|0                           |1

--- Comment #3 from Richard Biener <rguenth at gcc dot gnu.org> ---
Note that "cast-restrict" support has been removed and thus it is now expected
that only the restrict argument case is handled.

But - confirmed.  Nothing to do with dataref analysis though.
>From gcc-bugs-return-535010-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 12:39:17 2016
Return-Path: <gcc-bugs-return-535010-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 37219 invoked by alias); 18 Aug 2016 12:39:16 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 37206 invoked by uid 89); 18 Aug 2016 12:39:15 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=forcing, choosen, Std, our
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 12:39:05 +0000
From: "dawid_jurek at vp dot pl" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/77288] New: Std::experimental::optional::operator= implementation is broken in gcc 6.1
Date: Thu, 18 Aug 2016 12:39:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dawid_jurek at vp dot pl
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-77288-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02346.txt.bz2
Content-length: 5655

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77288

            Bug ID: 77288
           Summary: Std::experimental::optional::operator= implementation
                    is broken in gcc 6.1
           Product: gcc
           Version: 6.1.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: libstdc++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: dawid_jurek at vp dot pl
  Target Milestone: ---

Created attachment 39470
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39470&action=edit
Unit tests triggering bug in operator=

0. Gcc version.

./gcc -v

Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/6.1.1/lto-wrapper
Target: x86_64-pc-linux-gnu
Configured with: /build/gcc-multilib/src/gcc/configure --prefix=/usr
--libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man
--infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/
--enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++ --enable-shared
--enable-threads=posix --enable-libmpx --with-system-zlib --with-isl
--enable-__cxa_atexit --disable-libunwind-exceptions --enable-clocale=gnu
--disable-libstdcxx-pch --disable-libssp --enable-gnu-unique-object
--enable-linker-build-id --enable-lto --enable-plugin
--enable-install-libiberty --with-linker-hash-style=gnu
--enable-gnu-indirect-function --enable-multilib --disable-werror
--enable-checking=release
Thread model: posix
gcc version 6.1.1 20160707 (GCC) 


1. Issue.

C++ code snippet:
   
std::experimental::optional<std::experimental::optional<std::exception_ptr>>
nested_element;
    std::experimental::optional<std::exception_ptr> element = {};
    nested_element = element;
    assert(bool(nested_element));

In above snippet assertion passes for gcc 5.1 but fails for gcc 6.1. 
Analogous code passes with Boost.Optional as well.

From http://en.cppreference.com/w/cpp/experimental/optional:
"The optional object (of type T) contains a value in the following conditions:
 -   The object is initialized with a value of type T (...)"

so nested_element should contain a value which means operator= implementation
in gcc 6.1 is broken.

2. Analysis

According to http://en.cppreference.com/w/cpp/experimental/optional/operator%3D
there are 4 overloads of optional::operator=. 
We are interested in 2 versions here:
[2] optional& operator=( const optional& other );
[4] template< class U >
optional& operator=( U&& value );

Let's back to our problematic expression:
nested_element = element;

The root cause of problem is that in gcc 6.1 case version [2] is called but in
gcc 5.1 and Boost.Optional another version is called - [4] one.

Looking deeper on broken std::experimental::optional::operator= [4]
implementation there is:

      template<typename _Up,
               enable_if_t<__and_<
                           __not_<is_same<_Up, nullopt_t>>,
                           __not_<__is_optional<_Up>>>::value,
                         bool> = true>
        optional&
        operator=(_Up&& __u)
{
   ...
}

which means overload resolution ommits this candidate because of occurence
following expression in enable_if body:
__not_<__is_optional<_Up>> 
After substitution failure another overload candidate (version [2]) is choosen
at compilation level:

  template<typename _Up,
               enable_if_t<__and_<
                 __not_<is_same<_Tp, _Up>>>::value,
                           bool> = true>
        optional&
        operator=(const optional<_Up>& __u)
        {
            if (__u)
            {
                ...
            }
            else
            {
                this->_M_reset();
            }
            return *this;
        }

In runtime during nested_element = element expression evaluation flow enters to
operator=(const optional<_Up>& __u) 
and after that to this->_M_reset(); because __u is nullopt. Now it's clear that
this->_M_engaged field is not set and finally
bool(nested_element) returns _M_engaged content which is false.

3. Solution

As we saw version [2] of operator= is not ready for handling assignment when
_Tp (type of this) is nested optional.
IMO the best what we can is forcing overload resoultion to choose version [4]
in such case as it was done in gcc 5.1 implementation.
Basing on gcc 5.1 implementation we can relax rules for overload resoultion for
operator= [4] version.

It's enaugh to replace is_optional trait by decay trait in enable_if_t from: 
__not_<__is_optional<_Up>>>::value
to:
is_same< std::decay_t<_Up>, _Tp>>::value

Now behaviour is the same as in gcc 5.1 - operator=(_Up&& __u) is chosen in 2
situations:
1. _Up is NOT optional
2. _Up is optional AND _Up is same as _Tp modulo cv-qualifiers, references etc.

I prepared impl-fix.patch for gcc 6.1 containing above change. After applying
this patch code snippet from beginning of my email is fixed and assertion pass.

4. Tests

Unfotunately existing Libstdc++-v3 unit tests are not able to detect bug I
describe here. That's why I prepared another patch - extra-tests.patch. 
This patch just add 2 simple tests in form of extra 7.cc file under
libstdc++-v3/testsuite/experimental/optional/assignment/ path.
With those patches following workflow is recommended - apply extra-tests.patch
and run all tests. 
Only unit tests from 7.cc should fail. After that please apply impl-fix.patch
and run all unit tests again. Now everything should pass.

I believe that's all. Anyway if I missed something please ask me.

Regards,
Dawid
>From gcc-bugs-return-535011-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 12:41:39 2016
Return-Path: <gcc-bugs-return-535011-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 47498 invoked by alias); 18 Aug 2016 12:41:38 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 47434 invoked by uid 89); 18 Aug 2016 12:41:33 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:313
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 12:41:23 +0000
From: "dawid_jurek at vp dot pl" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/77288] Std::experimental::optional::operator= implementation is broken in gcc 6.1
Date: Thu, 18 Aug 2016 12:41:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dawid_jurek at vp dot pl
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: attachments.created
Message-ID: <bug-77288-4-FgrtaknVf0@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77288-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77288-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02347.txt.bz2
Content-length: 226

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77288

--- Comment #1 from dawid_jurek at vp dot pl ---
Created attachment 39471
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39471&action=edit
Fix bug in operator=
>From gcc-bugs-return-535012-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 13:21:18 2016
Return-Path: <gcc-bugs-return-535012-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 116533 invoked by alias); 18 Aug 2016 13:21:18 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 116517 invoked by uid 89); 18 Aug 2016 13:21:16 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 13:21:06 +0000
From: "ville.voutilainen at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/77288] Std::experimental::optional::operator= implementation is broken in gcc 6.1
Date: Thu, 18 Aug 2016 13:21:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ville.voutilainen at gmail dot com
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: ville.voutilainen at gmail dot com
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc assigned_to everconfirmed
Message-ID: <bug-77288-4-gvJJd7qdNY@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77288-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77288-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02348.txt.bz2
Content-length: 687

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77288

Ville Voutilainen <ville.voutilainen at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |ASSIGNED
   Last reconfirmed|                            |2016-08-18
                 CC|                            |ville.voutilainen at gmail dot com
           Assignee|unassigned at gcc dot gnu.org      |ville.voutilainen at gmail dot com
     Ever confirmed|0                           |1

--- Comment #2 from Ville Voutilainen <ville.voutilainen at gmail dot com> ---
Mine.
>From gcc-bugs-return-535013-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 14:39:59 2016
Return-Path: <gcc-bugs-return-535013-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 58962 invoked by alias); 18 Aug 2016 14:39:59 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 58952 invoked by uid 89); 18 Aug 2016 14:39:58 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:583
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 14:39:48 +0000
From: "ville.voutilainen at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/77288] Std::experimental::optional::operator= implementation is broken in gcc 6.1
Date: Thu, 18 Aug 2016 14:39:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ville.voutilainen at gmail dot com
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: ville.voutilainen at gmail dot com
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77288-4-1TOYsaCHVO@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77288-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77288-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02349.txt.bz2
Content-length: 498

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77288

--- Comment #3 from Ville Voutilainen <ville.voutilainen at gmail dot com> ---
>Now behaviour is the same as in gcc 5.1 - operator=(_Up&& __u) is chosen in 2 situations:
>1. _Up is NOT optional
>2. _Up is optional AND _Up is same as _Tp modulo cv-qualifiers, references etc.

How do you expect converting assignments to work if that signature
sfinaes away if decay<_Up> is not _Tp? As in, code like

optional<string> os;
os = "meow";
>From gcc-bugs-return-535014-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 14:44:20 2016
Return-Path: <gcc-bugs-return-535014-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 106364 invoked by alias); 18 Aug 2016 14:44:19 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 106273 invoked by uid 89); 18 Aug 2016 14:44:15 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=_fatal_insn, sk:_fatal_, rtx_def, recogc
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 14:44:05 +0000
From: "pthaugen at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/77289] New: ICE in extract_constrain_insn, at recog.c:2212 on powerpc64
Date: Thu, 18 Aug 2016 14:44:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pthaugen at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter cc target_milestone cf_gcchost cf_gcctarget cf_gccbuild
Message-ID: <bug-77289-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02350.txt.bz2
Content-length: 3416

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77289

            Bug ID: 77289
           Summary: ICE in extract_constrain_insn, at recog.c:2212 on
                    powerpc64
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: rtl-optimization
          Assignee: unassigned at gcc dot gnu.org
          Reporter: pthaugen at gcc dot gnu.org
                CC: bergner at gcc dot gnu.org, dje.gcc at gmail dot com,
                    seurer at gcc dot gnu.org, wschmidt at gcc dot gnu.org
  Target Milestone: ---
              Host: powerpc64-unknown-linux-gnu
            Target: powerpc64-unknown-linux-gnu
             Build: powerpc64-unknown-linux-gnu

Following ICE hit while building 456.hmmer from cpu2006. Bisected to r239105.

[pthaugen@igoo delta]$ cat modelmakers.c
typedef struct msa_struct
{
  int alen;
  int nseq;
}
MSA;
extern int Alphabet_size;
double log (double);
float FDot (float *, float *, int);
void free (void *);
void
P7Maxmodelmaker (MSA * msa, float *null)
{
  int idx;
  int i, j;
  int x;
  float **matc;
  float cij[8], tij[8];
  float insp[20];
  float insc[20];
  float *sc;
  int first, last;
  float new, bestsc;
  int code;
  for (x = 0; x < Alphabet_size; x++)
    insp[x] =
      ((insp[x] / null[x]) >
       0 ? log (insp[x] / null[x]) * 1.44269504 : -9999.);
  for (last = msa->alen; i > 0; i--)
    {
      for (idx = 0; idx < msa->nseq; j++)
        {
          if (code == 1)
            {
              new =
                sc[j] + FDot (tij, cij, 7) + FDot (insp, insc, Alphabet_size);
            }
        }
    }
  for (i = 1; i <= msa->alen; i++)
    free (matc[i]);
}


[pthaugen@igoo delta]$ ~/install/gcc/trunk/bin/gcc -c -m32 -O3 -mcpu=power7
-funroll-loops -ffast-math modelmakers.c
modelmakers.c: In function 'P7Maxmodelmaker':
modelmakers.c:42:1: error: insn does not satisfy its constraints:
 }
 ^
(insn 452 451 453 3 (parallel [
            (set (reg:SF 61 29 [orig:258 MEM[base: _68, offset: 0B] ] [258])
                (mem:SF (plus:SI (reg/f:SI 1 1)
                        (const_int 88 [0x58])) [1 MEM[base: _68, offset: 0B]+0
S4 A32]))
            (set (reg:SI 31 31 [orig:328 ivtmp.25 ] [328])
                (plus:SI (reg/f:SI 1 1)
                    (const_int 88 [0x58])))
        ]) modelmakers.c:27 617 {*movsf_update1}
     (nil))
modelmakers.c:42:1: internal compiler error: in extract_constrain_insn, at
recog.c:2212
0x107ce193 _fatal_insn(char const*, rtx_def const*, char const*, int, char
const*)
        /home/pthaugen/src/gcc/trunk/gcc/gcc/rtl-error.c:108
0x107ce1eb _fatal_insn_not_found(rtx_def const*, char const*, int, char const*)
        /home/pthaugen/src/gcc/trunk/gcc/gcc/rtl-error.c:119
0x10792daf extract_constrain_insn(rtx_insn*)
        /home/pthaugen/src/gcc/trunk/gcc/gcc/recog.c:2212
0x1066d10b check_rtl
        /home/pthaugen/src/gcc/trunk/gcc/gcc/lra.c:2108
0x106710bb lra(_IO_FILE*)
        /home/pthaugen/src/gcc/trunk/gcc/gcc/lra.c:2516
0x10615317 do_reload
        /home/pthaugen/src/gcc/trunk/gcc/gcc/ira.c:5385
0x10615317 execute
        /home/pthaugen/src/gcc/trunk/gcc/gcc/ira.c:5569
Please submit a full bug report,
with preprocessed source if appropriate.
Please include the complete backtrace with any bug report.
See <http://gcc.gnu.org/bugs.html> for instructions.
>From gcc-bugs-return-535015-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 14:47:15 2016
Return-Path: <gcc-bugs-return-535015-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 110334 invoked by alias); 18 Aug 2016 14:47:15 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 110325 invoked by uid 89); 18 Aug 2016 14:47:14 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:3068
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 14:47:04 +0000
From: "cltang at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/70895] OpenACC: loop reduction does not work. Output is zero.
Date: Thu, 18 Aug 2016 14:47:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: openacc
X-Bugzilla-Severity: normal
X-Bugzilla-Who: cltang at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: cltang at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-70895-4-2q9hKQV9Fu@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70895-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70895-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02351.txt.bz2
Content-length: 3318

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70895

--- Comment #6 from Chung-Lin Tang <cltang at gcc dot gnu.org> ---
Author: cltang
Date: Thu Aug 18 14:46:19 2016
New Revision: 239576

URL: https://gcc.gnu.org/viewcvs?rev=239576&root=gcc&view=rev
Log:
2016-08-18  Chung-Lin Tang  <cltang@codesourcery.com>

        PR middle-end/70895
        gcc/
        * gimplify.c (omp_add_variable): Adjust/add variable mapping on
        enclosing parallel construct for reduction variables on OpenACC loop
        directives.

        gcc/testsuite/
        * gfortran.dg/goacc/loop-tree-1.f90: Add gimple scan-tree-dump test.
        * c-c++-common/goacc/reduction-1.c: Likewise.
        * c-c++-common/goacc/reduction-2.c: Likewise.
        * c-c++-common/goacc/reduction-3.c: Likewise.
        * c-c++-common/goacc/reduction-4.c: Likewise.

        libgomp/
        * testsuite/libgomp.oacc-fortran/reduction-7.f90: Add explicit
        firstprivate clauses.
        * testsuite/libgomp.oacc-fortran/reduction-6.f90: Remove explicit
        copy clauses.
        * testsuite/libgomp.oacc-c-c++-common/reduction-7.c: Likewise.
        * testsuite/libgomp.oacc-c-c++-common/reduction-cplx-flt.c: Likewise.
        * testsuite/libgomp.oacc-c-c++-common/reduction-flt.c: Likewise.
        * testsuite/libgomp.oacc-c-c++-common/collapse-2.c: Likewise.
        * testsuite/libgomp.oacc-c-c++-common/loop-red-wv-1.c: Likewise.
        * testsuite/libgomp.oacc-c-c++-common/collapse-4.c: Likewise.
        * testsuite/libgomp.oacc-c-c++-common/loop-red-v-1.c: Likewise.
        * testsuite/libgomp.oacc-c-c++-common/reduction-cplx-dbl.c: Likewise.
        * testsuite/libgomp.oacc-c-c++-common/loop-red-g-1.c: Likewise.
        * testsuite/libgomp.oacc-c-c++-common/loop-red-gwv-1.c: Likewise.
        * testsuite/libgomp.oacc-c-c++-common/loop-red-w-1.c: Likewise.
        * testsuite/libgomp.oacc-c-c++-common/reduction-dbl.c: Likewise.


Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/gimplify.c
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/testsuite/c-c++-common/goacc/reduction-1.c
    trunk/gcc/testsuite/c-c++-common/goacc/reduction-2.c
    trunk/gcc/testsuite/c-c++-common/goacc/reduction-3.c
    trunk/gcc/testsuite/c-c++-common/goacc/reduction-4.c
    trunk/gcc/testsuite/gfortran.dg/goacc/loop-tree-1.f90
    trunk/libgomp/ChangeLog
    trunk/libgomp/testsuite/libgomp.oacc-c-c++-common/collapse-2.c
    trunk/libgomp/testsuite/libgomp.oacc-c-c++-common/collapse-4.c
    trunk/libgomp/testsuite/libgomp.oacc-c-c++-common/loop-red-g-1.c
    trunk/libgomp/testsuite/libgomp.oacc-c-c++-common/loop-red-gwv-1.c
    trunk/libgomp/testsuite/libgomp.oacc-c-c++-common/loop-red-v-1.c
    trunk/libgomp/testsuite/libgomp.oacc-c-c++-common/loop-red-w-1.c
    trunk/libgomp/testsuite/libgomp.oacc-c-c++-common/loop-red-wv-1.c
    trunk/libgomp/testsuite/libgomp.oacc-c-c++-common/reduction-7.c
    trunk/libgomp/testsuite/libgomp.oacc-c-c++-common/reduction-cplx-dbl.c
    trunk/libgomp/testsuite/libgomp.oacc-c-c++-common/reduction-cplx-flt.c
    trunk/libgomp/testsuite/libgomp.oacc-c-c++-common/reduction-dbl.c
    trunk/libgomp/testsuite/libgomp.oacc-c-c++-common/reduction-flt.c
    trunk/libgomp/testsuite/libgomp.oacc-fortran/reduction-6.f90
    trunk/libgomp/testsuite/libgomp.oacc-fortran/reduction-7.f90
>From gcc-bugs-return-535016-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 14:52:48 2016
Return-Path: <gcc-bugs-return-535016-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 117037 invoked by alias); 18 Aug 2016 14:52:48 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 117020 invoked by uid 89); 18 Aug 2016 14:52:47 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:273
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 14:52:37 +0000
From: "seurer at linux dot vnet.ibm.com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/77282] [7 regression] test case gcc.dg/autopar/pr46193.c fails starting with r239414
Date: Thu, 18 Aug 2016 14:52:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: seurer at linux dot vnet.ibm.com
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77282-4-N1PXjVoDoZ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77282-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77282-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02352.txt.bz2
Content-length: 168

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77282

--- Comment #5 from Bill Seurer <seurer at linux dot vnet.ibm.com> ---
Just did a test run and it works.  Thanks!
>From gcc-bugs-return-535017-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 14:57:06 2016
Return-Path: <gcc-bugs-return-535017-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 5360 invoked by alias); 18 Aug 2016 14:57:06 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 4576 invoked by uid 89); 18 Aug 2016 14:57:05 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 14:56:54 +0000
From: "cltang at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/70895] OpenACC: loop reduction does not work. Output is zero.
Date: Thu, 18 Aug 2016 14:57:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: openacc
X-Bugzilla-Severity: normal
X-Bugzilla-Who: cltang at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: cltang at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-70895-4-vhneNwax2f@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70895-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70895-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02353.txt.bz2
Content-length: 3819

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70895

--- Comment #7 from Chung-Lin Tang <cltang at gcc dot gnu.org> ---
Author: cltang
Date: Thu Aug 18 14:56:11 2016
New Revision: 239577

URL: https://gcc.gnu.org/viewcvs?rev=239577&root=gcc&view=rev
Log:
Backport from mainline:

2016-08-18  Chung-Lin Tang  <cltang@codesourcery.com>

        PR middle-end/70895
        gcc/
        * gimplify.c (omp_add_variable): Adjust/add variable mapping on
        enclosing parallel construct for reduction variables on OpenACC loop
        directives.

        gcc/testsuite/
        * gfortran.dg/goacc/loop-tree-1.f90: Add gimple scan-tree-dump test.
        * c-c++-common/goacc/reduction-1.c: Likewise.
        * c-c++-common/goacc/reduction-2.c: Likewise.
        * c-c++-common/goacc/reduction-3.c: Likewise.
        * c-c++-common/goacc/reduction-4.c: Likewise.

        libgomp/
        * testsuite/libgomp.oacc-fortran/reduction-7.f90: Add explicit
        firstprivate clauses.
        * testsuite/libgomp.oacc-fortran/reduction-6.f90: Remove explicit
        copy clauses.
        * testsuite/libgomp.oacc-c-c++-common/reduction-7.c: Likewise.
        * testsuite/libgomp.oacc-c-c++-common/reduction-cplx-flt.c: Likewise.
        * testsuite/libgomp.oacc-c-c++-common/reduction-flt.c: Likewise.
        * testsuite/libgomp.oacc-c-c++-common/collapse-2.c: Likewise.
        * testsuite/libgomp.oacc-c-c++-common/loop-red-wv-1.c: Likewise.
        * testsuite/libgomp.oacc-c-c++-common/collapse-4.c: Likewise.
        * testsuite/libgomp.oacc-c-c++-common/loop-red-v-1.c: Likewise.
        * testsuite/libgomp.oacc-c-c++-common/reduction-cplx-dbl.c: Likewise.
        * testsuite/libgomp.oacc-c-c++-common/loop-red-g-1.c: Likewise.
        * testsuite/libgomp.oacc-c-c++-common/loop-red-gwv-1.c: Likewise.
        * testsuite/libgomp.oacc-c-c++-common/loop-red-w-1.c: Likewise.
        * testsuite/libgomp.oacc-c-c++-common/reduction-dbl.c: Likewise.


Modified:
    branches/gcc-6-branch/gcc/ChangeLog
    branches/gcc-6-branch/gcc/gimplify.c
    branches/gcc-6-branch/gcc/testsuite/ChangeLog
    branches/gcc-6-branch/gcc/testsuite/c-c++-common/goacc/reduction-1.c
    branches/gcc-6-branch/gcc/testsuite/c-c++-common/goacc/reduction-2.c
    branches/gcc-6-branch/gcc/testsuite/c-c++-common/goacc/reduction-3.c
    branches/gcc-6-branch/gcc/testsuite/c-c++-common/goacc/reduction-4.c
    branches/gcc-6-branch/gcc/testsuite/gfortran.dg/goacc/loop-tree-1.f90
    branches/gcc-6-branch/libgomp/ChangeLog
   
branches/gcc-6-branch/libgomp/testsuite/libgomp.oacc-c-c++-common/collapse-2.c
   
branches/gcc-6-branch/libgomp/testsuite/libgomp.oacc-c-c++-common/collapse-4.c
   
branches/gcc-6-branch/libgomp/testsuite/libgomp.oacc-c-c++-common/loop-red-g-1.c
   
branches/gcc-6-branch/libgomp/testsuite/libgomp.oacc-c-c++-common/loop-red-gwv-1.c
   
branches/gcc-6-branch/libgomp/testsuite/libgomp.oacc-c-c++-common/loop-red-v-1.c
   
branches/gcc-6-branch/libgomp/testsuite/libgomp.oacc-c-c++-common/loop-red-w-1.c
   
branches/gcc-6-branch/libgomp/testsuite/libgomp.oacc-c-c++-common/loop-red-wv-1.c
   
branches/gcc-6-branch/libgomp/testsuite/libgomp.oacc-c-c++-common/reduction-7.c
   
branches/gcc-6-branch/libgomp/testsuite/libgomp.oacc-c-c++-common/reduction-cplx-dbl.c
   
branches/gcc-6-branch/libgomp/testsuite/libgomp.oacc-c-c++-common/reduction-cplx-flt.c
   
branches/gcc-6-branch/libgomp/testsuite/libgomp.oacc-c-c++-common/reduction-dbl.c
   
branches/gcc-6-branch/libgomp/testsuite/libgomp.oacc-c-c++-common/reduction-flt.c
   
branches/gcc-6-branch/libgomp/testsuite/libgomp.oacc-fortran/reduction-6.f90
   
branches/gcc-6-branch/libgomp/testsuite/libgomp.oacc-fortran/reduction-7.f90
>From gcc-bugs-return-535018-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 15:00:46 2016
Return-Path: <gcc-bugs-return-535018-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 72419 invoked by alias); 18 Aug 2016 15:00:45 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 71057 invoked by uid 89); 18 Aug 2016 15:00:45 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 15:00:35 +0000
From: "hjl at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72839] MOVE_RATIO is too small for Lakemont
Date: Thu, 18 Aug 2016 15:00:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: hjl at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72839-4-wKwN2jH3BG@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72839-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72839-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02354.txt.bz2
Content-length: 754

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72839

--- Comment #1 from hjl at gcc dot gnu.org <hjl at gcc dot gnu.org> ---
Author: hjl
Date: Thu Aug 18 14:59:46 2016
New Revision: 239578

URL: https://gcc.gnu.org/viewcvs?rev=239578&root=gcc&view=rev
Log:
Increase MOVE_RATIO to 17 for Lakemont

Larger MOVE_RATIO will always make code faster.  17 is the number with
smaller code sizes for Lakemont.

gcc/

        PR target/72839
        * config/i386/i386.c (lakemont_cost): Set MOVE_RATIO to 17.

gcc/testsuite/

        PR target/72839
        * gcc.target/i386/pr72839.c: New test.

Added:
    trunk/gcc/testsuite/gcc.target/i386/pr72839.c
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/config/i386/i386.c
    trunk/gcc/testsuite/ChangeLog
>From gcc-bugs-return-535019-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 15:02:45 2016
Return-Path: <gcc-bugs-return-535019-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 34944 invoked by alias); 18 Aug 2016 15:02:45 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 34930 invoked by uid 89); 18 Aug 2016 15:02:44 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 15:02:34 +0000
From: "cltang at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/70895] OpenACC: loop reduction does not work. Output is zero.
Date: Thu, 18 Aug 2016 15:02:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: openacc
X-Bugzilla-Severity: normal
X-Bugzilla-Who: cltang at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: cltang at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-70895-4-eFQeUUXNAZ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70895-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70895-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02355.txt.bz2
Content-length: 3859

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70895

--- Comment #8 from Chung-Lin Tang <cltang at gcc dot gnu.org> ---
Author: cltang
Date: Thu Aug 18 15:01:50 2016
New Revision: 239579

URL: https://gcc.gnu.org/viewcvs?rev=239579&root=gcc&view=rev
Log:
Backport from mainline:

2016-08-18  Chung-Lin Tang  <cltang@codesourcery.com>

        PR middle-end/70895
        gcc/
        * gimplify.c (omp_add_variable): Adjust/add variable mapping on
        enclosing parallel construct for reduction variables on OpenACC loop
        directives.

        gcc/testsuite/
        * gfortran.dg/goacc/loop-tree-1.f90: Add gimple scan-tree-dump test.
        * c-c++-common/goacc/reduction-1.c: Likewise.
        * c-c++-common/goacc/reduction-2.c: Likewise.
        * c-c++-common/goacc/reduction-3.c: Likewise.
        * c-c++-common/goacc/reduction-4.c: Likewise.

        libgomp/
        * testsuite/libgomp.oacc-fortran/reduction-7.f90: Add explicit
        firstprivate clauses.
        * testsuite/libgomp.oacc-fortran/reduction-6.f90: Remove explicit
        copy clauses.
        * testsuite/libgomp.oacc-c-c++-common/reduction-7.c: Likewise.
        * testsuite/libgomp.oacc-c-c++-common/reduction-cplx-flt.c: Likewise.
        * testsuite/libgomp.oacc-c-c++-common/reduction-flt.c: Likewise.
        * testsuite/libgomp.oacc-c-c++-common/collapse-2.c: Likewise.
        * testsuite/libgomp.oacc-c-c++-common/loop-red-wv-1.c: Likewise.
        * testsuite/libgomp.oacc-c-c++-common/collapse-4.c: Likewise.
        * testsuite/libgomp.oacc-c-c++-common/loop-red-v-1.c: Likewise.
        * testsuite/libgomp.oacc-c-c++-common/reduction-cplx-dbl.c: Likewise.
        * testsuite/libgomp.oacc-c-c++-common/loop-red-g-1.c: Likewise.
        * testsuite/libgomp.oacc-c-c++-common/loop-red-gwv-1.c: Likewise.
        * testsuite/libgomp.oacc-c-c++-common/loop-red-w-1.c: Likewise.
        * testsuite/libgomp.oacc-c-c++-common/reduction-dbl.c: Likewise.


Modified:
    branches/gomp-4_0-branch/gcc/gimplify.c
    branches/gomp-4_0-branch/gcc/testsuite/ChangeLog.gomp
    branches/gomp-4_0-branch/gcc/testsuite/c-c++-common/goacc/reduction-1.c
    branches/gomp-4_0-branch/gcc/testsuite/c-c++-common/goacc/reduction-2.c
    branches/gomp-4_0-branch/gcc/testsuite/c-c++-common/goacc/reduction-3.c
    branches/gomp-4_0-branch/gcc/testsuite/c-c++-common/goacc/reduction-4.c
    branches/gomp-4_0-branch/gcc/testsuite/gfortran.dg/goacc/loop-tree-1.f90
    branches/gomp-4_0-branch/libgomp/ChangeLog.gomp
   
branches/gomp-4_0-branch/libgomp/testsuite/libgomp.oacc-c-c++-common/collapse-2.c
   
branches/gomp-4_0-branch/libgomp/testsuite/libgomp.oacc-c-c++-common/collapse-4.c
   
branches/gomp-4_0-branch/libgomp/testsuite/libgomp.oacc-c-c++-common/loop-red-g-1.c
   
branches/gomp-4_0-branch/libgomp/testsuite/libgomp.oacc-c-c++-common/loop-red-gwv-1.c
   
branches/gomp-4_0-branch/libgomp/testsuite/libgomp.oacc-c-c++-common/loop-red-v-1.c
   
branches/gomp-4_0-branch/libgomp/testsuite/libgomp.oacc-c-c++-common/loop-red-w-1.c
   
branches/gomp-4_0-branch/libgomp/testsuite/libgomp.oacc-c-c++-common/loop-red-wv-1.c
   
branches/gomp-4_0-branch/libgomp/testsuite/libgomp.oacc-c-c++-common/reduction-7.c
   
branches/gomp-4_0-branch/libgomp/testsuite/libgomp.oacc-c-c++-common/reduction-cplx-dbl.c
   
branches/gomp-4_0-branch/libgomp/testsuite/libgomp.oacc-c-c++-common/reduction-cplx-flt.c
   
branches/gomp-4_0-branch/libgomp/testsuite/libgomp.oacc-c-c++-common/reduction-dbl.c
   
branches/gomp-4_0-branch/libgomp/testsuite/libgomp.oacc-c-c++-common/reduction-flt.c
   
branches/gomp-4_0-branch/libgomp/testsuite/libgomp.oacc-fortran/reduction-6.f90
   
branches/gomp-4_0-branch/libgomp/testsuite/libgomp.oacc-fortran/reduction-7.f90
>From gcc-bugs-return-535020-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 16:39:56 2016
Return-Path: <gcc-bugs-return-535020-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 48874 invoked by alias); 18 Aug 2016 16:39:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 48840 invoked by uid 89); 18 Aug 2016 16:39:55 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 16:39:44 +0000
From: "mpolacek at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/71514] ICE on C11 code with atomic exchange at -O1 and above on x86_64-linux-gnu: in copy_reference_ops_from_ref, at tree-ssa-sccvn.c:879
Date: Thu, 18 Aug 2016 16:39:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mpolacek at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: mpolacek at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71514-4-6AhUUztSeq@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71514-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71514-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02356.txt.bz2
Content-length: 589

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71514

--- Comment #14 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
Author: mpolacek
Date: Thu Aug 18 16:38:49 2016
New Revision: 239581

URL: https://gcc.gnu.org/viewcvs?rev=239581&root=gcc&view=rev
Log:
        PR c/71514
        * c-common.c (get_atomic_generic_size): Disallow pointer-to-function
        and pointer-to-VLA.

        * gcc.dg/pr71514.c: New test.

Added:
    trunk/gcc/testsuite/gcc.dg/pr71514.c
Modified:
    trunk/gcc/c-family/ChangeLog
    trunk/gcc/c-family/c-common.c
    trunk/gcc/testsuite/ChangeLog
>From gcc-bugs-return-535021-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 16:40:06 2016
Return-Path: <gcc-bugs-return-535021-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 50151 invoked by alias); 18 Aug 2016 16:40:06 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 50135 invoked by uid 89); 18 Aug 2016 16:40:05 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 16:39:55 +0000
From: "mpolacek at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/71514] ICE on C11 code with atomic exchange at -O1 and above on x86_64-linux-gnu: in copy_reference_ops_from_ref, at tree-ssa-sccvn.c:879
Date: Thu, 18 Aug 2016 16:40:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mpolacek at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: mpolacek at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-71514-4-SnEN39V8rv@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71514-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71514-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02357.txt.bz2
Content-length: 966

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71514

Marek Polacek <mpolacek at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #14 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
Author: mpolacek
Date: Thu Aug 18 16:38:49 2016
New Revision: 239581

URL: https://gcc.gnu.org/viewcvs?rev=239581&root=gcc&view=rev
Log:
        PR c/71514
        * c-common.c (get_atomic_generic_size): Disallow pointer-to-function
        and pointer-to-VLA.

        * gcc.dg/pr71514.c: New test.

Added:
    trunk/gcc/testsuite/gcc.dg/pr71514.c
Modified:
    trunk/gcc/c-family/ChangeLog
    trunk/gcc/c-family/c-common.c
    trunk/gcc/testsuite/ChangeLog

--- Comment #15 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
Fixed.
>From gcc-bugs-return-535022-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 16:41:34 2016
Return-Path: <gcc-bugs-return-535022-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 53162 invoked by alias); 18 Aug 2016 16:41:34 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 53131 invoked by uid 89); 18 Aug 2016 16:41:33 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 16:41:23 +0000
From: "mpolacek at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/71514] ICE on C11 code with atomic exchange at -O1 and above on x86_64-linux-gnu: in copy_reference_ops_from_ref, at tree-ssa-sccvn.c:879
Date: Thu, 18 Aug 2016 16:41:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mpolacek at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: mpolacek at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-71514-4-2WsufwCIPs@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71514-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71514-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02358.txt.bz2
Content-length: 430

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71514

Marek Polacek <mpolacek at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #15 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
Fixed.
>From gcc-bugs-return-535023-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 16:51:50 2016
Return-Path: <gcc-bugs-return-535023-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 126838 invoked by alias); 18 Aug 2016 16:51:49 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 126829 invoked by uid 89); 18 Aug 2016 16:51:48 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=ownership, transfer
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 16:51:38 +0000
From: "dawid_jurek at vp dot pl" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/77288] Std::experimental::optional::operator= implementation is broken in gcc 6.1
Date: Thu, 18 Aug 2016 16:51:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dawid_jurek at vp dot pl
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: ville.voutilainen at gmail dot com
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77288-4-jjk4uvTS6c@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77288-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77288-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02359.txt.bz2
Content-length: 1154

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77288

--- Comment #4 from dawid_jurek at vp dot pl ---
After applying my patch code snippet you provided compile, run and works as
expected. To be more precise I'm talking about such snippet:

std::experimental::optional<std::string> os;
os = "meow";
assert(bool(os) && *os == "meow");

You are right that operator=(_Up&& __u) won't be choose here as overload
candidate. 
Anyway there is converting constructor:

template <typename _Up, .. >
constexpr optional(_Up&& __t) 

and generated move constructor:

optional<_Tp>::optional(optional<_Tp>::optional<_Tp>&& )

Let's see what happen when flow achieve expression: os = "meow" 

1. Call optional::optional<_Tp>::optional(_Up&& __t) where _Tp = std::string,
_Up = char const (&) [13]  
   for r-value "meow" and create temporary optional<std::string> containing
"meow".
2. Call generated
optional::optional<_Tp>::optional(optional<_Tp>::optional<_Tp>&& ) where _Tp =
std::string
   and just transfer ownership from temporary optional to os.
3. Now os is engaged, os contains "meow" and assertion is happy. 

Regards,
Dawid
>From gcc-bugs-return-535024-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 17:01:45 2016
Return-Path: <gcc-bugs-return-535024-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 112483 invoked by alias); 18 Aug 2016 17:01:44 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 112436 invoked by uid 89); 18 Aug 2016 17:01:44 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 17:01:34 +0000
From: "vehre at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/72698] [5/6/7 Regression] ICE in lhd_incomplete_type_error, at langhooks.c:205
Date: Thu, 18 Aug 2016 17:01:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: vehre at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: vehre at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-72698-4-nH3sGfFkHz@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72698-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72698-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02360.txt.bz2
Content-length: 426

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72698

vehre at gcc dot gnu.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |RESOLVED
         Resolution|---                         |FIXED

--- Comment #12 from vehre at gcc dot gnu.org ---
No regressions reported so far, closing.
>From gcc-bugs-return-535025-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 17:02:08 2016
Return-Path: <gcc-bugs-return-535025-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 113329 invoked by alias); 18 Aug 2016 17:02:08 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 113295 invoked by uid 89); 18 Aug 2016 17:02:05 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=UD:tree.c, tree.c, treec, sk:wide_in
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 17:01:58 +0000
From: "vehre at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/71936] [6/7 Regression] ICE in wide_int_to_tree, at tree.c:1487
Date: Thu, 18 Aug 2016 17:02:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: vehre at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: vehre at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-71936-4-NpEN06tOA0@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71936-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71936-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02361.txt.bz2
Content-length: 426

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71936

vehre at gcc dot gnu.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |RESOLVED
         Resolution|---                         |FIXED

--- Comment #10 from vehre at gcc dot gnu.org ---
No regressions reported so far, closing.
>From gcc-bugs-return-535026-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 17:02:18 2016
Return-Path: <gcc-bugs-return-535026-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 114059 invoked by alias); 18 Aug 2016 17:02:17 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 114041 invoked by uid 89); 18 Aug 2016 17:02:17 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy­aptor, __detail, conform, Engine
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 17:02:11 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/37986] std::tr1::variate_generator does not conform to TR1.
Date: Thu, 18 Aug 2016 17:02:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 4.3.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: paolo.carlini at oracle dot com
X-Bugzilla-Target-Milestone: 4.4.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-37986-4-DEEbeANN9J@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-37986-4@http.gcc.gnu.org/bugzilla/>
References: <bug-37986-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02362.txt.bz2
Content-length: 715

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=37986

--- Comment #7 from Jonathan Wakely <redi at gcc dot gnu.org> ---
(In reply to Manuel Holtgrewe from comment #0)
>   std::tr1::variate_generator<
>     std::tr1::mt19937&,
>     std::tr1::uniform_real<double>
>     > g(mt, dist);

This case is only fixed for -std=gnu++98 mode. With -std=c++98 there is no
reference collapsing and the std::tr1::__detail::_Adaptor class template tries
to form a reference to a reference.

From a look at the code, it appears that our variate_generator is not
conforming, because its engine_value_type is the adaptor class, not the Engine
argument.

I don't intend to fix this, I'm just noting it here for posterity.
>From gcc-bugs-return-535027-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 18:12:34 2016
Return-Path: <gcc-bugs-return-535027-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 76184 invoked by alias); 18 Aug 2016 18:12:33 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 75118 invoked by uid 89); 18 Aug 2016 18:12:33 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy\012, fmr, began, 08
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 18:12:22 +0000
From: "seurer at linux dot vnet.ibm.com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/77290] New: [7 regression] test case gcc.dg/tree-ssa/pr71347.c fails starting with r239565
Date: Thu, 18 Aug 2016 18:12:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: seurer at linux dot vnet.ibm.com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77290-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02363.txt.bz2
Content-length: 1970

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77290

            Bug ID: 77290
           Summary: [7 regression] test case gcc.dg/tree-ssa/pr71347.c
                    fails starting with r239565
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: tree-optimization
          Assignee: unassigned at gcc dot gnu.org
          Reporter: seurer at linux dot vnet.ibm.com
  Target Milestone: ---

PASS: gcc.dg/tree-ssa/pr71347.c (test for excess errors)
FAIL: gcc.dg/tree-ssa/pr71347.c scan-tree-dump-not optimized ".* = MEM.*;"

                === gcc Summary ===

# of expected passes            1
# of unexpected failures        1

This test previously passed on powerpc but began failing with r239565.  From
looking at the test results it looks like it has been failing on other
architectures for quite some time (mid June at least).

Diff of generated .s files:

23c23
<       addi 9,10,8
---
> 	addi 9,10,16
30,31c30,32
<       fmul 12,0,0
<       stfd 12,.LANCHOR0+8@toc@l(8)
---
> 	fmul 0,0,0
> 	fmr 12,0
> 	stfd 0,.LANCHOR0+8@toc@l(8)
37,38d37
<       lfd 0,0(9)
<       addi 9,9,8
40c39,40
<       stfd 0,0(9)
---
> 	addi 9,9,8
> 	stfd 0,-8(9)
61c61
<       .ident  "GCC: (GNU) 7.0.0 20160818 (experimental) [trunk revision
239565]"
---
> 	.ident	"GCC: (GNU) 7.0.0 20160818 (experimental) [trunk revision 239564]"
seurer@genoa:~/gcc/build/gcc-test3$ diff ../gcc-test2/pr71347.s pr71347.s
23c23
<       addi 9,10,16
---
> 	addi 9,10,8
30,32c30,31
<       fmul 0,0,0
<       fmr 12,0
<       stfd 0,.LANCHOR0+8@toc@l(8)
---
> 	fmul 12,0,0
> 	stfd 12,.LANCHOR0+8@toc@l(8)
38c37
<       fmul 0,0,12
---
> 	lfd 0,0(9)
40c39,40
<       stfd 0,-8(9)
---
> 	fmul 0,0,12
> 	stfd 0,0(9)
61c61
<       .ident  "GCC: (GNU) 7.0.0 20160818 (experimental) [trunk revision
239564]"
---
> 	.ident	"GCC: (GNU) 7.0.0 20160818 (experimental) [trunk revision 239565]"
>From gcc-bugs-return-535028-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 18:17:30 2016
Return-Path: <gcc-bugs-return-535028-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 26565 invoked by alias); 18 Aug 2016 18:17:30 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 26555 invoked by uid 89); 18 Aug 2016 18:17:29 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 18:17:19 +0000
From: "ville.voutilainen at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/77288] Std::experimental::optional::operator= implementation is broken in gcc 6.1
Date: Thu, 18 Aug 2016 18:17:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ville.voutilainen at gmail dot com
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: ville.voutilainen at gmail dot com
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77288-4-iTKpfCox7V@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77288-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77288-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02364.txt.bz2
Content-length: 312

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77288

--- Comment #5 from Ville Voutilainen <ville.voutilainen at gmail dot com> ---
Ah. That would indeed mean that every converting assignment introduces
a temporary. Design-wise I'd rather have it so that optional doesn't convert
at all in the assignment. :)
>From gcc-bugs-return-535029-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 18 20:39:07 2016
Return-Path: <gcc-bugs-return-535029-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 124140 invoked by alias); 18 Aug 2016 20:39:07 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 124015 invoked by uid 89); 18 Aug 2016 20:39:06 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyÞserve, hotmail, ail, hundred
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 18 Aug 2016 20:38:55 +0000
From: "bernd.edlinger at hotmail dot de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/71973] c++ handles built-in functions inconsistently
Date: Thu, 18 Aug 2016 20:39:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: accepts-invalid
X-Bugzilla-Severity: normal
X-Bugzilla-Who: bernd.edlinger at hotmail dot de
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: attachments.created
Message-ID: <bug-71973-4-Rj4VAVJXM9@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71973-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71973-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02365.txt.bz2
Content-length: 10078

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71973

--- Comment #3 from Bernd Edlinger <bernd.edlinger at hotmail dot de> ---
Created attachment 39472
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39472&action=edit
possible patch

Oh, yeah!

Boot-strap OK.

The eh-code is OK.

BUT: the warning triggers a few hundred times, within the g++.dg testsuite,
and all of the places look like real bugs, that deserve a warning...

FAIL: g++.dg/charset/asm2.c  -std=c++98 (test for excess errors)
FAIL: g++.dg/charset/asm2.c  -std=c++11 (test for excess errors)
FAIL: g++.dg/charset/asm2.c  -std=c++14 (test for excess errors)
FAIL: g++.dg/debug/dwarf2/template-func-params-7.C  -std=gnu++11 (test for
excess errors)
FAIL: g++.dg/debug/dwarf2/template-func-params-7.C  -std=gnu++14 (test for
excess errors)
FAIL: g++.dg/addr_builtin-1.C  -std=c++98 (test for excess errors)
FAIL: g++.dg/addr_builtin-1.C  -std=c++11 (test for excess errors)
FAIL: g++.dg/addr_builtin-1.C  -std=c++14 (test for excess errors)
FAIL: g++.dg/cpp0x/constexpr-builtin1.C  -std=c++11 (test for excess errors)
FAIL: g++.dg/cpp0x/constexpr-builtin1.C  -std=c++14 (test for excess errors)
FAIL: g++.dg/cpp0x/constexpr-function2.C  -std=c++11 (test for excess errors)
FAIL: g++.dg/cpp0x/constexpr-function2.C  -std=c++14 (test for excess errors)
FAIL: g++.dg/cpp0x/constexpr-pos1.C  -std=c++11 (test for excess errors)
FAIL: g++.dg/cpp0x/constexpr-pos1.C  -std=c++14 (test for excess errors)
FAIL: g++.dg/cpp0x/gen-attrs-40.C  -std=c++11 (test for excess errors)
FAIL: g++.dg/cpp0x/gen-attrs-40.C  -std=c++14 (test for excess errors)
FAIL: g++.dg/cpp1y/lambda-generic-udt.C  -std=gnu++14 (test for excess errors)
FAIL: g++.dg/cpp1y/lambda-generic-xudt.C  -std=gnu++14 (test for excess errors)
FAIL: g++.dg/diagnostic/pr70105.C  -std=gnu++98 (test for excess errors)
FAIL: g++.dg/diagnostic/pr70105.C  -std=gnu++11 (test for excess errors)
FAIL: g++.dg/diagnostic/pr70105.C  -std=gnu++14 (test for excess errors)
FAIL: g++.dg/ext/attrib40.C  -std=c++98 (test for excess errors)
FAIL: g++.dg/ext/attrib40.C  -std=c++11 (test for excess errors)
FAIL: g++.dg/ext/attrib40.C  -std=c++14 (test for excess errors)
FAIL: g++.dg/init/new15.C  -std=c++98 (test for excess errors)
FAIL: g++.dg/init/new15.C  -std=c++11 (test for excess errors)
FAIL: g++.dg/init/new15.C  -std=c++14 (test for excess errors)
FAIL: g++.dg/init/ref9.C  -std=c++98 (test for excess errors)
FAIL: g++.dg/init/ref9.C  -std=c++11 (test for excess errors)
FAIL: g++.dg/init/ref9.C  -std=c++14 (test for excess errors)
AIL: g++.dg/ipa/inline-1.C  -std=gnu++98 (test for excess errors)
FAIL: g++.dg/ipa/inline-1.C  -std=gnu++11 (test for excess errors)
FAIL: g++.dg/ipa/inline-1.C  -std=gnu++14 (test for excess errors)
FAIL: g++.dg/ipa/inline-2.C  -std=gnu++98 (test for excess errors)
FAIL: g++.dg/ipa/inline-2.C  -std=gnu++11 (test for excess errors)
FAIL: g++.dg/ipa/inline-2.C  -std=gnu++14 (test for excess errors)
FAIL: g++.dg/lookup/builtin1.C  -std=c++98 (test for excess errors)
FAIL: g++.dg/lookup/builtin1.C  -std=c++11 (test for excess errors)
FAIL: g++.dg/lookup/builtin1.C  -std=c++14 (test for excess errors)
FAIL: g++.dg/lookup/builtin3.C  -std=c++98 (test for excess errors)
FAIL: g++.dg/lookup/builtin3.C  -std=c++11 (test for excess errors)
FAIL: g++.dg/lookup/builtin3.C  -std=c++14 (test for excess errors)
FAIL: g++.dg/lookup/builtin5.C  -std=c++11 (test for excess errors)
FAIL: g++.dg/lookup/builtin5.C  -std=c++14 (test for excess errors)
FAIL: g++.dg/lookup/builtin7.C  -std=c++98 (test for excess errors)
FAIL: g++.dg/lookup/builtin7.C  -std=c++11 (test for excess errors)
FAIL: g++.dg/lookup/builtin7.C  -std=c++14 (test for excess errors)
FAIL: g++.dg/lookup/extern-c-redecl4.C  -std=gnu++98 (test for excess errors)
FAIL: g++.dg/lookup/extern-c-redecl4.C  -std=gnu++11 (test for excess errors)
FAIL: g++.dg/lookup/extern-c-redecl4.C  -std=gnu++14 (test for excess errors)
FAIL: g++.dg/opt/cfg1.C  -std=gnu++98 (test for excess errors)
FAIL: g++.dg/opt/cfg1.C  -std=gnu++11 (test for excess errors)
FAIL: g++.dg/opt/cfg1.C  -std=gnu++14 (test for excess errors)
FAIL: g++.dg/opt/conj1.C  -std=gnu++98 (test for excess errors)
FAIL: g++.dg/opt/conj1.C  -std=gnu++11 (test for excess errors)
FAIL: g++.dg/opt/conj1.C  -std=gnu++14 (test for excess errors)
FAIL: g++.dg/opt/conj2.C  -std=c++11 (test for excess errors)
FAIL: g++.dg/opt/conj2.C  -std=c++14 (test for excess errors)
FAIL: g++.dg/opt/copysign-1.C  -std=gnu++98 (test for excess errors)
FAIL: g++.dg/opt/copysign-1.C  -std=gnu++11 (test for excess errors)
FAIL: g++.dg/opt/copysign-1.C  -std=gnu++14 (test for excess errors)
FAIL: g++.dg/opt/pr17724-5.C  -std=gnu++98 (test for excess errors)
FAIL: g++.dg/opt/pr17724-5.C  -std=gnu++11 (test for excess errors)
FAIL: g++.dg/opt/pr17724-5.C  -std=gnu++14 (test for excess errors)
FAIL: g++.dg/opt/pr17724-6.C  -std=gnu++98 (test for excess errors)
FAIL: g++.dg/opt/pr17724-6.C  -std=gnu++11 (test for excess errors)
FAIL: g++.dg/opt/pr17724-6.C  -std=gnu++14 (test for excess errors)
FAIL: g++.dg/opt/reload2.C  -std=gnu++98 (test for excess errors)
FAIL: g++.dg/opt/reload2.C  -std=gnu++11 (test for excess errors)
FAIL: g++.dg/opt/reload2.C  -std=gnu++14 (test for excess errors)
FAIL: g++.dg/other/vararg-2.C  -std=c++98 (test for excess errors)
FAIL: g++.dg/other/vararg-2.C  -std=c++11 (test for excess errors)
FAIL: g++.dg/other/vararg-2.C  -std=c++14 (test for excess errors)
FAIL: g++.dg/overload/builtin3.C  -std=c++98 (test for excess errors)
FAIL: g++.dg/overload/builtin3.C  -std=c++11 (test for excess errors)
FAIL: g++.dg/overload/builtin3.C  -std=c++14 (test for excess errors)
FAIL: g++.dg/overload/using2.C  -std=c++98 (test for excess errors)
FAIL: g++.dg/overload/using2.C  -std=c++11 (test for excess errors)
FAIL: g++.dg/overload/using2.C  -std=c++14 (test for excess errors)
FAIL: g++.dg/parse/builtin1.C  -std=c++98 (test for excess errors)
FAIL: g++.dg/parse/builtin1.C  -std=c++11 (test for excess errors)
FAIL: g++.dg/parse/builtin1.C  -std=c++14 (test for excess errors)
FAIL: g++.dg/parse/pr26997.C  -std=c++98 (test for excess errors)
FAIL: g++.dg/parse/pr26997.C  -std=c++11 (test for excess errors)
FAIL: g++.dg/parse/pr26997.C  -std=c++14 (test for excess errors)
FAIL: g++.dg/spellcheck-identifiers-2.C  -std=gnu++98 (test for excess errors)
FAIL: g++.dg/spellcheck-identifiers-2.C  -std=gnu++11 (test for excess errors)
FAIL: g++.dg/spellcheck-identifiers-2.C  -std=gnu++14 (test for excess errors)
FAIL: g++.dg/spellcheck-identifiers.C  -std=gnu++98 (test for excess errors)
FAIL: g++.dg/spellcheck-identifiers.C  -std=gnu++11 (test for excess errors)
FAIL: g++.dg/spellcheck-identifiers.C  -std=gnu++14 (test for excess errors)
FAIL: g++.dg/tc1/dr20.C  -std=c++98 (test for excess errors)
FAIL: g++.dg/tc1/dr20.C  -std=c++11 (test for excess errors)
FAIL: g++.dg/tc1/dr20.C  -std=c++14 (test for excess errors)
FAIL: g++.dg/template/strlen1.C  -std=c++98 (test for excess errors)
FAIL: g++.dg/template/strlen1.C  -std=c++11 (test for excess errors)
FAIL: g++.dg/template/strlen1.C  -std=c++14 (test for excess errors)
FAIL: g++.dg/tree-ssa/copyprop.C   (test for excess errors)
FAIL: g++.dg/tree-ssa/inline-1.C  -std=gnu++98 (test for excess errors)
FAIL: g++.dg/tree-ssa/inline-1.C  -std=gnu++11 (test for excess errors)
FAIL: g++.dg/tree-ssa/inline-1.C  -std=gnu++14 (test for excess errors)
FAIL: g++.dg/tree-ssa/inline-2.C  -std=gnu++98 (test for excess errors)
FAIL: g++.dg/tree-ssa/inline-2.C  -std=gnu++11 (test for excess errors)
FAIL: g++.dg/tree-ssa/inline-2.C  -std=gnu++14 (test for excess errors)
FAIL: g++.dg/tree-ssa/nothrow-1.C  -std=gnu++98 (test for excess errors)
FAIL: g++.dg/tree-ssa/nothrow-1.C  -std=gnu++11 (test for excess errors)
FAIL: g++.dg/tree-ssa/nothrow-1.C  -std=gnu++14 (test for excess errors)
FAIL: g++.dg/tree-ssa/pr21584-2.C  -std=c++98 (test for excess errors)
FAIL: g++.dg/tree-ssa/pr21584-2.C  -std=c++11 (test for excess errors)
FAIL: g++.dg/tree-ssa/pr21584-2.C  -std=c++14 (test for excess errors)
FAIL: g++.dg/tree-ssa/pr22037.C  -std=gnu++98 (test for excess errors)
FAIL: g++.dg/tree-ssa/pr22037.C  -std=gnu++11 (test for excess errors)
FAIL: g++.dg/tree-ssa/pr22037.C  -std=gnu++14 (test for excess errors)
FAIL: g++.dg/tree-ssa/ssa-dom.C  -std=gnu++98 (test for excess errors)
FAIL: g++.dg/tree-ssa/ssa-dom.C  -std=gnu++11 (test for excess errors)
FAIL: g++.dg/tree-ssa/ssa-dom.C  -std=gnu++14 (test for excess errors)
FAIL: g++.dg/warn/Wreturn-1.C  -std=gnu++98 (test for excess errors)
FAIL: g++.dg/warn/Wreturn-1.C  -std=gnu++11 (test for excess errors)
FAIL: g++.dg/warn/Wreturn-1.C  -std=gnu++14 (test for excess errors)
FAIL: g++.dg/warn/Wsystem-headers1a.C  -std=gnu++98 (test for excess errors)
FAIL: g++.dg/warn/Wsystem-headers1a.C  -std=gnu++11 (test for excess errors)
FAIL: g++.dg/warn/Wsystem-headers1a.C  -std=gnu++14 (test for excess errors)
FAIL: g++.dg/warn/noeffect5.C  -std=gnu++98 (test for excess errors)
FAIL: g++.dg/warn/noeffect5.C  -std=gnu++11 (test for excess errors)
FAIL: g++.dg/warn/noeffect5.C  -std=gnu++14 (test for excess errors)
FAIL: g++.dg/warn/sequence-pt-1.C  -std=gnu++98 (test for excess errors)
FAIL: g++.dg/warn/sequence-pt-1.C  -std=gnu++11 (test for excess errors)
FAIL: g++.dg/warn/sequence-pt-1.C  -std=gnu++14 (test for excess errors)
FAIL: g++.dg/gomp/for-14.C  -std=c++98 (test for excess errors)
FAIL: g++.dg/gomp/for-14.C  -std=c++11 (test for excess errors)
FAIL: g++.dg/gomp/for-14.C  -std=c++14 (test for excess errors)
FAIL: g++.dg/gomp/openmp-simd-2.C  -std=gnu++98 (test for excess errors)
FAIL: g++.dg/gomp/openmp-simd-2.C  -std=gnu++11 (test for excess errors)
FAIL: g++.dg/gomp/openmp-simd-2.C  -std=gnu++14 (test for excess errors)

etc. etc. etc....
>From gcc-bugs-return-535030-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 00:15:36 2016
Return-Path: <gcc-bugs-return-535030-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 93624 invoked by alias); 19 Aug 2016 00:15:36 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 93608 invoked by uid 89); 19 Aug 2016 00:15:35 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=subscript, Warraybounds, remedied, rdata
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 00:15:24 +0000
From: "abbeyj+gcc at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77291] New: False positive for -Warray-bounds
Date: Fri, 19 Aug 2016 00:15:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: abbeyj+gcc at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-77291-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02366.txt.bz2
Content-length: 2406

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77291

            Bug ID: 77291
           Summary: False positive for -Warray-bounds
           Product: gcc
           Version: 6.1.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: abbeyj+gcc at gmail dot com
  Target Milestone: ---

Created attachment 39473
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39473&action=edit
Test case

Testcase:

struct Rec {
  unsigned char data[1];  // actually variable length
};

union U {
  unsigned char buf[42];
  struct Rec rec;
};

int Load()
{
  union U u;
  return u.rec.data[1];
}

======

When compiled with either of
$ gcc -c -O2 -Warray-bounds array_bounds.c
or
$ g++ -c -O2 -Warray-bounds array_bounds.cpp

produces

array_bounds.c: In function ‘Load’:
array_bounds.c:13:20: warning: array subscript is above array bounds
[-Warray-bounds]
   return u.rec.data[1];
          ~~~~~~~~~~^~~


There's an exception for accessing beyond the end of an array if that array is
the last member in a struct.  In that case it is assumed the user is using the
so-called "struct hack".  So, for instance, this doesn't warn:

int F(struct Rec *r) {
  return r->data[1];
}

But the warning *is* issued if the variable is allocated as an auto stack
variable since then the compiler knows the exact size allocated.  So this
example does warn:

int G() {
  struct Rec r;
  return r.data[1];
}

I'm assuming that the compiler is treating the test case more like this last
example since u.rec is on the stack.  But I believe the warning is incorrect
since the union should provide enough space.  Would it be possible to disable
this warning if the struct is on the stack but is also part of a union?  I
guess you could even try to figure out from the union how much space is
available and what the largest allowable index is but that seems like a lot of
effort to spend on what is going to be a rare case.

Please ignore the reading of uninitialized data in the testcase.  This can be
remedied by initializing before reading but the initialization must be done in
a separate translation unit.  If it is done in this translation unit the
optimizer causes the warning to disappear.  To keep the testcase to one file, I
left the initialization out.
>From gcc-bugs-return-535031-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 00:26:49 2016
Return-Path: <gcc-bugs-return-535031-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 117935 invoked by alias); 19 Aug 2016 00:26:49 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 117897 invoked by uid 89); 19 Aug 2016 00:26:48 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=terra, Hx-languages-length:1357, outright, silly
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 00:26:38 +0000
From: "terra at gnome dot org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/77292] New: Spurious "warning: logical not is only applied to the left hand side of comparison"
Date: Fri, 19 Aug 2016 00:26:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: terra at gnome dot org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77292-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02367.txt.bz2
Content-length: 1445

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77292

            Bug ID: 77292
           Summary: Spurious "warning: logical not is only applied to the
                    left hand side of comparison"
           Product: gcc
           Version: 5.4.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: terra at gnome dot org
  Target Milestone: ---

The warning introduced in bug 62183 is trigger-happy.

int
foo (int a, int b)
{
  // Make it obvious that these are booleans.
  a = !!a;
  b = !!b;

  return !a == b;
}


# gcc --version
gcc (Ubuntu 5.4.0-6ubuntu1~16.04.2) 5.4.0 20160609
Copyright (C) 2015 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

# gcc -c -Wall -O2 bbb.c 
bbb.c: In function ‘foo’:
bbb.c:8:13: warning: logical not is only applied to the left hand side of
comparison [-Wlogical-not-parentheses]
   return !a == b;
             ^
This is silly and out-right illogical when "a" and "b" are booleans.
"!a == b" means the same as "!(a == b)", so the warning is pointing out
that I might have meant something else that, upon inspection, is seen
to be the same thing.

Note: by "boolean" I mean an integer with value 0 or 1.
>From gcc-bugs-return-535032-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 02:12:56 2016
Return-Path: <gcc-bugs-return-535032-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 57710 invoked by alias); 19 Aug 2016 02:12:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 57685 invoked by uid 89); 19 Aug 2016 02:12:55 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=surrounding, (unknown)
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 02:12:45 +0000
From: "msebor at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/77293] New: __builtin_object_size inconsistent for multidimensional arrays
Date: Fri, 19 Aug 2016 02:12:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: msebor at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77293-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02368.txt.bz2
Content-length: 2797

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77293

            Bug ID: 77293
           Summary: __builtin_object_size inconsistent for
                    multidimensional arrays
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: middle-end
          Assignee: unassigned at gcc dot gnu.org
          Reporter: msebor at gcc dot gnu.org
  Target Milestone: ---

While testing a patch for bug 71831 (as per
https://gcc.gnu.org/ml/gcc-patches/2016-08/msg01363.html) I noticed some
inconsistencies in how __builtin_object_size handles multidimensional arrays. 
The test case below shows that the built-in returns a different result
depending on whether or not the offset in the expression is a constant.  In
particular, in type 1, when it is a constant the built-in evaluates to 1 while
when it is not a constant it evaluates to 4 in this case.  The manual suggests
that 4 should be expected: "If the least significant bit is clear, objects are
whole variables, if it is set, a closest surrounding subobject is considered
the object a pointer points to."

I don't need a fix for what I'm doing but it seems to me that the (type & 1)
functionality has been a source of confusion (see also bug 44384) and would be
best either deprecated or documented as less than fully reliable.  (The
documentation itself is ambiguous: what is "a closest surrounding subobject" of
an element of a multidimensional array?  Is it the higher-ranked subarray, the
entire array object, or, when the array object is a member of a structure, is
it the structure object?

$ (set -x && cat xyz.c && for N in a 1; do /build/gcc-trunk-svn/gcc/xgcc -B
/build/gcc-trunk-svn/gcc -DN=$N -O2 xyz.c && ./a.out; done)
+ cat xyz.c
static char x2x3[2][3];

#define strcpy(d, s) \
  __builtin___strcpy_chk (d, s, __builtin_object_size (d, 1))

int main (void)
{
  int a = 1;

  strcpy (&x2x3[0][1] + N, "abc"); 
}

+ for N in a 1
+ /build/gcc-trunk-svn/gcc/xgcc -B /build/gcc-trunk-svn/gcc -DN=a -O2 xyz.c
+ ./a.out
+ for N in a 1
+ /build/gcc-trunk-svn/gcc/xgcc -B /build/gcc-trunk-svn/gcc -DN=1 -O2 xyz.c
xyz.c: In function ‘main’:
xyz.c:4:3: warning: call to __builtin___memcpy_chk will always overflow
destination buffer
   __builtin___strcpy_chk (d, s, __builtin_object_size (d, 1))
   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
xyz.c:10:3: note: in expansion of macro ‘strcpy’
   strcpy (&x2x3[0][1] + N, "abc");
   ^~~~~~
+ ./a.out
*** buffer overflow detected ***: ./a.out terminated
======= Backtrace: =========
/lib64/libc.so.6(+0x77d9e)[0x7f983241dd9e]
/lib64/libc.so.6(__fortify_fail+0x37)[0x7f98324b7db7]
...
>From gcc-bugs-return-535033-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 02:19:56 2016
Return-Path: <gcc-bugs-return-535033-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 64351 invoked by alias); 19 Aug 2016 02:19:55 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 64327 invoked by uid 89); 19 Aug 2016 02:19:54 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy 16-08-19, 20160819
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 02:19:44 +0000
From: "msebor at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/44384] builtin_object_size_ treatment of multidimensional arrays is unexpected
Date: Fri, 19 Aug 2016 02:19:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 4.5.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: msebor at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on component everconfirmed cf_known_to_fail
Message-ID: <bug-44384-4-C2hN6K0Cfv@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-44384-4@http.gcc.gnu.org/bugzilla/>
References: <bug-44384-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02369.txt.bz2
Content-length: 1166

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=44384

Martin Sebor <msebor at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |wrong-code
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-19
          Component|c                           |middle-end
     Ever confirmed|0                           |1
      Known to fail|                            |4.5.3, 4.8.3, 4.9.3, 5.3.0,
                   |                            |6.1.0, 7.0

--- Comment #5 from Martin Sebor <msebor at gcc dot gnu.org> ---
I confirm this on the basis of the test case submitted in bug 77293.  Type-1
__builtin_object_size results for multidimensional arrays are inconsistent
within the same program and incongruous with the manual.  The inconsistency
affects not just users who directly rely on the built-in to implement checking
for their own functions (other than the Glibc subset) but also for users of
_FORTIFY_SOURCE (such as strcpy, as shown in bug 77293).
>From gcc-bugs-return-535034-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 03:29:31 2016
Return-Path: <gcc-bugs-return-535034-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 107564 invoked by alias); 19 Aug 2016 03:29:31 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 107456 invoked by uid 89); 19 Aug 2016 03:29:19 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyª, iterations, packed
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 03:29:09 +0000
From: "msebor at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/77294] New: __builtin_object_size inconsistent for member arrays
Date: Fri, 19 Aug 2016 03:29:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: msebor at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77294-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02370.txt.bz2
Content-length: 2524

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77294

            Bug ID: 77294
           Summary: __builtin_object_size inconsistent for member arrays
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: middle-end
          Assignee: unassigned at gcc dot gnu.org
          Reporter: msebor at gcc dot gnu.org
  Target Milestone: ---

Bbesides bug 77293, further testing of my patch for bug 71831 also revealed
that __builtin_object_size yields inconsistent results for member arrays
depending on how an element of the array is referenced (using slightly
different but equivalent expressions) and on whether or not an offset into the
array is an integer constant.  The following test case shows the inconsistency
both between the iterations of the first and within the first one.  The output
is expected to be consistent both between the two iterations but also within
each one of them (i.e., I would expect each line of output to show the same two
numbers).  When (type & 1) is set, I would also expect to see a larger result
than when the bit is clear based on the manual saying "if [the least
significant bit ] is set, a closest surrounding subobject is considered the
object a pointer points to."

$ (set -x && cat xyz.c && for N in 1 i; do /build/gcc-trunk-svn/gcc/xgcc -B
/build/gcc-trunk-svn/gcc -DN=$N -O2 xyz.c && ./a.out; done)
+ cat xyz.c
struct __attribute__ ((packed)) A { char a [3]; char b [5]; };

struct A a;

int main (void)
{
  int i = 1;
  __builtin_printf ("type 0: %zu %zu\n"
                    "type 1: %zu %zu\n"
                    "type 2: %zu %zu\n"
                    "type 3: %zu %zu\n",
                    __builtin_object_size (&a.a[0] + N, 0),
                    __builtin_object_size (&a.a[N] + 0, 0),
                    __builtin_object_size (&a.a[0] + N, 1),
                    __builtin_object_size (&a.a[N] + 0, 1),
                    __builtin_object_size (&a.a[0] + N, 2),
                    __builtin_object_size (&a.a[N] + 0, 2),
                    __builtin_object_size (&a.a[0] + N, 3),
                    __builtin_object_size (&a.a[N] + 0, 3));
}


+ for N in 1 i
+ /build/gcc-trunk-svn/gcc/xgcc -B /build/gcc-trunk-svn/gcc -DN=1 -O2 xyz.c
+ ./a.out
type 0: 7 7
type 1: 2 2
type 2: 7 7
type 3: 7 2
+ for N in 1 i
+ /build/gcc-trunk-svn/gcc/xgcc -B /build/gcc-trunk-svn/gcc -DN=i -O2 xyz.c
+ ./a.out
type 0: 7 7
type 1: 7 7
type 2: 7 7
type 3: 7 7
>From gcc-bugs-return-535035-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 03:47:57 2016
Return-Path: <gcc-bugs-return-535035-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 2724 invoked by alias); 19 Aug 2016 03:47:57 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 2712 invoked by uid 89); 19 Aug 2016 03:47:56 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=sk:r_arm_t, sk:R_ARM_T
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 03:47:46 +0000
From: "malithyapa at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/71776] relocation truncated to fit: R_ARM_THM_JUMP11 against symbol `__gnu_h2f_internal'
Date: Fri, 19 Aug 2016 03:47:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 4.9.3
X-Bugzilla-Keywords: link-failure
X-Bugzilla-Severity: normal
X-Bugzilla-Who: malithyapa at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71776-4-nHiGWBkLKV@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71776-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71776-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02371.txt.bz2
Content-length: 920

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71776

--- Comment #5 from malithyapa at gmail dot com ---
On Wed, Jul 6, 2016 at 1:39 PM ktkachov at gcc dot gnu.org <
gcc-bugzilla@gcc.gnu.org> wrote:

> https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71776
>
> ktkachov at gcc dot gnu.org changed:
>
>            What    |Removed                     |Added
> ------------------------------------------------------------
> ----------------
>                  CC|                            |ktkachov at gcc dot
> gnu.org
>
> --- Comment #1 from ktkachov at gcc dot gnu.org ---
> Can you try the latest 4.9.3 release and if it still fails please provide
> the
> full configure line
>
> --
> You are receiving this mail because:
> You reported the bug.


I tried this on the 4.9.3 build and it still fails. I've updated the bug
with the configure line. Anything else i can do at the moment to get past
this?

Thanks,
Malith
>From gcc-bugs-return-535036-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 05:42:36 2016
Return-Path: <gcc-bugs-return-535036-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 108819 invoked by alias); 19 Aug 2016 05:42:35 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 108758 invoked by uid 89); 19 Aug 2016 05:42:28 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=parm, complains, yahoo
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 05:42:17 +0000
From: "ncahill_alt at yahoo dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/62171] restrict pointer to struct with restrict pointers parm doesn't prevent aliases
Date: Fri, 19 Aug 2016 05:42:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 5.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ncahill_alt at yahoo dot com
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-62171-4-vH7zpSVG1m@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-62171-4@http.gcc.gnu.org/bugzilla/>
References: <bug-62171-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02372.txt.bz2
Content-length: 686

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=62171

ncahill_alt at yahoo dot com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ncahill_alt at yahoo dot com

--- Comment #14 from ncahill_alt at yahoo dot com ---
This test is failing for me in GCC 6.1.0 (i386).  It complains about having no
vectype.

Why that is, I don't know.  But it doesn't seem to be a problem otherwise, it
seems pretty safe to ignore except that it could vectorize the loop but
doesn't.

I wonder if it would be easier just to have this be UNSUPPORTED on i386.
>From gcc-bugs-return-535037-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 06:49:07 2016
Return-Path: <gcc-bugs-return-535037-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 64466 invoked by alias); 19 Aug 2016 06:49:07 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 64454 invoked by uid 89); 19 Aug 2016 06:49:06 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=(unknown)
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 06:48:56 +0000
From: "avi@cloudius-systems.com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/77295] New: missed optimisation when copying/moving union members
Date: Fri, 19 Aug 2016 06:49:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: avi@cloudius-systems.com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77295-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02373.txt.bz2
Content-length: 2102

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77295

            Bug ID: 77295
           Summary: missed optimisation when copying/moving union members
           Product: gcc
           Version: 6.1.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: middle-end
          Assignee: unassigned at gcc dot gnu.org
          Reporter: avi@cloudius-systems.com
  Target Milestone: ---

Discriminated unions of class types are becoming popular; for example
std::variant<...> or std::future<T>.

gcc doesn't optimize copies or moved of discriminated unions well:


// Will usually be a template with user-defined types
// as members of the union
struct discriminated_union {
  unsigned which;
  union {
    int v1;
    long v2;
  };
  discriminated_union(discriminated_union&&);
};

discriminated_union::discriminated_union(discriminated_union&& x) {
  which = x.which;
  switch (x.which) {
  case 1:
    v1 = x.v1;
    break;
  case 2:
    v2 = x.v2;
    break;
  }
}


compiles into

   0:   8b 06                   mov    (%rsi),%eax
   2:   89 07                   mov    %eax,(%rdi)
   4:   8b 06                   mov    (%rsi),%eax
   6:   83 f8 01                cmp    $0x1,%eax
   9:   74 1d                   je     28
<discriminated_union::discriminated_union(discriminated_union&&)+0x28>
   b:   83 f8 02                cmp    $0x2,%eax
   e:   75 10                   jne    20
<discriminated_union::discriminated_union(discriminated_union&&)+0x20>
  10:   48 8b 46 08             mov    0x8(%rsi),%rax
  14:   48 89 47 08             mov    %rax,0x8(%rdi)
  18:   c3                      retq   
  19:   0f 1f 80 00 00 00 00    nopl   0x0(%rax)
  20:   f3 c3                   repz retq 
  22:   66 0f 1f 44 00 00       nopw   0x0(%rax,%rax,1)
  28:   8b 46 08                mov    0x8(%rsi),%eax
  2b:   89 47 08                mov    %eax,0x8(%rdi)
  2e:   c3                      retq   

instead of just copying the 12 bytes from (%rsi) into (rdi); unconditionally
copying the long is cheaper than the branching.
>From gcc-bugs-return-535038-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 07:02:37 2016
Return-Path: <gcc-bugs-return-535038-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 71027 invoked by alias); 19 Aug 2016 07:02:36 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 70988 invoked by uid 89); 19 Aug 2016 07:02:35 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 07:02:25 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/77286] [7 Regression] ICE in fold_convert_loc, at fold-const.c:2248 building 435.gromacs
Date: Fri, 19 Aug 2016 07:02:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-77286-4-0a4OsVlEGi@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77286-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77286-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02374.txt.bz2
Content-length: 429

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77286

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #6 from Richard Biener <rguenth at gcc dot gnu.org> ---
Fixed.
>From gcc-bugs-return-535039-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 07:02:50 2016
Return-Path: <gcc-bugs-return-535039-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 82980 invoked by alias); 19 Aug 2016 07:02:50 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 82969 invoked by uid 89); 19 Aug 2016 07:02:49 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=UD:tree-vect-loop-manip.c, UD:pr77286.c, pr77286c, sk:treeve
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 07:02:39 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/77286] [7 Regression] ICE in fold_convert_loc, at fold-const.c:2248 building 435.gromacs
Date: Fri, 19 Aug 2016 07:02:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-77286-4-RIR4qgCnYb@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77286-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77286-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02375.txt.bz2
Content-length: 1065

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77286

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #6 from Richard Biener <rguenth at gcc dot gnu.org> ---
Fixed.

--- Comment #7 from Richard Biener <rguenth at gcc dot gnu.org> ---
Author: rguenth
Date: Fri Aug 19 07:02:05 2016
New Revision: 239605

URL: https://gcc.gnu.org/viewcvs?rev=239605&root=gcc&view=rev
Log:
2016-08-19  Richard Biener  <rguenther@suse.de>

        PR tree-optimization/77286
        * tree-vect-loop-manip.c (slpeel_duplicate_current_defs_from_edges):
        Deal with virtual PHIs being out-of-order.

        * gcc.dg/torture/pr77286.c: New testcase.

Added:
    trunk/gcc/testsuite/gcc.dg/torture/pr77286.c
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/tree-vect-loop-manip.c
>From gcc-bugs-return-535040-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 07:11:04 2016
Return-Path: <gcc-bugs-return-535040-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 78468 invoked by alias); 19 Aug 2016 07:11:04 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 78451 invoked by uid 89); 19 Aug 2016 07:11:03 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:1359, argue, pursue
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 07:10:53 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/77295] missed optimisation when copying/moving union members
Date: Fri, 19 Aug 2016 07:11:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-77295-4-pZFMAZJlqJ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77295-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77295-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02376.txt.bz2
Content-length: 1450

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77295

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-19
     Ever confirmed|0                           |1

--- Comment #1 from Richard Biener <rguenth at gcc dot gnu.org> ---
Why does the implementation not simply copy the whole union with an assignment?
It's easier for GCC to optimize that.

Because with the current one you'll have

  <bb 2>:
  MEM[(struct  &)this_7(D)] ={v} {CLOBBER};
  _1 = x_9(D)->which;
  this_7(D)->which = _1;
  _2 = x_9(D)->which;
  switch (_2) <default: <L2>, case 1: <L0>, case 2: <L1>>

<L0>:
  _3 = x_9(D)->D.2254.v1;
  this_7(D)->D.2254.v1 = _3;
  goto <bb 5> (<L2>);

<L1>:
  _4 = x_9(D)->D.2254.v2;
  this_7(D)->D.2254.v2 = _4;

<L2>:
  return;

where it's hard to argue the desired transform is profitable in general
(x->which might get known via inlining and if you'd optimize the above
earlier then you'd at least lose TBAA info on the stores / loads).

Also note sth else above - we read from x->which twice (this may point
to x).  There's a related PR somewhere about this missed optimization,
with a patch (that has cost even if that special situation doesn't apply,
thus I didn't pursue it).
>From gcc-bugs-return-535041-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 07:20:02 2016
Return-Path: <gcc-bugs-return-535041-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 98914 invoked by alias); 19 Aug 2016 07:20:02 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 98884 invoked by uid 89); 19 Aug 2016 07:20:01 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=specialization
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 07:19:51 +0000
From: "avi@cloudius-systems.com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/77295] missed optimisation when copying/moving union members
Date: Fri, 19 Aug 2016 07:20:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: avi@cloudius-systems.com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77295-4-Ard2nECSPr@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77295-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77295-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02377.txt.bz2
Content-length: 513

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77295

--- Comment #2 from Avi Kivity <avi@cloudius-systems.com> ---
Typically, the code is a template:

template <typename T, typename U>
struct discriminated_union {
    unsigned which;
    union {
        T v1;
        U v2;
    };
};


If either T or U have non-trivial copy/move constructors, then you can't
copy/move the union; you have to copy/move a member.

I guess a template specialization for the case where both are PODs can be used
as a work-around.
>From gcc-bugs-return-535042-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 07:22:43 2016
Return-Path: <gcc-bugs-return-535042-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 101380 invoked by alias); 19 Aug 2016 07:22:42 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 100904 invoked by uid 89); 19 Aug 2016 07:22:41 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:1411
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 07:22:31 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/77293] __builtin_object_size inconsistent for multidimensional arrays
Date: Fri, 19 Aug 2016 07:22:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: dependson
Message-ID: <bug-77293-4-tZYhNzc5BK@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77293-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77293-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02378.txt.bz2
Content-length: 1422

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77293

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Depends on|                            |64715

--- Comment #1 from Richard Biener <rguenth at gcc dot gnu.org> ---
Well, for N == 1 the early object-size pass computes 1 as size which means,
as it is supposed to be conservative, the closest surrounding subobject is
the higher-ranked subarray.  For N == a you get another conservative answer.
Early object-size can't put a constraint to it and then folding makes
a "mess" out of the address computation:

  <bb 2>:
  __builtin_memcpy (&MEM[(void *)&x2x3 + 2B], "abc", 4);
  return 0;

in ccp1.  To "fix" the simple case one could teach the objsz pass to lookup
the definition for a (and thus see the constant 1).  Or for example
integrate early objsz with CCP1 and apply things before applying the final
lattice.

I've repeatedly said the design of __builtin_object_size conflicts with the
desire to optimize -- one would need to preserve the original shape of the
access.
But only in some cases it seems.  There is an old bug about this, PR64715.


Referenced Bugs:

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64715
[Bug 64715] [5/6/7 Regression] __builtin_object_size (..., 1) fails to locate
subobject
>From gcc-bugs-return-535043-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 07:23:47 2016
Return-Path: <gcc-bugs-return-535043-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 103644 invoked by alias); 19 Aug 2016 07:23:47 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 103597 invoked by uid 89); 19 Aug 2016 07:23:46 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 07:23:36 +0000
From: "avi@cloudius-systems.com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/77295] missed optimisation when copying/moving union members
Date: Fri, 19 Aug 2016 07:23:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: avi@cloudius-systems.com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77295-4-KeZI0bfqg5@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77295-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77295-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02379.txt.bz2
Content-length: 290

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77295

--- Comment #3 from Avi Kivity <avi@cloudius-systems.com> ---
If x->which is known then of course just that branch should be followed, and
the others eliminated. I'm talking about the case where it isn't known (very
common in my code).
>From gcc-bugs-return-535044-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 07:25:32 2016
Return-Path: <gcc-bugs-return-535044-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 108122 invoked by alias); 19 Aug 2016 07:25:32 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 108104 invoked by uid 89); 19 Aug 2016 07:25:31 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyÞath, b, a
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 07:25:24 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/77292] Spurious "warning: logical not is only applied to the left hand side of comparison"
Date: Fri, 19 Aug 2016 07:25:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords
Message-ID: <bug-77292-4-L5l0dXcZfV@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77292-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77292-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02380.txt.bz2
Content-length: 763

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77292

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |diagnostic

--- Comment #1 from Richard Biener <rguenth at gcc dot gnu.org> ---
Well,

  // Make it obvious that these are booleans.
  a = !!a;
  b = !!b;

this isn't visible to the compiler when it analyzes

  return !a == b;

to warn.  Your example is very specific and unlike from real code so are you
complaining about

  return !a == b;

warning even when it is not immediately preceeded by a a = !!a; stmt?  Then
we've discussed this to death already.
>From gcc-bugs-return-535045-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 07:37:42 2016
Return-Path: <gcc-bugs-return-535045-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 20033 invoked by alias); 19 Aug 2016 07:37:42 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 20012 invoked by uid 89); 19 Aug 2016 07:37:41 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 07:37:31 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/77291] False positive for -Warray-bounds
Date: Fri, 19 Aug 2016 07:37:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: diagnostic, wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on component everconfirmed
Message-ID: <bug-77291-4-hABvI0Jyno@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77291-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77291-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02381.txt.bz2
Content-length: 1400

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77291

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |diagnostic, wrong-code
             Status|UNCONFIRMED                 |ASSIGNED
   Last reconfirmed|                            |2016-08-19
          Component|c++                         |tree-optimization
     Ever confirmed|0                           |1

--- Comment #1 from Richard Biener <rguenth at gcc dot gnu.org> ---
Confirmed.  VRP does

static void
check_array_ref (location_t location, tree ref, bool ignore_off_by_one)
{
...
  up_bound = array_ref_up_bound (ref);
...
  /* Accesses to trailing arrays via pointers may access storage
     beyond the types array bounds.  */
  if (warn_array_bounds < 2
      && array_at_struct_end_p (ref))
    return;

but here array_at_struct_end_p returns false because the size is still
constrained
by the DECL size.  _But_ VRP fails to adjust up_bound accordingly, that is,
it is relying on array_at_struct_end_p to return true if the array bounds do
not
cover all possible elements towards its extent.

It looks like idx_infer_loop_bounds may have the same issue (wrong-code).
bounds_are_valid in graphite is even worse.

I'll think about a good solution.
>From gcc-bugs-return-535046-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 07:43:24 2016
Return-Path: <gcc-bugs-return-535046-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 34206 invoked by alias); 19 Aug 2016 07:43:24 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 34192 invoked by uid 89); 19 Aug 2016 07:43:23 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 07:43:20 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/77290] [7 regression] test case gcc.dg/tree-ssa/pr71347.c fails starting with r239565
Date: Fri, 19 Aug 2016 07:43:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-77290-4-B8VnheJBJa@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77290-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77290-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02382.txt.bz2
Content-length: 429

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77290

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |FIXED

--- Comment #1 from Richard Biener <rguenth at gcc dot gnu.org> ---
Fixed.
>From gcc-bugs-return-535047-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 07:43:56 2016
Return-Path: <gcc-bugs-return-535047-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 36589 invoked by alias); 19 Aug 2016 07:43:55 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 36579 invoked by uid 89); 19 Aug 2016 07:43:55 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 07:43:44 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/77290] [7 regression] test case gcc.dg/tree-ssa/pr71347.c fails starting with r239565
Date: Fri, 19 Aug 2016 07:43:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-77290-4-a48ukdHwIP@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77290-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77290-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02383.txt.bz2
Content-length: 905

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77290

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |FIXED

--- Comment #1 from Richard Biener <rguenth at gcc dot gnu.org> ---
Fixed.

--- Comment #2 from Richard Biener <rguenth at gcc dot gnu.org> ---
Author: rguenth
Date: Fri Aug 19 07:43:11 2016
New Revision: 239607

URL: https://gcc.gnu.org/viewcvs?rev=239607&root=gcc&view=rev
Log:
2016-08-19  Richard Biener  <rguenther@suse.de>

        PR tree-optimization/77290
        * tree-ssa-pre.c (eliminate_dom_walker::before_dom_children):
        Fix flag_tree_parallelize_loops check.

Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/tree-ssa-pre.c
>From gcc-bugs-return-535048-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 07:44:38 2016
Return-Path: <gcc-bugs-return-535048-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 37601 invoked by alias); 19 Aug 2016 07:44:38 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 37591 invoked by uid 89); 19 Aug 2016 07:44:36 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:483
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 07:44:26 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/77289] [7 Regression] ICE in extract_constrain_insn, at recog.c:2212 on powerpc64
Date: Fri, 19 Aug 2016 07:44:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone short_desc
Message-ID: <bug-77289-4-BgBI4dlroF@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77289-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77289-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02384.txt.bz2
Content-length: 515

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77289

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |7.0
            Summary|ICE in                      |[7 Regression] ICE in
                   |extract_constrain_insn, at  |extract_constrain_insn, at
                   |recog.c:2212 on powerpc64   |recog.c:2212 on powerpc64
>From gcc-bugs-return-535049-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 07:49:30 2016
Return-Path: <gcc-bugs-return-535049-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 66875 invoked by alias); 19 Aug 2016 07:49:30 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 66859 invoked by uid 89); 19 Aug 2016 07:49:29 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 07:49:19 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/62171] restrict pointer to struct with restrict pointers parm doesn't prevent aliases
Date: Fri, 19 Aug 2016 07:49:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 5.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-62171-4-48OYZETiev@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-62171-4@http.gcc.gnu.org/bugzilla/>
References: <bug-62171-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02385.txt.bz2
Content-length: 651

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=62171

--- Comment #15 from Richard Biener <rguenth at gcc dot gnu.org> ---
(In reply to ncahill_alt from comment #14)
> This test is failing for me in GCC 6.1.0 (i386).  It complains about having
> no vectype.
> 
> Why that is, I don't know.  But it doesn't seem to be a problem otherwise,
> it seems pretty safe to ignore except that it could vectorize the loop but
> doesn't.
> 
> I wonder if it would be easier just to have this be UNSUPPORTED on i386.

It should be by means of the { dg-require-effective-target vect_double }
directive.  Does it work if you remove the { dg-options ... } one?
>From gcc-bugs-return-535050-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 08:16:58 2016
Return-Path: <gcc-bugs-return-535050-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 61173 invoked by alias); 19 Aug 2016 08:16:57 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 61163 invoked by uid 89); 19 Aug 2016 08:16:57 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=manifests, UD:com.pl, Hx-languages-length:543
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 08:16:46 +0000
From: "spam.gcc at klub dot com.pl" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/69789] g++ -O2 is removing tests against a variable that can be changed
Date: Fri, 19 Aug 2016 08:16:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 5.3.1
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: spam.gcc at klub dot com.pl
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-69789-4-KX9Xp9NJ2i@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69789-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69789-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02386.txt.bz2
Content-length: 540

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69789

Tomek Mrugalski <spam.gcc at klub dot com.pl> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |spam.gcc at klub dot com.pl

--- Comment #6 from Tomek Mrugalski <spam.gcc at klub dot com.pl> ---
This issue manifests itself also on g++ 5.4.0, the default compiler in Ubuntu
16.04. Exact version: (Ubuntu 5.4.0-6ubuntu1~16.04.2) 5.4.0 20160609.
>From gcc-bugs-return-535051-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 09:33:16 2016
Return-Path: <gcc-bugs-return-535051-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 52204 invoked by alias); 19 Aug 2016 09:33:16 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 52176 invoked by uid 89); 19 Aug 2016 09:33:14 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=reveals, error_code, instances, Hx-languages-length:2108
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 09:33:04 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/69789] g++ -O2 is removing tests against a variable that can be changed
Date: Fri, 19 Aug 2016 09:33:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 5.3.1
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-69789-4-OuqgopMRKv@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69789-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69789-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02387.txt.bz2
Content-length: 2380

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69789

--- Comment #7 from Jonathan Wakely <redi at gcc dot gnu.org> ---
(In reply to Thomas Markwalder from comment #5)
> A bit more digging reveals that in the logic expression which fails:
> 
> {{{
>     // Check if we need to run the operation again.
>     if (ec == boost::asio::error::would_block
>         || ec == boost::asio::error::try_again)
>       return false;
> }}}
> 
> The value for error_category:m_cat differs between the implicitly created
> instances for would_block and try_again.

Do you mean that error_code(boost::asio::error::would_block) !=
error_code(boost::asio::error::try_again) ?

I don't see how that's possible, since in the optimized GIMPLE dump they both
use the same constructor, which isn't inlined. The two enums have the same
value, and the constructor will call the same asio::make_error_code() overload
that sets the category to boost::system_category().

             
boost::system::error_code::error_code<boost::asio::error::basic_errors>
(&D.94931, 11, 0B);
              cleanup.88 = 1;
              D.165192 = boost::system::operator== (ec, &D.94931);
              if (D.165192 != 0) goto <D.165186>; else goto <D.165193>;
              <D.165193>:
             
boost::system::error_code::error_code<boost::asio::error::basic_errors>
(&D.94932, 11, 0B);
              cleanup.89 = 1;
              D.165197 = boost::system::operator== (ec, &D.94932);
              if (D.165197 != 0) goto <D.165186>; else goto <D.165187>;
              <D.165186>:
              iftmp.87 = 1;
              goto <D.165188>;
              <D.165187>:
              iftmp.87 = 0;
              <D.165188>:
              retval.86 = iftmp.87;


So what exactly are you seeing? What digging have you done? Stepped through
with the debugger?

The most likely explanation seems to be that ec.category() !=
boost::system::system_category() and so the comparisons are always false.


> If one splits the if into two separate if statements,  the values for m_cat
> are the same.  This looks a like the behavior described under "Static
> Variables in Inline Functions" described here:
> 
> http://processors.wiki.ti.com/index.php/C++_Inlining_Issues

This function has nothing to do with static variables.
>From gcc-bugs-return-535052-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 10:59:34 2016
Return-Path: <gcc-bugs-return-535052-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 31183 invoked by alias); 19 Aug 2016 10:59:33 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 31158 invoked by uid 89); 19 Aug 2016 10:59:32 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 10:59:22 +0000
From: "mpolacek at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/77292] Spurious "warning: logical not is only applied to the left hand side of comparison"
Date: Fri, 19 Aug 2016 10:59:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mpolacek at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-77292-4-UZv2UrB7q9@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77292-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77292-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02388.txt.bz2
Content-length: 403

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77292

Marek Polacek <mpolacek at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mpolacek at gcc dot gnu.org

--- Comment #2 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
Not a bug, IMHO.
>From gcc-bugs-return-535053-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 11:35:35 2016
Return-Path: <gcc-bugs-return-535053-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 10092 invoked by alias); 19 Aug 2016 11:35:35 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 10080 invoked by uid 89); 19 Aug 2016 11:35:33 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=doubles
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 11:35:23 +0000
From: "terra at gnome dot org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/77292] Spurious "warning: logical not is only applied to the left hand side of comparison"
Date: Fri, 19 Aug 2016 11:35:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: terra at gnome dot org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77292-4-DAfSmbwAWE@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77292-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77292-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02389.txt.bz2
Content-length: 716

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77292

--- Comment #3 from M Welinder <terra at gnome dot org> ---
The actual code I got this warning from was...

                if (!lower_tail == (p > phalf)) {

where lower_tail is an int and p and phalf are doubles.

That's simply a comparison of two booleans.  Note, that the hinted-at code

   !(lower_tail == (p > phalf))

is dubious: comparing an int to a booleans.

> this isn't visible to the compiler when it analyzes
>   return !a == b;

I am not aware of a rule that requires the compiler to ignore context
when considering warnings.  It certainly does consider context when
it issues "might be used uninitialized" warnings, so why not here?
>From gcc-bugs-return-535054-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 11:46:37 2016
Return-Path: <gcc-bugs-return-535054-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 99679 invoked by alias); 19 Aug 2016 11:46:36 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 99665 invoked by uid 89); 19 Aug 2016 11:46:35 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 11:46:25 +0000
From: "manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/77292] value range propagation (VRP) would improve -Wlogical-not-parentheses
Date: Fri, 19 Aug 2016 11:46:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: manu at gcc dot gnu.org
X-Bugzilla-Status: SUSPENDED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc short_desc everconfirmed
Message-ID: <bug-77292-4-vARemlm4fY@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77292-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77292-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02390.txt.bz2
Content-length: 1412

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77292

Manuel López-Ibáñez <manu at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |SUSPENDED
   Last reconfirmed|                            |2016-08-19
                 CC|                            |manu at gcc dot gnu.org
            Summary|Spurious "warning: logical  |value range propagation
                   |not is only applied to the  |(VRP) would improve
                   |left hand side of           |-Wlogical-not-parentheses
                   |comparison"                 |
     Ever confirmed|0                           |1

--- Comment #4 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
Note that Clang suggests two ways to silence the warning:

prog.cc:9:10: note: add parentheses after the '!' to evaluate the comparison
first
  return !a == b;
         ^
          (     )
prog.cc:9:10: note: add parentheses around left hand side expression to silence
this warning
  return !a == b;
         ^
         ( )


Also, we do not warn for actual booleans (bool).

To be able to not warn based on the runtime range of variables, we would need
something like VRP in the FE, and that is unlikely to be implemented in the
medium future.
>From gcc-bugs-return-535056-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 11:49:50 2016
Return-Path: <gcc-bugs-return-535056-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 107511 invoked by alias); 19 Aug 2016 11:49:49 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 107194 invoked by uid 89); 19 Aug 2016 11:49:48 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=bogus, dataflow
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 11:49:43 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/77292] value range propagation (VRP) would improve -Wlogical-not-parentheses
Date: Fri, 19 Aug 2016 11:49:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: SUSPENDED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77292-4-XEojLXF3WY@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77292-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77292-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02392.txt.bz2
Content-length: 1229

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77292

--- Comment #5 from Richard Biener <rguenth at gcc dot gnu.org> ---
(In reply to M Welinder from comment #3)
> The actual code I got this warning from was...
> 
> 		if (!lower_tail == (p > phalf)) {
> 
> where lower_tail is an int and p and phalf are doubles.

Well, that changes things because I agree that in the above case the
warning is bogus.


> That's simply a comparison of two booleans.  Note, that the hinted-at code
> 
>    !(lower_tail == (p > phalf))
> 
> is dubious: comparing an int to a booleans.
> 
> > this isn't visible to the compiler when it analyzes
> >   return !a == b;
> 
> I am not aware of a rule that requires the compiler to ignore context
> when considering warnings.  It certainly does consider context when
> it issues "might be used uninitialized" warnings, so why not here?

Because it's not done as in the frontend there is no data-flow available.

So, testcase:

int
foo (int a, int b)
{
  return !a == (a < b);
}

t.c: In function ‘foo’:
t.c:4:13: warning: logical not is only applied to the left hand side of
comparison [-Wlogical-not-parentheses]
   return !a == (a < b);
             ^~
>From gcc-bugs-return-535055-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 11:49:39 2016
Return-Path: <gcc-bugs-return-535055-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 106052 invoked by alias); 19 Aug 2016 11:49:39 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 105884 invoked by uid 89); 19 Aug 2016 11:49:38 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=populate
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 11:49:28 +0000
From: "joe.s+bugzilla at somniumtech dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/70713] msp430 interrupt attribute prevents overriding weak symbols
Date: Fri, 19 Aug 2016 11:49:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 5.3.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: joe.s+bugzilla at somniumtech dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-70713-4-lYt9Od9Zra@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70713-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70713-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02391.txt.bz2
Content-length: 2063

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70713

Joe Seymour <joe.s+bugzilla at somniumtech dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |joe.s+bugzilla@somniumtech.
                   |                            |com

--- Comment #1 from Joe Seymour <joe.s+bugzilla at somniumtech dot com> ---
The test case provided in the initial report requires the
msp430-gcc-support-files (headers and linker scripts) provided by TI.

I believe the issue being described is that when you provide an interrupt
attribute that specifies the name/number of the interrupt, the compiler
generates a section named "__interrupt_vector_<number>" containing the
address of the function. It expects the linker script to use these
sections to construct the vector table.

The linker doesn't know that these sections are related to specific
functions, so it doesn't know to discard the section corresponding to the
weak version of the function when it discards the weak function.

IIUC while making the sections comdat will ensure that all but one of
them is discarded, the section it keeps won't necessarily correspond to
the version of the function that was kept, so the resulting vector table
may be incorrect in some cases.

A workaround might be to to use /DISCARD/ in a linker script, to
explicitly discard the versions of the section that you don't want.
Alternatively, it might be easier and cleaner to omit the name/number of
the interrupt, so that the compiler doesn't generate a section, then
populate the vector table explicitly.

Both workarounds however require you to explicitly tell the linker which
version of the function is being used, at which point there might not be
any benefit to using the weak attribute.

Perhaps the msp430 backend should produce an error if a function is
marked and weak and specifies a particular interrupt number (instead of
just "interrupt")?  I'll submit a patch to gcc-patches.
>From gcc-bugs-return-535057-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 11:50:42 2016
Return-Path: <gcc-bugs-return-535057-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 111448 invoked by alias); 19 Aug 2016 11:50:42 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 111428 invoked by uid 89); 19 Aug 2016 11:50:41 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=employ, Hx-languages-length:886
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 11:50:31 +0000
From: "mpolacek at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/77292] value range propagation (VRP) would improve -Wlogical-not-parentheses
Date: Fri, 19 Aug 2016 11:50:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mpolacek at gcc dot gnu.org
X-Bugzilla-Status: SUSPENDED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77292-4-N3h1plAD97@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77292-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77292-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02393.txt.bz2
Content-length: 876

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77292

--- Comment #6 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
(In reply to Manuel López-Ibáñez from comment #4)
> Note that Clang suggests two ways to silence the warning:
> 
> prog.cc:9:10: note: add parentheses after the '!' to evaluate the comparison
> first
>   return !a == b;
>          ^
>           (     )
> prog.cc:9:10: note: add parentheses around left hand side expression to
> silence this warning
>   return !a == b;
>          ^
>          ( )

I guess I should employ here the fix-it feature we now have...

> Also, we do not warn for actual booleans (bool).

This is intentional.

> To be able to not warn based on the runtime range of variables, we would
> need something like VRP in the FE, and that is unlikely to be implemented in
> the medium future.

...if ever.
>From gcc-bugs-return-535058-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 11:51:23 2016
Return-Path: <gcc-bugs-return-535058-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 112393 invoked by alias); 19 Aug 2016 11:51:23 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 112376 invoked by uid 89); 19 Aug 2016 11:51:22 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 11:51:16 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/77292] Spurious warning: logical not is only applied to the left hand side of comparison
Date: Fri, 19 Aug 2016 11:51:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status short_desc cf_known_to_fail
Message-ID: <bug-77292-4-sUzLB4iuVX@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77292-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77292-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02394.txt.bz2
Content-length: 726

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77292

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|SUSPENDED                   |NEW
            Summary|value range propagation     |Spurious warning: logical
                   |(VRP) would improve         |not is only applied to the
                   |-Wlogical-not-parentheses   |left hand side of
                   |                            |comparison
      Known to fail|                            |6.1.1

--- Comment #7 from Richard Biener <rguenth at gcc dot gnu.org> ---
Clang doesn't warn about this.
>From gcc-bugs-return-535059-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 11:52:53 2016
Return-Path: <gcc-bugs-return-535059-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 114605 invoked by alias); 19 Aug 2016 11:52:53 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 114507 invoked by uid 89); 19 Aug 2016 11:52:52 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Neither
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 11:52:42 +0000
From: "mpolacek at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/77292] Spurious warning: logical not is only applied to the left hand side of comparison
Date: Fri, 19 Aug 2016 11:52:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mpolacek at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77292-4-83uk74hLyQ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77292-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77292-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02395.txt.bz2
Content-length: 221

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77292

--- Comment #8 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
Neither does cc1plus because comparison result has a boolean type...

I'll see what I can do here.
>From gcc-bugs-return-535060-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 11:59:11 2016
Return-Path: <gcc-bugs-return-535060-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 10930 invoked by alias); 19 Aug 2016 11:59:10 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 10908 invoked by uid 89); 19 Aug 2016 11:59:10 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:981
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 11:59:00 +0000
From: "manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/77292] Spurious warning: logical not is only applied to the left hand side of comparison
Date: Fri, 19 Aug 2016 11:59:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: manu at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77292-4-eh24iSjWz5@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77292-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77292-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02396.txt.bz2
Content-length: 904

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77292

--- Comment #9 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
(In reply to M Welinder from comment #3)
> I am not aware of a rule that requires the compiler to ignore context
> when considering warnings.  It certainly does consider context when
> it issues "might be used uninitialized" warnings, so why not here?

Wuninitialized warnings are implemented in the middle-end. They benefit from
the analysis done by optimization, but also suffer from the optimizations
transforming and removing code (PR18501 and
http://gcc.gnu.org/wiki/Better_Uninitialized_Warnings).

Warnings in the FE, like this one, are more consistent but there is very
limited analysis done in the FE (because it is harder to implement in the FE,
it may slow down the compiler and would duplicate the analysis done in the
middle-end for optimization).
>From gcc-bugs-return-535061-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 12:04:52 2016
Return-Path: <gcc-bugs-return-535061-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 100056 invoked by alias); 19 Aug 2016 12:04:52 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 100042 invoked by uid 89); 19 Aug 2016 12:04:51 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:734
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 12:04:41 +0000
From: "manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/77292] Spurious warning: logical not is only applied to the left hand side of comparison
Date: Fri, 19 Aug 2016 12:04:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: manu at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77292-4-1GQQC2rqs1@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77292-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77292-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02397.txt.bz2
Content-length: 727

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77292

--- Comment #10 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
(In reply to Richard Biener from comment #5)
> int
> foo (int a, int b)
> {
>   return !a == (a < b);
> }
> 
> t.c: In function ‘foo’:
> t.c:4:13: warning: logical not is only applied to the left hand side of
> comparison [-Wlogical-not-parentheses]
>    return !a == (a < b);
>              ^~

Why is this not a valid warning?

#include <stdio.h>
void
foo (int a, bool b)
{
  printf("(!a) == b -> %d\n", (int) (!a) == b);
  printf("!(a == b) -> %d\n", (int) !(a == b));
}

int main()
{
    foo(2,1);
}

(!a) == b -> 0
!(a == b) -> 1
>From gcc-bugs-return-535062-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 12:10:48 2016
Return-Path: <gcc-bugs-return-535062-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 110810 invoked by alias); 19 Aug 2016 12:10:48 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 110792 invoked by uid 89); 19 Aug 2016 12:10:47 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=suspected, Suspected, Confirm
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 12:10:37 +0000
From: "manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/35170] Earlier VRP would help  -Wreturn-type
Date: Fri, 19 Aug 2016 12:10:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 4.3.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: manu at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cf_gcctarget bug_status keywords cf_reconfirmed_on cc cf_gcchost everconfirmed short_desc bug_severity cf_gccbuild
Message-ID: <bug-35170-4-3oRUXHgnsm@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-35170-4@http.gcc.gnu.org/bugzilla/>
References: <bug-35170-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02398.txt.bz2
Content-length: 1099

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=35170

Manuel López-Ibáñez <manu at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Target|x86_64-unknown-linux-gnu    |
             Status|UNCONFIRMED                 |NEW
           Keywords|                            |diagnostic
   Last reconfirmed|                            |2016-08-19
                 CC|                            |manu at gcc dot gnu.org
               Host|x86_64-unknown-linux-gnu    |
     Ever confirmed|0                           |1
            Summary|Suspected value range       |Earlier VRP would help
                   |propagation [VRP] failure   |-Wreturn-type
                   |with ? :                    |
           Severity|trivial                     |enhancement
              Build|x86_64-unknown-linux-gnu    |

--- Comment #2 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
Confirm it so it does not appear in the list of UNCONFIRMED.
>From gcc-bugs-return-535063-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 12:32:44 2016
Return-Path: <gcc-bugs-return-535063-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 5998 invoked by alias); 19 Aug 2016 12:32:44 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 5982 invoked by uid 89); 19 Aug 2016 12:32:43 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 12:32:33 +0000
From: "segher at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/77292] Spurious warning: logical not is only applied to the left hand side of comparison
Date: Fri, 19 Aug 2016 12:32:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: segher at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-77292-4-svlYl9EKa5@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77292-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77292-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02399.txt.bz2
Content-length: 950

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77292

Segher Boessenkool <segher at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |segher at gcc dot gnu.org

--- Comment #11 from Segher Boessenkool <segher at gcc dot gnu.org> ---
(In reply to Manuel López-Ibáñez from comment #4)
> Note that Clang suggests two ways to silence the warning:
> 
> prog.cc:9:10: note: add parentheses after the '!' to evaluate the comparison
> first
>   return !a == b;
>          ^
>           (     )
> prog.cc:9:10: note: add parentheses around left hand side expression to
> silence this warning
>   return !a == b;
>          ^
>          ( )

Both of these suggestions are not so good.  "!(a == b)" is better written
as "a != b", and "!(a) == b" is just horrible.
>From gcc-bugs-return-535064-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 12:40:03 2016
Return-Path: <gcc-bugs-return-535064-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 16612 invoked by alias); 19 Aug 2016 12:40:03 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 16552 invoked by uid 89); 19 Aug 2016 12:40:02 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:497
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 12:39:52 +0000
From: "manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/77292] Spurious warning: logical not is only applied to the left hand side of comparison
Date: Fri, 19 Aug 2016 12:40:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: manu at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77292-4-XOBe7Z4nPt@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77292-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77292-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02400.txt.bz2
Content-length: 440

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77292

--- Comment #12 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
(In reply to Segher Boessenkool from comment #11)
> Both of these suggestions are not so good.  "!(a == b)" is better written
> as "a != b", and "!(a) == b" is just horrible.

Agreed for the former, but the latter is suggesting (!a) == b, which is IMHO
clearer than ! a == b.
>From gcc-bugs-return-535065-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 12:42:10 2016
Return-Path: <gcc-bugs-return-535065-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 18860 invoked by alias); 19 Aug 2016 12:42:10 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 18830 invoked by uid 89); 19 Aug 2016 12:42:07 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=ss, associate, nonexistent, ignoring
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 12:41:57 +0000
From: "matthew.thompson at nasa dot gov" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/77296] New: Compiler Error with allocatable string and associate
Date: Fri, 19 Aug 2016 12:42:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: matthew.thompson at nasa dot gov
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77296-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02401.txt.bz2
Content-length: 2778

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77296

            Bug ID: 77296
           Summary: Compiler Error with allocatable string and associate
           Product: gcc
           Version: 6.1.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: fortran
          Assignee: unassigned at gcc dot gnu.org
          Reporter: matthew.thompson at nasa dot gov
  Target Milestone: ---

This program:

program test

   implicit none

   character(len=:), allocatable :: s
   s = 'a'
   associate(ss => s)
     print*,ss
   end associate

end program test

causes a bogus compiler error with gfortran 6.1.0:

(350) $ gfortran -v -save-temps test.F90 
Driving: gfortran -v -save-temps test.F90 -l gfortran -l m -shared-libgcc
Using built-in specs.
COLLECT_GCC=gfortran
COLLECT_LTO_WRAPPER=/ford1/local/gcc/gcc-6.1.0-rhel6/libexec/gcc/x86_64-pc-linux-gnu/6.1.0/lto-wrapper
Target: x86_64-pc-linux-gnu
Configured with: ../gcc-6.1.0/configure
--prefix=/ford1/local/gcc/gcc-6.1.0-rhel6 --disable-multilib
Thread model: posix
gcc version 6.1.0 (GCC) 
COLLECT_GCC_OPTIONS='-v' '-save-temps' '-shared-libgcc' '-mtune=generic'
'-march=x86-64'
 /ford1/local/gcc/gcc-6.1.0-rhel6/libexec/gcc/x86_64-pc-linux-gnu/6.1.0/f951
test.F90 -cpp=test.f90 -quiet -v test.F90 -quiet -dumpbase test.F90
-mtune=generic -march=x86-64 -auxbase test -version -fintrinsic-modules-path
/ford1/local/gcc/gcc-6.1.0-rhel6/lib/gcc/x86_64-pc-linux-gnu/6.1.0/finclude -o
test.s
GNU Fortran (GCC) version 6.1.0 (x86_64-pc-linux-gnu)
        compiled by GNU C version 6.1.0, GMP version 4.3.2, MPFR version 2.4.2,
MPC version 0.8.1, isl version 0.15
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
ignoring nonexistent directory
"/ford1/local/gcc/gcc-6.1.0-rhel6/lib/gcc/x86_64-pc-linux-gnu/6.1.0/../../../../x86_64-pc-linux-gnu/include"
#include "..." search starts here:
#include <...> search starts here:
 /ford1/local/gcc/gcc-6.1.0-rhel6/lib/gcc/x86_64-pc-linux-gnu/6.1.0/finclude
 /ford1/local/gcc/gcc-6.1.0-rhel6/lib/gcc/x86_64-pc-linux-gnu/6.1.0/include
 /usr/local/include
 /ford1/local/gcc/gcc-6.1.0-rhel6/include

/ford1/local/gcc/gcc-6.1.0-rhel6/lib/gcc/x86_64-pc-linux-gnu/6.1.0/include-fixed
 /usr/include
End of search list.
GNU Fortran2008 (GCC) version 6.1.0 (x86_64-pc-linux-gnu)
        compiled by GNU C version 6.1.0, GMP version 4.3.2, MPFR version 2.4.2,
MPC version 0.8.1, isl version 0.15
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
test.F90:7:20:

    associate(ss => s)
                    1
Error: Entity ‘ss’ at (1) has a deferred type parameter and requires either the
pointer or allocatable attribute
>From gcc-bugs-return-535066-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 13:15:18 2016
Return-Path: <gcc-bugs-return-535066-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 130114 invoked by alias); 19 Aug 2016 13:15:17 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 130099 invoked by uid 89); 19 Aug 2016 13:15:17 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=teams, thereof, late
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 13:15:07 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/71065] Missing diagnostic for statements between OpenMP 'target' and 'teams'
Date: Fri, 19 Aug 2016 13:15:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: accepts-invalid, openmp
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-71065-4-NK9eO9MtCJ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71065-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71065-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02402.txt.bz2
Content-length: 606

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71065

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jakub at gcc dot gnu.org

--- Comment #1 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
This can't be diagnosed in the middle-end, that is too late and at that point
there could be in between the two e.g. declarations and expressions from the
teams construct clause expressions, or from gimplification thereof etc.
>From gcc-bugs-return-535067-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 13:17:55 2016
Return-Path: <gcc-bugs-return-535067-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 15042 invoked by alias); 19 Aug 2016 13:17:55 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 15019 invoked by uid 89); 19 Aug 2016 13:17:54 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 13:17:44 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/71065] Missing diagnostic for statements between OpenMP 'target' and 'teams'
Date: Fri, 19 Aug 2016 13:17:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: accepts-invalid, openmp
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71065-4-IsWmSJbbUZ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71065-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71065-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02403.txt.bz2
Content-length: 468

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71065

--- Comment #2 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Note that according to the omp-lang discussions
#pragma omp target
{{{{{
#pragma omp teams
{
...
}
}}}}}
is fine, while even
#pragma omp target
{
  {}
  #pragma omp teams
  {
    ...
  }
}
(or ; etc., before or after teams, is invalid).
Whether
#pragma omp target
{
  label:
    #pragma omp teams
    {
      ...
    }
}
is valid or not is unclear.
>From gcc-bugs-return-535068-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 14:00:07 2016
Return-Path: <gcc-bugs-return-535068-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 109542 invoked by alias); 19 Aug 2016 14:00:07 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 109522 invoked by uid 89); 19 Aug 2016 14:00:06 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:673
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 13:59:56 +0000
From: "mwahab at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77281] [ARM] Wrong code generated for move of constant vector with mix of signed and unsigned zeros
Date: Fri, 19 Aug 2016 14:00:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mwahab at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77281-4-x0DOiCAk2g@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77281-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77281-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02404.txt.bz2
Content-length: 603

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77281

--- Comment #2 from mwahab at gcc dot gnu.org ---
Author: mwahab
Date: Fri Aug 19 13:59:18 2016
New Revision: 239610

URL: https://gcc.gnu.org/viewcvs?rev=239610&root=gcc&view=rev
Log:
[ARM] Fix an invalid check for vectors of the same floating-point constants.

2016-08-19  Matthew Wahab  <matthew.wahab@arm.com>

        PR target/77281
        * config/arm/arm.c (neon_valid_immediate): Delete declaration.
        Use const_vec_duplicate to check for duplicated elements.


Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/config/arm/arm.c
>From gcc-bugs-return-535069-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 14:38:53 2016
Return-Path: <gcc-bugs-return-535069-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 3322 invoked by alias); 19 Aug 2016 14:38:53 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 3307 invoked by uid 89); 19 Aug 2016 14:38:52 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:215
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 14:38:42 +0000
From: "tkoenig at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/77296] Compiler Error with allocatable string and associate
Date: Fri, 19 Aug 2016 14:38:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: tkoenig at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77296-4-pMClPeEhe2@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77296-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77296-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02405.txt.bz2
Content-length: 144

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77296

--- Comment #1 from Thomas Koenig <tkoenig at gcc dot gnu.org> ---
Also fails with 5.4.0.
>From gcc-bugs-return-535070-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 15:01:03 2016
Return-Path: <gcc-bugs-return-535070-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 117028 invoked by alias); 19 Aug 2016 15:01:03 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 117011 invoked by uid 89); 19 Aug 2016 15:01:02 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 15:00:52 +0000
From: "wipedout at yandex dot ru" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77297] New: -Wnonnull-compare not emitted inside ternary operator
Date: Fri, 19 Aug 2016 15:01:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wipedout at yandex dot ru
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77297-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02406.txt.bz2
Content-length: 1097

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77297

            Bug ID: 77297
           Summary: -Wnonnull-compare not emitted inside ternary operator
           Product: gcc
           Version: 6.1.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: wipedout at yandex dot ru
  Target Milestone: ---

On http://gcc.godbolt.org/ I select gcc 6.1 and specify -O3 -Wall

Here's the code:
struct CHandle {
  int handle;
  int GetHandle() const
  {
    if (this == 0) //[-Wnonnull-compare] emitted as expected
      return handle;
    return (this == 0) ? 1 : handle; //[-Wnonnull-compare] not emitted
  }
};
int main()
{
  CHandle* h = new CHandle();//
  return h->GetHandle();
}

[-Wnonnull-compare] is emitted for "if (this == 0)" line but not for
"(this==0)?" ternary operator line. The two are completely equivalent checks.
The warning should be emitted for both. If I remove "if (this == 0) return
handle" then still no warning is emitted.
>From gcc-bugs-return-535071-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 15:06:06 2016
Return-Path: <gcc-bugs-return-535071-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 122903 invoked by alias); 19 Aug 2016 15:06:05 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 122882 invoked by uid 89); 19 Aug 2016 15:06:04 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:1005
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 15:05:54 +0000
From: "wipedout at yandex dot ru" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77298] New: -Wnonnull-compare only emitted for code which is invoked
Date: Fri, 19 Aug 2016 15:06:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wipedout at yandex dot ru
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77298-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02407.txt.bz2
Content-length: 1094

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77298

            Bug ID: 77298
           Summary: -Wnonnull-compare only emitted for code which is
                    invoked
           Product: gcc
           Version: 6.1.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: wipedout at yandex dot ru
  Target Milestone: ---

On http://gcc.godbolt.org/ I select gcc 6.1 and specify -O3 -Wall

The code is:
struct CHandle {
  int handle;
  int GetHandle() const
  {
    if (this != 0) //[-Wnonnull-compare] emitted
      return handle;
    return 0;
  }
};
int main()
{
  CHandle* h = new CHandle();
  return h->GetHandle();
}

Initially [-Wnonnull-compare] is emitted where "this" is checked for null. Now
I change main() to this:

int main()
{
  CHandle* h = new CHandle();
  return 0;//h->GetHandle();
}

and the warning is no longer emitted. The code is compiled and it's known at
compile time that there's a check of "this" against null yet not warning.
>From gcc-bugs-return-535072-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 15:11:59 2016
Return-Path: <gcc-bugs-return-535072-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 78841 invoked by alias); 19 Aug 2016 15:11:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 78831 invoked by uid 89); 19 Aug 2016 15:11:56 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 15:11:46 +0000
From: "wipedout at yandex dot ru" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77299] New: No warning for unused "INT64_MAX" and similar constants
Date: Fri, 19 Aug 2016 15:11:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wipedout at yandex dot ru
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77299-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02408.txt.bz2
Content-length: 834

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77299

            Bug ID: 77299
           Summary: No warning for unused "INT64_MAX" and similar
                    constants
           Product: gcc
           Version: 6.1.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: wipedout at yandex dot ru
  Target Milestone: ---

On http://gcc.godbolt.org/ I select gcc 6.1 and specify -O3 -Wall

The code is:

#include <stdint.h>

int main()
{
  INT64_MIN; // no warning
  INT64_MIN; // no warning
  INT64_MAX; // -Wunused-value
  INT64_MAX; // -Wunused-value
  1; // -Wunused-value
  0; // -Wunused-value
  INT64_MIN + 0; // -Wunused-value
}

For some reason there's no warning where unused INT64_MIN occurs.
>From gcc-bugs-return-535073-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 15:28:26 2016
Return-Path: <gcc-bugs-return-535073-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 69422 invoked by alias); 19 Aug 2016 15:28:26 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 69410 invoked by uid 89); 19 Aug 2016 15:28:25 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Wrap
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 15:28:15 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/69281] gfortran ICE on temporary array in function call with -fstack-arrays -fopenmp
Date: Fri, 19 Aug 2016 15:28:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 5.3.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-69281-4-5gaIeuigMn@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69281-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69281-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02409.txt.bz2
Content-length: 698

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69281

--- Comment #3 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Author: jakub
Date: Fri Aug 19 15:27:40 2016
New Revision: 239618

URL: https://gcc.gnu.org/viewcvs?rev=239618&root=gcc&view=rev
Log:
        PR fortran/69281
        * trans-openmp.c (gfc_trans_omp_parallel, gfc_trans_omp_task,
        gfc_trans_omp_target): Wrap gfc_trans_omp_code result in an extra
        BIND_EXPR with its own forced BLOCK.

        * gfortran.dg/gomp/pr69281.f90: New test.

Added:
    trunk/gcc/testsuite/gfortran.dg/gomp/pr69281.f90
Modified:
    trunk/gcc/fortran/ChangeLog
    trunk/gcc/fortran/trans-openmp.c
    trunk/gcc/testsuite/ChangeLog
>From gcc-bugs-return-535074-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 15:29:44 2016
Return-Path: <gcc-bugs-return-535074-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 76452 invoked by alias); 19 Aug 2016 15:29:44 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 76438 invoked by uid 89); 19 Aug 2016 15:29:43 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 15:29:33 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/72744] ICE in verify_ssa, at tree-ssa.c:1039
Date: Fri, 19 Aug 2016 15:29:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code, openmp
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72744-4-NK0SwcSp6X@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72744-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72744-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02410.txt.bz2
Content-length: 439

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72744

--- Comment #3 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Author: jakub
Date: Fri Aug 19 15:28:59 2016
New Revision: 239619

URL: https://gcc.gnu.org/viewcvs?rev=239619&root=gcc&view=rev
Log:
        PR fortran/72744
        * gfortran.dg/gomp/pr72744.f90: New test.

Added:
    trunk/gcc/testsuite/gfortran.dg/gomp/pr72744.f90
Modified:
    trunk/gcc/testsuite/ChangeLog
>From gcc-bugs-return-535075-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 15:31:19 2016
Return-Path: <gcc-bugs-return-535075-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 80132 invoked by alias); 19 Aug 2016 15:31:19 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 80123 invoked by uid 89); 19 Aug 2016 15:31:18 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:719
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 15:31:08 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/71014] associate statement inside omp parallel do appears to disable default private attribute for inner loop indices
Date: Fri, 19 Aug 2016 15:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: openmp
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71014-4-gqBJh1jeT5@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71014-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71014-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02411.txt.bz2
Content-length: 645

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71014

--- Comment #10 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Author: jakub
Date: Fri Aug 19 15:30:33 2016
New Revision: 239620

URL: https://gcc.gnu.org/viewcvs?rev=239620&root=gcc&view=rev
Log:
        PR fortran/71014
        * resolve.c (gfc_resolve): For ns->construct_entities don't save, clear
        and restore omp state around the resolving.

        * testsuite/libgomp.fortran/pr71014.f90: New test.

Added:
    trunk/libgomp/testsuite/libgomp.fortran/pr71014.f90
Modified:
    trunk/gcc/fortran/ChangeLog
    trunk/gcc/fortran/resolve.c
    trunk/libgomp/ChangeLog
>From gcc-bugs-return-535076-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 15:42:22 2016
Return-Path: <gcc-bugs-return-535076-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 7834 invoked by alias); 19 Aug 2016 15:42:21 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 7759 invoked by uid 89); 19 Aug 2016 15:42:21 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 15:42:11 +0000
From: "manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77297] parenthesis suppress/silences all warnings
Date: Fri, 19 Aug 2016 15:42:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: manu at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on cc short_desc everconfirmed
Message-ID: <bug-77297-4-DzKmFeF0jD@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77297-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77297-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02412.txt.bz2
Content-length: 949

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77297

Manuel López-Ibáñez <manu at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |diagnostic
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-19
                 CC|                            |manu at gcc dot gnu.org
            Summary|-Wnonnull-compare not       |parenthesis
                   |emitted inside ternary      |suppress/silences all
                   |operator                    |warnings
     Ever confirmed|0                           |1

--- Comment #1 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
This is a more general issue with not warning for parenthesized expressions.

Same as PR25733 in C.
Same as PR74765.
>From gcc-bugs-return-535077-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 15:52:57 2016
Return-Path: <gcc-bugs-return-535077-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 80336 invoked by alias); 19 Aug 2016 15:52:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 80308 invoked by uid 89); 19 Aug 2016 15:52:56 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 15:52:47 +0000
From: "manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77298] -Wnonnull-compare only emitted for code which is invoked
Date: Fri, 19 Aug 2016 15:52:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: manu at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cc resolution
Message-ID: <bug-77298-4-TqOm1Isz62@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77298-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77298-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02413.txt.bz2
Content-length: 857

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77298

Manuel López-Ibáñez <manu at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
                 CC|                            |manu at gcc dot gnu.org
         Resolution|---                         |INVALID

--- Comment #1 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
This is by design. Most users do not want to get warnings for code that is not
reachable or if the thing compared against NULL has changed and become NULL
(https://gcc.gnu.org/PR69835). In your case, the whole function gets optimized
out.

This is similar to:

 if (false) {
    if (this != 0)
      return handle;
 }
>From gcc-bugs-return-535079-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 15:59:37 2016
Return-Path: <gcc-bugs-return-535079-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 95079 invoked by alias); 19 Aug 2016 15:59:37 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 94985 invoked by uid 89); 19 Aug 2016 15:59:36 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 15:59:35 +0000
From: "manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77299] No warning for unused "INT64_MAX" and similar constants
Date: Fri, 19 Aug 2016 15:59:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: manu at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: DUPLICATE
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cc resolution
Message-ID: <bug-77299-4-ux8Zcl5oin@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77299-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77299-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02415.txt.bz2
Content-length: 715

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77299

Manuel López-Ibáñez <manu at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
                 CC|                            |manu at gcc dot gnu.org
         Resolution|---                         |DUPLICATE

--- Comment #1 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
It seems the same issue with extra parenthesis:

INT64_MIN + 0; // -Wunused-value
(INT64_MIN + 0); // missing warning

*** This bug has been marked as a duplicate of bug 77297 ***
>From gcc-bugs-return-535078-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 15:59:36 2016
Return-Path: <gcc-bugs-return-535078-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 94975 invoked by alias); 19 Aug 2016 15:59:36 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 94959 invoked by uid 89); 19 Aug 2016 15:59:35 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy¾at, zc, zC, Wextra
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 15:59:33 +0000
From: "msebor at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77298] -Wnonnull-compare only emitted for code which is invoked
Date: Fri, 19 Aug 2016 15:59:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: msebor at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-77298-4-PEqN6IFyQz@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77298-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77298-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02414.txt.bz2
Content-length: 1610

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77298

Martin Sebor <msebor at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |msebor at gcc dot gnu.org

--- Comment #2 from Martin Sebor <msebor at gcc dot gnu.org> ---
I was about to comment on this but Manuel beat me to it.

The problem seems to be that the function is defined inline.  When it's
out-of-line, the warning is emitted.

I'm inclined to agree with the submitter.  The warning should be issued
consistently for inline functions as well as out-of-line ones, regardless of
whether they are called.  Otherwise it will miss the problem in inline
functions in class libraries (that aren't being sufficiently tested).

$ cat z.C && /build/gcc-trunk-svn/gcc/xgcc -B /build/gcc-trunk-svn/gcc -O0
-Wall -Wextra z.C
struct A {
  int f () { return this ? 1 : 0; }
};

struct B {
  int f () { return this ? 1 : 0; }   // missing -Wnonnull-compare
};

struct C {
  int f ();
};

int C::f () { return this ? 1 : 0; }

int main()
{
  return A ().f ();
}
z.C: In member function ‘int A::f()’:
z.C:2:26: warning: nonnull argument ‘this’ compared to NULL [-Wnonnull-compare]
   int f () { return this ? 1 : 0; }
                     ~~~~~^~~~~~~
z.C: In member function ‘int C::f()’:
z.C:13:27: warning: nonnull argument ‘this’ compared to NULL
[-Wnonnull-compare]
 int C::f () { return this ? 1 : 0; }
                      ~~~~~^~~~~~~
>From gcc-bugs-return-535080-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 15:59:57 2016
Return-Path: <gcc-bugs-return-535080-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 96456 invoked by alias); 19 Aug 2016 15:59:57 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 96439 invoked by uid 89); 19 Aug 2016 15:59:56 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 15:59:46 +0000
From: "manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77297] parenthesis suppress/silences all warnings
Date: Fri, 19 Aug 2016 15:59:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: manu at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77297-4-lecivh7vNs@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77297-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77297-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02416.txt.bz2
Content-length: 203

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77297

--- Comment #2 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
*** Bug 77299 has been marked as a duplicate of this bug. ***
>From gcc-bugs-return-535081-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 16:11:36 2016
Return-Path: <gcc-bugs-return-535081-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 11235 invoked by alias); 19 Aug 2016 16:11:35 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 11225 invoked by uid 89); 19 Aug 2016 16:11:34 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:932
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 16:11:24 +0000
From: "msebor at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77298] -Wnonnull-compare only emitted for code which is invoked
Date: Fri, 19 Aug 2016 16:11:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: msebor at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77298-4-Ayy2G19aKg@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77298-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77298-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02417.txt.bz2
Content-length: 962

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77298

--- Comment #3 from Martin Sebor <msebor at gcc dot gnu.org> ---
I should add that Clang issues the warning for all three functions:

$ /build/llvm-trunk/bin/clang -S -Wall -Wextra -Wpedantic z.C
z.C:2:21: warning: 'this' pointer cannot be null in well-defined C++ code;
      pointer may be assumed to always convert to true
      [-Wundefined-bool-conversion]
  int f () { return this ? 1 : 0; }
                    ^~~~ ~
z.C:6:21: warning: 'this' pointer cannot be null in well-defined C++ code;
      pointer may be assumed to always convert to true
      [-Wundefined-bool-conversion]
  int f () { return this ? 1 : 0; }
                    ^~~~ ~
z.C:13:22: warning: 'this' pointer cannot be null in well-defined C++ code;
      pointer may be assumed to always convert to true
      [-Wundefined-bool-conversion]
int C::f () { return this ? 1 : 0; }
                     ^~~~ ~
3 warnings generated.
>From gcc-bugs-return-535082-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 16:13:03 2016
Return-Path: <gcc-bugs-return-535082-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 12729 invoked by alias); 19 Aug 2016 16:13:03 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 12717 invoked by uid 89); 19 Aug 2016 16:13:02 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 16:12:52 +0000
From: "joey.ye at arm dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/64082] virtual register elimination doing bad for local array
Date: Fri, 19 Aug 2016 16:13:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 5.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: minor
X-Bugzilla-Who: joey.ye at arm dot com
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jiwang at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-64082-4-V4Sip2J91O@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-64082-4@http.gcc.gnu.org/bugzilla/>
References: <bug-64082-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02418.txt.bz2
Content-length: 873

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64082

Joey Ye <joey.ye at arm dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |joey.ye at arm dot com

--- Comment #1 from Joey Ye <joey.ye at arm dot com> ---
Code sequence from trunk 20160705 is as following:
bar:
        stp     x29, x30, [sp, -48]!
        add     x29, sp, 0
        stp     x19, x20, [sp, 16]
        add     x19, x29, 32
        mov     w20, w0
        mov     x0, x19
        bl      g
        ldrb    w0, [x19, w20, sxtw]
        bl      f
        ldp     x19, x20, [sp, 16]
        ldp     x29, x30, [sp], 48

Apparantly issue described in this ticket has been resolved, probably by
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=62173.

Resolved.
>From gcc-bugs-return-535083-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 16:26:24 2016
Return-Path: <gcc-bugs-return-535083-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 75100 invoked by alias); 19 Aug 2016 16:26:24 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 75083 invoked by uid 89); 19 Aug 2016 16:26:23 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 16:26:13 +0000
From: "ubizjak at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77270] Flag -mprftchw is shared with 3dnow for -march=k8
Date: Fri, 19 Aug 2016 16:26:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ubizjak at gmail dot com
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: ubizjak at gmail dot com
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on assigned_to target_milestone everconfirmed
Message-ID: <bug-77270-4-Hx8sH6mb4B@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77270-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77270-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02419.txt.bz2
Content-length: 680

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77270

Uroš Bizjak <ubizjak at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|wrong-code                  |
             Status|UNCONFIRMED                 |ASSIGNED
   Last reconfirmed|                            |2016-08-19
           Assignee|unassigned at gcc dot gnu.org      |ubizjak at gmail dot com
   Target Milestone|---                         |6.3
     Ever confirmed|0                           |1

--- Comment #3 from Uroš Bizjak <ubizjak at gmail dot com> ---
I have a patch.
>From gcc-bugs-return-535084-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 16:34:51 2016
Return-Path: <gcc-bugs-return-535084-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 101795 invoked by alias); 19 Aug 2016 16:34:51 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 101785 invoked by uid 89); 19 Aug 2016 16:34:50 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=l5, $25, l15, Hx-languages-length:2198
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 16:34:40 +0000
From: "james410 at cowgill dot org.uk" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77300] New: [MIPS] incorrectly moves instruction containing local GOT16 relocation into a delay slot
Date: Fri, 19 Aug 2016 16:34:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: james410 at cowgill dot org.uk
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-77300-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02420.txt.bz2
Content-length: 2441

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77300

            Bug ID: 77300
           Summary: [MIPS] incorrectly moves instruction containing local
                    GOT16 relocation into a delay slot
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: target
          Assignee: unassigned at gcc dot gnu.org
          Reporter: james410 at cowgill dot org.uk
  Target Milestone: ---

Created attachment 39474
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39474&action=edit
reduced testcase

Debian bug: https://bugs.debian.org/834147

While I'm not sure about the exact conditions this bug occurs, I have managed
to get GCC to produce an object with a dangling GOT16 relocation (ie one
without a LO16) using the attached source. The bug was originally found in
blender, but I've managed to reduce it to something reasonably small.

Compile with:
 mipsel-linux-gnu-g++-6 -O2 -fPIC -c src.cpp

You can tell the bug occurs because attempting to link it gives this error:
 mipsel-linux-gnu-g++-6 src.o
 /usr/lib/gcc-cross/mipsel-linux-gnu/6/../../../../mipsel-linux-gnu/bin/ld:
src.o: Can't find matching LO16 reloc against `_ZN1HIiE5m_fn4ERK1G.isra.1' for
R_MIPS_GOT16 at 0xcc in section
`.text._ZN1HIiE5m_fn5ERK1G[_ZN1HIiE5m_fn5ERK1G]'

The offending assembly contains this:

===========
$L5:
        lw      $16,%got(_ZN1HIiE5m_fn4ERK1G.isra.1)($28)
$L17:
        addiu   $16,$16,%lo(_ZN1HIiE5m_fn4ERK1G.isra.1)
        move    $25,$16
        .reloc  1f,R_MIPS_JALR,_ZN1HIiE5m_fn4ERK1G.isra.1
1:      jalr    $25
        move    $4,$17

        move    $25,$16
        .reloc  1f,R_MIPS_JALR,_ZN1HIiE5m_fn4ERK1G.isra.1
1:      jalr    $25
        move    $4,$17
[...]
$L15:
        lw      $2,28($sp)
        beq     $2,$0,$L17
        lw      $16,%got(_ZN1HIiE5m_fn4ERK1G.isra.1)($28)

        b       $L16
        lw      $25,%call16(_ZN1HIiE5m_fn1Ev)($28)
===========

The error is that the bottommost %got relocation does not have a corresponding
%lo relocation. It seems that GCC has "optimized" the function by moving the lw
into the delay slot of the 'beq $2,$0,$L17' instruction, but this unfortunately
doesn't work because the corresponding %lo at $L17 also would need to be
copied.

My compiler is:
mipsel-linux-gnu-g++-6 (Debian 6.1.1-9) 6.1.1 20160705
>From gcc-bugs-return-535085-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 16:35:39 2016
Return-Path: <gcc-bugs-return-535085-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 102880 invoked by alias); 19 Aug 2016 16:35:39 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 102865 invoked by uid 89); 19 Aug 2016 16:35:38 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:709
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 16:35:28 +0000
From: "segher at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/77292] Spurious warning: logical not is only applied to the left hand side of comparison
Date: Fri, 19 Aug 2016 16:35:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: segher at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77292-4-89SccAbaVF@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77292-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77292-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02421.txt.bz2
Content-length: 655

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77292

--- Comment #13 from Segher Boessenkool <segher at gcc dot gnu.org> ---
(In reply to Manuel López-Ibáñez from comment #12)
> (In reply to Segher Boessenkool from comment #11)
> > Both of these suggestions are not so good.  "!(a == b)" is better written
> > as "a != b", and "!(a) == b" is just horrible.
> 
> Agreed for the former, but the latter is suggesting (!a) == b, which is IMHO
> clearer than ! a == b.

Ah.  The parens are placed suggestively around the "a" in the suggestion, so
it is misleading even :-/  (Or maybe I'm just not very good at reading).
>From gcc-bugs-return-535086-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 16:45:40 2016
Return-Path: <gcc-bugs-return-535086-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 18434 invoked by alias); 19 Aug 2016 16:45:40 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 18419 invoked by uid 89); 19 Aug 2016 16:45:39 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=closely, hunk, Marc, marc
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 16:45:29 +0000
From: "marc.glisse at normalesup dot org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/73714] [Regression 7] Incorrect unsigned long long arithmetic optimization
Date: Fri, 19 Aug 2016 16:45:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: marc.glisse at normalesup dot org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-73714-4-l9ULniVXoZ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-73714-4@http.gcc.gnu.org/bugzilla/>
References: <bug-73714-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02422.txt.bz2
Content-length: 777

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=73714

Marc Glisse <marc.glisse at normalesup dot org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |marc.glisse at normalesup dot org

--- Comment #2 from Marc Glisse <marc.glisse at normalesup dot org> ---
Ah, my verifier considers that some_32bit_int << 57 is 0, while it actually is
undefined or unspecified, and in particular may yield some_32bit_int << 25 on
some platforms. I hope I didn't introduce too many similar bugs...

I'll look at it more closely when I get time, but anyone should feel free to
revert the first hunk of my patch if they need a quicker resolution.
>From gcc-bugs-return-535087-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 16:48:28 2016
Return-Path: <gcc-bugs-return-535087-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 21174 invoked by alias); 19 Aug 2016 16:48:24 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 21121 invoked by uid 89); 19 Aug 2016 16:48:21 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=theoretically
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 16:48:11 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77298] -Wnonnull-compare only emitted for code which is invoked
Date: Fri, 19 Aug 2016 16:48:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-77298-4-oFmmgk5tqR@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77298-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77298-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02423.txt.bz2
Content-length: 829

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77298

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jakub at gcc dot gnu.org

--- Comment #4 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
The warning for proper behavior needs the function being gimplified and in SSA
form, unless the FE start doing that themselves, otherwise it can't generally
determine if an argument is known to be non-NULL or has been reassigned
afterwards and no guarantees are known about it.
Of course, this is quite a special case, because this isn't a parameter one can
change in the function in any way, so theoretically we could warn for this in
the FE.
>From gcc-bugs-return-535088-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 16:50:54 2016
Return-Path: <gcc-bugs-return-535088-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 59406 invoked by alias); 19 Aug 2016 16:50:54 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 59376 invoked by uid 89); 19 Aug 2016 16:50:53 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 16:50:43 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77298] -Wnonnull-compare only emitted for code which is invoked
Date: Fri, 19 Aug 2016 16:50:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77298-4-JJlQu0TmbL@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77298-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77298-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02424.txt.bz2
Content-length: 429

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77298

--- Comment #5 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
You can always use -fkeep-inline-functions to get the warning even for unused
inlines (by forcing them to be emitted). -Wnonnull-compare isn't the only
warning that isn't performed in the FEs early, think about -Wuninitialized and
-Wmaybe-uninitialized and many others.  Those have the same behavior here.
>From gcc-bugs-return-535089-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 17:23:39 2016
Return-Path: <gcc-bugs-return-535089-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 27279 invoked by alias); 19 Aug 2016 17:23:39 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 26648 invoked by uid 89); 19 Aug 2016 17:23:38 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Checking
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 17:23:28 +0000
From: "msebor at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/77301] New: __builtin_object_size incorrect for an array in a struct referenced by a pointer
Date: Fri, 19 Aug 2016 17:23:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: msebor at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77301-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02425.txt.bz2
Content-length: 2736

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77301

            Bug ID: 77301
           Summary: __builtin_object_size incorrect for an array in a
                    struct referenced by a pointer
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: middle-end
          Assignee: unassigned at gcc dot gnu.org
          Reporter: msebor at gcc dot gnu.org
  Target Milestone: ---

The Object Size Checking page of the manual describes the type argument to the
__builtin_object_size intrinsic like so:

type is an integer constant from 0 to 3. If the least significant bit is clear,
objects are whole variables, if it is set, a closest surrounding subobject is
considered the object a pointer points to.

Based on this I would expect the output of the program below to be

  4 8 4 8
  4 8 4 8

The first line of the expected output above is for a known single object of
struct A, so in __builtin_object_size (a.a, 0), the object referenced by a.a is
a "whole variable" whose size is 4.  In __builtin_object_size (a.a, 1), the
"closest surrounding subobject" of a.a is , whose size is 8.  The actual
results on this line are exactly the opposite.

The second line of the expected output above is for an "unknown" object of
struct A (or an element of an array of such objects).  As above, in 
__builtin_object_size (p->a, 0), p->a also refers to the "whole" member a of
the struct, and a's size is 4.  Similarly, in __builtin_object_size (p->a, 1)
the result should be the size of the "closest surrounding subobject" of p->a,
or the object that p points to.  That's clearly an object of struct A whose
size is 8.  Instead, the results are even more confounding than in the first
case.  Even if the object pointed to by p were considered to be an array of
some unknown number of structs A, the expected result would then be 4 -1 4 0,
but certainly not -1 4 0 4.

$ cat z.c && /build/gcc-trunk-svn/gcc/xgcc -B /build/gcc-trunk-svn/gcc -O2
-Wall -Wextra z.c && ./a.out
struct A {
  char a [4];
  int i;
} a;

void __attribute__ ((noclone, noinline))
f (struct A *p)
{
  __builtin_printf ("%zi %zi %zi %zi\n",
                    __builtin_object_size (a.a, 0),
                    __builtin_object_size (a.a, 1),
                    __builtin_object_size (a.a, 2),
                    __builtin_object_size (a.a, 3));

  __builtin_printf ("%zi %zi %zi %zi\n",
                    __builtin_object_size (p->a, 0),
                    __builtin_object_size (p->a, 1),
                    __builtin_object_size (p->a, 2),
                    __builtin_object_size (p->a, 3));
}

int main (void)
{
  f (&a);
}

8 4 8 4
-1 4 0 4
>From gcc-bugs-return-535090-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 17:33:35 2016
Return-Path: <gcc-bugs-return-535090-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 20241 invoked by alias); 19 Aug 2016 17:33:34 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 20232 invoked by uid 89); 19 Aug 2016 17:33:34 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=volunteer, unfamiliar
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 17:33:23 +0000
From: "msebor at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77298] -Wnonnull-compare only emitted for code which is invoked
Date: Fri, 19 Aug 2016 17:33:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: msebor at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77298-4-YY3oGfilIg@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77298-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77298-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02426.txt.bz2
Content-length: 812

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77298

--- Comment #6 from Martin Sebor <msebor at gcc dot gnu.org> ---
Yes, that makes sense to me as an explanation of the limitation of the GCC
implementation and a solution/workaround for it.   I don't think it's something
users unfamiliar with GCC internals think of, though.  I don't have a sense of
how much work it would be to change GCC to issue these warnings consistently,
whether or not functions are used, but I suspect it's not a trivial "bug fix."

Until this change is made (if it ever is made), it seems that documenting the
limitation and the -fkeep-inline-functions workaround might help users who are
relying on these warnings to be consistent.  If you all agree I volunteer to
reopen thus bug and add something to the manual.  Yes?
>From gcc-bugs-return-535091-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 17:40:56 2016
Return-Path: <gcc-bugs-return-535091-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 28583 invoked by alias); 19 Aug 2016 17:40:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 28530 invoked by uid 89); 19 Aug 2016 17:40:52 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:2125
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 17:40:42 +0000
From: "bergner at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/77289] [7 Regression] ICE in extract_constrain_insn, at recog.c:2212 on powerpc64
Date: Fri, 19 Aug 2016 17:40:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: bergner at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-77289-4-urmRpdc5zI@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77289-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77289-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02427.txt.bz2
Content-length: 2358

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77289

Peter Bergner <bergner at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-19
     Ever confirmed|0                           |1

--- Comment #1 from Peter Bergner <bergner at gcc dot gnu.org> ---
Confirmed.  I'll have a look.

Here's a smaller test case:

bergner@genoa:~/gcc/BUGS/PR77289$ cat pr77289.i 
void dummy (float *);
float bar (float);
void
foo (long a, long b)
{
  float c[0];
  b = 0;
  for (; b < a; b++)
    c[b] = bar (c[b]);
  dummy (c);
}
bergner@genoa:~/gcc/BUGS/PR77289$
/home/bergner/gcc/build/gcc-fsf-mainline-pr77289-debug/gcc/xgcc
-B/home/bergner/gcc/build/gcc-fsf-mainline-pr77289-debug/gcc -m32 -O3
-mcpu=power7 -funroll-loops -ffast-math -S pr77289.i 
pr77289.i: In function ‘foo’:
pr77289.i:11:1: error: insn does not satisfy its constraints:
 }
 ^
(insn 77 79 71 3 (parallel [
            (set (reg:SF 33 1)
                (mem:SF (plus:SI (reg/f:SI 1 1)
                        (const_int 8 [0x8])) [1 MEM[base: _17, offset: 0B]+0 S4
A32]))
            (set (reg:SI 31 31 [orig:208 ivtmp.6 ] [208])
                (plus:SI (reg/f:SI 1 1)
                    (const_int 8 [0x8])))
        ]) pr77289.i:9 617 {*movsf_update1}
     (nil))
pr77289.i:11:1: internal compiler error: in extract_constrain_insn, at
recog.c:2212
0x10c634f3 _fatal_insn(char const*, rtx_def const*, char const*, int, char
const*)
        /home/bergner/gcc/gcc-fsf-mainline-pr77289/gcc/rtl-error.c:108
0x10c6358f _fatal_insn_not_found(rtx_def const*, char const*, int, char const*)
        /home/bergner/gcc/gcc-fsf-mainline-pr77289/gcc/rtl-error.c:119
0x10be640f extract_constrain_insn(rtx_insn*)
        /home/bergner/gcc/gcc-fsf-mainline-pr77289/gcc/recog.c:2212
0x10a58b0b check_rtl
        /home/bergner/gcc/gcc-fsf-mainline-pr77289/gcc/lra.c:2108
0x10a59db7 lra(_IO_FILE*)
        /home/bergner/gcc/gcc-fsf-mainline-pr77289/gcc/lra.c:2516
0x109d5813 do_reload
        /home/bergner/gcc/gcc-fsf-mainline-pr77289/gcc/ira.c:5385
0x109d6047 execute
        /home/bergner/gcc/gcc-fsf-mainline-pr77289/gcc/ira.c:5569
Please submit a full bug report,
>From gcc-bugs-return-535092-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 17:42:33 2016
Return-Path: <gcc-bugs-return-535092-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 30725 invoked by alias); 19 Aug 2016 17:42:32 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 30709 invoked by uid 89); 19 Aug 2016 17:42:31 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 17:42:21 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/77301] __builtin_object_size incorrect for an array in a struct referenced by a pointer
Date: Fri, 19 Aug 2016 17:42:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cc resolution
Message-ID: <bug-77301-4-auvvDcp3EH@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77301-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77301-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02428.txt.bz2
Content-length: 1237

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77301

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
                 CC|                            |jakub at gcc dot gnu.org
         Resolution|---                         |INVALID

--- Comment #1 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
The result looks good, the expectations are wrong.
If the least significant bit is clear (i.e. bos0 and bos2), then objects are
whole variables, otherwise (bos1/bos3) we take possible subobjects into
account.
bos0 is the size of the whole object, ignoring any subobject boundaries, so it
must be 8.  The subobject size is 4, so that you get for bos1.  bos2 and bos3
are the minimas, but on the first line you know the sizes exactly, so bos0 ==
bos2 and bos1 == bos3.
For the second line, you don't know how big the object is, so -1 is the maximum
and 0 is minimum for the whole object.  For the subobject, it isn't a flexible
array member or something like that, so in a valid program the subobject length
must be exactly 4.
>From gcc-bugs-return-535094-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 17:44:59 2016
Return-Path: <gcc-bugs-return-535094-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 35263 invoked by alias); 19 Aug 2016 17:44:58 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 35244 invoked by uid 89); 19 Aug 2016 17:44:58 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=warned, Different
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 17:44:51 +0000
From: "jakub at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77298] -Wnonnull-compare only emitted for code which is invoked
Date: Fri, 19 Aug 2016 17:44:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jakub at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77298-4-7HZtnk1j9B@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77298-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77298-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02430.txt.bz2
Content-length: 466

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77298

--- Comment #7 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Different warnings are simply done at different compilation phases.  This is
similar to how you get only a subset of FE warnings on uninstantiated
templates, only something can be warned reliably at that phase, and something
is just too hard to warn at that phase.  So, lots of warnings you get only when
actually instantiating the templates.
>From gcc-bugs-return-535093-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 17:44:37 2016
Return-Path: <gcc-bugs-return-535093-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 34265 invoked by alias); 19 Aug 2016 17:44:37 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 34241 invoked by uid 89); 19 Aug 2016 17:44:37 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 17:44:26 +0000
From: "jsm28 at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/32187] Complex __float128 is rejected
Date: Fri, 19 Aug 2016 17:44:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 4.3.0
X-Bugzilla-Keywords: rejects-valid
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jsm28 at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-32187-4-DciTpO63rJ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-32187-4@http.gcc.gnu.org/bugzilla/>
References: <bug-32187-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02429.txt.bz2
Content-length: 28036

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=32187

--- Comment #11 from Joseph S. Myers <jsm28 at gcc dot gnu.org> ---
Author: jsm28
Date: Fri Aug 19 17:43:26 2016
New Revision: 239625

URL: https://gcc.gnu.org/viewcvs?rev=239625&root=gcc&view=rev
Log:
Implement C _FloatN, _FloatNx types.

ISO/IEC TS 18661-3:2015 defines C bindings to IEEE interchange and
extended types, in the form of _FloatN and _FloatNx type names with
corresponding fN/FN and fNx/FNx constant suffixes and FLTN_* / FLTNX_*
<float.h> macros.  This patch implements support for this feature in
GCC.

The _FloatN types, for N = 16, 32, 64 or >= 128 and a multiple of 32,
are types encoded according to the corresponding IEEE interchange
format (endianness unspecified; may use either the NaN conventions
recommended in IEEE 754-2008, or the MIPS NaN conventions, since the
choice of convention is only an IEEE recommendation, not a
requirement).  The _FloatNx types, for N = 32, 64 and 128, are IEEE
"extended" types: types extending a narrower format with range and
precision at least as big as those specified in IEEE 754 for each
extended type (and with unspecified representation, but still
following IEEE semantics for their values and operations - and with
the set of values being determined by the precision and the maximum
exponent, which means that while Intel "extended" is suitable for
_Float64x, m68k "extended" is not).  These types are always distinct
from and not compatible with each other and the standard floating
types float, double, long double; thus, double, _Float64 and _Float32x
may all have the same ABI, but they are three still distinct types.
The type names may be used with _Complex to construct corresponding
complex types (unlike __float128, which acts more like a typedef name
than a keyword - thus, this patch may be considered to fix PR
c/32187).  The new suffixes can be combined with GNU "i" and "j"
suffixes for constants of complex types (e.g. 1.0if128, 2.0f64i).

The set of types supported is implementation-defined.  In this GCC
patch, _Float32 is SFmode if that is suitable; _Float32x and _Float64
are DFmode if that is suitable; _Float128 is TFmode if that is
suitable; _Float64x is XFmode if that is suitable, and otherwise
TFmode if that is suitable.  There is a target hook to override the
choices if necessary.  "Suitable" means both conforming to the
requirements of that type, and supported as a scalar type including in
libgcc.  The ABI is whatever the back end does for scalars of that
mode (but note that _Float32 is passed without promotion in variable
arguments, unlike float).  All the existing issues with exceptions and
rounding modes for existing types apply equally to the new type names.

No GCC port supports a floating-point format suitable for _Float128x.
Although there is HFmode support for ARM and AArch64, use of that for
_Float16 is not enabled.  Supporting _Float16 would require additional
work on the excess precision aspects of TS 18661-3: there are new
values of FLT_EVAL_METHOD, which are not currently supported in GCC,
and FLT_EVAL_METHOD == 0 now means that operations and constants on
types narrower than float are evaluated to the range and precision of
float.  Implementing that, so that _Float16 gets evaluated with excess
range and precision, would involve changes to the excess precision
infrastructure so that the _Float16 case is enabled by default, unlike
the x87 case which is only enabled for -fexcess-precision=standard.
Other differences between _Float16 and __fp16 would also need to be
disentangled.

GCC has some prior support for nonstandard floating-point types in the
form of __float80 and __float128.  Where these were previously types
distinct from long double, they are made by this patch into aliases
for _Float64x / _Float128 if those types have the required properties.

In principle the set of possible _FloatN types is infinite.  This
patch hardcodes the four such types for N <= 128, but with as much
code as possible using loops over types to minimize the number of
places with such hardcoding.  I don't think it's likely any further
such types will be of use in future (or indeed that formats suitable
for _Float128x will actually be implemented).  There is a corner case
that all _FloatN, for N >= 128 and a multiple of 32, should be treated
as keywords even when the corresponding type is not supported; I
intend to deal with that in a followup patch.

Tests are added for various functionality of the new types, mostly
using type-generic headers.  The tests use dg-add-options to pass any
extra options needed to enable the types; this is wired up to use the
same options as for __float128 on powerpc to enable _Float128 and
_Float64x, and effective-target keywords for runtime support do the
same hardware test as for __float128 to make sure the VSX instructions
generated by those options are supported.  (Corresponding additions
would be needed for _Float16 on ARM as well if that were enabled with
-mfp16-format=ieee required to use it rather than unconditionally
available.  Of course, -mfp16-format=alternative enables use of a
format which is not compatible with the requirements of the _Float16
type.)

C++ note: no support for the new types or constant suffixes is added
for C++.  C++ decimal floating-point support was very different from
the C support, using class types, and the same may well apply to any
future C++ bindings for IEEE interchange and extended types.  There is
a case, however, for supporting at least *f128 constants in C++, so
that code using __float128 can use the newer style for constants
throughout rather than needing to use the older *q constants in C++.
Also, if built-in functions are added that may provide a way in which
the types could leak into C++ code.

Fortran note: the float128_type_node used in the Fortran front end is
renamed to gfc_float128_type_node, since the semantics are different:
in particular, if long double has binary128 format, then the new
language-independent float128_type_node is a distinct type that also
has binary128 format, but the Fortran node is expected to be NULL in
that case.  Likewise, Fortran's complex_float128_type_node is renamed
to gfc_complex_float128_type_node.

PowerPC note: the back end had an inconsistency that if TFmode was
binary128, *q constants were TFmode instead of KFmode but __float128
was KFmode.  This patch follows the same logic as for *q constants, so
that _Float128 prefers TFmode (and __float128 becomes an alias for
_Float128).

ARM note: __fp16 is promoted to double (by convert_arguments) when
passed without a prototype / in variable arguments.  But this is only
about the argument promotion; it is not handled as promoting in
c-common.c:self_promoting_args_p / c-typeck.c:c_type_promotes_to,
meaning that a K&R function definition for an argument of type __fp16
corresponds to a prototype with an argument of that type, not to one
with an argument of type double, whereas a float argument in a K&R
function definition corresponds to a double prototype argument - and
the same functions are also what's involved in making va_arg give a
warning and generate a call to abort when called with type float.
This is preserved by this patch, while arranging for _Float16 not to
be promoted when passed without a prototype / in variable arguments
(the promotion of float being considered a legacy feature, not applied
to any new types in C99 or later).

TS 18661-3 extends the set of decimal floating-point types similarly,
and adds new constant suffixes for the existing types, but this patch
does not do anything regarding that extension.

This patch does nothing regarding built-in functions, although
type-generic functions such as __builtin_isinf work for the new types
and associated tests are included.  There are at least two levels of
built-in function support possible for these types.  The minimal
level, implemented in
<https://gcc.gnu.org/ml/gcc-patches/2016-06/msg01702.html> (which
needs updating to use dg-add-options), adds built-in functions similar
to those x86 has for __float128: __builtin_inf* __builtin_huge_val*,
__builtin_nan*, __builtin_nans*, __builtin_fabs*, __builtin_copysign*.
That would be sufficient for glibc to use the *f128 names for built-in
functions by default with *q used only for backwards compatibility
when using older GCC versions.  That would also allow c_cpp_builtins's
flag_building_libgcc code, defining __LIBGCC_%s_FUNC_EXT__, to use
such suffixes rather than the present code hardcoding logic about
target-specific constant suffixes and how those relate to function
suffixes.

Full built-in function support would cover the full range of built-in
functions for existing floating-point types, adding variants for all
the new types, except for a few obsolescent functions and
non-type-generic variants of type-generic functions.  Some but not all
references to such functions in GCC use macros such as CASE_FLT_FN to
be type-generic; a fair amount of work would be needed to identify all
places to update.  Adding all those functions would enable
optimizations (for constant arguments and otherwise) for TS 18661-3
functions, but it would also substantially expand the enum listing
built-in functions (and we've had problems with the size of that enum
in the past), and increase the amount of built-in function
initialization to do - I don't know what the startup cost involved in
built-in function initialization is, but it would be something to
consider when adding such a large set of functions.

There are also a range of optimizations, in match.pd and elsewhere,
that only operate on the three standard floating-point types.  Ideally
those would be made generic to all floating-point types, but this
patch does nothing in that regard.  Special care would be needed
regarding making sure library functions to which calls are generated
actually exist.  For example, if sqrt is called on an argument of type
_Float32, and the result converted to _Float32, this is equivalent to
doing a square root operation directly on _Float32.  But if the user's
libm does not have the sqrtf32 function, or the name is not reserved
because __STDC_WANT_IEC_60559_TYPES_EXT__ was not defined before
including <math.h>, you can only do that optimization if you convert
to a call to sqrtf instead.

DECIMAL_DIG now relates to all supported floating-point formats, not
just float, double and long double; I've raised the question with WG14
of how this relates to the formula for DECIMAL_DIG in C11 not
considering this.  TS 18661-3 says it also covers non-arithmetic
formats only supported by library conversion functions; this patch
does not add any target hooks to allow for the case where there are
such formats wider than any supported for arithmetic types (where
e.g. libc supports conversions involving the binary128 representation,
but the _Float128 type is not supported).

GCC provides its own <tgmath.h> for some targets.  No attempt is made
to adapt this to handle the new types.

Nothing is done regarding debug info for the new types (see the
"Debugger support for __float128 type?" thread on gcc@, Sep/Oct 2015).

No __SIZEOF_*__ macros are added for the new types.

Nothing is done with do_warn_double_promotion.

Nothing is done to include the new types in those determining
max_align_t, although properly it should be sufficiently aligned for
any of those types.

The logic for usual arithmetic conversions in c_common_type relies on
TYPE_PRECISION for floating-point types, which is less than ideal
(doesn't necessarily correspond to whether one type's values are
subset of another); looking in more detail at the formats might be
better.  But since I included code in build_common_tree_nodes to work
around rs6000 KFmode having precision 113 not 128, I think it should
work.  Ideally one might have errors in generic code for the case
where the two types do not have one type's values a subset of the
other (which is undefined behavior).  But the only case where this can
actually occur is mixing IBM long double with binary128 on powerpc,
and rs6000_invalid_binary_op deals with that at present.  TS 18661-3
does not fully specify the type resulting from the usual arithmetic
conversions in the case where two _FloatNx types have the same set of
values; I arranged the code to prefer the greater value of N in that
case.

The __FP_FAST_FMA* macros are not extended to cover the new types,
since there are no corresponding built-in functions (if built-in
fmafN, fmafNx are added, the macros should be extended, and the new
macros documented).  Also, only a limited set of modes is handled in
mode_has_fma.

Diagnostics relating to the use of the new types with -pedantic do not
try to distinguish them from purely nonstandard types such as __int128
and constant suffixes such as *q.

If you use an unsupported _FloatN / _FloatNx type you get a warning
about the type defaulting to int after the warning about the type not
being supported.  That's less than ideal, but it's also a pre-existing
condition if you use __int128 on a 32-bit system where it's
unsupported.

Bootstrapped with no regressions on x86_64-pc-linux-gnu.  Other
back-end changes minimally tested by building cc1 for ia64-linux-gnu,
powerpc64le-linux-gnu, pdp11-none (the last failed for unrelated
reasons).

        PR c/32187
gcc:
        * tree-core.h (TI_COMPLEX_FLOAT16_TYPE)
        (TI_COMPLEX_FLOATN_NX_TYPE_FIRST, TI_COMPLEX_FLOAT32_TYPE)
        (TI_COMPLEX_FLOAT64_TYPE, TI_COMPLEX_FLOAT128_TYPE)
        (TI_COMPLEX_FLOAT32X_TYPE, TI_COMPLEX_FLOAT64X_TYPE)
        (TI_COMPLEX_FLOAT128X_TYPE, TI_FLOAT16_TYPE, TI_FLOATN_TYPE_FIRST)
        (TI_FLOATN_NX_TYPE_FIRST, TI_FLOAT32_TYPE, TI_FLOAT64_TYPE)
        (TI_FLOAT128_TYPE, TI_FLOATN_TYPE_LAST, TI_FLOAT32X_TYPE)
        (TI_FLOATNX_TYPE_FIRST, TI_FLOAT64X_TYPE, TI_FLOAT128X_TYPE)
        (TI_FLOATNX_TYPE_LAST, TI_FLOATN_NX_TYPE_LAST): New enum
        tree_index values.
        (NUM_FLOATN_TYPES, NUM_FLOATNX_TYPES, NUM_FLOATN_NX_TYPES): New
        macros.
        (struct floatn_type_info): New structure type.
        (floatn_nx_types): New variable declaration.
        * tree.h (FLOATN_TYPE_NODE, FLOATN_NX_TYPE_NODE)
        (FLOATNX_TYPE_NODE, float128_type_node, float64x_type_node)
        (COMPLEX_FLOATN_NX_TYPE_NODE): New macros.
        * tree.c (floatn_nx_types): New variable.
        (build_common_tree_nodes): Initialize _FloatN, _FloatNx and
        corresponding complex types.
        * target.def (floatn_mode): New hook.
        * targhooks.c: Include "real.h".
        (default_floatn_mode): New function.
        * targhooks.h (default_floatn_mode): New prototype.
        * doc/extend.texi (Floating Types): Document _FloatN and _FloatNx
        types.
        * doc/sourcebuild.texi (float@var{n}, float@var{n}x): Document new
        effective-target and dg-add-options keywords.
        (float@var{n}_runtime, float@var{n}x_runtime, floatn_nx_runtime):
        Document new effective-target keywords.
        * doc/tm.texi.in (TARGET_FLOATN_MODE): New @hook.
        * doc/tm.texi: Regenerate.
        * ginclude/float.h (LDBL_DECIMAL_DIG): Define to
        __LDBL_DECIMAL_DIG__, not __DECIMAL_DIG__.
        [__STDC_WANT_IEC_60559_TYPES_EXT__]: Define macros from TS
        18661-3.
        * real.h (struct real_format): Add field ieee_bits.
        * real.c (ieee_single_format, mips_single_format)
        (motorola_single_format, spu_single_format, ieee_double_format)
        (mips_double_format, motorola_double_format)
        (ieee_extended_motorola_format, ieee_extended_intel_96_format)
        (ieee_extended_intel_128_format)
        (ieee_extended_intel_96_round_53_format, ibm_extended_format)
        (mips_extended_format, ieee_quad_format, mips_quad_format)
        (vax_f_format, vax_d_format, vax_g_format, decimal_single_format)
        (decimal_double_format, decimal_quad_format, ieee_half_format)
        (arm_half_format, real_internal_format: Initialize ieee_bits
        field.
        * config/i386/i386.c (ix86_init_builtin_types): Do not initialize
        float128_type_node.  Set float80_type_node to float64x_type_node
        if appropriate and long_double_type_node not appropriate.
        * config/ia64/ia64.c (ia64_init_builtins): Likewise.
        * config/pdp11/pdp11.c (pdp11_f_format, pdp11_d_format):
        Initialize ieee_bits field.
        * config/rs6000/rs6000.c (TARGET_FLOATN_MODE): New macro.
        (rs6000_init_builtins): Set ieee128_float_type_node to
        float128_type_node.
        (rs6000_floatn_mode): New function.

gcc/c:
        * c-tree.h (cts_floatn_nx): New enum c_typespec_keyword value.
        (struct c_declspecs): Add field floatn_nx_idx.
        * c-decl.c (declspecs_add_type, finish_declspecs): Handle _FloatN
        and _FloatNx type specifiers.
        * c-parser.c (c_keyword_starts_typename, c_token_starts_declspecs)
        (c_parser_declspecs, c_parser_attribute_any_word)
        (c_parser_objc_selector): Use CASE_RID_FLOATN_NX.
        * c-typeck.c (c_common_type): Handle _FloatN and _FloatNx types.
        (convert_arguments): Avoid promoting _FloatN and _FloatNx types
        narrower than double.

gcc/c-family:
        * c-common.h (RID_FLOAT16, RID_FLOATN_NX_FIRST, RID_FLOAT32)
        (RID_FLOAT64, RID_FLOAT128, RID_FLOAT32X, RID_FLOAT64X)
        (RID_FLOAT128X): New enum rid values.
        (CASE_RID_FLOATN_NX): New macro.
        * c-common.c (c_common_reswords): Add _FloatN and _FloatNx
        keywords.
        (c_common_type_for_mode): Check for _FloatN and _FloatNx and
        corresponding complex types.
        (c_common_nodes_and_builtins): For non-C++, register _FloatN and
        _FloatNx and corresponding complex types.
        (keyword_begins_type_specifier): Use CASE_RID_FLOATN_NX.
        * c-cppbuiltin.c (builtin_define_float_constants): Check _FloatN
        and _FloatNx types for the widest type for determining
        DECIMAL_DIG.  Define __LDBL_DECIMAL_DIG__ as well as
        __DECIMAL_DIG__ for long double.  Handle FMA_SUFFIX being NULL.
        (c_cpp_builtins): Call builtin_define_float_constants for _FloatN
        and _FloatNx types.
        * c-lex.c (interpret_float): Handle _FloatN and _FloatNx
        constants.
        * c-pretty-print.c (pp_c_floating_constant): Handle _FloatN and
        _FloatNx types.

gcc/fortran:
        * trans-types.h (float128_type_node): Rename to
        gfc_float128_type_node.
        (complex_float128_type_node): Rename to
        gfc_complex_float128_type_node.
        * iso-c-binding.def, trans-intrinsic.c, trans-types.c: All users
        changed.

gcc/testsuite:
        * lib/target-supports.exp (check_effective_target_float16)
        (check_effective_target_float32, check_effective_target_float64)
        (check_effective_target_float128, check_effective_target_float32x)
        (check_effective_target_float64x)
        (check_effective_target_float128x)
        (check_effective_target_float16_runtime)
        (check_effective_target_float32_runtime)
        (check_effective_target_float64_runtime)
        (check_effective_target_float128_runtime)
        (check_effective_target_float32x_runtime)
        (check_effective_target_float64x_runtime)
        (check_effective_target_float128x_runtime)
        (check_effective_target_floatn_nx_runtime)
        (add_options_for_float16, add_options_for_float32)
        (add_options_for_float64, add_options_for_float128)
        (add_options_for_float32x, add_options_for_float64x)
        (add_options_for_float128x): New procedures.
        * gcc.dg/dfp/floatn.c, gcc.dg/float128-typeof.c,
        gcc.dg/float128x-typeof.c, gcc.dg/float16-typeof.c,
        gcc.dg/float32-typeof.c, gcc.dg/float32x-typeof.c,
        gcc.dg/float64-typeof.c, gcc.dg/float64x-typeof.c,
        gcc.dg/floatn-arithconv.c, gcc.dg/floatn-errs.c,
        gcc.dg/floatn-typeof.h, gcc.dg/torture/float128-basic.c,
        gcc.dg/torture/float128-complex.c,
        gcc.dg/torture/float128-floath.c, gcc.dg/torture/float128-tg.c,
        gcc.dg/torture/float128x-basic.c,
        gcc.dg/torture/float128x-complex.c,
        gcc.dg/torture/float128x-floath.c, gcc.dg/torture/float128x-tg.c,
        gcc.dg/torture/float16-basic.c, gcc.dg/torture/float16-complex.c,
        gcc.dg/torture/float16-floath.c, gcc.dg/torture/float16-tg.c,
        gcc.dg/torture/float32-basic.c, gcc.dg/torture/float32-complex.c,
        gcc.dg/torture/float32-floath.c, gcc.dg/torture/float32-tg.c,
        gcc.dg/torture/float32x-basic.c,
        gcc.dg/torture/float32x-complex.c,
        gcc.dg/torture/float32x-floath.c, gcc.dg/torture/float32x-tg.c,
        gcc.dg/torture/float64-basic.c, gcc.dg/torture/float64-complex.c,
        gcc.dg/torture/float64-floath.c, gcc.dg/torture/float64-tg.c,
        gcc.dg/torture/float64x-basic.c,
        gcc.dg/torture/float64x-complex.c,
        gcc.dg/torture/float64x-floath.c, gcc.dg/torture/float64x-tg.c,
        gcc.dg/torture/floatn-basic.h, gcc.dg/torture/floatn-complex.h,
        gcc.dg/torture/floatn-convert.c, gcc.dg/torture/floatn-floath.h,
        gcc.dg/torture/floatn-tg.h,
        gcc.dg/torture/fp-int-convert-float128-ieee-timode.c,
        gcc.dg/torture/fp-int-convert-float128-ieee.c,
        gcc.dg/torture/fp-int-convert-float128x-timode.c,
        gcc.dg/torture/fp-int-convert-float128x.c,
        gcc.dg/torture/fp-int-convert-float16-timode.c,
        gcc.dg/torture/fp-int-convert-float16.c,
        gcc.dg/torture/fp-int-convert-float32-timode.c,
        gcc.dg/torture/fp-int-convert-float32.c,
        gcc.dg/torture/fp-int-convert-float32x-timode.c,
        gcc.dg/torture/fp-int-convert-float32x.c,
        gcc.dg/torture/fp-int-convert-float64-timode.c,
        gcc.dg/torture/fp-int-convert-float64.c,
        gcc.dg/torture/fp-int-convert-float64x-timode.c,
        gcc.dg/torture/fp-int-convert-float64x.c: New tests.
        * gcc.dg/torture/fp-int-convert.h (TEST_I_F): Add argument for
        maximum exponent of floating-point type.  Use it in testing
        whether 0x8...0 fits in the floating-point type.  Always treat -1
        (signed 0xf...f) as fitting in the floating-point type.
        (M_OK1): New macro.
        * gcc.dg/torture/fp-int-convert-double.c,
        gcc.dg/torture/fp-int-convert-float.c,
        gcc.dg/torture/fp-int-convert-float128-timode.c,
        gcc.dg/torture/fp-int-convert-float128.c,
        gcc.dg/torture/fp-int-convert-float80-timode.c,
        gcc.dg/torture/fp-int-convert-float80.c,
        gcc.dg/torture/fp-int-convert-long-double.c,
        gcc.dg/torture/fp-int-convert-timode.c: Update calls to TEST_I_F.

libcpp:
        * include/cpplib.h (CPP_N_FLOATN, CPP_N_FLOATNX)
        (CPP_N_WIDTH_FLOATN_NX, CPP_FLOATN_SHIFT, CPP_FLOATN_MAX): New
        macros.
        * expr.c (interpret_float_suffix): Handle fN, fNx, FN and FNx
        suffixes.

Added:
    trunk/gcc/testsuite/gcc.dg/dfp/floatn.c
    trunk/gcc/testsuite/gcc.dg/float128-typeof.c
    trunk/gcc/testsuite/gcc.dg/float128x-typeof.c
    trunk/gcc/testsuite/gcc.dg/float16-typeof.c
    trunk/gcc/testsuite/gcc.dg/float32-typeof.c
    trunk/gcc/testsuite/gcc.dg/float32x-typeof.c
    trunk/gcc/testsuite/gcc.dg/float64-typeof.c
    trunk/gcc/testsuite/gcc.dg/float64x-typeof.c
    trunk/gcc/testsuite/gcc.dg/floatn-arithconv.c
    trunk/gcc/testsuite/gcc.dg/floatn-errs.c
    trunk/gcc/testsuite/gcc.dg/floatn-typeof.h
    trunk/gcc/testsuite/gcc.dg/torture/float128-basic.c
    trunk/gcc/testsuite/gcc.dg/torture/float128-complex.c
    trunk/gcc/testsuite/gcc.dg/torture/float128-floath.c
    trunk/gcc/testsuite/gcc.dg/torture/float128-tg.c
    trunk/gcc/testsuite/gcc.dg/torture/float128x-basic.c
    trunk/gcc/testsuite/gcc.dg/torture/float128x-complex.c
    trunk/gcc/testsuite/gcc.dg/torture/float128x-floath.c
    trunk/gcc/testsuite/gcc.dg/torture/float128x-tg.c
    trunk/gcc/testsuite/gcc.dg/torture/float16-basic.c
    trunk/gcc/testsuite/gcc.dg/torture/float16-complex.c
    trunk/gcc/testsuite/gcc.dg/torture/float16-floath.c
    trunk/gcc/testsuite/gcc.dg/torture/float16-tg.c
    trunk/gcc/testsuite/gcc.dg/torture/float32-basic.c
    trunk/gcc/testsuite/gcc.dg/torture/float32-complex.c
    trunk/gcc/testsuite/gcc.dg/torture/float32-floath.c
    trunk/gcc/testsuite/gcc.dg/torture/float32-tg.c
    trunk/gcc/testsuite/gcc.dg/torture/float32x-basic.c
    trunk/gcc/testsuite/gcc.dg/torture/float32x-complex.c
    trunk/gcc/testsuite/gcc.dg/torture/float32x-floath.c
    trunk/gcc/testsuite/gcc.dg/torture/float32x-tg.c
    trunk/gcc/testsuite/gcc.dg/torture/float64-basic.c
    trunk/gcc/testsuite/gcc.dg/torture/float64-complex.c
    trunk/gcc/testsuite/gcc.dg/torture/float64-floath.c
    trunk/gcc/testsuite/gcc.dg/torture/float64-tg.c
    trunk/gcc/testsuite/gcc.dg/torture/float64x-basic.c
    trunk/gcc/testsuite/gcc.dg/torture/float64x-complex.c
    trunk/gcc/testsuite/gcc.dg/torture/float64x-floath.c
    trunk/gcc/testsuite/gcc.dg/torture/float64x-tg.c
    trunk/gcc/testsuite/gcc.dg/torture/floatn-basic.h
    trunk/gcc/testsuite/gcc.dg/torture/floatn-complex.h
    trunk/gcc/testsuite/gcc.dg/torture/floatn-convert.c
    trunk/gcc/testsuite/gcc.dg/torture/floatn-floath.h
    trunk/gcc/testsuite/gcc.dg/torture/floatn-tg.h
    trunk/gcc/testsuite/gcc.dg/torture/fp-int-convert-float128-ieee-timode.c
    trunk/gcc/testsuite/gcc.dg/torture/fp-int-convert-float128-ieee.c
    trunk/gcc/testsuite/gcc.dg/torture/fp-int-convert-float128x-timode.c
    trunk/gcc/testsuite/gcc.dg/torture/fp-int-convert-float128x.c
    trunk/gcc/testsuite/gcc.dg/torture/fp-int-convert-float16-timode.c
    trunk/gcc/testsuite/gcc.dg/torture/fp-int-convert-float16.c
    trunk/gcc/testsuite/gcc.dg/torture/fp-int-convert-float32-timode.c
    trunk/gcc/testsuite/gcc.dg/torture/fp-int-convert-float32.c
    trunk/gcc/testsuite/gcc.dg/torture/fp-int-convert-float32x-timode.c
    trunk/gcc/testsuite/gcc.dg/torture/fp-int-convert-float32x.c
    trunk/gcc/testsuite/gcc.dg/torture/fp-int-convert-float64-timode.c
    trunk/gcc/testsuite/gcc.dg/torture/fp-int-convert-float64.c
    trunk/gcc/testsuite/gcc.dg/torture/fp-int-convert-float64x-timode.c
    trunk/gcc/testsuite/gcc.dg/torture/fp-int-convert-float64x.c
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/c-family/ChangeLog
    trunk/gcc/c-family/c-common.c
    trunk/gcc/c-family/c-common.h
    trunk/gcc/c-family/c-cppbuiltin.c
    trunk/gcc/c-family/c-lex.c
    trunk/gcc/c-family/c-pretty-print.c
    trunk/gcc/c/ChangeLog
    trunk/gcc/c/c-decl.c
    trunk/gcc/c/c-parser.c
    trunk/gcc/c/c-tree.h
    trunk/gcc/c/c-typeck.c
    trunk/gcc/config/i386/i386.c
    trunk/gcc/config/ia64/ia64.c
    trunk/gcc/config/pdp11/pdp11.c
    trunk/gcc/config/rs6000/rs6000.c
    trunk/gcc/doc/extend.texi
    trunk/gcc/doc/sourcebuild.texi
    trunk/gcc/doc/tm.texi
    trunk/gcc/doc/tm.texi.in
    trunk/gcc/fortran/ChangeLog
    trunk/gcc/fortran/iso-c-binding.def
    trunk/gcc/fortran/trans-intrinsic.c
    trunk/gcc/fortran/trans-types.c
    trunk/gcc/fortran/trans-types.h
    trunk/gcc/ginclude/float.h
    trunk/gcc/real.c
    trunk/gcc/real.h
    trunk/gcc/target.def
    trunk/gcc/targhooks.c
    trunk/gcc/targhooks.h
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/testsuite/gcc.dg/torture/fp-int-convert-double.c
    trunk/gcc/testsuite/gcc.dg/torture/fp-int-convert-float.c
    trunk/gcc/testsuite/gcc.dg/torture/fp-int-convert-float128-timode.c
    trunk/gcc/testsuite/gcc.dg/torture/fp-int-convert-float128.c
    trunk/gcc/testsuite/gcc.dg/torture/fp-int-convert-float80-timode.c
    trunk/gcc/testsuite/gcc.dg/torture/fp-int-convert-float80.c
    trunk/gcc/testsuite/gcc.dg/torture/fp-int-convert-long-double.c
    trunk/gcc/testsuite/gcc.dg/torture/fp-int-convert-timode.c
    trunk/gcc/testsuite/gcc.dg/torture/fp-int-convert.h
    trunk/gcc/testsuite/lib/target-supports.exp
    trunk/gcc/tree-core.h
    trunk/gcc/tree.c
    trunk/gcc/tree.h
    trunk/libcpp/ChangeLog
    trunk/libcpp/expr.c
    trunk/libcpp/include/cpplib.h
>From gcc-bugs-return-535095-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 17:52:14 2016
Return-Path: <gcc-bugs-return-535095-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 68266 invoked by alias); 19 Aug 2016 17:52:12 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 68255 invoked by uid 89); 19 Aug 2016 17:52:11 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 17:52:01 +0000
From: "joseph at codesourcery dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/32187] Complex __float128 is rejected
Date: Fri, 19 Aug 2016 17:52:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 4.3.0
X-Bugzilla-Keywords: rejects-valid
X-Bugzilla-Severity: normal
X-Bugzilla-Who: joseph at codesourcery dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-32187-4-G0WquMCetf@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-32187-4@http.gcc.gnu.org/bugzilla/>
References: <bug-32187-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02431.txt.bz2
Content-length: 709

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=32187

--- Comment #12 from joseph at codesourcery dot com <joseph at codesourcery dot com> ---
You can now use _Complex _Float128.  Given that, it's not obvious that 
_Complex __float128, with the legacy __float128 type name, should be 
supported (although not supporting that means also not supporting _Complex 
__ibm128 for powerpc64le; both are built-in typedefs, and no _Float* 
keyword can be used for __ibm128).

_Float128 isn't supported for C++, although there's the argument that 
there std::complex<__float128> is the thing support should be added / 
enabled for, rather than adding to the support for C-style complex types 
in C++.
>From gcc-bugs-return-535097-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 18:12:55 2016
Return-Path: <gcc-bugs-return-535097-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 107131 invoked by alias); 19 Aug 2016 18:12:55 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 107108 invoked by uid 89); 19 Aug 2016 18:12:54 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=yahoo
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 18:12:46 +0000
From: "ncahill_alt at yahoo dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/62171] restrict pointer to struct with restrict pointers parm doesn't prevent aliases
Date: Fri, 19 Aug 2016 18:12:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 5.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ncahill_alt at yahoo dot com
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-62171-4-uMZhfXD6Uz@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-62171-4@http.gcc.gnu.org/bugzilla/>
References: <bug-62171-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02433.txt.bz2
Content-length: 841

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=62171

--- Comment #16 from ncahill_alt at yahoo dot com ---
(In reply to Richard Biener from comment #15)
> (In reply to ncahill_alt from comment #14)
> > This test is failing for me in GCC 6.1.0 (i386).  It complains about having
> > no vectype.
> > 
> > Why that is, I don't know.  But it doesn't seem to be a problem otherwise,
> > it seems pretty safe to ignore except that it could vectorize the loop but
> > doesn't.
> > 
> > I wonder if it would be easier just to have this be UNSUPPORTED on i386.
> 
> It should be by means of the { dg-require-effective-target vect_double }
> directive.  Does it work if you remove the { dg-options ... } one?

It does, the test still runs but the result is a pass.  If I place the
dg-options line below the require-target line, it fails.
>From gcc-bugs-return-535096-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 18:12:45 2016
Return-Path: <gcc-bugs-return-535096-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 104607 invoked by alias); 19 Aug 2016 18:12:44 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 104590 invoked by uid 89); 19 Aug 2016 18:12:44 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 18:12:34 +0000
From: "msebor at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/77301] __builtin_object_size incorrect for an array in a struct referenced by a pointer
Date: Fri, 19 Aug 2016 18:12:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: msebor at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77301-4-Ajxpc7hreu@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77301-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77301-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02432.txt.bz2
Content-length: 1512

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77301

--- Comment #2 from Martin Sebor <msebor at gcc dot gnu.org> ---
Thanks.  As surprising as that seems, it would  explain the output of the test
case in comment #0, even though it's not at all obvious from the manual.

But if change the test case like below I get three different results.  The
latter two don't jibe with my understanding of your explanation, or seem
correct (or desirable/safe) to me.

$ cat z.c && /build/gcc-trunk-svn/gcc/xgcc -B /build/gcc-trunk-svn/gcc -O2
-Wall -Wextra z.c && ./a.out
struct A {
  char a [4];
  void (*pf)(void);
} a [2];

int main (void)
{
  struct A* p = __builtin_malloc (sizeof (struct A) * 2);

  __builtin_printf ("%zi %zi %zi %zi\n",
                    __builtin_object_size (a->a, 0),
                    __builtin_object_size (a->a, 1),
                    __builtin_object_size (a->a, 2),
                    __builtin_object_size (a->a, 3));

  __builtin_printf ("%zi %zi %zi %zi\n",
                    __builtin_object_size (p->a, 0),
                    __builtin_object_size (p->a, 1),
                    __builtin_object_size (p->a, 2),
                    __builtin_object_size (p->a, 3));

  __builtin_printf ("%zi %zi %zi %zi\n",
                    __builtin_object_size (p->a + 1, 0),
                    __builtin_object_size (p->a + 1, 1),
                    __builtin_object_size (p->a + 1, 2),
                    __builtin_object_size (p->a + 1, 3));
}

32 32 32 32
32 4 32 4
31 3 31 31
>From gcc-bugs-return-535098-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 18:14:48 2016
Return-Path: <gcc-bugs-return-535098-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 123838 invoked by alias); 19 Aug 2016 18:14:47 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 123825 invoked by uid 89); 19 Aug 2016 18:14:47 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=sk:ix86_op
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 18:14:37 +0000
From: "uros at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77270] Flag -mprftchw is shared with 3dnow for -march=k8
Date: Fri, 19 Aug 2016 18:14:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: uros at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: ubizjak at gmail dot com
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77270-4-80YesDTLwj@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77270-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77270-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02434.txt.bz2
Content-length: 802

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77270

--- Comment #4 from uros at gcc dot gnu.org ---
Author: uros
Date: Fri Aug 19 18:14:03 2016
New Revision: 239626

URL: https://gcc.gnu.org/viewcvs?rev=239626&root=gcc&view=rev
Log:
        PR target/77270
        * config/i386/i386.c (ix86_option_override_internal): Remove
        PTA_PRFCHW from entries that also have PTA_3DNOW flag.
        Enable SSE prefetch also for TARGET_PREFETCHWT1.
        Do not try to enable TARGET_PRFCHW ISA flag here.
        * config/i386/i386.md (prefetch): Enable also for TARGET_3DNOW.
        Rewrite expander function body.
        (*prefetch_3dnow): Enable for TARGET_3DNOW and TARGET_PREFETCHWT1.


Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/config/i386/i386.c
    trunk/gcc/config/i386/i386.md
>From gcc-bugs-return-535099-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 18:48:37 2016
Return-Path: <gcc-bugs-return-535099-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 111712 invoked by alias); 19 Aug 2016 18:48:37 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 111699 invoked by uid 89); 19 Aug 2016 18:48:36 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 18:48:26 +0000
From: "aoliva at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug debug/59319] gcc does not emit DW_AT_friend or DW_TAG_friend
Date: Fri, 19 Aug 2016 18:48:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: debug
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: aoliva at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cc
Message-ID: <bug-59319-4-nFm6oFVUdQ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-59319-4@http.gcc.gnu.org/bugzilla/>
References: <bug-59319-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02435.txt.bz2
Content-length: 503

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=59319

Alexandre Oliva <aoliva at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED
                 CC|                            |aoliva at gcc dot gnu.org

--- Comment #1 from Alexandre Oliva <aoliva at gcc dot gnu.org> ---
Mine.  Initial, incomplete patch just posted to gcc-patches.
>From gcc-bugs-return-535100-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 18:55:30 2016
Return-Path: <gcc-bugs-return-535100-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 10898 invoked by alias); 19 Aug 2016 18:55:29 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 10851 invoked by uid 89); 19 Aug 2016 18:55:28 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:1934
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 18:55:18 +0000
From: "rlangendam at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77302] New: partial specialization marked as ambiguous
Date: Fri, 19 Aug 2016 18:55:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: minor
X-Bugzilla-Who: rlangendam at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-77302-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02436.txt.bz2
Content-length: 2164

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77302

            Bug ID: 77302
           Summary: partial specialization marked as ambiguous
           Product: gcc
           Version: 6.1.1
            Status: UNCONFIRMED
          Severity: minor
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: rlangendam at gmail dot com
  Target Milestone: ---

Created attachment 39475
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39475&action=edit
C++ source file that wrongfully fails to compile

Compiling the attached C++ source file with g++ 6.1.1 20160802, as described
below, yields an ambiguity error wrongfully. After all, out of the two
mentioned partial specializations, the former is more specialized than the
latter. FYI, the file compiles fine using clang++ 3.8, using the same options.

$ g++ -std=c++11 -c test.cpp
test.cpp:15:64: error: ambiguous template instantiation for ‘struct
Test<std::integral_constant<int, 0> >’
 static_assert(std::is_same<Test<std::integral_constant<int, 0>>::type,
void>::value, "");
                                                                ^~
test.cpp:6:8: note: candidates are: template<class T> struct
Test<std::integral_constant<T, 0> > [with T = int]
 struct Test<std::integral_constant<T, 0>> {
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
test.cpp:11:8: note:                 template<class T, T V> struct
Test<std::integral_constant<T, V> > [with T = int; T V = 0]
 struct Test<std::integral_constant<T, V>> :
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
test.cpp:15:28: error: incomplete type ‘Test<std::integral_constant<int, 0> >’
used in nested name specifier
 static_assert(std::is_same<Test<std::integral_constant<int, 0>>::type,
void>::value, "");
                            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
test.cpp:15:28: error: incomplete type ‘Test<std::integral_constant<int, 0> >’
used in nested name specifier
test.cpp:15:76: error: template argument 1 is invalid
 static_assert(std::is_same<Test<std::integral_constant<int, 0>>::type,
void>::value, "");
>From gcc-bugs-return-535101-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 19:29:10 2016
Return-Path: <gcc-bugs-return-535101-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 35575 invoked by alias); 19 Aug 2016 19:29:10 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 34591 invoked by uid 89); 19 Aug 2016 19:29:10 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 19:28:59 +0000
From: "law at redhat dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71550] [7 Regression] wrong code at -O3 on x86_64-linux-gnu
Date: Fri, 19 Aug 2016 19:29:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: law at redhat dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: law at redhat dot com
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71550-4-zk60JtpvvG@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71550-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71550-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02437.txt.bz2
Content-length: 327

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71550

--- Comment #4 from Jeffrey A. Law <law at redhat dot com> ---
This has gone latent on the trunk, but I'm pretty sure the core issues remain.

Looking deeper into the problem, this may be another case of jump threading
invalidating the cached loop iteration information.
>From gcc-bugs-return-535102-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 19:42:39 2016
Return-Path: <gcc-bugs-return-535102-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 118642 invoked by alias); 19 Aug 2016 19:42:39 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 118630 invoked by uid 89); 19 Aug 2016 19:42:38 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=UD:typeck.c, typeckc, typeck.c
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 19:42:28 +0000
From: "manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77298] -Wnonnull-compare only emitted for code which is invoked
Date: Fri, 19 Aug 2016 19:42:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: manu at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77298-4-d3q2UkwWBN@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77298-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77298-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02438.txt.bz2
Content-length: 1058

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77298

--- Comment #8 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
(In reply to Martin Sebor from comment #6)
> Yes, that makes sense to me as an explanation of the limitation of the GCC
> implementation and a solution/workaround for it.   I don't think it's
> something users unfamiliar with GCC internals think of, though.  I don't
> have a sense of how much work it would be to change GCC to issue these
> warnings consistently, whether or not functions are used, but I suspect it's
> not a trivial "bug fix."

As Jakub said, making the warning consistent for "this" is not hard. You could
warn in the FE for 'this', then skip 'this' when warning in the ME.

Warning the FE is trivial:
https://gcc.gnu.org/viewcvs/gcc/trunk/gcc/cp/typeck.c?r1=233472&r2=233471&pathrev=233472

and it will allow you to give a nicer, more specific message like Clang does.

(I think there is even a PR about the message)

Feel free to reopen this PR and refashion it with that purpose.
>From gcc-bugs-return-535103-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 19:47:18 2016
Return-Path: <gcc-bugs-return-535103-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 129748 invoked by alias); 19 Aug 2016 19:47:18 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 129734 invoked by uid 89); 19 Aug 2016 19:47:17 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:420
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 19:47:07 +0000
From: "manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/27336] "this" pointer is not assumed to be not null
Date: Fri, 19 Aug 2016 19:47:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 4.1.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: manu at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-27336-4-Q5HdMQS7ju@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-27336-4@http.gcc.gnu.org/bugzilla/>
References: <bug-27336-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02439.txt.bz2
Content-length: 464

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=27336

Manuel López-Ibáñez <manu at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |manu at gcc dot gnu.org

--- Comment #7 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
Isn't this fixed already? Should we close it?
>From gcc-bugs-return-535104-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 19:58:10 2016
Return-Path: <gcc-bugs-return-535104-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 20213 invoked by alias); 19 Aug 2016 19:58:10 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 20197 invoked by uid 89); 19 Aug 2016 19:58:10 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=neil, yahoo
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 19:57:59 +0000
From: "ncahill_alt at yahoo dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/62171] restrict pointer to struct with restrict pointers parm doesn't prevent aliases
Date: Fri, 19 Aug 2016 19:58:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 5.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ncahill_alt at yahoo dot com
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-62171-4-fPRiZBL0pQ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-62171-4@http.gcc.gnu.org/bugzilla/>
References: <bug-62171-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02440.txt.bz2
Content-length: 548

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=62171

--- Comment #17 from ncahill_alt at yahoo dot com ---
This was the only test that failed for me, the others were debug info in LTO
mode.  I'm very glad that GCC 6.1.0 works so well and built cleanly like it
did.

This test was a minor thing because I don't use -O3 at all.  I just thought,
since it was the only test to fail, it seemed worthwhile mentioning it so that
the testsuite would be very clean indeed.

Thanks, hopefully I've given enough info for the fix to be obvious.
Neil Cahill
>From gcc-bugs-return-535105-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 20:48:50 2016
Return-Path: <gcc-bugs-return-535105-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 31699 invoked by alias); 19 Aug 2016 20:48:49 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 31617 invoked by uid 89); 19 Aug 2016 20:48:48 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:308
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 20:48:38 +0000
From: "vries at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/62171] restrict pointer to struct with restrict pointers parm doesn't prevent aliases
Date: Fri, 19 Aug 2016 20:48:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 5.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: vries at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-62171-4-oOO2U5Zqrf@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-62171-4@http.gcc.gnu.org/bugzilla/>
References: <bug-62171-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02441.txt.bz2
Content-length: 207

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=62171

--- Comment #18 from vries at gcc dot gnu.org ---
dg-options line was removed on trunk at
https://gcc.gnu.org/viewcvs?rev=237745&root=gcc&view=rev
>From gcc-bugs-return-535106-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 21:16:13 2016
Return-Path: <gcc-bugs-return-535106-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 121889 invoked by alias); 19 Aug 2016 21:16:12 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 121833 invoked by uid 89); 19 Aug 2016 21:16:12 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:1505, printer
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 21:16:01 +0000
From: "bernd.edlinger at hotmail dot de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/52952] Wformat location info is bad (wrong column number)
Date: Fri, 19 Aug 2016 21:16:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: bernd.edlinger at hotmail dot de
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: dmalcolm at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-52952-4-b0LbJYKMZy@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-52952-4@http.gcc.gnu.org/bugzilla/>
References: <bug-52952-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02442.txt.bz2
Content-length: 1597

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=52952

Bernd Edlinger <bernd.edlinger at hotmail dot de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |bernd.edlinger at hotmail dot de

--- Comment #46 from Bernd Edlinger <bernd.edlinger at hotmail dot de> ---
(In reply to David Malcolm from comment #45)
>     trunk/gcc/testsuite/gcc.dg/cpp/pr66415-1.c


David, this test case does fail because the caret is not always shown in
column 71.

I've got it once, but and when I tried to repeat this test alone it works. 

It seems to depend if stderr is a tty (isatty(2) != 0)
I think the problem is in diagnostics.c

diagnostic_set_caret_max_width (diagnostic_context *context, int value)
{
  /* One minus to account for the leading empty space.  */
  value = value ? value - 1
    : (isatty (fileno (pp_buffer (context->printer)->stream))
       ? get_terminal_width () - 1: INT_MAX);

and:

get_terminal_width (void)
{
  const char * s = getenv ("COLUMNS");
  if (s != NULL) {
    int n = atoi (s);
    if (n > 0)
      return n;
  }

#ifdef TIOCGWINSZ
  struct winsize w;
  w.ws_col = 0;
  if (ioctl (0, TIOCGWINSZ, &w) == 0 && w.ws_col > 0)
    return w.ws_col;
#endif

  return INT_MAX;
}

I think it depends on the terminal window, where I start the
make check, it is often a COLUMNS=80 then maybe the test will
fail, because the output is squeezed into 80 column, but
if COLUMNS=120 the test will pass.

What do you think?
>From gcc-bugs-return-535107-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 22:20:25 2016
Return-Path: <gcc-bugs-return-535107-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 78731 invoked by alias); 19 Aug 2016 22:20:25 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 78720 invoked by uid 89); 19 Aug 2016 22:20:24 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=_GLIBCXX_DEBUG, D_GLIBCXX_DEBUG, _glibcxx_debug, d_glibcxx_debug
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 22:20:14 +0000
From: "lukibartl at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/77303] New: std::max_element not constexpr with -D_GLIBCXX_DEBUG
Date: Fri, 19 Aug 2016 22:20:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: lukibartl at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-77303-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02443.txt.bz2
Content-length: 5080

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77303

            Bug ID: 77303
           Summary: std::max_element not constexpr with -D_GLIBCXX_DEBUG
           Product: gcc
           Version: 6.1.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: libstdc++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: lukibartl at gmail dot com
  Target Milestone: ---

Created attachment 39476
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39476&action=edit
The preprocessed file

When compiling with -D_GLIBCXX_DEBUG, std::max_element is not constexpr:

Code:

#include <algorithm>

int main() {
    constexpr size_t max = std::max({1, 2, 3});
    return max;
}

Compiled with:

g++ -v -save-temps -std=c++14 -D_GLIBCXX_DEBUG gcc_error.cpp

Output:

Using built-in specs.
COLLECT_GCC=g++
COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-redhat-linux/6.1.1/lto-wrapper
Target: x86_64-redhat-linux
Configured with: ../configure --enable-bootstrap
--enable-languages=c,c++,objc,obj-c++,fortran,ada,go,lto --prefix=/usr
--mandir=/usr/share/man --infodir=/usr/share/info
--with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-shared
--enable-threads=posix --enable-checking=release --enable-multilib
--with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions
--enable-gnu-unique-object --enable-linker-build-id
--with-linker-hash-style=gnu --enable-plugin --enable-initfini-array
--disable-libgcj --with-isl --enable-libmpx --enable-gnu-indirect-function
--with-tune=generic --with-arch_32=i686 --build=x86_64-redhat-linux
Thread model: posix
gcc version 6.1.1 20160621 (Red Hat 6.1.1-3) (GCC) 
COLLECT_GCC_OPTIONS='-v' '-save-temps' '-std=c++14' '-D' '_GLIBCXX_DEBUG'
'-shared-libgcc' '-mtune=generic' '-march=x86-64'
 /usr/libexec/gcc/x86_64-redhat-linux/6.1.1/cc1plus -E -quiet -v -D_GNU_SOURCE
-D _GLIBCXX_DEBUG gcc_error.cpp -mtune=generic -march=x86-64 -std=c++14
-fpch-preprocess -o gcc_error.ii
ignoring nonexistent directory
"/usr/lib/gcc/x86_64-redhat-linux/6.1.1/include-fixed"
ignoring nonexistent directory
"/usr/lib/gcc/x86_64-redhat-linux/6.1.1/../../../../x86_64-redhat-linux/include"
#include "..." search starts here:
#include <...> search starts here:
 /usr/lib/gcc/x86_64-redhat-linux/6.1.1/../../../../include/c++/6.1.1

/usr/lib/gcc/x86_64-redhat-linux/6.1.1/../../../../include/c++/6.1.1/x86_64-redhat-linux
 /usr/lib/gcc/x86_64-redhat-linux/6.1.1/../../../../include/c++/6.1.1/backward
 /usr/lib/gcc/x86_64-redhat-linux/6.1.1/include
 /usr/local/include
 /usr/include
End of search list.
COLLECT_GCC_OPTIONS='-v' '-save-temps' '-std=c++14' '-D' '_GLIBCXX_DEBUG'
'-shared-libgcc' '-mtune=generic' '-march=x86-64'
 /usr/libexec/gcc/x86_64-redhat-linux/6.1.1/cc1plus -fpreprocessed gcc_error.ii
-quiet -dumpbase gcc_error.cpp -mtune=generic -march=x86-64 -auxbase gcc_error
-std=c++14 -version -o gcc_error.s
GNU C++14 (GCC) version 6.1.1 20160621 (Red Hat 6.1.1-3) (x86_64-redhat-linux)
        compiled by GNU C version 6.1.1 20160621 (Red Hat 6.1.1-3), GMP version
6.1.0, MPFR version 3.1.4, MPC version 1.0.2, isl version 0.14 or 0.13
warning: GMP header version 6.1.0 differs from library version 6.1.1.
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
GNU C++14 (GCC) version 6.1.1 20160621 (Red Hat 6.1.1-3) (x86_64-redhat-linux)
        compiled by GNU C version 6.1.1 20160621 (Red Hat 6.1.1-3), GMP version
6.1.0, MPFR version 3.1.4, MPC version 1.0.2, isl version 0.14 or 0.13
warning: GMP header version 6.1.0 differs from library version 6.1.1.
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
Compiler executable checksum: 8e1af9556445b8cc2090cc3ce62d071f
In file included from /usr/include/c++/6.1.1/algorithm:62:0,
                 from gcc_error.cpp:1:
/usr/include/c++/6.1.1/bits/stl_algo.h: In function 'int main()':
gcc_error.cpp:4:36:   in constexpr expansion of
'std::max<int>(std::initializer_list<int>{((const int*)(& ._65)), 3u})'
/usr/include/c++/6.1.1/bits/stl_algo.h:3460:31: error: 'constexpr _FIter
std::max_element(_FIter, _FIter) [with _FIter = const int*]' called in a
constant expression
     { return *std::max_element(__l.begin(), __l.end()); }
               ~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/c++/6.1.1/algorithm:62:0,
                 from gcc_error.cpp:1:
/usr/include/c++/6.1.1/bits/stl_algo.h:5539:5: note: 'constexpr _FIter
std::max_element(_FIter, _FIter) [with _FIter = const int*]' is not usable as a
constexpr function because:
     max_element(_ForwardIterator __first, _ForwardIterator __last)
     ^~~~~~~~~~~
/usr/include/c++/6.1.1/bits/stl_algo.h:5545:45: error: call to non-constexpr
function 'bool __gnu_debug::__valid_range(const _InputIterator&, const
_InputIterator&) [with _InputIterator = const int*]'
       __glibcxx_requires_valid_range(__first, __last);
                  ~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~
>From gcc-bugs-return-535108-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 22:32:09 2016
Return-Path: <gcc-bugs-return-535108-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 92597 invoked by alias); 19 Aug 2016 22:32:09 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 92581 invoked by uid 89); 19 Aug 2016 22:32:08 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 22:31:58 +0000
From: "msebor at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71831] __builtin_object_size poor results with no optimization
Date: Fri, 19 Aug 2016 22:32:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: msebor at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: msebor at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on assigned_to everconfirmed
Message-ID: <bug-71831-4-O6ls9hEKuH@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71831-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71831-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02444.txt.bz2
Content-length: 638

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71831

Martin Sebor <msebor at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |ASSIGNED
   Last reconfirmed|                            |2016-08-19
           Assignee|unassigned at gcc dot gnu.org      |msebor at gcc dot gnu.org
     Ever confirmed|0                           |1

--- Comment #8 from Martin Sebor <msebor at gcc dot gnu.org> ---
Patch posted for review:
https://gcc.gnu.org/ml/gcc-patches/2016-08/msg01445.html
>From gcc-bugs-return-535109-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Aug 19 23:25:05 2016
Return-Path: <gcc-bugs-return-535109-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 76993 invoked by alias); 19 Aug 2016 23:25:05 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 76983 invoked by uid 89); 19 Aug 2016 23:25:04 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:3116
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 19 Aug 2016 23:24:54 +0000
From: "su at cs dot ucdavis.edu" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77304] New: ICE on C++ code with invalid template parameter: in gimplify_expr, at gimplify.c:11260
Date: Fri, 19 Aug 2016 23:25:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: su at cs dot ucdavis.edu
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77304-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02445.txt.bz2
Content-length: 3381

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77304

            Bug ID: 77304
           Summary: ICE on C++ code with invalid template parameter: in
                    gimplify_expr, at gimplify.c:11260
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: su at cs dot ucdavis.edu
  Target Milestone: ---

It seems to affect all earlier versions of GCC since 4.7.x (hangs on 4.7.x). It
is properly rejected by 4.6.x. 


$ g++-trunk -v
Using built-in specs.
COLLECT_GCC=g++-trunk
COLLECT_LTO_WRAPPER=/usr/local/gcc-trunk/libexec/gcc/x86_64-pc-linux-gnu/7.0.0/lto-wrapper
Target: x86_64-pc-linux-gnu
Configured with: ../gcc-source-trunk/configure --enable-languages=c,c++,lto
--prefix=/usr/local/gcc-trunk --disable-bootstrap
Thread model: posix
gcc version 7.0.0 20160819 (experimental) [trunk revision 239608] (GCC)
$
$ g++-trunk -c small.cpp
small.cpp:5:14: error: ‘struct S’ is not a valid type for a template non-type
parameter
   template < S > void f () {}
              ^
small.cpp: In static member function ‘static void* A<T>::g() [with T = int]’:
small.cpp:9:21: internal compiler error: in gimplify_expr, at gimplify.c:11260
     return (void *) f < a >;
                     ^~~~~~~
0xb5a8cb gimplify_expr(tree_node**, gimple**, gimple**, bool (*)(tree_node*),
int)
        ../../gcc-source-trunk/gcc/gimplify.c:11260
0xb646cc gimplify_addr_expr
        ../../gcc-source-trunk/gcc/gimplify.c:5211
0xb5a030 gimplify_expr(tree_node**, gimple**, gimple**, bool (*)(tree_node*),
int)
        ../../gcc-source-trunk/gcc/gimplify.c:10558
0xb6c08b gimplify_modify_expr
        ../../gcc-source-trunk/gcc/gimplify.c:4808
0xb58bf8 gimplify_expr(tree_node**, gimple**, gimple**, bool (*)(tree_node*),
int)
        ../../gcc-source-trunk/gcc/gimplify.c:10512
0xb5cb86 gimplify_stmt(tree_node**, gimple**)
        ../../gcc-source-trunk/gcc/gimplify.c:5804
0xb6a3c5 gimplify_and_add
        ../../gcc-source-trunk/gcc/gimplify.c:427
0xb6a3c5 gimplify_return_expr
        ../../gcc-source-trunk/gcc/gimplify.c:1371
0xb5946b gimplify_expr(tree_node**, gimple**, gimple**, bool (*)(tree_node*),
int)
        ../../gcc-source-trunk/gcc/gimplify.c:10761
0xb5cb86 gimplify_stmt(tree_node**, gimple**)
        ../../gcc-source-trunk/gcc/gimplify.c:5804
0xb5e8ab gimplify_body(tree_node*, bool)
        ../../gcc-source-trunk/gcc/gimplify.c:11695
0xb5ef06 gimplify_function_tree(tree_node*)
        ../../gcc-source-trunk/gcc/gimplify.c:11851
0x9d6fa7 cgraph_node::analyze()
        ../../gcc-source-trunk/gcc/cgraphunit.c:625
0x9d9b50 analyze_functions
        ../../gcc-source-trunk/gcc/cgraphunit.c:1086
0x9dadb8 symbol_table::finalize_compilation_unit()
        ../../gcc-source-trunk/gcc/cgraphunit.c:2546
Please submit a full bug report,
with preprocessed source if appropriate.
Please include the complete backtrace with any bug report.
See <http://gcc.gnu.org/bugs.html> for instructions.
$


---------------------------------------


struct S {};

template < typename T > struct A
{ 
  template < S > void f () {}

  static void * g ()
  { 
    return (void *) f < a >;
  }

  static S a;
};

void * f ()
{ 
  return A < int >::g ();
}
>From gcc-bugs-return-535110-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 20 00:38:15 2016
Return-Path: <gcc-bugs-return-535110-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 56925 invoked by alias); 20 Aug 2016 00:38:15 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 56903 invoked by uid 89); 20 Aug 2016 00:38:13 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=update_ssa, 3267, Hx-languages-length:1714
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 20 Aug 2016 00:38:03 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug lto/77305] New: [7 Regression] -fdump-tree-all and -flto causes ICE
Date: Sat, 20 Aug 2016 00:38:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: lto
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77305-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02446.txt.bz2
Content-length: 1844

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77305

            Bug ID: 77305
           Summary: [7 Regression] -fdump-tree-all and -flto causes ICE
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: lto
          Assignee: unassigned at gcc dot gnu.org
          Reporter: pinskia at gcc dot gnu.org
  Target Milestone: ---

apinski@apinski-ss1:~/rrt$ cat t.c
short calc_func() {}
apinski@apinski-ss1:~/rrt$ ./tools/bin/gcc -fdump-tree-all -flto t.c
In function ‘calc_func’:
lto1: internal compiler error: Segmentation fault
0xa2d1b7 crash_signal
        ../../gcc/gcc/toplev.c:335
0xa146dc statistics_counter_event(function*, char const*, int)
        ../../gcc/gcc/statistics.c:315
0xac0ab7 update_ssa(unsigned int)
        ../../gcc/gcc/tree-into-ssa.c:3267
0x8ea4cb input_function
        ../../gcc/gcc/lto-streamer-in.c:1137
0x8ea4cb lto_read_body_or_constructor
        ../../gcc/gcc/lto-streamer-in.c:1208
0x64672b cgraph_node::get_untransformed_body()
        ../../gcc/gcc/cgraph.c:3568
0x65281b cgraph_node::expand()
        ../../gcc/gcc/cgraphunit.c:1955
0x653863 output_in_order
        ../../gcc/gcc/cgraphunit.c:2228
0x653c9f symbol_table::compile()
        ../../gcc/gcc/cgraphunit.c:2472
0x5bc047 lto_main()
        ../../gcc/gcc/lto/lto.c:3320
Please submit a full bug report,
with preprocessed source if appropriate.
Please include the complete backtrace with any bug report.
See <http://gcc.gnu.org/bugs.html> for instructions.
lto-wrapper: fatal error: ./tools/bin/gcc returned 1 exit status
compilation terminated.
/home/apinski/rrt/tools/bin/../lib/gcc/aarch64-unknown-linux-gnu/7.0.0/../../../../aarch64-unknown-linux-gnu/bin/ld:
error: lto-wrapper failed
collect2: error: ld returned 1 exit status
>From gcc-bugs-return-535111-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 20 00:39:27 2016
Return-Path: <gcc-bugs-return-535111-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 59495 invoked by alias); 20 Aug 2016 00:39:27 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 59483 invoked by uid 89); 20 Aug 2016 00:39:26 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:327
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 20 Aug 2016 00:39:16 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug lto/77305] [7 Regression] -fdump-tree-all and -flto causes ICE
Date: Sat, 20 Aug 2016 00:39:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: lto
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords target_milestone
Message-ID: <bug-77305-4-FKJDFodcu5@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77305-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77305-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02447.txt.bz2
Content-length: 359

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77305

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |ice-on-valid-code
   Target Milestone|---                         |7.0
>From gcc-bugs-return-535112-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 20 00:44:24 2016
Return-Path: <gcc-bugs-return-535112-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 64703 invoked by alias); 20 Aug 2016 00:44:24 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 64693 invoked by uid 89); 20 Aug 2016 00:44:23 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:244
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 20 Aug 2016 00:44:17 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug lto/77305] [7 Regression] -fdump-tree-all and -flto causes ICE
Date: Sat, 20 Aug 2016 00:44:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: lto
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77305-4-GrTFKZV9iz@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77305-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77305-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02448.txt.bz2
Content-length: 178

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77305

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
https://gcc.gnu.org/ml/gcc-patches/2016-08/msg01456.html
>From gcc-bugs-return-535113-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 20 00:57:33 2016
Return-Path: <gcc-bugs-return-535113-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 49953 invoked by alias); 20 Aug 2016 00:57:33 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 49941 invoked by uid 89); 20 Aug 2016 00:57:32 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=STR, Reproducer, affect
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 20 Aug 2016 00:57:22 +0000
From: "abbeyj+gcc at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77306] New: Unable to specify visibility for explicit template instantiations
Date: Sat, 20 Aug 2016 00:57:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: abbeyj+gcc at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-77306-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02449.txt.bz2
Content-length: 2539

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77306

            Bug ID: 77306
           Summary: Unable to specify visibility for explicit template
                    instantiations
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: abbeyj+gcc at gmail dot com
  Target Milestone: ---

Created attachment 39477
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39477&action=edit
Reproducer

This bug is being filed as a request for a more limited form of attributes than
that which was rejected in bug #71154.  That bug requested any attribute be
allowed on an explicit template instantiation.  This bug limits the scope to
just __attribute__((visibility)) which should hopefully be more acceptable. 
The visibility attribute is somewhat different from other attributes in that it
doesn't affect the layout or semantics of the type.

Trying to apply a visibility("default") attribute to an explicit template
instantiation does not work if the type has been previously mentioned in the
translation unit.


STR:
======
$ cat main.cpp
template <typename T>
class C
{
    void foo();
};

C<int> g_c_int;
C<double> g_c_double;

template <typename T>
void C<T>::foo() {}

template class __attribute__((visibility("default"))) C<int>;
template class C<double>;


$ g++ -fvisibility=hidden -fPIC -shared main.cpp -o main.so
main.cpp:13:55: warning: type attributes ignored after type is already defined
[-Wattributes]
 template class __attribute__((visibility("default"))) C<int>;
                                                       ^~~~~~


$ nm -C main.so | grep foo
000000000000061c t C<double>::foo()
0000000000000610 t C<int>::foo()

======

Note that C<int>::foo() is marked as local (lowercase t) when the intent was to
make it global (uppercase).  When compiled with clang++ instead there are no
warnings and nm reports:
0000000000000510 t C<double>::foo()
0000000000000500 W C<int>::foo()

where C<int>::foo() is global as desired.

Similar code, with the __attribute__ replaced with __declspec(dllexport), works
as expected with MSVC 2012.  That is, C<int>::foo() is exported from the DLL
and C<double>::foo() is not.


I have a patch for this which I will attach.  It relaxes the existing check to
allow attributes on a type that has already been defined as long as the
attribute is a visibility attribute.
>From gcc-bugs-return-535114-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 20 00:59:56 2016
Return-Path: <gcc-bugs-return-535114-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 52611 invoked by alias); 20 Aug 2016 00:59:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 52595 invoked by uid 89); 20 Aug 2016 00:59:55 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 20 Aug 2016 00:59:45 +0000
From: "abbeyj+gcc at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77306] Unable to specify visibility for explicit template instantiations
Date: Sat, 20 Aug 2016 00:59:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: abbeyj+gcc at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: attachments.created
Message-ID: <bug-77306-4-eH6GqecdU3@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77306-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77306-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02450.txt.bz2
Content-length: 231

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77306

--- Comment #1 from James Abbatiello <abbeyj+gcc at gmail dot com> ---
Created attachment 39478
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39478&action=edit
Patch
>From gcc-bugs-return-535115-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 20 01:18:55 2016
Return-Path: <gcc-bugs-return-535115-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 71302 invoked by alias); 20 Aug 2016 01:18:54 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 70332 invoked by uid 89); 20 Aug 2016 01:18:54 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy 16-08-20, 20160820, opportunity
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 20 Aug 2016 01:18:44 +0000
From: "kugan at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/61839] More optimize opportunity for VRP
Date: Sat, 20 Aug 2016 01:18:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 4.8.4
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: kugan at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-61839-4-QZFwKyOVtj@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-61839-4@http.gcc.gnu.org/bugzilla/>
References: <bug-61839-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02451.txt.bz2
Content-length: 1304

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61839

--- Comment #3 from kugan at gcc dot gnu.org ---
Author: kugan
Date: Sat Aug 20 01:18:09 2016
New Revision: 239637

URL: https://gcc.gnu.org/viewcvs?rev=239637&root=gcc&view=rev
Log:

gcc/testsuite/ChangeLog:

2016-08-20  Kugan Vivekanandarajah  <kuganv@linaro.org>

        PR tree-optimization/61839
        * gcc.dg/tree-ssa/pr61839_1.c: New test.
        * gcc.dg/tree-ssa/pr61839_2.c: New test.
        * gcc.dg/tree-ssa/pr61839_3.c: New test.
        * gcc.dg/tree-ssa/pr61839_4.c: New test.

gcc/ChangeLog:

2016-08-20  Kugan Vivekanandarajah  <kuganv@linaro.org>

        PR tree-optimization/61839
        * tree-vrp.c (two_valued_val_range_p): New.
        (simplify_stmt_using_ranges): Convert CST BINOP VAR where VAR is
        two-valued to VAR == VAL1 ? (CST BINOP VAL1) : (CST BINOP VAL2).
        Also Convert VAR BINOP CST where VAR is two-valued to
        VAR == VAL1 ? (VAL1 BINOP CST) : (VAL2 BINOP CST).


Added:
    trunk/gcc/testsuite/gcc.dg/tree-ssa/pr61839_1.c
    trunk/gcc/testsuite/gcc.dg/tree-ssa/pr61839_2.c
    trunk/gcc/testsuite/gcc.dg/tree-ssa/pr61839_3.c
    trunk/gcc/testsuite/gcc.dg/tree-ssa/pr61839_4.c
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/tree-vrp.c
>From gcc-bugs-return-535116-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 20 03:43:55 2016
Return-Path: <gcc-bugs-return-535116-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 74495 invoked by alias); 20 Aug 2016 03:43:54 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 74478 invoked by uid 89); 20 Aug 2016 03:43:53 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 20 Aug 2016 03:43:43 +0000
From: "aoliva at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug debug/49348] DW_TAG_template_* DIEs missing from template specializations
Date: Sat, 20 Aug 2016 03:43:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: debug
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: aoliva at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: dodji at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-49348-4-Fbu8Mmf4hp@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-49348-4@http.gcc.gnu.org/bugzilla/>
References: <bug-49348-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02452.txt.bz2
Content-length: 572

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=49348

Alexandre Oliva <aoliva at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |aoliva at gcc dot gnu.org

--- Comment #4 from Alexandre Oliva <aoliva at gcc dot gnu.org> ---
>From Jason's feedback in response to the proposed patch, it looks like this is
not a bug, after all, and GCC is working as intended.  Is there any reason for
this bug to remain open?
>From gcc-bugs-return-535117-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 20 05:08:01 2016
Return-Path: <gcc-bugs-return-535117-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 46993 invoked by alias); 20 Aug 2016 05:08:00 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 46979 invoked by uid 89); 20 Aug 2016 05:07:59 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 20 Aug 2016 05:07:49 +0000
From: "bernd.edlinger at hotmail dot de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/52952] Wformat location info is bad (wrong column number)
Date: Sat, 20 Aug 2016 05:08:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: bernd.edlinger at hotmail dot de
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: dmalcolm at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-52952-4-qJIoJIlBpz@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-52952-4@http.gcc.gnu.org/bugzilla/>
References: <bug-52952-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02453.txt.bz2
Content-length: 1189

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=52952

--- Comment #47 from Bernd Edlinger <bernd.edlinger at hotmail dot de> ---
COLUMNS=82 make check-gcc-c RUNTESTFLAGS="cpp.exp=pr66415-1.c"
...
Running /home/ed/gnu/gcc-trunk/gcc/testsuite/gcc.dg/cpp/cpp.exp ...

                === gcc Summary ===

# of expected passes            3
/home/ed/gnu/gcc-build/gcc/xgcc  version 7.0.0 20160819 (experimental) (GCC) 


COLUMNS=80 make check-gcc-c RUNTESTFLAGS="cpp.exp=pr66415-1.c"
...
Running /home/ed/gnu/gcc-trunk/gcc/testsuite/gcc.dg/cpp/cpp.exp ...
FAIL: gcc.dg/cpp/pr66415-1.c expected multiline pattern lines 11-12 not found:
"\s*__builtin_printf                               
\("xxxxxxxxxxxxxxxxx%dxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"\);.*\n
                                                                     ~\^\n"
FAIL: gcc.dg/cpp/pr66415-1.c (test for excess errors)

                === gcc Summary ===

# of expected passes            1
# of unexpected failures        2
/home/ed/gnu/gcc-build/gcc/xgcc  version 7.0.0 20160819 (experimental) (GCC)
>From gcc-bugs-return-535118-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 20 05:20:09 2016
Return-Path: <gcc-bugs-return-535118-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 53663 invoked by alias); 20 Aug 2016 05:20:09 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 53604 invoked by uid 89); 20 Aug 2016 05:20:08 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 20 Aug 2016 05:19:58 +0000
From: "bernd.edlinger at hotmail dot de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/52952] Wformat location info is bad (wrong column number)
Date: Sat, 20 Aug 2016 05:20:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: bernd.edlinger at hotmail dot de
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: dmalcolm at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-52952-4-HvLOSbNRfA@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-52952-4@http.gcc.gnu.org/bugzilla/>
References: <bug-52952-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02454.txt.bz2
Content-length: 640

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=52952

--- Comment #48 from Bernd Edlinger <bernd.edlinger at hotmail dot de> ---
somethin like that fixes it for me:

Index: pr66415-1.c
===================================================================
--- pr66415-1.c (revision 239624)
+++ pr66415-1.c (working copy)
@@ -1,6 +1,7 @@
 /* PR c/66415 */
 /* { dg-do compile } */
 /* { dg-options "-Wformat -fdiagnostics-show-caret" } */
+/* { dg-set-compiler-env-var COLUMNS "82" } */

 void
 fn1 (void)
>From gcc-bugs-return-535119-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 20 05:40:22 2016
Return-Path: <gcc-bugs-return-535119-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 70074 invoked by alias); 20 Aug 2016 05:40:22 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 70059 invoked by uid 89); 20 Aug 2016 05:40:21 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 20 Aug 2016 05:40:11 +0000
From: "guillaume.melquiond at inria dot fr" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/27336] "this" pointer is not assumed to be not null
Date: Sat, 20 Aug 2016 05:40:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 4.1.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: guillaume.melquiond at inria dot fr
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-27336-4-2qVY4lukvk@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-27336-4@http.gcc.gnu.org/bugzilla/>
References: <bug-27336-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02455.txt.bz2
Content-length: 445

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=27336

--- Comment #8 from Guillaume Melquiond <guillaume.melquiond at inria dot fr> ---
It is partly fixed. In callee position, GCC now knows that "this" is non-null.
But in caller position, GCC still cannot make use of that information to remove
non-null checks from dynamic casts. The following testcase is still relevant.

struct A { void g(); };
bool f(A *a) {
  a->g();
  return a;
}
>From gcc-bugs-return-535120-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 20 06:59:10 2016
Return-Path: <gcc-bugs-return-535120-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 40594 invoked by alias); 20 Aug 2016 06:59:09 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 40582 invoked by uid 89); 20 Aug 2016 06:59:08 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:407
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 20 Aug 2016 06:58:58 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/61352] gcc 4.9.0 fails to execute dsymutil when linking executables on darwin
Date: Sat, 20 Aug 2016 06:59:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: REOPENED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: component
Message-ID: <bug-61352-4-glFDPtIObC@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-61352-4@http.gcc.gnu.org/bugzilla/>
References: <bug-61352-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02456.txt.bz2
Content-length: 384

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61352

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
          Component|debug                       |target

--- Comment #17 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Is this still true?
>From gcc-bugs-return-535121-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 20 14:12:52 2016
Return-Path: <gcc-bugs-return-535121-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 85260 invoked by alias); 20 Aug 2016 14:12:51 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 85247 invoked by uid 89); 20 Aug 2016 14:12:51 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=mnoprfchw, mno-prfchw
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 20 Aug 2016 14:12:41 +0000
From: "nightstrike at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77270] Flag -mprftchw is shared with 3dnow for -march=k8
Date: Sat, 20 Aug 2016 14:12:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: nightstrike at gmail dot com
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: ubizjak at gmail dot com
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77270-4-BSpUFajUzr@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77270-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77270-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02457.txt.bz2
Content-length: 465

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77270

--- Comment #5 from nightstrike <nightstrike at gmail dot com> ---
(In reply to Uroš Bizjak from comment #2)
> The problem is in the fact that for -march=native, the driver will pass
> -mno-prfchw, since the relevant bit is not present in cpuid flags.

I'm a little confused.  -march=native gets it right.  It's -march=k8 that gets
it wrong.  Does your patch make -march-k8 do the right thing now?
>From gcc-bugs-return-535122-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 20 15:07:43 2016
Return-Path: <gcc-bugs-return-535122-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 121303 invoked by alias); 20 Aug 2016 15:07:43 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 121286 invoked by uid 89); 20 Aug 2016 15:07:42 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:284
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 20 Aug 2016 15:07:32 +0000
From: "nightstrike at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/40516] --without-mpc, --without-ppl, --without-cloog does the same thing. No turning off mpc via configure.
Date: Sat, 20 Aug 2016 15:07:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 4.5.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: nightstrike at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-40516-4-ui1C0XcdW3@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-40516-4@http.gcc.gnu.org/bugzilla/>
References: <bug-40516-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02458.txt.bz2
Content-length: 163

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=40516

--- Comment #6 from nightstrike <nightstrike at gmail dot com> ---
Is it supported to build GCC without MPC?
>From gcc-bugs-return-535123-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 20 15:22:35 2016
Return-Path: <gcc-bugs-return-535123-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 22423 invoked by alias); 20 Aug 2016 15:22:34 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 22410 invoked by uid 89); 20 Aug 2016 15:22:33 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Following
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 20 Aug 2016 15:22:23 +0000
From: "nightstrike at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/3415] make distclean (in gcc subdirectory) does not clean up all the way
Date: Sat, 20 Aug 2016 15:22:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 3.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: nightstrike at gmail dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-3415-4-aGHL6hN64y@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-3415-4@http.gcc.gnu.org/bugzilla/>
References: <bug-3415-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02459.txt.bz2
Content-length: 587

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3415

nightstrike <nightstrike at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |nightstrike at gmail dot com

--- Comment #7 from nightstrike <nightstrike at gmail dot com> ---
Following a fresh build of gcc 6.1, make distclean results in a completely
empty build directory.  So, I'm guessing this has been fixed, but I didn't go
back to see when it actually started working.
>From gcc-bugs-return-535124-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 20 15:51:06 2016
Return-Path: <gcc-bugs-return-535124-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 76689 invoked by alias); 20 Aug 2016 15:51:06 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 76595 invoked by uid 89); 20 Aug 2016 15:51:05 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 20 Aug 2016 15:50:55 +0000
From: "manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/27336] "this" pointer is not assumed to be not null
Date: Sat, 20 Aug 2016 15:51:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 4.1.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: manu at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: component
Message-ID: <bug-27336-4-O90ZFFFTU8@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-27336-4@http.gcc.gnu.org/bugzilla/>
References: <bug-27336-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02460.txt.bz2
Content-length: 711

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=27336

Manuel López-Ibáñez <manu at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
          Component|c++                         |middle-end

--- Comment #9 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
This missed optimization is not really specific to *this (nor C++). We also do
not optimize the following as Steven says in comment #5.

extern void g2(A *that) __attribute__((nonnull));
bool f2(A *a) {
  g2(a);
  return a;
}


I guess once we optimize the above, *this will get optimized automatically.
>From gcc-bugs-return-535125-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 20 16:02:30 2016
Return-Path: <gcc-bugs-return-535125-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 95515 invoked by alias); 20 Aug 2016 16:02:30 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 95498 invoked by uid 89); 20 Aug 2016 16:02:29 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:688
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 20 Aug 2016 16:02:19 +0000
From: "manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/3415] make distclean (in gcc subdirectory) does not clean up all the way
Date: Sat, 20 Aug 2016 16:02:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 3.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: manu at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-3415-4-LPtNimtVD0@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-3415-4@http.gcc.gnu.org/bugzilla/>
References: <bug-3415-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02461.txt.bz2
Content-length: 706

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3415

Manuel López-Ibáñez <manu at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |manu at gcc dot gnu.org

--- Comment #8 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
(In reply to nightstrike from comment #7)
> Following a fresh build of gcc 6.1, make distclean results in a completely
> empty build directory.  So, I'm guessing this has been fixed, but I didn't
> go back to see when it actually started working.

With a cross-compiler, like Andrew says?
>From gcc-bugs-return-535127-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 20 16:12:54 2016
Return-Path: <gcc-bugs-return-535127-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 111199 invoked by alias); 20 Aug 2016 16:12:54 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 111187 invoked by uid 89); 20 Aug 2016 16:12:53 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 20 Aug 2016 16:12:43 +0000
From: "manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/27336] delete null checks in callers to nonnull functions
Date: Sat, 20 Aug 2016 16:12:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 4.1.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: manu at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: short_desc
Message-ID: <bug-27336-4-WBDvEK6ejM@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-27336-4@http.gcc.gnu.org/bugzilla/>
References: <bug-27336-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02463.txt.bz2
Content-length: 790

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=27336

Manuel López-Ibáñez <manu at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|"this" pointer is not       |delete null checks in
                   |assumed to be not null      |callers to nonnull
                   |                            |functions

--- Comment #10 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
For the following:

struct B { int x; };
extern void g3(struct B *that)  __attribute__((nonnull));
bool f3(struct B *a) {
  g3(a);
  return a;
}

The GIMPLE dump for C and C++ looks the same, but the NULL check in C++ does
not get optimized out.
>From gcc-bugs-return-535126-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 20 16:12:11 2016
Return-Path: <gcc-bugs-return-535126-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 110082 invoked by alias); 20 Aug 2016 16:12:11 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 110056 invoked by uid 89); 20 Aug 2016 16:12:10 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:382
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 20 Aug 2016 16:12:00 +0000
From: "nightstrike at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/3415] make distclean (in gcc subdirectory) does not clean up all the way
Date: Sat, 20 Aug 2016 16:12:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 3.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: nightstrike at gmail dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-3415-4-RnqRVTBQRU@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-3415-4@http.gcc.gnu.org/bugzilla/>
References: <bug-3415-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02462.txt.bz2
Content-length: 300

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3415

--- Comment #9 from nightstrike <nightstrike at gmail dot com> ---
Not only didn't I test it with a cross compiler, I didn't do it from inside the
gcc subdirectory like the PR title implies.  Double fail :(

So, nevermind.  Sorry for the noise.
>From gcc-bugs-return-535128-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 20 16:29:55 2016
Return-Path: <gcc-bugs-return-535128-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 5023 invoked by alias); 20 Aug 2016 16:29:55 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 5011 invoked by uid 89); 20 Aug 2016 16:29:54 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=mrs
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 20 Aug 2016 16:29:44 +0000
From: "howarth.at.gcc at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/61352] gcc 4.9.0 fails to execute dsymutil when linking executables on darwin
Date: Sat, 20 Aug 2016 16:29:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: howarth.at.gcc at gmail dot com
X-Bugzilla-Status: REOPENED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-61352-4-9bZB2nBZSW@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-61352-4@http.gcc.gnu.org/bugzilla/>
References: <bug-61352-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02464.txt.bz2
Content-length: 480

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61352

--- Comment #18 from Jack Howarth <howarth.at.gcc at gmail dot com> ---
(In reply to Andrew Pinski from comment #17)
> Is this still true?

This issue was fixed with...

r211067 | mrs | 2014-05-29 19:20:39 -0400 (Thu, 29 May 2014) | 4 lines

        PR debug/61352
        * collect2.c (maybe_run_lto_and_relink): Be sure to always run
        post ld passes when lto is used.

and the associated back port to gcc-4_9-branch.
>From gcc-bugs-return-535129-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 20 16:49:07 2016
Return-Path: <gcc-bugs-return-535129-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 108446 invoked by alias); 20 Aug 2016 16:49:07 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 108423 invoked by uid 89); 20 Aug 2016 16:49:06 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 20 Aug 2016 16:48:56 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/61352] gcc 4.9.0 fails to execute dsymutil when linking executables on darwin
Date: Sat, 20 Aug 2016 16:49:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 4.9.4
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution target_milestone
Message-ID: <bug-61352-4-ehqEIOsKmW@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-61352-4@http.gcc.gnu.org/bugzilla/>
References: <bug-61352-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02465.txt.bz2
Content-length: 488

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61352

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|REOPENED                    |RESOLVED
         Resolution|---                         |FIXED
   Target Milestone|---                         |4.9.4

--- Comment #19 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Fixed then.
>From gcc-bugs-return-535130-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 20 17:01:01 2016
Return-Path: <gcc-bugs-return-535130-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 13772 invoked by alias); 20 Aug 2016 17:01:01 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 13745 invoked by uid 89); 20 Aug 2016 17:01:00 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 20 Aug 2016 17:00:50 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug testsuite/64177] Various cilk+ testsuite failures
Date: Sat, 20 Aug 2016 17:01:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: testsuite
X-Bugzilla-Version: 5.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution target_milestone
Message-ID: <bug-64177-4-bC32j4oIWk@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-64177-4@http.gcc.gnu.org/bugzilla/>
References: <bug-64177-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02466.txt.bz2
Content-length: 487

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64177

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |FIXED
   Target Milestone|---                         |5.0

--- Comment #5 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Assuming fix.
>From gcc-bugs-return-535131-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 20 17:02:05 2016
Return-Path: <gcc-bugs-return-535131-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 23469 invoked by alias); 20 Aug 2016 17:02:05 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 23002 invoked by uid 89); 20 Aug 2016 17:02:04 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00,TVD_SPACE_RATIO autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 20 Aug 2016 17:01:54 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug other/69582] [meta-bug] Cilk+
Date: Sat, 20 Aug 2016 17:02:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: dep_changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: other
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords: meta-bug
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-69582-4-sFhVOz4Vtm@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69582-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69582-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02467.txt.bz2
Content-length: 458

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69582
Bug 69582 depends on bug 64177, which changed state.

Bug 64177 Summary: Various cilk+ testsuite failures
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64177

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |FIXED
>From gcc-bugs-return-535132-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 20 17:10:33 2016
Return-Path: <gcc-bugs-return-535132-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 51110 invoked by alias); 20 Aug 2016 17:10:33 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 51092 invoked by uid 89); 20 Aug 2016 17:10:32 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=prefetchw
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 20 Aug 2016 17:10:22 +0000
From: "ubizjak at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77270] Flag -mprftchw is shared with 3dnow for -march=k8
Date: Sat, 20 Aug 2016 17:10:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ubizjak at gmail dot com
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: ubizjak at gmail dot com
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77270-4-MtzOPmnuRG@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77270-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77270-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02468.txt.bz2
Content-length: 884

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77270

--- Comment #6 from Uroš Bizjak <ubizjak at gmail dot com> ---
(In reply to nightstrike from comment #5)
> (In reply to Uroš Bizjak from comment #2)
> > The problem is in the fact that for -march=native, the driver will pass
> > -mno-prfchw, since the relevant bit is not present in cpuid flags.
> 
> I'm a little confused.  -march=native gets it right.  It's -march=k8 that
> gets it wrong.  Does your patch make -march-k8 do the right thing now?

As it is now, -march=native (on k8) and -march=k8 will get consistent results,
that is - both will use 3DNOW prefetchw for *write* prefetches. If this is not
OK, we can now change "prefetch" instruction pattern to always emit SSE
prefetches instead of 3DNOW write prefetch for TARGET_SSE_PREFETCH targets, and
emit prefetchw only for TARGET_PRFCHW.
>From gcc-bugs-return-535133-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 20 17:15:05 2016
Return-Path: <gcc-bugs-return-535133-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 69478 invoked by alias); 20 Aug 2016 17:15:05 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 68647 invoked by uid 89); 20 Aug 2016 17:15:04 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 20 Aug 2016 17:14:54 +0000
From: "nightstrike at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77270] Flag -mprftchw is shared with 3dnow for -march=k8
Date: Sat, 20 Aug 2016 17:15:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: nightstrike at gmail dot com
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: ubizjak at gmail dot com
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77270-4-SvA7VWtWP1@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77270-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77270-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02469.txt.bz2
Content-length: 263

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77270

--- Comment #7 from nightstrike <nightstrike at gmail dot com> ---
The analysis from Venkat here:

https://gcc.gnu.org/ml/gcc/2016-05/msg00012.html

seems to indicate that the instruction is not valid for k8.
>From gcc-bugs-return-535134-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 20 17:27:42 2016
Return-Path: <gcc-bugs-return-535134-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 99209 invoked by alias); 20 Aug 2016 17:27:42 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 99194 invoked by uid 89); 20 Aug 2016 17:27:41 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 20 Aug 2016 17:27:31 +0000
From: "tkoenig at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libfortran/77278] Use LTO for libgfortran
Date: Sat, 20 Aug 2016 17:27:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libfortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: lto, missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: tkoenig at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-77278-4-JhEVfD13Fb@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77278-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77278-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02470.txt.bz2
Content-length: 1241

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77278

Thomas Koenig <tkoenig at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-20
     Ever confirmed|0                           |1

--- Comment #1 from Thomas Koenig <tkoenig at gcc dot gnu.org> ---
It is not easy to find a simple test case where an advantage
can be found.  With my hand-hacked LTO libgfortran, I get

ig25@linux-fd1f:~/Krempel/LTO> cat write.f90
program main
  implicit none
  integer :: i
  real(kind=8) :: a
  do i=1,10**7
    call random_number(a)
    write (10,'(E17.8," ")',advance="NO") a
  end do
end program main

With -static-libgfortran -lto I get for three consecutive runs

real    0m16.463s
user    0m15.979s
sys     0m0.449s

real    0m17.839s
user    0m17.440s
sys     0m0.388s

real    0m16.824s
user    0m16.378s
sys     0m0.436s

and with the normal shared library

real    0m19.508s
user    0m19.086s
sys     0m0.410s

real    0m19.850s
user    0m19.395s
sys     0m0.444s

real    0m18.213s
user    0m17.802s
sys     0m0.400s
>From gcc-bugs-return-535135-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 20 17:37:29 2016
Return-Path: <gcc-bugs-return-535135-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 117945 invoked by alias); 20 Aug 2016 17:37:28 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 117934 invoked by uid 89); 20 Aug 2016 17:37:28 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 20 Aug 2016 17:37:17 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/67461] Multiple atomic stores generate a StoreLoad barrier between each one, not just at the end
Date: Sat, 20 Aug 2016 17:37:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.2.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_severity
Message-ID: <bug-67461-4-p90aMsTpvw@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67461-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67461-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02471.txt.bz2
Content-length: 754

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67461

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |missed-optimization
           Severity|minor                       |enhancement

--- Comment #3 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
I should correct myself, there should be only if we have
__atomic_store(...,__ATOMIC_SEQ_CST)
__atomic_store(...,__ATOMIC_SEQ_CST)
__atomic_store(...,__ATOMIC_SEQ_CST)

This sequence can be converted into:
__atomic_store(...,__ATOMIC_RELEASE)
__atomic_store(...,__ATOMIC_RELEASE)
__atomic_store(...,__ATOMIC_SEQ_CST)
>From gcc-bugs-return-535136-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 20 17:45:53 2016
Return-Path: <gcc-bugs-return-535136-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 83715 invoked by alias); 20 Aug 2016 17:45:53 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 83701 invoked by uid 89); 20 Aug 2016 17:45:52 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=shifts, induction, Hx-languages-length:317
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 20 Aug 2016 17:45:42 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/67683] Missed vectorization: shifts of an induction variable
Date: Sat, 20 Aug 2016 17:45:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_severity
Message-ID: <bug-67683-4-etOBRqOYTC@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67683-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67683-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02472.txt.bz2
Content-length: 300

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67683

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|normal                      |enhancement
>From gcc-bugs-return-535137-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 20 17:48:17 2016
Return-Path: <gcc-bugs-return-535137-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 105682 invoked by alias); 20 Aug 2016 17:48:03 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 105641 invoked by uid 89); 20 Aug 2016 17:48:02 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:447
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 20 Aug 2016 17:47:52 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/58919] run with thread error, until i set -fprofile-arcs flag
Date: Sat, 20 Aug 2016 17:48:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 4.8.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-58919-4-iLDWjAki0c@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-58919-4@http.gcc.gnu.org/bugzilla/>
References: <bug-58919-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02473.txt.bz2
Content-length: 470

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58919

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |RESOLVED
         Resolution|---                         |INVALID

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
No testcase (even though I just asked for one).
>From gcc-bugs-return-535138-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 20 18:10:08 2016
Return-Path: <gcc-bugs-return-535138-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 34218 invoked by alias); 20 Aug 2016 18:10:08 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 34204 invoked by uid 89); 20 Aug 2016 18:10:07 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Old, HERE, our
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 20 Aug 2016 18:09:57 +0000
From: "kobalicek.petr at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/77287] Much worse code generated compared to clang (stack alignment and spills)
Date: Sat, 20 Aug 2016 18:10:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: missed-optimization, ra
X-Bugzilla-Severity: normal
X-Bugzilla-Who: kobalicek.petr at gmail dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77287-4-TQFvr0PpmR@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77287-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77287-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02474.txt.bz2
Content-length: 2439

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77287

--- Comment #4 from Petr <kobalicek.petr at gmail dot com> ---
Adding -fschedule-insns is definitely a huge improvement in this case. I wonder
why this doesn't happen by default at -O2 and -Os, as it really improves things
and makes shorter output, or it's just in this particular case?

Here is the assembly produced by gcc with -fschedule-insns:
  push      ebp
  mov       ebp, esp
  and       esp, -32
  lea       esp, [esp-32]
  mov       ecx, DWORD PTR [ebp+8]
  mov       edx, DWORD PTR [ebp+32]
  mov       eax, DWORD PTR [ebp+36]
  vmovdqu   ymm5, YMMWORD PTR [ecx]
  mov       ecx, DWORD PTR [ebp+12]
  vmovdqu   ymm3, YMMWORD PTR [edx]
  vmovdqu   ymm6, YMMWORD PTR [eax]
  vmovdqu   ymm2, YMMWORD PTR [ecx]
  mov       ecx, DWORD PTR [ebp+28]
  vpackuswb ymm7, ymm2, ymm3
  vpaddw    ymm7, ymm7, ymm2
  vpsubw    ymm7, ymm7, ymm3
  vmovdqu   ymm4, YMMWORD PTR [ecx]
  mov       ecx, DWORD PTR [ebp+16]
  vpackuswb ymm0, ymm5, ymm4
  vpaddw    ymm0, ymm0, ymm5
  vpsubw    ymm0, ymm0, ymm4
  vmovdqu   ymm1, YMMWORD PTR [ecx]
  vpackuswb ymm0, ymm0, ymm7
  mov       ecx, DWORD PTR [ebp+20]
  vpackuswb ymm2, ymm1, ymm6
  vmovdqu   ymm4, YMMWORD PTR [edx+32]
  vpaddw    ymm1, ymm2, ymm1
  mov       edx, DWORD PTR [ebp+24]
  vpsubw    ymm1, ymm1, ymm6
  vmovdqu   ymm5, YMMWORD PTR [ecx]
  vpackuswb ymm0, ymm0, ymm1
  vpackuswb ymm3, ymm5, ymm4
  vmovdqa   YMMWORD PTR [esp], ymm3
  vmovdqu   ymm2, YMMWORD PTR [eax+32]    ; LOOK HERE
  vpaddw    ymm5, ymm5, YMMWORD PTR [esp]
  vmovdqu   ymm3, YMMWORD PTR [edx]       ; AND HERE
  vpsubw    ymm4, ymm5, ymm4
  vpackuswb ymm7, ymm3, ymm2
  vpackuswb ymm0, ymm0, ymm4
  vpaddw    ymm3, ymm7, ymm3
  vpsubw    ymm2, ymm3, ymm2
  vpackuswb ymm2, ymm0, ymm2
  vpextrd   eax, xmm2, 1
  vzeroupper
  leave
  ret

Which is pretty close to clang already, however, look at this part:

  vmovdqa   YMMWORD PTR [esp], ymm3       ; Spill YMM3
  vmovdqu   ymm2, YMMWORD PTR [eax+32]
  vpaddw    ymm5, ymm5, YMMWORD PTR [esp] ; Mem instead of YMM3?
  vmovdqu   ymm3, YMMWORD PTR [edx]       ; Old YMM3 becomes dead here

The spill is completely unnecessary in our case, and it's the only reason why
the prolog/epilog requires code to perform dynamic stack alignment. I mean if
this one thing is eliminated then GCC basically generates a comparable code to
clang.

But thanks for -fschedule-insns hint, I didn't know about it.
>From gcc-bugs-return-535139-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 20 19:01:04 2016
Return-Path: <gcc-bugs-return-535139-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 110913 invoked by alias); 20 Aug 2016 19:01:03 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 110900 invoked by uid 89); 20 Aug 2016 19:01:03 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 20 Aug 2016 19:00:53 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/63987] [lra] internal compiler error: in decompose_normal_address, at rtlanal.c:5851
Date: Sat, 20 Aug 2016 19:01:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 5.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-63987-4-dbHKUU2H17@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-63987-4@http.gcc.gnu.org/bugzilla/>
References: <bug-63987-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02475.txt.bz2
Content-length: 145

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63987

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Does this still happen?
>From gcc-bugs-return-535140-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 20 21:34:46 2016
Return-Path: <gcc-bugs-return-535140-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 36910 invoked by alias); 20 Aug 2016 21:34:46 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 36896 invoked by uid 89); 20 Aug 2016 21:34:45 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=indirectly, indirection
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 20 Aug 2016 21:34:35 +0000
From: "msebor at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/77301] __builtin_object_size incorrect for an array in a struct referenced by a pointer
Date: Sat, 20 Aug 2016 21:34:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: msebor at gcc dot gnu.org
X-Bugzilla-Status: REOPENED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on resolution everconfirmed
Message-ID: <bug-77301-4-mLsoVgKR7G@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77301-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77301-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02476.txt.bz2
Content-length: 2144

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77301

Martin Sebor <msebor at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |wrong-code
             Status|RESOLVED                    |REOPENED
   Last reconfirmed|                            |2016-08-20
         Resolution|INVALID                     |---
     Ever confirmed|0                           |1

--- Comment #3 from Martin Sebor <msebor at gcc dot gnu.org> ---
I've reduced the problem in comment #2 to the test case below.  The built-in
returns a different result for the same member array depending on whether the
object of which the array is a member is referenced directly by its id or
indirectly, via a pointer, and whether the subscript operator is used to
reference an element of the array or some other form of indirection (the ->
operator or the * operator).

This may be related or even the same bug as PR77294 but I'm reopening this bug
in case it isn't, and also to update the documentation and clarify what you
explained in comment #1.  There has been quite some confusion and uncertainty
about the expected return value for arrays (PR44384 and PR77293 are a couple of
examples) as well as about the meaning of the phrase "objects are whole
variables" and the term "closest surrounding subobject."  Clarifying the manual
to explain what these mean should help set the right expectations.

$ cat z.c && /build/gcc-trunk-svn/gcc/xgcc -B /build/gcc-trunk-svn/gcc -O2
-Wall -Wextra z.c && ./a.out

struct S { char a [2]; };
struct S s [2];

int main (void)
{
  __builtin_printf ("%zu %zu %zu\n",
                    __builtin_object_size (s->a, 1),
                    __builtin_object_size ((*s).a, 1),
                    __builtin_object_size (s [0].a, 1));

  struct S *p = s;

  __builtin_printf ("%zu %zu %zu\n",
                    __builtin_object_size (p->a, 1),
                    __builtin_object_size ((*p).a, 1),
                    __builtin_object_size (p [0].a, 1));
}

4 4 2
4 4 4
>From gcc-bugs-return-535141-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Aug 20 21:36:44 2016
Return-Path: <gcc-bugs-return-535141-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 38794 invoked by alias); 20 Aug 2016 21:36:44 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 38783 invoked by uid 89); 20 Aug 2016 21:36:44 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 20 Aug 2016 21:36:33 +0000
From: "msebor at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/77294] __builtin_object_size inconsistent for member arrays
Date: Sat, 20 Aug 2016 21:36:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: msebor at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77294-4-5sKnOaHUrn@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77294-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77294-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02477.txt.bz2
Content-length: 200

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77294

--- Comment #1 from Martin Sebor <msebor at gcc dot gnu.org> ---
See also bug 77301 which discusses what seems like a related or similar
problem.
>From gcc-bugs-return-535142-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 21 07:31:04 2016
Return-Path: <gcc-bugs-return-535142-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 49271 invoked by alias); 21 Aug 2016 07:31:02 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 49236 invoked by uid 89); 21 Aug 2016 07:30:59 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:1135
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 21 Aug 2016 07:30:49 +0000
From: "vekumar at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77270] Flag -mprftchw is shared with 3dnow for -march=k8
Date: Sun, 21 Aug 2016 07:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: vekumar at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: ubizjak at gmail dot com
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-77270-4-7l31HaL3Qw@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77270-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77270-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02478.txt.bz2
Content-length: 1201

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77270

vekumar at gcc dot gnu.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |vekumar at gcc dot gnu.org

--- Comment #8 from vekumar at gcc dot gnu.org ---
There are 2 issues .

#issue1 
-mprfchw should be enabled only for targets that supports (3DNowprefetch).
On K8, 3DNowprefetch is not available and -march=k8 should not set this flag.

I can see behavior now corrected with Uros flag. 
Although I have to verify changes done other targets. 

#2 issue2
prefetchw ISA is also available in 3DNow!. Generating prefetchw by the GCC
backend is functionally correct if write prefetches are requested.

Looking at the test case why write prefetches are requested.

void f() {
    extern int size;
    int i;
    float * fvec;
    float * fptr = (float *) get();
    for(i = 0; i < size; ++i)
        fvec[i] = fptr[i];
    get();
}

I have to keep one more call statement so that "fvec" definition is not killed. 
prefetchw is generated for memory stores via fvec.  They are written only.
>From gcc-bugs-return-535143-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 21 09:31:40 2016
Return-Path: <gcc-bugs-return-535143-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 43863 invoked by alias); 21 Aug 2016 09:31:39 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 43843 invoked by uid 89); 21 Aug 2016 09:31:38 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 21 Aug 2016 09:31:28 +0000
From: "tkoenig at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libfortran/77278] Use LTO for libgfortran
Date: Sun, 21 Aug 2016 09:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libfortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: lto, missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: tkoenig at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77278-4-XNjNRbQDAn@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77278-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77278-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02479.txt.bz2
Content-length: 1162

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77278

--- Comment #2 from Thomas Koenig <tkoenig at gcc dot gnu.org> ---
Here's a test case which shows a performance loss with LTO-enabled
libgfortran.

program main
  implicit none
  integer, parameter :: n=10**7
  integer :: i
  real, dimension(n) :: a
  real :: t1, t2, t3
  call random_number(a)
  call cpu_time(t1)
  write (20,'(E17.12)') a
  call cpu_time(t2)
  write (21,'(E17.12)') (a(i),i=1,n)
  call cpu_time(t3)
  write (*,*) 'array write: ', t2-t1
  write (*,*) 'implied write: ', t3-t2
end program main

Running three times with shared libraries:
 array write:    12.0480003    
 implied write:    11.8389988    
 array write:    12.5640001    
 implied write:    12.5340004    
 array write:    11.8710003    
 implied write:    12.1729994  

Running three times with LTO:
 array write:    14.9330006    
 implied write:    15.3499994    
 array write:    14.2670002    
 implied write:    14.8539991    
 array write:    13.7550001    
 implied write:    14.8719997  

So, it is not always all that clear.
>From gcc-bugs-return-535144-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 21 10:44:35 2016
Return-Path: <gcc-bugs-return-535144-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 48373 invoked by alias); 21 Aug 2016 10:44:35 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 48348 invoked by uid 89); 21 Aug 2016 10:44:33 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:795, 2016-08-21
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 21 Aug 2016 10:44:22 +0000
From: "dominiq at lps dot ens.fr" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/77296] Compiler Error with allocatable string and associate
Date: Sun, 21 Aug 2016 10:44:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dominiq at lps dot ens.fr
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on blocked everconfirmed
Message-ID: <bug-77296-4-esuh2uRi5i@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77296-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77296-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02480.txt.bz2
Content-length: 914

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77296

Dominique d'Humieres <dominiq at lps dot ens.fr> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-21
             Blocks|                            |68241
     Ever confirmed|0                           |1

--- Comment #2 from Dominique d'Humieres <dominiq at lps dot ens.fr> ---
Confirmed from 4.8 up to trunk (7.0).

Note that the output at run time of

program test

   implicit none

   character(len=2), allocatable :: s
   s = 'A'
   associate(ss => s)
     print*,"'",ss,"'"
   end associate

end program test

is

 'pA'


Referenced Bugs:

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68241
[Bug 68241] [meta-bug] Deferred-length character
>From gcc-bugs-return-535145-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 21 10:54:33 2016
Return-Path: <gcc-bugs-return-535145-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 70503 invoked by alias); 21 Aug 2016 10:54:33 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 70482 invoked by uid 89); 21 Aug 2016 10:54:32 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 21 Aug 2016 10:54:22 +0000
From: "dominiq at lps dot ens.fr" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libfortran/77261] gfortran.dg/random_3.f90 FAILs
Date: Sun, 21 Aug 2016 10:54:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libfortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dominiq at lps dot ens.fr
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-77261-4-NHk69MYRz6@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77261-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77261-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02481.txt.bz2
Content-length: 638

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77261

Dominique d'Humieres <dominiq at lps dot ens.fr> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |WAITING
   Last reconfirmed|                            |2016-08-21
     Ever confirmed|0                           |1

--- Comment #1 from Dominique d'Humieres <dominiq at lps dot ens.fr> ---
AFAIU this occurs for platforms without real(10) and is due to the fact that
the sequence for real(16) is different from the sequence for other reals.
>From gcc-bugs-return-535146-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 21 11:00:40 2016
Return-Path: <gcc-bugs-return-535146-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 78247 invoked by alias); 21 Aug 2016 11:00:39 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 78213 invoked by uid 89); 21 Aug 2016 11:00:36 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=sk:DECL_SO, sk:decl_so, 1051
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 21 Aug 2016 11:00:28 +0000
From: "tkoenig at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libfortran/77278] Use LTO for libgfortran
Date: Sun, 21 Aug 2016 11:00:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libfortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: lto, missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: tkoenig at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77278-4-H3fNxmw48g@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77278-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77278-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02482.txt.bz2
Content-length: 3010

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77278

--- Comment #3 from Thomas Koenig <tkoenig at gcc dot gnu.org> ---
Some information about the type mismatch.

The first mismatch about gfortran_st_write is

lto1: warning: type of '_gfortran_st_write' does not match original declaration
[-Wlto-type-mismatch]

Breakpoint 1, warn_types_mismatch (t1=0x7ffff6a8d150, t2=0x7ffff6a39540,
loc1=27996512, loc2=0) at ../../trunk/gcc/ipa-devirt.c:1051
1051    {
(gdb) up
#1  0x0000000000654b39 in lto_symtab_merge_decls_2 (diagnosed_p=false,
first=<optimized out>) at ../../trunk/gcc/lto/lto-symtab.c:679
679                                        DECL_SOURCE_LOCATION (decl));
(gdb) down
#0  warn_types_mismatch (t1=0x7ffff6a8d150, t2=0x7ffff6a39540, loc1=27996512,
loc2=0) at ../../trunk/gcc/ipa-devirt.c:1051
1051    {
(gdb) call debug_tree(t1)
 <function_type 0x7ffff6a8d150
    type <void_type 0x7ffff6c50150 void VOID
        align 8 symtab 0 alias set -1 structural equality
        pointer_to_this <pointer_type 0x7ffff6c502a0>>
    QI
    size <integer_cst 0x7ffff6c37ca8 type <integer_type 0x7ffff6c3b2a0
bitsizetype> constant 8>
    unit size <integer_cst 0x7ffff6c37cc0 type <integer_type 0x7ffff6c3b1f8
sizetype> constant 1>
    align 8 symtab 0 alias set -1 structural equality
    arg-types <tree_list 0x7ffff6a873e8
        value <pointer_type 0x7ffff6a86738 type <record_type 0x7ffff6a867e0
st_parameter_dt>
            unsigned DI
            size <integer_cst 0x7ffff6c37bb8 constant 64>
            unit size <integer_cst 0x7ffff6c37bd0 constant 8>
            align 64 symtab 0 alias set 1 structural equality>
        chain <tree_list 0x7ffff6c499b0 value <void_type 0x7ffff6c50150 void>>>
    pointer_to_this <pointer_type 0x7ffff6aa19d8>>
(gdb) call debug_tree(t2)
 <function_type 0x7ffff6a39540
    type <void_type 0x7ffff6c50150 void VOID
        align 8 symtab 0 alias set -1 structural equality
        pointer_to_this <pointer_type 0x7ffff6c502a0>>
    QI
    size <integer_cst 0x7ffff6c37ca8 type <integer_type 0x7ffff6c3b2a0
bitsizetype> constant 8>
    unit size <integer_cst 0x7ffff6c37cc0 type <integer_type 0x7ffff6c3b1f8
sizetype> constant 1>
    align 8 symtab 0 alias set -1 structural equality
    attributes <tree_list 0x7ffff6a3baf0
        purpose <identifier_node 0x7ffff6c69af0 fn spec>
        value <tree_list 0x7ffff6a3bac8
            value <string_cst 0x7ffff6e26dc8 constant ".w">>>
    arg-types <tree_list 0x7ffff6a3baa0
        value <pointer_type 0x7ffff6a39498 type <record_type 0x7ffff6a393f0
__st_parameter_dt>
            unsigned DI
            size <integer_cst 0x7ffff6c37bb8 constant 64>
            unit size <integer_cst 0x7ffff6c37bd0 constant 8>
            align 64 symtab 0 alias set 6 structural equality>
        chain <tree_list 0x7ffff6c499b0 value <void_type 0x7ffff6c50150 void>>>
    pointer_to_this <pointer_type 0x7ffff6a44150>>

which looks quite different, but I lack the tree-foo to really decypher this.
>From gcc-bugs-return-535147-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 21 11:09:24 2016
Return-Path: <gcc-bugs-return-535147-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 84579 invoked by alias); 21 Aug 2016 11:09:24 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 84565 invoked by uid 89); 21 Aug 2016 11:09:23 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 21 Aug 2016 11:09:13 +0000
From: "dominiq at lps dot ens.fr" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libfortran/77278] Use LTO for libgfortran
Date: Sun, 21 Aug 2016 11:09:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libfortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: lto, missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: dominiq at lps dot ens.fr
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77278-4-yPa8wqy0MS@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77278-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77278-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02483.txt.bz2
Content-length: 601

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77278

--- Comment #4 from Dominique d'Humieres <dominiq at lps dot ens.fr> ---
> This led to error messages like
>
> lto1: warning: type of '_gfortran_st_write' does not match original
> declaration [-Wlto-type-mismatch] ../../../trunk/libgfortran/io/transfer.c:3746:1:
> note: 'st_write' was previously declared here
> ../../../trunk/libgfortran/io/transfer.c:3746:1: note: code may be
> misoptimized unless -fno-strict-aliasing is used
>
> so there is likely work to do on the library side and on the LTO side.

This looks like pr68649 and pr68717.
>From gcc-bugs-return-535148-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 21 11:22:41 2016
Return-Path: <gcc-bugs-return-535148-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 94645 invoked by alias); 21 Aug 2016 11:22:41 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 94631 invoked by uid 89); 21 Aug 2016 11:22:40 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 21 Aug 2016 11:22:30 +0000
From: "dominiq at lps dot ens.fr" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libfortran/52879] Pathological reseeding of PRNG generator genernates poor sequence
Date: Sun, 21 Aug 2016 11:22:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libfortran
X-Bugzilla-Version: 4.6.3
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dominiq at lps dot ens.fr
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cc
Message-ID: <bug-52879-4-TgDkdBRwLQ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-52879-4@http.gcc.gnu.org/bugzilla/>
References: <bug-52879-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02484.txt.bz2
Content-length: 488

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=52879

Dominique d'Humieres <dominiq at lps dot ens.fr> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |WAITING
                 CC|                            |jb at gcc dot gnu.org

--- Comment #3 from Dominique d'Humieres <dominiq at lps dot ens.fr> ---
Isn't this PR fixed by revision r239356?
>From gcc-bugs-return-535149-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 21 15:36:47 2016
Return-Path: <gcc-bugs-return-535149-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 8838 invoked by alias); 21 Aug 2016 15:36:46 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 8817 invoked by uid 89); 21 Aug 2016 15:36:46 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 21 Aug 2016 15:36:35 +0000
From: "dominiq at lps dot ens.fr" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libfortran/52879] Pathological reseeding of PRNG generator genernates poor sequence
Date: Sun, 21 Aug 2016 15:36:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libfortran
X-Bugzilla-Version: 4.6.3
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dominiq at lps dot ens.fr
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status
Message-ID: <bug-52879-4-ltwNhbT9b7@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-52879-4@http.gcc.gnu.org/bugzilla/>
References: <bug-52879-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02485.txt.bz2
Content-length: 5184

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=52879

Dominique d'Humieres <dominiq at lps dot ens.fr> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |NEW

--- Comment #4 from Dominique d'Humieres <dominiq at lps dot ens.fr> ---
> Isn't this PR fixed by revision r239356?

Apparently it is not:

program foo

   implicit none

   character(len=40), parameter :: fmt = '(A,33(I0,1X),A,F10.8)'
   integer i, seed_size, date(8)
   integer, allocatable :: new_seed(:), old_seed(:)
   real x

   call random_seed(size=seed_size)
   print *, seed_size

   allocate(new_seed(1:seed_size), old_seed(1:seed_size))
   call random_seed(get=old_seed)
   print *, old_seed

   do i = 1, seed_size
      new_seed = 1
      new_seed(i) = old_seed(i)
      call random_seed(put=new_seed)
      call random_number(x)
      write(*,fmt) 'seeds = [', new_seed, '], x = ', x
   end do

   deallocate(old_seed, new_seed)

end program foo

gives at runtime

          33
  -898577448 -1504036500   921915814  -557971666 -1458124821  1089340892 
-405009840 -1532177545  1874249343 -1565011252   722389807  1033881693  
-61011972  2103950240   262611246 -1017126965  1653648275  1231374486  
500769179   994525438  1527804518   673201045    34392906  1157024348
-1609687550  -251439173   940224366    63468018    34920908   436668423 
-808487283 -1219115328           0
seeds = [-898577448 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
1 1 ], x = 0.02421916
seeds = [1 -1504036500 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
1 1 1 ], x = 0.02421916
seeds = [1 1 921915814 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
1 1 ], x = 0.02421916
seeds = [1 1 1 -557971666 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
1 1 ], x = 0.02421916
seeds = [1 1 1 1 -1458124821 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
1 1 1 ], x = 0.02421916
seeds = [1 1 1 1 1 1089340892 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
1 1 ], x = 0.02421916
seeds = [1 1 1 1 1 1 -405009840 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
1 1 ], x = 0.02421916
seeds = [1 1 1 1 1 1 1 -1532177545 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
1 1 1 ], x = 0.02421916
seeds = [1 1 1 1 1 1 1 1 1874249343 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
1 1 ], x = 0.02421916
seeds = [1 1 1 1 1 1 1 1 1 -1565011252 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
1 1 1 ], x = 0.02421916
seeds = [1 1 1 1 1 1 1 1 1 1 722389807 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
1 1 ], x = 0.02421916
seeds = [1 1 1 1 1 1 1 1 1 1 1 1033881693 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
1 1 ], x = 0.02421916
seeds = [1 1 1 1 1 1 1 1 1 1 1 1 -61011972 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
1 1 ], x = 0.02421916
seeds = [1 1 1 1 1 1 1 1 1 1 1 1 1 2103950240 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
1 1 ], x = 0.02421916
seeds = [1 1 1 1 1 1 1 1 1 1 1 1 1 1 262611246 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
1 1 ], x = 0.02421916
seeds = [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 -1017126965 1 1 1 1 1 1 1 1 1 1 1 1 1 1
1 1 1 ], x = 0.02421916
seeds = [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1653648275 1 1 1 1 1 1 1 1 1 1 1 1 1 1
1 1 ], x = 0.02421916
seeds = [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1231374486 1 1 1 1 1 1 1 1 1 1 1 1 1
1 1 ], x = 0.02421916
seeds = [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 500769179 1 1 1 1 1 1 1 1 1 1 1 1
1 1 ], x = 0.02421916
seeds = [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 994525438 1 1 1 1 1 1 1 1 1 1 1
1 1 ], x = 0.02421916
seeds = [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1527804518 1 1 1 1 1 1 1 1 1 1
1 1 ], x = 0.02421916
seeds = [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 673201045 1 1 1 1 1 1 1 1 1
1 1 ], x = 0.02421916
seeds = [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 34392906 1 1 1 1 1 1 1 1 1
1 ], x = 0.02421916
seeds = [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1157024348 1 1 1 1 1 1 1
1 1 ], x = 0.02421916
seeds = [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 -1609687550 1 1 1 1 1
1 1 1 ], x = 0.02421916
seeds = [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 -251439173 1 1 1 1 1
1 1 ], x = 0.02421916
seeds = [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 940224366 1 1 1 1
1 1 ], x = 0.76351053
seeds = [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 63468018 1 1 1 1
1 ], x = 0.20794845
seeds = [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 34920908 1 1 1
1 ], x = 0.33147699
seeds = [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 436668423 1
1 1 ], x = 0.31606442
seeds = [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 -808487283
1 1 ], x = 0.02421916
seeds = [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
-1219115328 1 ], x = 0.02421916
seeds = [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 ], x
= 0.94173169

i.e., most "random" values are 0.02421916, except when the seed is not 1 in the
elements between 27 and 30, or 33.
>From gcc-bugs-return-535150-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 21 16:12:37 2016
Return-Path: <gcc-bugs-return-535150-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 122981 invoked by alias); 21 Aug 2016 16:12:37 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 122970 invoked by uid 89); 21 Aug 2016 16:12:36 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00,KAM_ASCII_DIVIDERS autolearn=no version=3.3.2 spammy=Hx-languages-length:969, tsdeferred, UD:ts.deferred, UD:deferred
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 21 Aug 2016 16:12:26 +0000
From: "tkoenig at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/77296] Compiler Error with allocatable string and associate
Date: Sun, 21 Aug 2016 16:12:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: ice-on-valid-code, wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: tkoenig at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords
Message-ID: <bug-77296-4-hMNzH81ppj@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77296-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77296-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02486.txt.bz2
Content-length: 1234

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77296

Thomas Koenig <tkoenig at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |ice-on-valid-code,
                   |                            |wrong-code

--- Comment #3 from Thomas Koenig <tkoenig at gcc dot gnu.org> ---
This patch

Index: resolve.c
===================================================================
--- resolve.c   (Revision 239218)
+++ resolve.c   (Arbeitskopie)
@@ -11551,7 +11551,8 @@ resolve_fl_variable (gfc_symbol *sym, int mp_flag)
   if (sym->ts.deferred
       && !(sym->attr.pointer
           || sym->attr.allocatable
-          || sym->attr.omp_udr_artificial_var))
+          || sym->attr.omp_udr_artificial_var
+          || sym->assoc))
     {
       gfc_error ("Entity %qs at %L has a deferred type parameter and "
                 "requires either the pointer or allocatable attribute",

makes the ICE go away, but does not lead to correct code.
>From gcc-bugs-return-535151-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 21 17:05:50 2016
Return-Path: <gcc-bugs-return-535151-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 22356 invoked by alias); 21 Aug 2016 17:05:50 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 22297 invoked by uid 89); 21 Aug 2016 17:05:49 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=tuned
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 21 Aug 2016 17:05:39 +0000
From: "ville.voutilainen at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/77288] Std::experimental::optional::operator= implementation is broken in gcc 6.1
Date: Sun, 21 Aug 2016 17:05:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ville.voutilainen at gmail dot com
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: ville.voutilainen at gmail dot com
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77288-4-9gvlRhszYX@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77288-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77288-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02487.txt.bz2
Content-length: 230

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77288

--- Comment #6 from Ville Voutilainen <ville.voutilainen at gmail dot com> ---
There's a superior fix that retains conversions but doesn't cause this
regression. Stay tuned.
>From gcc-bugs-return-535152-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 21 17:14:17 2016
Return-Path: <gcc-bugs-return-535152-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 34455 invoked by alias); 21 Aug 2016 17:14:17 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 34446 invoked by uid 89); 21 Aug 2016 17:14:16 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:652
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 21 Aug 2016 17:14:06 +0000
From: "edlinger at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/15319] [x86] ICE in change_stack, at reg-stack.c:2299
Date: Sun, 21 Aug 2016 17:14:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 3.3.3
X-Bugzilla-Keywords: ice-on-invalid-code, monitored
X-Bugzilla-Severity: normal
X-Bugzilla-Who: edlinger at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: DUPLICATE
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution cf_known_to_fail
Message-ID: <bug-15319-4-GnGvDzHWqc@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-15319-4@http.gcc.gnu.org/bugzilla/>
References: <bug-15319-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02488.txt.bz2
Content-length: 738

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=15319

Bernd Edlinger <edlinger at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|REOPENED                    |RESOLVED
         Resolution|---                         |DUPLICATE
      Known to fail|                            |

--- Comment #6 from Bernd Edlinger <edlinger at gcc dot gnu.org> ---
fixed in gcc-7 which emits an error message for this:

test.c: In function 'main':
test.c:5:9: error: explicitly used regs must be grouped at top of stack
         asm (  " fmul %1,%0"
         ^~~

*** This bug has been marked as a duplicate of bug 68843 ***
>From gcc-bugs-return-535153-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 21 17:14:48 2016
Return-Path: <gcc-bugs-return-535153-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 35303 invoked by alias); 21 Aug 2016 17:14:48 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 35292 invoked by uid 89); 21 Aug 2016 17:14:47 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=kim
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 21 Aug 2016 17:14:37 +0000
From: "edlinger at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug inline-asm/68843] ICE with "u" input constraint
Date: Sun, 21 Aug 2016 17:14:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: inline-asm
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: edlinger at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-68843-4-Tm4Fcgf5YA@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68843-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68843-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02489.txt.bz2
Content-length: 446

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68843

Bernd Edlinger <edlinger at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |kim at mail333 dot com

--- Comment #12 from Bernd Edlinger <edlinger at gcc dot gnu.org> ---
*** Bug 15319 has been marked as a duplicate of this bug. ***
>From gcc-bugs-return-535154-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 21 17:19:52 2016
Return-Path: <gcc-bugs-return-535154-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 38128 invoked by alias); 21 Aug 2016 17:19:52 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 38117 invoked by uid 89); 21 Aug 2016 17:19:51 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyÞstroy, Bring
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 21 Aug 2016 17:19:41 +0000
From: "jpakkane at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77307] New: Bring memset + free optimisation to C++
Date: Sun, 21 Aug 2016 17:19:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: jpakkane at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77307-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02490.txt.bz2
Content-length: 1014

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77307

            Bug ID: 77307
           Summary: Bring memset + free optimisation to C++
           Product: gcc
           Version: 6.1.1
            Status: UNCONFIRMED
          Severity: enhancement
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: jpakkane at gmail dot com
  Target Milestone: ---

For the following code gcc will remove the call to memset:

void destroy(char *buf, size_t bufsize) {
  memset(buf, 0, bufsize);
  free(buf);
}

However if you change it to delete[] like this:

void destroy(char *buf, size_t bufsize) {
  memset(buf, 0, bufsize);
  delete[] buf;
}

memset is called. Tested on gcc.godbolt.org, Clang and ICC seem to behave in
the same way.

In this case there are no destructors to run so the reasoning for removing the
memset call should be the same for both cases (assuming the C++ standard does
not have some weird requirements of which I am unaware).
>From gcc-bugs-return-535155-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 21 17:42:42 2016
Return-Path: <gcc-bugs-return-535155-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 59210 invoked by alias); 21 Aug 2016 17:42:41 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 59196 invoked by uid 89); 21 Aug 2016 17:42:41 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 21 Aug 2016 17:42:31 +0000
From: "edlinger at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77308] New: surprisingly large stack usage for sha512 on arm
Date: Sun, 21 Aug 2016 17:42:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: edlinger at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-77308-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02491.txt.bz2
Content-length: 873

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77308

            Bug ID: 77308
           Summary: surprisingly large stack usage for sha512 on arm
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: target
          Assignee: unassigned at gcc dot gnu.org
          Reporter: edlinger at gcc dot gnu.org
  Target Milestone: ---

Created attachment 39479
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39479&action=edit
test case

I've noticed that openssl with no-asm but without -DOPENSSL_SMALL_FOOTPRINT
uses > 3600 byte of stack for a simple sha512 computation with -O3 on ARM.

Which is surprising, because on i386 the same function uses only 1016 byte,
and x86_64 uses only 256 bytes stack.

See the attached source code witch is stripped down from sha512.c
>From gcc-bugs-return-535156-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 21 18:54:35 2016
Return-Path: <gcc-bugs-return-535156-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 82791 invoked by alias); 21 Aug 2016 18:54:35 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 82762 invoked by uid 89); 21 Aug 2016 18:54:34 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 21 Aug 2016 18:54:24 +0000
From: "uros at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77270] Flag -mprftchw is shared with 3dnow for -march=k8
Date: Sun, 21 Aug 2016 18:54:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: uros at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: ubizjak at gmail dot com
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77270-4-GRZ4ZOoB4j@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77270-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77270-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02492.txt.bz2
Content-length: 537

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77270

--- Comment #9 from uros at gcc dot gnu.org ---
Author: uros
Date: Sun Aug 21 18:53:48 2016
New Revision: 239643

URL: https://gcc.gnu.org/viewcvs?rev=239643&root=gcc&view=rev
Log:
        PR target/77270
        * config/i386/i386.md (prefetch): When TARGET_PRFCHW or
        TARGET_PREFETCHWT1 are disabled, emit 3dNOW! write prefetches for
        non-SSE2 athlons only, otherwise prefer SSE prefetches.


Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/config/i386/i386.md
>From gcc-bugs-return-535157-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 21 19:12:53 2016
Return-Path: <gcc-bugs-return-535157-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 116890 invoked by alias); 21 Aug 2016 19:12:53 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 116876 invoked by uid 89); 21 Aug 2016 19:12:52 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 21 Aug 2016 19:12:42 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77308] surprisingly large stack usage for sha512 on arm
Date: Sun, 21 Aug 2016 19:12:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77308-4-dVYt4NQEPP@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77308-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77308-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02493.txt.bz2
Content-length: 265

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77308

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Does -fno-schedule-insns help?  Sometimes the scheduler before the register
allocator causes register pressure and forces more register spills.
>From gcc-bugs-return-535158-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 21 19:16:30 2016
Return-Path: <gcc-bugs-return-535158-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 120274 invoked by alias); 21 Aug 2016 19:16:30 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 120258 invoked by uid 89); 21 Aug 2016 19:16:29 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:234
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 21 Aug 2016 19:16:19 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77308] surprisingly large stack usage for sha512 on arm
Date: Sun, 21 Aug 2016 19:16:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77308-4-TnSuN5IWfm@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77308-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77308-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02494.txt.bz2
Content-length: 168

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77308

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
For aarch64, the stack size is just 208 bytes.
>From gcc-bugs-return-535159-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 21 19:23:19 2016
Return-Path: <gcc-bugs-return-535159-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 2192 invoked by alias); 21 Aug 2016 19:23:18 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 2174 invoked by uid 89); 21 Aug 2016 19:23:17 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 21 Aug 2016 19:23:07 +0000
From: "bernd.edlinger at hotmail dot de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77308] surprisingly large stack usage for sha512 on arm
Date: Sun, 21 Aug 2016 19:23:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: bernd.edlinger at hotmail dot de
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-77308-4-iV66gBCRpe@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77308-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77308-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02495.txt.bz2
Content-length: 1295

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77308

Bernd Edlinger <bernd.edlinger at hotmail dot de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |bernd.edlinger at hotmail dot de

--- Comment #3 from Bernd Edlinger <bernd.edlinger at hotmail dot de> ---
(In reply to Andrew Pinski from comment #1)
> Does -fno-schedule-insns help?  Sometimes the scheduler before the register
> allocator causes register pressure and forces more register spills.

Yes, with -fno-schedule-insns it is a little bit smaller:

sha512_block_data_order:
        @ Function supports interworking.
        @ args = 0, pretend = 0, frame = 3472
        @ frame_needed = 0, uses_anonymous_args = 0
        push    {r4, r5, r6, r7, r8, r9, r10, fp, lr}
        sub     sp, sp, #3472
        sub     sp, sp, #4


but it could be worse :-)

with -fno-ira-share-spill-slots:

sha512_block_data_order:
        @ Function supports interworking.
        @ args = 0, pretend = 0, frame = 6640
        @ frame_needed = 0, uses_anonymous_args = 0
        push    {r4, r5, r6, r7, r8, r9, r10, fp, lr}
        sub     sp, sp, #6592
        sub     sp, sp, #52
>From gcc-bugs-return-535160-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 21 19:34:50 2016
Return-Path: <gcc-bugs-return-535160-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 17035 invoked by alias); 21 Aug 2016 19:34:50 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 16974 invoked by uid 89); 21 Aug 2016 19:34:49 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 21 Aug 2016 19:34:39 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/69683] multiline raw string R"()" for C++11 warning in false #ifdef when -std=c++98
Date: Sun, 21 Aug 2016 19:34:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-69683-4-M56hoM1uvs@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69683-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69683-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02496.txt.bz2
Content-length: 482

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69683

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |INVALID

--- Comment #6 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Not a bug so closing.  Given is a way around the error too.
>From gcc-bugs-return-535161-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 21 19:35:25 2016
Return-Path: <gcc-bugs-return-535161-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 19148 invoked by alias); 21 Aug 2016 19:35:25 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 19125 invoked by uid 89); 21 Aug 2016 19:35:24 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:605
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 21 Aug 2016 19:35:18 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/69685] GCC cross compiler build failed
Date: Sun, 21 Aug 2016 19:35:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 4.9.3
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-69685-4-P5mkW4wjQc@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69685-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69685-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02497.txt.bz2
Content-length: 681

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69685

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |WAITING
   Last reconfirmed|                            |2016-08-21
     Ever confirmed|0                           |1

--- Comment #5 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
(In reply to Georg-Johann Lay from comment #4)
> FYI, as you are using Newlib (and not avr-libc as all the folks does) you
> want to configure with --with-avrlibc=no.

Does it work with the above option?
>From gcc-bugs-return-535162-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 21 19:40:02 2016
Return-Path: <gcc-bugs-return-535162-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 22318 invoked by alias); 21 Aug 2016 19:40:02 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 22295 invoked by uid 89); 21 Aug 2016 19:40:01 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 21 Aug 2016 19:39:51 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/69623] Invalid deduction of non-trailing template parameter pack
Date: Sun, 21 Aug 2016 19:40:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: accepts-invalid
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-69623-4-FnqyRNuzw9@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69623-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69623-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02498.txt.bz2
Content-length: 482

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69623

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-21
     Ever confirmed|0                           |1

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Confirmed.
>From gcc-bugs-return-535163-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 21 19:41:32 2016
Return-Path: <gcc-bugs-return-535163-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 23992 invoked by alias); 21 Aug 2016 19:41:32 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 23917 invoked by uid 89); 21 Aug 2016 19:41:31 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:288
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 21 Aug 2016 19:41:21 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug testsuite/69620] gcc.dg/tree-ssa/loop-19.c scan-tree-dump-times optimized fails for powerpc64-linux-gnu
Date: Sun, 21 Aug 2016 19:41:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: testsuite
X-Bugzilla-Version: 4.9.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-69620-4-oekv62wpXX@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69620-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69620-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02499.txt.bz2
Content-length: 182

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69620

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Does this fail on 5.4.0?  4.9.4 was the last release of 4.9.
>From gcc-bugs-return-535164-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 21 20:28:23 2016
Return-Path: <gcc-bugs-return-535164-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 56938 invoked by alias); 21 Aug 2016 20:28:22 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 56929 invoked by uid 89); 21 Aug 2016 20:28:22 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 21 Aug 2016 20:28:12 +0000
From: "su at cs dot ucdavis.edu" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/77309] New: wrong code at -Os and above on x86_64-linux-gnu (in the 64-bit mode)
Date: Sun, 21 Aug 2016 20:28:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: su at cs dot ucdavis.edu
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77309-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02500.txt.bz2
Content-length: 1272

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77309

            Bug ID: 77309
           Summary: wrong code at -Os and above on x86_64-linux-gnu (in
                    the 64-bit mode)
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: tree-optimization
          Assignee: unassigned at gcc dot gnu.org
          Reporter: su at cs dot ucdavis.edu
  Target Milestone: ---

It also affects 4.8.x and later, and is a regression from 4.7.x. 


$ gcc-trunk -v
Using built-in specs.
COLLECT_GCC=gcc-trunk
COLLECT_LTO_WRAPPER=/usr/local/gcc-trunk/libexec/gcc/x86_64-pc-linux-gnu/7.0.0/lto-wrapper
Target: x86_64-pc-linux-gnu
Configured with: ../gcc-source-trunk/configure --enable-languages=c,c++,lto
--prefix=/usr/local/gcc-trunk --disable-bootstrap
Thread model: posix
gcc version 7.0.0 20160821 (experimental) [trunk revision 239642] (GCC) 
$ 
$ gcc-trunk -O1 small.c; ./a.out
$ gcc-4.7 -Os small.c; ./a.out
$ 
$ gcc-trunk -Os small.c
$ ./a.out
Aborted (core dumped)
$ 


-----------------------------------


int a, b;

int main ()
{
  long c = 1 % (2 ^ b);
  c = -c & ~(~(b ^ ~b) || a);

  if (c >= 0)
    __builtin_abort ();

  return 0;
}
>From gcc-bugs-return-535165-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 21 20:52:57 2016
Return-Path: <gcc-bugs-return-535165-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 93402 invoked by alias); 21 Aug 2016 20:52:57 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 93381 invoked by uid 89); 21 Aug 2016 20:52:56 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy\x1785, HERE
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 21 Aug 2016 20:52:46 +0000
From: "neil.n.carlson at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/77310] New: ICE on SELECT CASE with associate name
Date: Sun, 21 Aug 2016 20:52:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: neil.n.carlson at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77310-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02501.txt.bz2
Content-length: 1714

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77310

            Bug ID: 77310
           Summary: ICE on SELECT CASE with associate name
           Product: gcc
           Version: 6.1.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: fortran
          Assignee: unassigned at gcc dot gnu.org
          Reporter: neil.n.carlson at gmail dot com
  Target Milestone: ---

The following example triggers an ICE with gfortran 6.1.0:

subroutine ice_example
  type :: inner
    integer :: n
  end type
  type :: outer
    type(inner), allocatable :: array(:)
  end type
  type(outer) :: var
  associate (n_array => var%array%n)
    select case (n_array(1))  ! <== ICE HERE
    case default
    end select
  end associate
end subroutine

Here is the output I get:

gfortran-bug-20160821.f90:38:0:

     select case (n_array(1))

internal compiler error: in gfc_get_element_type, at fortran/trans-types.c:1181
0x6f1daa gfc_get_element_type(tree_node*)
        ../../gcc/fortran/trans-types.c:1181
0x6ea705 trans_associate_var
        ../../gcc/fortran/trans-stmt.c:1581
0x6ea705 gfc_trans_block_construct(gfc_code*)
        ../../gcc/fortran/trans-stmt.c:1806
0x688977 trans_code
        ../../gcc/fortran/trans.c:1785
0x6abe8c gfc_generate_function_code(gfc_namespace*)
        ../../gcc/fortran/trans-decl.c:6154
0x644c50 translate_all_program_units
        ../../gcc/fortran/parse.c:5613
0x644c50 gfc_parse_file()
        ../../gcc/fortran/parse.c:5819
0x685cc5 gfc_be_parse_file
        ../../gcc/fortran/f95-lang.c:201
Please submit a full bug report,
with preprocessed source if appropriate.
Please include the complete backtrace with any bug report.
>From gcc-bugs-return-535166-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 21 21:06:43 2016
Return-Path: <gcc-bugs-return-535166-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 109998 invoked by alias); 21 Aug 2016 21:06:42 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 109977 invoked by uid 89); 21 Aug 2016 21:06:42 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=HERE
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 21 Aug 2016 21:06:31 +0000
From: "dominiq at lps dot ens.fr" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/77310] ICE on SELECT CASE with associate name
Date: Sun, 21 Aug 2016 21:06:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dominiq at lps dot ens.fr
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-77310-4-SH2nM97udv@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77310-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77310-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02502.txt.bz2
Content-length: 847

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77310

Dominique d'Humieres <dominiq at lps dot ens.fr> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |WAITING
   Last reconfirmed|                            |2016-08-21
     Ever confirmed|0                           |1

--- Comment #1 from Dominique d'Humieres <dominiq at lps dot ens.fr> ---
I get the same ICE with the following code

subroutine ice_example
  type :: inner
    integer :: n
  end type
  type :: outer
    type(inner), allocatable :: array(:)
  end type
  type(outer) :: var
  associate (n_array => var%array%n)
    n_array(1)=1  ! <== ICE HERE
  end associate
end subroutine

I think it is a duplicate of pr70705 and pr49636.
>From gcc-bugs-return-535167-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 21 21:13:25 2016
Return-Path: <gcc-bugs-return-535167-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 9389 invoked by alias); 21 Aug 2016 21:13:24 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 9374 invoked by uid 89); 21 Aug 2016 21:13:24 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:869
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 21 Aug 2016 21:13:14 +0000
From: "aurelien at aurel32 dot net" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77300] [MIPS] incorrectly moves instruction containing local GOT16 relocation into a delay slot
Date: Sun, 21 Aug 2016 21:13:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: aurelien at aurel32 dot net
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-77300-4-9EWJ5RomnG@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77300-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77300-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02503.txt.bz2
Content-length: 879

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77300

Aurelien Jarno <aurelien at aurel32 dot net> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |aurelien at aurel32 dot net

--- Comment #1 from Aurelien Jarno <aurelien at aurel32 dot net> ---
I have tried to identified when this behavior has been introduced. It appears
that even GCC 4.9 is producing similar code. However what cause ld to reject it
is the following change in the assembly code:

-       .text
+       .section       
.text._ZN1HIiE5m_fn4ERK1G.isra.1,"axG",@progbits,_ZN1HIiE5m_fn5ERK1G,comdat

It seems the optimization is somehow correct when all the code is in the same
section, but that's no the case anymore when it is in multiple sections.
>From gcc-bugs-return-535168-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 21 21:33:01 2016
Return-Path: <gcc-bugs-return-535168-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 24167 invoked by alias); 21 Aug 2016 21:33:01 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 24143 invoked by uid 89); 21 Aug 2016 21:33:00 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy!17, intval, INTVAL, funny
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 21 Aug 2016 21:32:49 +0000
From: "bernd.edlinger at hotmail dot de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77308] surprisingly large stack usage for sha512 on arm
Date: Sun, 21 Aug 2016 21:33:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: bernd.edlinger at hotmail dot de
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77308-4-tGXtcwJ4Cc@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77308-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77308-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02504.txt.bz2
Content-length: 2688

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77308

--- Comment #4 from Bernd Edlinger <bernd.edlinger at hotmail dot de> ---
hmm, when I compare aarch64 vs. arm sha512.c.260r.reload
with -O3 -fno-schedule-insns

I see a big difference:

aarch64 has only few spill regs

subreg regs:
  Slot 0 regnos (width = 8):     856
  Slot 1 regnos (width = 8):     857
  Slot 2 regnos (width = 8):     858
  Slot 3 regnos (width = 8):     859
  Slot 4 regnos (width = 8):     860
  Slot 5 regnos (width = 8):     861
  Slot 6 regnos (width = 8):     862
  Slot 7 regnos (width = 8):     2117
  Slot 8 regnos (width = 8):     1164
  Slot 9 regnos (width = 8):     1052


but arm has 415 (8 bytes each)
and the line "subreg regs:" before the Spill Slots is contains ~1500 regs.

and while aarch64 does not have a single subreg in any pass,
the arm has lots of subregs before lra eliminates all of them.

like this, in sha512.c.217r.expand:

(insn 85 84 86 5 (set (subreg:SI (reg:DI 1670) 4)
        (ashift:SI (subreg:SI (reg:DI 1669) 0)
            (const_int 24 [0x18]))) sha512.c:98 -1
     (nil))
(insn 86 85 87 5 (set (subreg:SI (reg:DI 1670) 0)
        (const_int 0 [0])) sha512.c:98 -1
     (nil))

This funny instruction is generated in arm_emit_coreregs_64bit_shift:

          /* Shifts by a constant greater than 31.  */
          rtx adj_amount = GEN_INT (INTVAL (amount) - 32);

          emit_insn (SET (out_down, SHIFT (code, in_up, adj_amount)));
          if (code == ASHIFTRT)
            emit_insn (gen_ashrsi3 (out_up, in_up,
                                    GEN_INT (31)));
          else
            emit_insn (SET (out_up, const0_rtx));

From my past experience, I assume that using a subreg to write
an half of the out register makes more problems than it solves.

So I tried this:

Index: gcc/config/arm/arm.c
===================================================================
--- gcc/config/arm/arm.c        (revision 239624)
+++ gcc/config/arm/arm.c        (working copy)
@@ -29170,12 +29170,11 @@
          /* Shifts by a constant greater than 31.  */
          rtx adj_amount = GEN_INT (INTVAL (amount) - 32);

+         emit_insn (SET (out, const0_rtx));
          emit_insn (SET (out_down, SHIFT (code, in_up, adj_amount)));
          if (code == ASHIFTRT)
            emit_insn (gen_ashrsi3 (out_up, in_up,
                                    GEN_INT (31)));
-         else
-           emit_insn (SET (out_up, const0_rtx));
        }
     }
   else

and it reduced the stack from 3472->2960
>From gcc-bugs-return-535169-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 21 21:41:43 2016
Return-Path: <gcc-bugs-return-535169-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 34844 invoked by alias); 21 Aug 2016 21:41:42 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 34822 invoked by uid 89); 21 Aug 2016 21:41:41 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=orr
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 21 Aug 2016 21:41:31 +0000
From: "bernd.edlinger at hotmail dot de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77308] surprisingly large stack usage for sha512 on arm
Date: Sun, 21 Aug 2016 21:41:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: bernd.edlinger at hotmail dot de
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77308-4-yayvf6AC4M@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77308-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77308-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02505.txt.bz2
Content-length: 1615

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77308

--- Comment #5 from Bernd Edlinger <bernd.edlinger at hotmail dot de> ---
Now I try to clear the out register when the shift < 32


Index: gcc/config/arm/arm.c
===================================================================
--- gcc/config/arm/arm.c        (revision 239624)
+++ gcc/config/arm/arm.c        (working copy)
@@ -29159,6 +29159,7 @@ arm_emit_coreregs_64bit_shift (enum rtx_code code,
          /* Shifts by a constant less than 32.  */
          rtx reverse_amount = GEN_INT (32 - INTVAL (amount));

+         emit_insn (SET (out, const0_rtx));
          emit_insn (SET (out_down, LSHIFT (code, in_down, amount)));
          emit_insn (SET (out_down,
                          ORR (REV_LSHIFT (code, in_up, reverse_amount),
@@ -29170,12 +29171,11 @@ arm_emit_coreregs_64bit_shift (enum rtx_code code,
          /* Shifts by a constant greater than 31.  */
          rtx adj_amount = GEN_INT (INTVAL (amount) - 32);

+         emit_insn (SET (out, const0_rtx));
          emit_insn (SET (out_down, SHIFT (code, in_up, adj_amount)));
          if (code == ASHIFTRT)
            emit_insn (gen_ashrsi3 (out_up, in_up,
                                    GEN_INT (31)));
-         else
-           emit_insn (SET (out_up, const0_rtx));
        }
     }
   else


result: the stack use goes down from 2960 to 2320
note: this SET is simply redundant, but it makes the out
well-defined from the beginning.
>From gcc-bugs-return-535170-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 21 21:46:49 2016
Return-Path: <gcc-bugs-return-535170-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 38036 invoked by alias); 21 Aug 2016 21:46:48 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 38024 invoked by uid 89); 21 Aug 2016 21:46:47 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 21 Aug 2016 21:46:37 +0000
From: "bernd.edlinger at hotmail dot de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77308] surprisingly large stack usage for sha512 on arm
Date: Sun, 21 Aug 2016 21:46:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: bernd.edlinger at hotmail dot de
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-77308-4-QYnT2Ahjeg@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77308-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77308-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02506.txt.bz2
Content-length: 472

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77308

Bernd Edlinger <bernd.edlinger at hotmail dot de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |vmakarov at gcc dot gnu.org

--- Comment #6 from Bernd Edlinger <bernd.edlinger at hotmail dot de> ---
Vladimir,

is this an lra problem?
or should this be fixed at the target?
>From gcc-bugs-return-535171-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 21 22:07:45 2016
Return-Path: <gcc-bugs-return-535171-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 67655 invoked by alias); 21 Aug 2016 22:07:45 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 66836 invoked by uid 89); 21 Aug 2016 22:07:44 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 21 Aug 2016 22:07:34 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/69415] -Wmisleading-indentation warns on "if (__b < __a) return __b; return __a;"
Date: Sun, 21 Aug 2016 22:07:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: dmalcolm at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-69415-4-qmcYrFE4eR@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69415-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69415-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02507.txt.bz2
Content-length: 463

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69415

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |diagnostic
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-21
     Ever confirmed|0                           |1
>From gcc-bugs-return-535173-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 21 22:09:55 2016
Return-Path: <gcc-bugs-return-535173-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 79871 invoked by alias); 21 Aug 2016 22:09:55 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 79854 invoked by uid 89); 21 Aug 2016 22:09:54 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyi410, friend
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 21 Aug 2016 22:09:44 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/69410] friend declarations in local classes
Date: Sun, 21 Aug 2016 22:09:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: rejects-valid
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cf_known_to_fail
Message-ID: <bug-69410-4-7Wi04D2UM4@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69410-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69410-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02509.txt.bz2
Content-length: 583

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69410

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
      Known to fail|                            |7.0

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Confirmed:
t99.cc: In function ‘void f()’:
t99.cc:4:25: error: friend declaration ‘void a()’ in local class without prior
declaration
         friend void ::a();
                         ^
>From gcc-bugs-return-535172-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 21 22:09:43 2016
Return-Path: <gcc-bugs-return-535172-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 79125 invoked by alias); 21 Aug 2016 22:09:43 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 79109 invoked by uid 89); 21 Aug 2016 22:09:42 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=jobs, 1678
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 21 Aug 2016 22:09:32 +0000
From: "wbx at openadk dot org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/77311] New: bfin: error: unable to find a register to spill in class 'CCREGS'
Date: Sun, 21 Aug 2016 22:09:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wbx at openadk dot org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-77311-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02508.txt.bz2
Content-length: 1788

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77311

            Bug ID: 77311
           Summary: bfin: error: unable to find a register to spill in
                    class 'CCREGS'
           Product: gcc
           Version: 6.1.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: wbx at openadk dot org
  Target Milestone: ---

Created attachment 39480
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39480&action=edit
ffmpeg preprocessed file

When compiling either ffmpeg or binutils for bfin with gcc 6.1.0 you get
something like
that:

CC      libavcodec/huffyuvencdsp.o
In file included from libavcodec/hevcdsp.c:111:0:
libavcodec/hevcdsp_template.c: In function 'hevc_v_loop_filter_luma_8':
libavcodec/hevcdsp_template.c:1678:1: error: unable to find a register to spill
in class 'CCREGS'
 }
 ^
libavcodec/hevcdsp_template.c:1678:1: error: this is the insn:
(insn 488 474 719 20 (set (reg:BI 15 FP [549])
        (eq:BI (reg/v:SI 15 FP [orig:98 no_p ] [98])
            (const_int 0 [0]))) libavcodec/hevcdsp_template.c:1596 118
{compare_eq}
     (expr_list:REG_DEAD (reg/v:SI 15 FP [orig:98 no_p ] [98])
        (nil)))
libavcodec/hevcdsp_template.c:1678: confused by earlier errors, bailing out
common.mak:57: recipe for target 'libavcodec/hevcdsp.o' failed
make[1]: *** [libavcodec/hevcdsp.o] Error 1
make[1]: *** Waiting for unfinished jobs....

It seems as some kind of gcc optimization bug with Os/O2/O3, as the problematic
code can be compiled with O1 without any problem.

Problem found via Buildroot autobuilders:
http://autobuild.buildroot.net/results/111/1118d568959006b7f973761884fd3f4b63be19b1/

Preprocessed file attached.
>From gcc-bugs-return-535174-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 21 22:11:46 2016
Return-Path: <gcc-bugs-return-535174-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 81551 invoked by alias); 21 Aug 2016 22:11:46 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 81533 invoked by uid 89); 21 Aug 2016 22:11:45 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=friend
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 21 Aug 2016 22:11:35 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/69410] friend declarations in local classes
Date: Sun, 21 Aug 2016 22:11:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: rejects-valid
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-69410-4-hxYejswIBQ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69410-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69410-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02510.txt.bz2
Content-length: 475

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69410

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-21
     Ever confirmed|0                           |1

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
.
>From gcc-bugs-return-535175-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 21 22:31:20 2016
Return-Path: <gcc-bugs-return-535175-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 55468 invoked by alias); 21 Aug 2016 22:31:19 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 53568 invoked by uid 89); 21 Aug 2016 22:31:15 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=5.4, CUT
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 21 Aug 2016 22:31:05 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/69569] unnecessary branches on an if followed by a switch
Date: Sun, 21 Aug 2016 22:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on component everconfirmed bug_severity
Message-ID: <bug-69569-4-FlK5Mg8T7U@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69569-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69569-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02511.txt.bz2
Content-length: 1130

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69569

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-21
          Component|rtl-optimization            |tree-optimization
     Ever confirmed|0                           |1
           Severity|normal                      |enhancement

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
This is optimized for -O2 and above on aarch64-linux-gnu just fine:
For GCC 7:
baz:
        cmp     w0, 2
        bgt     .L1
        bne     .L1
        b       foo
        .p2align 3
.L1:
        mov     w0, 77
        ret
--- CUT ----
For GCC 5.4:
baz:
        cmp     w0, 2
        ble     .L7
.L2:
        mov     w0, 77
        ret
        .p2align 3
.L7:
        bne     .L2
        b       foo

---- CUT ----

I suspect the issue for -O1 is that we don't change the switch into an if
statement when we only have two cases.
>From gcc-bugs-return-535176-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sun Aug 21 22:43:12 2016
Return-Path: <gcc-bugs-return-535176-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 95409 invoked by alias); 21 Aug 2016 22:43:12 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 95367 invoked by uid 89); 21 Aug 2016 22:43:11 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 21 Aug 2016 22:43:01 +0000
From: "msebor at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77298] -Wnonnull-compare only emitted for code which is invoked
Date: Sun, 21 Aug 2016 22:43:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: msebor at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on resolution everconfirmed cf_known_to_fail
Message-ID: <bug-77298-4-9oW12cAt7X@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77298-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77298-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02512.txt.bz2
Content-length: 741

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77298

Martin Sebor <msebor at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |diagnostic
             Status|RESOLVED                    |NEW
   Last reconfirmed|                            |2016-08-21
         Resolution|INVALID                     |---
     Ever confirmed|0                           |1
      Known to fail|                            |6.1.0, 7.0

--- Comment #9 from Martin Sebor <msebor at gcc dot gnu.org> ---
Reopening as valid, though I don't expect to have the time to work on this
anytime soon (if at all).
>From gcc-bugs-return-535177-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 01:31:23 2016
Return-Path: <gcc-bugs-return-535177-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 3552 invoked by alias); 22 Aug 2016 01:31:23 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 3358 invoked by uid 89); 22 Aug 2016 01:30:53 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=sk:with-mu, sk:withmu, m32m64mx32, m32,m64,mx32
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 01:30:43 +0000
From: "halliwell at chromium dot org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77312] New: Lambda that deletes itself accesses freed memory, but only if class is templated
Date: Mon, 22 Aug 2016 01:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: halliwell at chromium dot org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-77312-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02513.txt.bz2
Content-length: 2541

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77312

            Bug ID: 77312
           Summary: Lambda that deletes itself accesses freed memory, but
                    only if class is templated
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: halliwell at chromium dot org
  Target Milestone: ---

Created attachment 39481
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39481&action=edit
Full preprocessor output using -save-temps when compiling

Preprocessed .ii file is attached.  The bug is most easily reproduced using
-fsanitize=address option (also running the program under valgrind).  I
compiled with

g++ --std=c++11 -fsanitize=address -o test gcc-bug.cc

and then ran:
./test

Curiously, the bug only happens when class LambdaHolder is templated.  If you
remove the template <class U> line and remove <int> from the instantiation
line, then the bug is gone.


Output of gcc -v:
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.8/lto-wrapper
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu
4.8.4-2ubuntu1~14.04.3' --with-bugurl=file:///usr/share/doc/gcc-4.8/README.Bugs
--enable-languages=c,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr
--program-suffix=-4.8 --enable-shared --enable-linker-build-id
--libexecdir=/usr/lib --without-included-gettext --enable-threads=posix
--with-gxx-include-dir=/usr/include/c++/4.8 --libdir=/usr/lib --enable-nls
--with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug
--enable-libstdcxx-time=yes --enable-gnu-unique-object --disable-libmudflap
--enable-plugin --with-system-zlib --disable-browser-plugin
--enable-java-awt=gtk --enable-gtk-cairo
--with-java-home=/usr/lib/jvm/java-1.5.0-gcj-4.8-amd64/jre --enable-java-home
--with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-4.8-amd64
--with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-4.8-amd64
--with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar
--enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686
--with-abi=m64 --with-multilib-list=m32,m64,mx32 --with-tune=generic
--enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu
--target=x86_64-linux-gnu
Thread model: posix
gcc version 4.8.4 (Ubuntu 4.8.4-2ubuntu1~14.04.3)
>From gcc-bugs-return-535178-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 01:32:18 2016
Return-Path: <gcc-bugs-return-535178-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 8934 invoked by alias); 22 Aug 2016 01:32:17 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 8782 invoked by uid 89); 22 Aug 2016 01:32:16 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 01:32:06 +0000
From: "halliwell at chromium dot org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77313] New: Lambda that deletes itself accesses freed memory, but only if class is templated
Date: Mon, 22 Aug 2016 01:32:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: halliwell at chromium dot org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77313-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02514.txt.bz2
Content-length: 2382

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77313

            Bug ID: 77313
           Summary: Lambda that deletes itself accesses freed memory, but
                    only if class is templated
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: halliwell at chromium dot org
  Target Milestone: ---

Preprocessed .ii file is attached.  The bug is most easily reproduced using
-fsanitize=address option (also running the program under valgrind).  I
compiled with

g++ --std=c++11 -fsanitize=address -o test gcc-bug.cc

and then ran:
./test

Curiously, the bug only happens when class LambdaHolder is templated.  If you
remove the template <class U> line and remove <int> from the instantiation
line, then the bug is gone.


Output of gcc -v:
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.8/lto-wrapper
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu
4.8.4-2ubuntu1~14.04.3' --with-bugurl=file:///usr/share/doc/gcc-4.8/README.Bugs
--enable-languages=c,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr
--program-suffix=-4.8 --enable-shared --enable-linker-build-id
--libexecdir=/usr/lib --without-included-gettext --enable-threads=posix
--with-gxx-include-dir=/usr/include/c++/4.8 --libdir=/usr/lib --enable-nls
--with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug
--enable-libstdcxx-time=yes --enable-gnu-unique-object --disable-libmudflap
--enable-plugin --with-system-zlib --disable-browser-plugin
--enable-java-awt=gtk --enable-gtk-cairo
--with-java-home=/usr/lib/jvm/java-1.5.0-gcj-4.8-amd64/jre --enable-java-home
--with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-4.8-amd64
--with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-4.8-amd64
--with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar
--enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686
--with-abi=m64 --with-multilib-list=m32,m64,mx32 --with-tune=generic
--enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu
--target=x86_64-linux-gnu
Thread model: posix
gcc version 4.8.4 (Ubuntu 4.8.4-2ubuntu1~14.04.3)
>From gcc-bugs-return-535179-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 02:57:03 2016
Return-Path: <gcc-bugs-return-535179-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 21613 invoked by alias); 22 Aug 2016 02:57:02 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 15217 invoked by uid 89); 22 Aug 2016 02:55:46 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=anonymous
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 02:55:36 +0000
From: "ian at geometrian dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77314] New: Allows C++11 POD types in anonymous structures.
Date: Mon, 22 Aug 2016 02:57:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: ian at geometrian dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77314-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02515.txt.bz2
Content-length: 1191

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77314

            Bug ID: 77314
           Summary: Allows C++11 POD types in anonymous structures.
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: enhancement
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: ian at geometrian dot com
  Target Milestone: ---

Consider the following in >= C++11:

  #include <type_traits>
  struct MyType {
      int val;
      MyType(void) = default;
      MyType(int v) : val(v) {}
  }; static_assert(std::is_pod<MyType>::value,"");

This POD type cannot be used in an anonymous structure.  E.g.:

  /* "error: member 'MyType Wrapper::<anonymous struct>::t' with constructor
not allowed in anonymous aggregate" */
  struct Wrapper { struct { MyType t; }; };

GCC is not required by standard to support anonymous structures at all (it need
only support unnamed structures), but since it does, it seems strange to limit
it in this way (it is unclear what conditions are disallowed, even).  This
enhancement would relax the rules for anonymous structures, allowing any POD
type.
>From gcc-bugs-return-535180-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 03:18:57 2016
Return-Path: <gcc-bugs-return-535180-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 66231 invoked by alias); 22 Aug 2016 03:18:57 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 66219 invoked by uid 89); 22 Aug 2016 03:18:56 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:445
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 03:18:46 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/66072] Trying to compile a makefile in c++, error in Description
Date: Mon, 22 Aug 2016 03:18:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 4.8.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-66072-4-IZs2PV4K9d@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-66072-4@http.gcc.gnu.org/bugzilla/>
References: <bug-66072-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02516.txt.bz2
Content-length: 472

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66072

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |RESOLVED
         Resolution|---                         |INVALID

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
No testcase in over a year so closing as invalid.
>From gcc-bugs-return-535181-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 03:45:58 2016
Return-Path: <gcc-bugs-return-535181-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 118079 invoked by alias); 22 Aug 2016 03:45:58 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 118064 invoked by uid 89); 22 Aug 2016 03:45:57 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 03:45:47 +0000
From: "tromey at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug debug/77315] New: emit DW_OP_form_tls_address
Date: Mon, 22 Aug 2016 03:45:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: debug
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: tromey at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77315-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02517.txt.bz2
Content-length: 791

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77315

            Bug ID: 77315
           Summary: emit DW_OP_form_tls_address
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: debug
          Assignee: unassigned at gcc dot gnu.org
          Reporter: tromey at gcc dot gnu.org
  Target Milestone: ---

Currently gcc generally emits DW_OP_GNU_push_tls_address for the location
of a thread-local.  However, it seems to me that the standard
DW_OP_form_tls_address is equivalent but slightly better due to being
standard.  Note though that gdb generally doesn't implement the standard
form, so that would have to be done first.
See https://sourceware.org/bugzilla/show_bug.cgi?id=11616
>From gcc-bugs-return-535182-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 04:31:32 2016
Return-Path: <gcc-bugs-return-535182-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 78014 invoked by alias); 22 Aug 2016 04:31:32 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 77997 invoked by uid 89); 22 Aug 2016 04:31:31 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 04:31:21 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/69569] unnecessary branches on an if followed by a switch
Date: Mon, 22 Aug 2016 04:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-69569-4-gHOOwQ9MLq@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69569-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69569-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02518.txt.bz2
Content-length: 245

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69569

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
I have a simple patch which handles the code in comment #0 but it does not
handle the code that is actually is in binutils.
>From gcc-bugs-return-535183-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 04:33:58 2016
Return-Path: <gcc-bugs-return-535183-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 112332 invoked by alias); 22 Aug 2016 04:33:58 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 112317 invoked by uid 89); 22 Aug 2016 04:33:57 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=sk:cfi_def, 5411, bs, bS
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 04:33:46 +0000
From: "rbd at debian dot org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77316] New: Unnecessary template copy constructor weak symbol emitted in wrong section
Date: Mon, 22 Aug 2016 04:33:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.4.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rbd at debian dot org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77316-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02519.txt.bz2
Content-length: 11448

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77316

            Bug ID: 77316
           Summary: Unnecessary template copy constructor weak symbol
                    emitted in wrong section
           Product: gcc
           Version: 5.4.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: rbd at debian dot org
  Target Milestone: ---

The example below is extracted via creduce from a large program I have.  The
program runs incorrectly when build with gcc 5.4.1 because one object file
contains a constructor (roughly) std::vector<...allocator>( allocator const& )
but also a symbol for std::vector<...allocator>( std::vector const& )that
points to the same function.  When the full program is run, a call to the
vector copy constructor ends up linked to the wrong function because the
dynamic linker happens to choose the symbol that really points to
std::vector<...allocator>( allocator const& ).  This makes code that should
copy a vector end up constructing an empty one instead using a bogus allocator.

I believe this small code shows the same failure:

$ cat b.cpp
template <typename, typename _Alloc> class vector {
public:
  vector();
  vector(const _Alloc &) {}
  void operator=(vector) { vector a(get_allocator()); }
  _Alloc get_allocator();
};

struct inherent;
template <typename, typename = inherent, typename = decltype(nullptr)>
struct allocator_affinity {};

typedef vector<void *, allocator_affinity<void *>> addr_list_t;

struct A {
  A(int) {}
  addr_list_t req_start_h_0;
  void req_start() { req_start_h_0 = addr_list_t(); }
};

int b;
void fn1() {
  A a(b);
  a.req_start();
}

$ g++-5 -v -std=c++11 -o b.o -c b.cpp
Using built-in specs.
COLLECT_GCC=g++-5
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Debian 5.4.1-1'
--with-bugurl=file:///usr/share/doc/gcc-5/README.Bugs
--enable-languages=c,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr
--program-suffix=-5 --enable-shared --enable-linker-build-id
--libexecdir=/usr/lib --without-included-gettext --enable-threads=posix
--libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu
--enable-libstdcxx-debug --enable-libstdcxx-time=yes
--with-default-libstdcxx-abi=new --enable-gnu-unique-object
--disable-vtable-verify --enable-libmpx --enable-plugin --with-system-zlib
--disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo
--with-java-home=/usr/lib/jvm/java-1.5.0-gcj-5-amd64/jre --enable-java-home
--with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-5-amd64
--with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-5-amd64
--with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar
--enable-objc-gc --enable-multiarch --with-arch-32=i686 --with-abi=m64
--with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic
--enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu
--target=x86_64-linux-gnu
Thread model: posix
gcc version 5.4.1 20160803 (Debian 5.4.1-1) 
COLLECT_GCC_OPTIONS='-v' '-std=c++11' '-o' 'b.o' '-c' '-shared-libgcc'
'-mtune=generic' '-march=x86-64'
 /usr/lib/gcc/x86_64-linux-gnu/5/cc1plus -quiet -v -imultiarch x86_64-linux-gnu
-D_GNU_SOURCE b.cpp -quiet -dumpbase b.cpp -mtune=generic -march=x86-64
-auxbase-strip b.o -std=c++11 -version -o /tmp/ccmGdTt0.s
GNU C++11 (Debian 5.4.1-1) version 5.4.1 20160803 (x86_64-linux-gnu)
        compiled by GNU C version 5.4.1 20160803, GMP version 6.1.1, MPFR
version 3.1.4-p2, MPC version 1.0.3
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/5"
ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"
ignoring nonexistent directory
"/usr/lib/gcc/x86_64-linux-gnu/5/../../../../x86_64-linux-gnu/include"
#include "..." search starts here:
#include <...> search starts here:
 /usr/include/c++/5
 /usr/include/x86_64-linux-gnu/c++/5
 /usr/include/c++/5/backward
 /usr/lib/gcc/x86_64-linux-gnu/5/include
 /usr/local/include
 /usr/lib/gcc/x86_64-linux-gnu/5/include-fixed
 /usr/include/x86_64-linux-gnu
 /usr/include
End of search list.
GNU C++11 (Debian 5.4.1-1) version 5.4.1 20160803 (x86_64-linux-gnu)
        compiled by GNU C version 5.4.1 20160803, GMP version 6.1.1, MPFR
version 3.1.4-p2, MPC version 1.0.3
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
Compiler executable checksum: f5ac0328c94ad0bc615d4ccef0bcd937
COLLECT_GCC_OPTIONS='-v' '-std=c++11' '-o' 'b.o' '-c' '-shared-libgcc'
'-mtune=generic' '-march=x86-64'
 as -v --64 -o b.o /tmp/ccmGdTt0.s
GNU assembler version 2.26.1 (x86_64-linux-gnu) using BFD version (GNU Binutils
for Debian) 2.26.1
COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/
LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../:/lib/:/usr/lib/
COLLECT_GCC_OPTIONS='-v' '-std=c++11' '-o' 'b.o' '-c' '-shared-libgcc'
'-mtune=generic' '-march=x86-64'

$ objdump -C -t b.o

b.o:     file format elf64-x86-64

SYMBOL TABLE:
0000000000000000 l    df *ABS*  0000000000000000 b.cpp
0000000000000000 l    d  .text  0000000000000000 .text
0000000000000000 l    d  .data  0000000000000000 .data
0000000000000000 l    d  .bss   0000000000000000 .bss
0000000000000000 l    d  .text._ZN1AC2Ei        0000000000000000
.text._ZN1AC2Ei
0000000000000000 l    d  .text._ZN1A9req_startEv        0000000000000000
.text._ZN1A9req_startEv
0000000000000000 l    d 
.text._ZN6vectorIPv18allocator_affinityIS0_8inherentDnEEaSES4_ 0000000000000000
.text._ZN6vectorIPv18allocator_affinityIS0_8inherentDnEEaSES4_
0000000000000000 l    d 
.text._ZN6vectorIPv18allocator_affinityIS0_8inherentDnEEC2ERKS3_      
0000000000000000
.text._ZN6vectorIPv18allocator_affinityIS0_8inherentDnEEC2ERKS3_
0000000000000000 l    d  .note.GNU-stack        0000000000000000
.note.GNU-stack
0000000000000000 l    d  .eh_frame      0000000000000000 .eh_frame
0000000000000000 l       .group 0000000000000000 A::A(int)
0000000000000000 l       .group 0000000000000000 vector<void*,
allocator_affinity<void*, inherent, decltype(nullptr)>
>::vector(allocator_affinity<void*, inherent, decltype(nullptr)> const&)
0000000000000000 l    d  .comment       0000000000000000 .comment
0000000000000000 l    d  .group 0000000000000000 .group
0000000000000000 l    d  .group 0000000000000000 .group
0000000000000000 l    d  .group 0000000000000000 .group
0000000000000000 l    d  .group 0000000000000000 .group
0000000000000000  w    F .text._ZN1AC2Ei        000000000000001e A::A(int)
0000000000000000         *UND*  0000000000000000 vector<void*,
allocator_affinity<void*, inherent, decltype(nullptr)> >::vector()
0000000000000000  w    F .text._ZN1AC2Ei        000000000000001e A::A(int)
0000000000000000  w    F .text._ZN1A9req_startEv        0000000000000035
A::req_start()
0000000000000000  w    F
.text._ZN6vectorIPv18allocator_affinityIS0_8inherentDnEEaSES4_ 000000000000002e
vector<void*, allocator_affinity<void*, inherent, decltype(nullptr)>
>::operator=(vector<void*, allocator_affinity<void*, inherent,
decltype(nullptr)> >)
0000000000000000 g     O .bss   0000000000000004 b
0000000000000000 g     F .text  000000000000002b fn1()
0000000000000000         *UND*  0000000000000000 vector<void*,
allocator_affinity<void*, inherent, decltype(nullptr)> >::get_allocator()
0000000000000000  w    F
.text._ZN6vectorIPv18allocator_affinityIS0_8inherentDnEEC2ERKS3_      
000000000000000f vector<void*, allocator_affinity<void*, inherent,
decltype(nullptr)> >::vector(allocator_affinity<void*, inherent,
decltype(nullptr)> const&)
0000000000000000  w    F
.text._ZN6vectorIPv18allocator_affinityIS0_8inherentDnEEaSES4_ 000000000000002e
_ZN6vectorIPv18allocator_affinityIS0_8inherentDnEEaSES5_
0000000000000000  w    F
.text._ZN6vectorIPv18allocator_affinityIS0_8inherentDnEEC2ERKS3_      
000000000000000f vector<void*, allocator_affinity<void*, inherent,
decltype(nullptr)> >::vector(allocator_affinity<void*, inherent,
decltype(nullptr)> const&)
0000000000000000  w    F
.text._ZN6vectorIPv18allocator_affinityIS0_8inherentDnEEC2ERKS3_      
000000000000000f vector<void*, allocator_affinity<void*, inherent,
decltype(nullptr)> >::vector(vector<void*, allocator_affinity<void*, inherent,
decltype(nullptr)> > const&)
0000000000000000  w    F
.text._ZN6vectorIPv18allocator_affinityIS0_8inherentDnEEC2ERKS3_      
000000000000000f vector<void*, allocator_affinity<void*, inherent,
decltype(nullptr)> >::vector(vector<void*, allocator_affinity<void*, inherent,
decltype(nullptr)> > const&)

Notice that the last section,
.text._ZN6vectorIPv18allocator_affinityIS0_8inherentDnEEC2ERKS3 contains both
the constructors

    vector<void*, allocator_affinity<void*, inherent, decltype(nullptr)>
>::vector(allocator_affinity<void*, inherent, decltype(nullptr)> const&)
    vector<void*, allocator_affinity<void*, inherent, decltype(nullptr)>
>::vector(vector<void*, allocator_affinity<void*, inherent, decltype(nullptr)>
> const&)

pointing at the very same address.  I don't think there is any reason to create
the copy constructor at all - neither gcc 4.9 nor gcc 6.1 emit that symbol.

Also if I run "g++-5 -std=c++11 -o b.S -S b.cpp" to create assembly output, I
see

        .section       
.text._ZN6vectorIPv18allocator_affinityIS0_8inherentDnEEC2ERKS3_,"axG",@progbits,_ZN6vectorIPv18allocator_affinityIS0_8inherentDnEEC5ERKS3_,comdat
        .align 2
        .weak   _ZN6vectorIPv18allocator_affinityIS0_8inherentDnEEC2ERKS3_
        .type   _ZN6vectorIPv18allocator_affinityIS0_8inherentDnEEC2ERKS3_,
@function
_ZN6vectorIPv18allocator_affinityIS0_8inherentDnEEC2ERKS3_:
.LFB9:
        .cfi_startproc
        pushq   %rbp
        .cfi_def_cfa_offset 16
        .cfi_offset 6, -16
        movq    %rsp, %rbp
        .cfi_def_cfa_register 6
        movq    %rdi, -8(%rbp)
        movq    %rsi, -16(%rbp)
        nop
        popq    %rbp
        .cfi_def_cfa 7, 8
        ret
        .cfi_endproc
.LFE9:
        .size   _ZN6vectorIPv18allocator_affinityIS0_8inherentDnEEC2ERKS3_,
.-_ZN6vectorIPv18allocator_affinityIS0_8inherentDnEEC2ERKS3_
        .weak   _ZN6vectorIPv18allocator_affinityIS0_8inherentDnEEC2ERKS4_
        .set   
_ZN6vectorIPv18allocator_affinityIS0_8inherentDnEEC2ERKS4_,_ZN6vectorIPv18allocator_affinityIS0_8inherentDnEEC2ERKS3_
        .weak   _ZN6vectorIPv18allocator_affinityIS0_8inherentDnEEC1ERKS3_
        .set   
_ZN6vectorIPv18allocator_affinityIS0_8inherentDnEEC1ERKS3_,_ZN6vectorIPv18allocator_affinityIS0_8inherentDnEEC2ERKS3_
        .weak   _ZN6vectorIPv18allocator_affinityIS0_8inherentDnEEC1ERKS4_
        .set   
_ZN6vectorIPv18allocator_affinityIS0_8inherentDnEEC1ERKS4_,_ZN6vectorIPv18allocator_affinityIS0_8inherentDnEEC1ERKS3_

so it seems the compiler is intentionally creating this strange alias...
>From gcc-bugs-return-535184-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 04:50:48 2016
Return-Path: <gcc-bugs-return-535184-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 6720 invoked by alias); 22 Aug 2016 04:50:47 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 6706 invoked by uid 89); 22 Aug 2016 04:50:47 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 04:50:46 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77316] Unnecessary template copy constructor weak symbol emitted in wrong section
Date: Mon, 22 Aug 2016 04:50:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.4.1
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords cf_known_to_work
Message-ID: <bug-77316-4-u0TsXkhVCc@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77316-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77316-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02520.txt.bz2
Content-length: 456

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77316

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |wrong-code
      Known to work|                            |6.1.0

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
This works correctingly in GCC 6.
>From gcc-bugs-return-535185-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 04:55:51 2016
Return-Path: <gcc-bugs-return-535185-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 11876 invoked by alias); 22 Aug 2016 04:55:50 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 11855 invoked by uid 89); 22 Aug 2016 04:55:48 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 04:55:38 +0000
From: "rbd at debian dot org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77316] Unnecessary template copy constructor weak symbol emitted in wrong section
Date: Mon, 22 Aug 2016 04:55:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.4.1
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rbd at debian dot org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77316-4-2tWP8Lt2sk@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77316-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77316-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02521.txt.bz2
Content-length: 262

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77316

--- Comment #2 from Roland Dreier <rbd at debian dot org> ---
Yes, I hid that in the middle of the wall of text in my report - I only see
this with gcc 5.4.  It works as expected with gcc 6 and also gcc 4.9.
>From gcc-bugs-return-535186-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 05:10:09 2016
Return-Path: <gcc-bugs-return-535186-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 24039 invoked by alias); 22 Aug 2016 05:10:08 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 24019 invoked by uid 89); 22 Aug 2016 05:10:07 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 05:09:57 +0000
From: "rbd at debian dot org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77316] Unnecessary template copy constructor weak symbol emitted in wrong section
Date: Mon, 22 Aug 2016 05:10:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.4.1
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rbd at debian dot org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77316-4-DqOGZovnGQ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77316-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77316-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02522.txt.bz2
Content-length: 3578

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77316

--- Comment #3 from Roland Dreier <rbd at debian dot org> ---
I managed to simplify the test case a bit by hand.  The significant thing seems
to be "decltype(nullptr)" - if I change that to, say, void*, then I don't get
the spurious symbol.

$ cat b.cpp
template <typename _Alloc> class vector {
public:
  vector();
  vector(const _Alloc &) {}
  void operator=(vector) { vector a(get_allocator()); }
  _Alloc get_allocator();
};

template <typename>
struct allocator_affinity {};

typedef vector<allocator_affinity<decltype(nullptr)>> addr_list_t;

addr_list_t ad;
void startt() {
  ad = addr_list_t();
}

$ g++-5 -std=c++11 -o b.o -c b.cpp

$ objdump -C -t b.o

b.o:     file format elf64-x86-64

SYMBOL TABLE:
0000000000000000 l    df *ABS*  0000000000000000 b.cpp
0000000000000000 l    d  .text  0000000000000000 .text
0000000000000000 l    d  .data  0000000000000000 .data
0000000000000000 l    d  .bss   0000000000000000 .bss
0000000000000000 l    d  .text._ZN6vectorI18allocator_affinityIDnEEaSES2_      
0000000000000000 .text._ZN6vectorI18allocator_affinityIDnEEaSES2_
0000000000000000 l    d  .text._ZN6vectorI18allocator_affinityIDnEEC2ERKS1_    
0000000000000000 .text._ZN6vectorI18allocator_affinityIDnEEC2ERKS1_
000000000000002f l     F .text  000000000000002a
__static_initialization_and_destruction_0(int, int)
0000000000000059 l     F .text  0000000000000015 _GLOBAL__sub_I_ad
0000000000000000 l    d  .init_array    0000000000000000 .init_array
0000000000000000 l    d  .note.GNU-stack        0000000000000000
.note.GNU-stack
0000000000000000 l    d  .eh_frame      0000000000000000 .eh_frame
0000000000000000 l       .group 0000000000000000
vector<allocator_affinity<decltype(nullptr)>
>::vector(allocator_affinity<decltype(nullptr)> const&)
0000000000000000 l    d  .comment       0000000000000000 .comment
0000000000000000 l    d  .group 0000000000000000 .group
0000000000000000 l    d  .group 0000000000000000 .group
0000000000000000 g     O .bss   0000000000000001 ad
0000000000000000 g     F .text  000000000000002f startt()
0000000000000000         *UND*  0000000000000000
vector<allocator_affinity<decltype(nullptr)> >::vector()
0000000000000000  w    F .text._ZN6vectorI18allocator_affinityIDnEEaSES2_      
000000000000002e vector<allocator_affinity<decltype(nullptr)>
>::operator=(vector<allocator_affinity<decltype(nullptr)> >)
0000000000000000         *UND*  0000000000000000
vector<allocator_affinity<decltype(nullptr)> >::get_allocator()
0000000000000000  w    F .text._ZN6vectorI18allocator_affinityIDnEEC2ERKS1_    
000000000000000f vector<allocator_affinity<decltype(nullptr)>
>::vector(allocator_affinity<decltype(nullptr)> const&)
0000000000000000  w    F .text._ZN6vectorI18allocator_affinityIDnEEaSES2_      
000000000000002e _ZN6vectorI18allocator_affinityIDnEEaSES3_
0000000000000000  w    F .text._ZN6vectorI18allocator_affinityIDnEEC2ERKS1_    
000000000000000f vector<allocator_affinity<decltype(nullptr)>
>::vector(allocator_affinity<decltype(nullptr)> const&)
0000000000000000  w    F .text._ZN6vectorI18allocator_affinityIDnEEC2ERKS1_    
000000000000000f vector<allocator_affinity<decltype(nullptr)>
>::vector(vector<allocator_affinity<decltype(nullptr)> > const&)
0000000000000000  w    F .text._ZN6vectorI18allocator_affinityIDnEEC2ERKS1_    
000000000000000f vector<allocator_affinity<decltype(nullptr)>
>::vector(vector<allocator_affinity<decltype(nullptr)> > const&)
>From gcc-bugs-return-535187-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 06:09:33 2016
Return-Path: <gcc-bugs-return-535187-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 121686 invoked by alias); 22 Aug 2016 06:09:33 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 121672 invoked by uid 89); 22 Aug 2016 06:09:32 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.3.2 spammy=l11, L11, ldr, 1580
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 06:09:22 +0000
From: "bernd.edlinger at hotmail dot de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77308] surprisingly large stack usage for sha512 on arm
Date: Mon, 22 Aug 2016 06:09:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: bernd.edlinger at hotmail dot de
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77308-4-eGhk2ORGuP@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77308-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77308-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02523.txt.bz2
Content-length: 773

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77308

--- Comment #7 from Bernd Edlinger <bernd.edlinger at hotmail dot de> ---
even more surprisingly is that:

While thumb2 code (-march=armv6t2 -mthumb) has about the same stack size
as arm code (-marm), thumb1 code has only 1588 bytes stack, and it does
not change with -fno-schedule-insns nor with the patch above:

arm-unknown-eabi-gcc -O3 -march=armv6 -msoft-float -mthumb -S sha512.c

=>

sha512_block_data_order:
        push    {r4, r5, r6, r7, lr}
        mov     r6, r10
        mov     r4, r8
        mov     r7, fp
        mov     r5, r9
        ldr     r3, .L11
        push    {r4, r5, r6, r7}
        ldr     r4, .L11+4
        add     sp, sp, r4

...

.L11:
        .word   1580
        .word   -1588
>From gcc-bugs-return-535188-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 06:59:04 2016
Return-Path: <gcc-bugs-return-535188-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 82891 invoked by alias); 22 Aug 2016 06:59:04 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 82880 invoked by uid 89); 22 Aug 2016 06:59:03 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:209
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 06:58:53 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/69494] Optimizer eliminates assignment to volatile subobject
Date: Mon, 22 Aug 2016 06:59:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.3.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-69494-4-KQKhUvNafM@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69494-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69494-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02524.txt.bz2
Content-length: 141

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69494

--- Comment #3 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Related to PR 47409
>From gcc-bugs-return-535189-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 07:00:52 2016
Return-Path: <gcc-bugs-return-535189-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 102162 invoked by alias); 22 Aug 2016 07:00:52 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 101496 invoked by uid 89); 22 Aug 2016 07:00:51 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 07:00:41 +0000
From: "schwab@linux-m68k.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77313] Lambda that deletes itself accesses freed memory, but only if class is templated
Date: Mon, 22 Aug 2016 07:00:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: schwab@linux-m68k.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: DUPLICATE
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-77313-4-ccWYBJNrnN@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77313-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77313-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02525.txt.bz2
Content-length: 482

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77313

Andreas Schwab <schwab@linux-m68k.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |DUPLICATE

--- Comment #1 from Andreas Schwab <schwab@linux-m68k.org> ---
dup

*** This bug has been marked as a duplicate of bug 77312 ***
>From gcc-bugs-return-535191-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 07:01:24 2016
Return-Path: <gcc-bugs-return-535191-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 103472 invoked by alias); 22 Aug 2016 07:01:24 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 103441 invoked by uid 89); 22 Aug 2016 07:01:22 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 07:01:12 +0000
From: "schwab@linux-m68k.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77312] Lambda that deletes itself accesses freed memory, but only if class is templated
Date: Mon, 22 Aug 2016 07:01:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: schwab@linux-m68k.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77312-4-z8coaLTyge@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77312-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77312-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02527.txt.bz2
Content-length: 179

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77312

--- Comment #1 from Andreas Schwab <schwab@linux-m68k.org> ---
*** Bug 77313 has been marked as a duplicate of this bug. ***
>From gcc-bugs-return-535190-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 07:01:24 2016
Return-Path: <gcc-bugs-return-535190-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 103462 invoked by alias); 22 Aug 2016 07:01:23 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 103439 invoked by uid 89); 22 Aug 2016 07:01:22 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 07:01:12 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/69494] Optimizer eliminates assignment to volatile subobject
Date: Mon, 22 Aug 2016 07:01:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.3.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-69494-4-zLHYpV5Qnh@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69494-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69494-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02526.txt.bz2
Content-length: 147

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69494

--- Comment #4 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Related to PR 66268 also.
>From gcc-bugs-return-535192-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 07:10:13 2016
Return-Path: <gcc-bugs-return-535192-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 120174 invoked by alias); 22 Aug 2016 07:10:12 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 120155 invoked by uid 89); 22 Aug 2016 07:10:11 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 07:10:01 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77312] Lambda that deletes itself accesses freed memory, but only if class is templated
Date: Mon, 22 Aug 2016 07:10:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77312-4-VBxoRzsIoy@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77312-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77312-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02528.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77312

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
I don't see why you think this is valid thing to do.
You are in a function which calls delete on the object you are in currently. 
That seems like this code is broken.
>From gcc-bugs-return-535193-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 07:27:25 2016
Return-Path: <gcc-bugs-return-535193-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 72731 invoked by alias); 22 Aug 2016 07:27:24 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 72718 invoked by uid 89); 22 Aug 2016 07:27:24 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 07:27:14 +0000
From: "nickc at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/50461] mpfr.h found in mpfr-3.1.0/src instead of mpfr-3.0.1/. as previously
Date: Mon, 22 Aug 2016 07:27:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 4.6.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: nickc at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cc resolution
Message-ID: <bug-50461-4-KcGmhM3lCu@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-50461-4@http.gcc.gnu.org/bugzilla/>
References: <bug-50461-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02529.txt.bz2
Content-length: 506

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=50461

Nick Clifton <nickc at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |nickc at gcc dot gnu.org
         Resolution|---                         |FIXED

--- Comment #15 from Nick Clifton <nickc at gcc dot gnu.org> ---
Patch checked in
>From gcc-bugs-return-535195-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 07:36:46 2016
Return-Path: <gcc-bugs-return-535195-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 90763 invoked by alias); 22 Aug 2016 07:36:45 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 90746 invoked by uid 89); 22 Aug 2016 07:36:45 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:523
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 07:36:35 +0000
From: "edlinger at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/52952] Wformat location info is bad (wrong column number)
Date: Mon, 22 Aug 2016 07:36:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: edlinger at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: dmalcolm at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-52952-4-fjNKpiEgDq@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-52952-4@http.gcc.gnu.org/bugzilla/>
References: <bug-52952-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02531.txt.bz2
Content-length: 491

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=52952

--- Comment #49 from Bernd Edlinger <edlinger at gcc dot gnu.org> ---
Author: edlinger
Date: Mon Aug 22 07:34:34 2016
New Revision: 239649

URL: https://gcc.gnu.org/viewcvs?rev=239649&root=gcc&view=rev
Log:
2016-08-22  Bernd Edlinger  <bernd.edlinger@hotmail.de>

        PR c/52952
        * gcc.dg/cpp/pr66415-1.c: Fix sporadic failure.

Modified:
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/testsuite/gcc.dg/cpp/pr66415-1.c
>From gcc-bugs-return-535194-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 07:36:36 2016
Return-Path: <gcc-bugs-return-535194-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 90024 invoked by alias); 22 Aug 2016 07:36:35 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 89985 invoked by uid 89); 22 Aug 2016 07:36:34 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:2184
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 07:36:33 +0000
From: "vries at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug testsuite/77317] New: x86_64 --target_board=''unix/ unix/-m32'' parallel testrun gives inconsistent results in gcc.dg/vect
Date: Mon, 22 Aug 2016 07:36:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: testsuite
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: vries at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77317-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02530.txt.bz2
Content-length: 2318

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77317

            Bug ID: 77317
           Summary: x86_64 --target_board=''unix/ unix/-m32'' parallel
                    testrun gives inconsistent results in gcc.dg/vect
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: testsuite
          Assignee: unassigned at gcc dot gnu.org
          Reporter: vries at gcc dot gnu.org
  Target Milestone: ---

I build a reference build of version r239639, and then build a patch for
PR71602 on top for that version, and tested both builds for x86_64 with
--target_board='unix/ unix/-m32' and -j12. 

I found these differences between the two test runs (which do not seem likely
to be caused by the va_arg/va_list related patch):
... 
+PASS: gcc.dg/vect/no-vfa-vect-dv-2.c scan-tree-dump-times vect "accesses have
the same alignment." 2
+PASS: gcc.dg/vect/vect-6-big-array.c -flto -ffat-lto-objects 
scan-tree-dump-times vect "Vectorizing an unaligned access" 0
-PASS: gcc.dg/vect/vect-6-big-array.c scan-tree-dump-times vect "Vectorizing an
unaligned access" 0
+PASS: gcc.dg/vect/vect-6.c -flto -ffat-lto-objects  scan-tree-dump-times vect
"Vectorizing an unaligned access" 0
-PASS: gcc.dg/vect/vect-6.c scan-tree-dump-times vect "Vectorizing an unaligned
access" 0
-PASS: gcc.dg/vect/vect-91.c scan-tree-dump-times vect "accesses have the same
alignment." 3
...

The check that appears for no-vfa-vect-dv-2.c is:
...
/* { dg-final { scan-tree-dump-times "accesses have the same alignment." 2
"vect" { target { { vect_aligned_arrays } && {! vect_sizes_32B_16B} } } } } */
...

check_effective_target_vect_aligned_arrays caches the result:
...
        set et_vect_aligned_arrays_saved($et_index) 0
        if { ([istarget x86_64-*-*] || [istarget i?86-*-*]) } {
            if { ([is-effective-target lp64]
                  && ( ![check_avx_available]
                     || [check_prefer_avx128])) } {
                 set et_vect_aligned_arrays_saved($et_index) 1
            }
        }
...

lp64 is not the same between -m32 and -m64 runs, and should not be cached
between them.

This ( https://gcc.gnu.org/ml/gcc-patches/2016-08/msg01099.html ) mentions the
same failure for no-vfa-vect-dv-2.c.
>From gcc-bugs-return-535197-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 07:38:32 2016
Return-Path: <gcc-bugs-return-535197-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 93489 invoked by alias); 22 Aug 2016 07:38:32 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 93458 invoked by uid 89); 22 Aug 2016 07:38:31 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:280
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 07:38:20 +0000
From: "nickc at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/50461] mpfr.h found in mpfr-3.1.0/src instead of mpfr-3.0.1/. as previously
Date: Mon, 22 Aug 2016 07:38:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 4.6.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: nickc at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-50461-4-xhOBP3Dlm0@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-50461-4@http.gcc.gnu.org/bugzilla/>
References: <bug-50461-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02533.txt.bz2
Content-length: 191

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=50461

--- Comment #16 from Nick Clifton <nickc at gcc dot gnu.org> ---
Oops - forgot to mention - the patch is present in gcc 4.8.0 and later.
>From gcc-bugs-return-535196-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 07:38:21 2016
Return-Path: <gcc-bugs-return-535196-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 92738 invoked by alias); 22 Aug 2016 07:38:21 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 92700 invoked by uid 89); 22 Aug 2016 07:38:17 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 07:38:07 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/62171] restrict pointer to struct with restrict pointers parm doesn't prevent aliases
Date: Mon, 22 Aug 2016 07:38:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 5.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-62171-4-fEJBK433mK@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-62171-4@http.gcc.gnu.org/bugzilla/>
References: <bug-62171-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02532.txt.bz2
Content-length: 544

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=62171

--- Comment #19 from Richard Biener <rguenth at gcc dot gnu.org> ---
Author: rguenth
Date: Mon Aug 22 07:37:21 2016
New Revision: 239650

URL: https://gcc.gnu.org/viewcvs?rev=239650&root=gcc&view=rev
Log:
2016-08-22  Richard Biener  <rguenther@suse.de>

        PR tree-optimization/62171
        * gcc.dg/vect/pr62171.c: Remove default vector testsuite flags.

Modified:
    branches/gcc-6-branch/gcc/testsuite/ChangeLog
    branches/gcc-6-branch/gcc/testsuite/gcc.dg/vect/pr62171.c
>From gcc-bugs-return-535199-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 07:39:26 2016
Return-Path: <gcc-bugs-return-535199-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 95246 invoked by alias); 22 Aug 2016 07:39:26 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 95227 invoked by uid 89); 22 Aug 2016 07:39:25 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 07:39:17 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug debug/77315] emit DW_OP_form_tls_address
Date: Mon, 22 Aug 2016 07:39:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: debug
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_severity
Message-ID: <bug-77315-4-3UHTFnXZcz@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77315-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77315-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02535.txt.bz2
Content-length: 301

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77315

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|normal                      |enhancement
>From gcc-bugs-return-535198-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 07:39:05 2016
Return-Path: <gcc-bugs-return-535198-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 94408 invoked by alias); 22 Aug 2016 07:39:05 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 94387 invoked by uid 89); 22 Aug 2016 07:39:04 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=5.5
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 07:38:56 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77316] [5 Regression] Unnecessary template copy constructor weak symbol emitted in wrong section
Date: Mon, 22 Aug 2016 07:39:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.4.1
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cf_known_to_work target_milestone short_desc
Message-ID: <bug-77316-4-KhnDMi3Wb5@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77316-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77316-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02534.txt.bz2
Content-length: 634

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77316

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
      Known to work|                            |4.9.4
   Target Milestone|---                         |5.5
            Summary|Unnecessary template copy   |[5 Regression] Unnecessary
                   |constructor weak symbol     |template copy constructor
                   |emitted in wrong section    |weak symbol emitted in
                   |                            |wrong section
>From gcc-bugs-return-535201-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 07:41:58 2016
Return-Path: <gcc-bugs-return-535201-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 99161 invoked by alias); 22 Aug 2016 07:41:58 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 99148 invoked by uid 89); 22 Aug 2016 07:41:57 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:199
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 07:41:47 +0000
From: "d.v.a at ngs dot ru" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/60936] [5/6/7 Regression] Binary code bloat with std::string
Date: Mon, 22 Aug 2016 07:41:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: d.v.a at ngs dot ru
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-60936-4-JMCiJaBewP@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-60936-4@http.gcc.gnu.org/bugzilla/>
References: <bug-60936-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02537.txt.bz2
Content-length: 125

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60936

--- Comment #19 from __vic <d.v.a at ngs dot ru> ---
No plans for 6.2?
>From gcc-bugs-return-535200-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 07:41:16 2016
Return-Path: <gcc-bugs-return-535200-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 98112 invoked by alias); 22 Aug 2016 07:41:16 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 98092 invoked by uid 89); 22 Aug 2016 07:41:15 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 07:41:05 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug lto/77305] [7 Regression] -fdump-tree-all and -flto causes ICE
Date: Mon, 22 Aug 2016 07:41:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: lto
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on assigned_to everconfirmed
Message-ID: <bug-77305-4-4XOBlqWyfn@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77305-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77305-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02536.txt.bz2
Content-length: 569

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77305

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |ASSIGNED
   Last reconfirmed|                            |2016-08-22
           Assignee|unassigned at gcc dot gnu.org      |rguenth at gcc dot gnu.org
     Ever confirmed|0                           |1

--- Comment #2 from Richard Biener <rguenth at gcc dot gnu.org> ---
Mine.
>From gcc-bugs-return-535202-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 07:43:33 2016
Return-Path: <gcc-bugs-return-535202-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 100611 invoked by alias); 22 Aug 2016 07:43:33 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 100598 invoked by uid 89); 22 Aug 2016 07:43:32 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=foot, 0.5, resistant, 92
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 07:43:22 +0000
From: "jb at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libfortran/52879] Pathological reseeding of PRNG generator genernates poor sequence
Date: Mon, 22 Aug 2016 07:43:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libfortran
X-Bugzilla-Version: 4.6.3
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jb at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-52879-4-qr4jGi1LzB@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-52879-4@http.gcc.gnu.org/bugzilla/>
References: <bug-52879-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02538.txt.bz2
Content-length: 1302

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=52879

--- Comment #5 from Janne Blomqvist <jb at gcc dot gnu.org> ---
To be honest, I'm not sure that this test program really tests anything
sensible. There is no rule in the secret black book of PRNG algorithm design,
nor in the Fortran standard, that generating a single value must touch all the
seed variables. That is, you cannot change one element of the seed array,
generate ONE random number, see that the generated number doesn't change, and
conclude that the PRNG is in some kind of pathological state.

One way to test whether the seed is pathological would be to follow section 9.2
in http://vigna.di.unimi.it/ftp/papers/xorshift.pdf . That is, generate a
stream of random numbers, doing a rolling average, and see how quickly the
average converges towards 0.5. If the seed isn't pathological, you should hover
around 0.5 from the start, if it's poor xorshift1024* should converge within a
few hundred iterations.

Now, since https://gcc.gnu.org/viewcvs/gcc?view=revision&revision=239613 the
PRNG should be a little more resistant poor seeds due to laziness or accident,
but there are of course still ways to generate poor seeds for someone
determined to shoot themselves in the foot (left as an exercise for the
reader).
>From gcc-bugs-return-535203-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 07:46:08 2016
Return-Path: <gcc-bugs-return-535203-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 112870 invoked by alias); 22 Aug 2016 07:46:07 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 112193 invoked by uid 89); 22 Aug 2016 07:46:07 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:203
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 07:45:56 +0000
From: "d.v.a at ngs dot ru" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ipa/44563] GCC uses a lot of RAM when compiling a large numbers of functions
Date: Mon, 22 Aug 2016 07:46:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ipa
X-Bugzilla-Version: 4.3.4
X-Bugzilla-Keywords: compile-time-hog, memory-hog
X-Bugzilla-Severity: normal
X-Bugzilla-Who: d.v.a at ngs dot ru
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: hubicka at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-44563-4-qVN0MQj4Bt@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-44563-4@http.gcc.gnu.org/bugzilla/>
References: <bug-44563-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02539.txt.bz2
Content-length: 123

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=44563

--- Comment #36 from __vic <d.v.a at ngs dot ru> ---
What about 6.2?
>From gcc-bugs-return-535204-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 07:50:00 2016
Return-Path: <gcc-bugs-return-535204-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 128364 invoked by alias); 22 Aug 2016 07:50:00 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 128339 invoked by uid 89); 22 Aug 2016 07:50:00 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 07:49:49 +0000
From: "rguenther at suse dot de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ipa/44563] GCC uses a lot of RAM when compiling a large numbers of functions
Date: Mon, 22 Aug 2016 07:50:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ipa
X-Bugzilla-Version: 4.3.4
X-Bugzilla-Keywords: compile-time-hog, memory-hog
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenther at suse dot de
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: hubicka at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-44563-4-dlp6aUxq7p@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-44563-4@http.gcc.gnu.org/bugzilla/>
References: <bug-44563-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02540.txt.bz2
Content-length: 373

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=44563

--- Comment #37 from rguenther at suse dot de <rguenther at suse dot de> ---
On Mon, 22 Aug 2016, d.v.a at ngs dot ru wrote:

> https://gcc.gnu.org/bugzilla/show_bug.cgi?id=44563
> 
> --- Comment #36 from __vic <d.v.a at ngs dot ru> ---
> What about 6.2?

No, maybe GCC 7 if Honza finally manages to get to this...
>From gcc-bugs-return-535205-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:04:17 2016
Return-Path: <gcc-bugs-return-535205-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 69994 invoked by alias); 22 Aug 2016 08:04:17 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 69984 invoked by uid 89); 22 Aug 2016 08:04:17 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=0.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00,KAM_INSURE autolearn=no version=3.3.2 spammyªrch64**
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:04:07 +0000
From: "schwab@linux-m68k.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/77318] New: [7 regression] FAIL: gfortran.dg/graphite/pr68279.f90   -O  (internal compiler error)
Date: Mon, 22 Aug 2016 08:04:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: schwab@linux-m68k.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter cc blocked target_milestone cf_gcctarget
Message-ID: <bug-77318-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02541.txt.bz2
Content-length: 2083

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77318

            Bug ID: 77318
           Summary: [7 regression] FAIL: gfortran.dg/graphite/pr68279.f90
                     -O  (internal compiler error)
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: tree-optimization
          Assignee: unassigned at gcc dot gnu.org
          Reporter: schwab@linux-m68k.org
                CC: rguenth at gcc dot gnu.org
            Blocks: 77290
  Target Milestone: ---
            Target: aarch64-*-*

Uncovered by r239607.  This is using ISL 0.16.

$ gcc/gfortran -B gcc/ -B aarch64-suse-linux/libgfortran/ -std=legacy
-floop-nest-optimize -O2 -S ../gcc/testsuite/gfortran.dg/graphite/pr68279.f90 
isl_aff.c:1001: position out of bounds
../gcc/testsuite/gfortran.dg/graphite/pr68279.f90:8:0:

   SUBROUTINE stack_binning(params_in, params_out, stack_size)

internal compiler error: Aborted
0xbb3e0f crash_signal
        ../../gcc/toplev.c:335
0x112a33b extract_affine_chrec
        ../../gcc/graphite-sese-to-poly.c:239
0x112a33b extract_affine
        ../../gcc/graphite-sese-to-poly.c:381
0x112a1d7 extract_affine
        ../../gcc/graphite-sese-to-poly.c:421
0x112a1d7 extract_affine
        ../../gcc/graphite-sese-to-poly.c:421
0x112b36b add_condition_to_pbb
        ../../gcc/graphite-sese-to-poly.c:458
0x112b36b add_conditions_to_domain
        ../../gcc/graphite-sese-to-poly.c:525
0x112b36b build_iteration_domains
        ../../gcc/graphite-sese-to-poly.c:1017
0x112b0fb build_iteration_domains
        ../../gcc/graphite-sese-to-poly.c:1040
0x112b957 build_poly_scop(scop*)
        ../../gcc/graphite-sese-to-poly.c:1364
0x1115abf graphite_transform_loops()
        ../../gcc/graphite.c:319
0x111600f graphite_transforms
        ../../gcc/graphite.c:356
0x111600f execute
        ../../gcc/graphite.c:433


Referenced Bugs:

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77290
[Bug 77290] [7 regression] test case gcc.dg/tree-ssa/pr71347.c fails starting
with r239565
>From gcc-bugs-return-535206-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:07:07 2016
Return-Path: <gcc-bugs-return-535206-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 77638 invoked by alias); 22 Aug 2016 08:07:06 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 77616 invoked by uid 89); 22 Aug 2016 08:07:05 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=robert, Robert
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:06:55 +0000
From: "robert.suchanek at imgtec dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug testsuite/77317] x86_64 --target_board=''unix/ unix/-m32'' parallel testrun gives inconsistent results in gcc.dg/vect
Date: Mon, 22 Aug 2016 08:07:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: testsuite
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: robert.suchanek at imgtec dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77317-4-GCb6sBB4L3@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77317-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77317-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02542.txt.bz2
Content-length: 654

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77317

--- Comment #1 from Robert Suchanek <robert.suchanek at imgtec dot com> ---
I see what the problem is.

During mechanical change I "fixed" global variable name(s) in this and in a few
other procedures that appeared that they should have cached the result.

A quick look at my patch reveals the following other procedures might also be
affected:

check_effective_target_vect_natural_alignment
check_effective_target_vector_alignment_reachable
check_effective_target_vector_alignment_reachable_for_64bit

I will post a patch to revert either one or all of the changes for the
concerned procedures.
>From gcc-bugs-return-535207-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:08:01 2016
Return-Path: <gcc-bugs-return-535207-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 79041 invoked by alias); 22 Aug 2016 08:08:01 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 79003 invoked by uid 89); 22 Aug 2016 08:07:59 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:503
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:07:49 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/70689] [6 Regression] ICE on valid code at -O1 in 32-bit mode on x86_64-linux-gnu in curr_insn_transform, at lra-constraints.c:3564
Date: Mon, 22 Aug 2016 08:08:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: ice-on-valid-code, ra
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-70689-4-NcFAtZLLle@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70689-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70689-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02543.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70689

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #5 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535209-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:08:55 2016
Return-Path: <gcc-bugs-return-535209-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 80222 invoked by alias); 22 Aug 2016 08:08:54 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 80190 invoked by uid 89); 22 Aug 2016 08:08:53 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:08:43 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/70689] [6 Regression] ICE on valid code at -O1 in 32-bit mode on x86_64-linux-gnu in curr_insn_transform, at lra-constraints.c:3564
Date: Mon, 22 Aug 2016 08:08:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: ice-on-valid-code, ra
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-70689-4-8N2GkGoDQK@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70689-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70689-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02545.txt.bz2
Content-length: 541

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70689

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #5 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.

--- Comment #6 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535208-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:08:54 2016
Return-Path: <gcc-bugs-return-535208-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 80212 invoked by alias); 22 Aug 2016 08:08:54 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 80189 invoked by uid 89); 22 Aug 2016 08:08:53 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:08:43 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71020] [6 Regression] SSA corruption: Unable to coalesce ssa_names 2 and 13 which are marked as MUST COALESCE.
Date: Mon, 22 Aug 2016 08:08:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: rsandifo at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-71020-4-gK0rE9Jv95@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71020-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71020-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02544.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71020

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #6 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535212-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:09:47 2016
Return-Path: <gcc-bugs-return-535212-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 84960 invoked by alias); 22 Aug 2016 08:09:47 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 84390 invoked by uid 89); 22 Aug 2016 08:09:45 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:09:35 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71020] [6 Regression] SSA corruption: Unable to coalesce ssa_names 2 and 13 which are marked as MUST COALESCE.
Date: Mon, 22 Aug 2016 08:09:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: rsandifo at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71020-4-iZsGjm6p4P@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71020-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71020-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02548.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71020

--- Comment #7 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535210-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:09:25 2016
Return-Path: <gcc-bugs-return-535210-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 82015 invoked by alias); 22 Aug 2016 08:09:25 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 81996 invoked by uid 89); 22 Aug 2016 08:09:24 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:09:14 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/74563] [6/7 regression] Classic MIPS16 (non-MIPS16e) function return broken
Date: Mon, 22 Aug 2016 08:09:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: major
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-74563-4-WSxjVk3Asm@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-74563-4@http.gcc.gnu.org/bugzilla/>
References: <bug-74563-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02546.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74563

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #1 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535211-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:09:47 2016
Return-Path: <gcc-bugs-return-535211-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 84862 invoked by alias); 22 Aug 2016 08:09:47 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 84398 invoked by uid 89); 22 Aug 2016 08:09:45 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:09:36 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71824] [6/7 Regression] ICE when compiling libiberty with Graphite loop optimizations
Date: Mon, 22 Aug 2016 08:09:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-71824-4-6PxwMFdJrs@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71824-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71824-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02547.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71824

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #3 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535214-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:10:27 2016
Return-Path: <gcc-bugs-return-535214-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 106238 invoked by alias); 22 Aug 2016 08:10:26 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 95429 invoked by uid 89); 22 Aug 2016 08:10:18 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:263
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:10:08 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/74563] [6/7 regression] Classic MIPS16 (non-MIPS16e) function return broken
Date: Mon, 22 Aug 2016 08:10:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: major
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-74563-4-QUaB3mSFUu@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-74563-4@http.gcc.gnu.org/bugzilla/>
References: <bug-74563-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02549.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74563

--- Comment #2 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535213-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:09:58 2016
Return-Path: <gcc-bugs-return-535213-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 88353 invoked by alias); 22 Aug 2016 08:09:57 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 88122 invoked by uid 89); 22 Aug 2016 08:09:57 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:09:46 +0000
From: "vries at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/71602] [6/7 regression] ICE on __builtin_va_arg in build_va_arg, at c-family/c-common.c:5810
Date: Mon, 22 Aug 2016 08:10:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-invalid-code, patch
X-Bugzilla-Severity: normal
X-Bugzilla-Who: vries at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: attachments.created
Message-ID: <bug-71602-4-sALRQv1TGt@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71602-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71602-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02550.txt.bz2
Content-length: 498

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71602

--- Comment #10 from vries at gcc dot gnu.org ---
Created attachment 39482
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39482&action=edit
alternate approach patch

Alternate approach patch, fixing the problem by making canonical_va_list_type
more strict, as suggested at
https://gcc.gnu.org/ml/gcc-patches/2016-06/msg01709.html .

Passes x86_64 m64/m32 bootstrap and reg-test.

Todo: cleanup patch, add changelog entry and submit
>From gcc-bugs-return-535215-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:10:43 2016
Return-Path: <gcc-bugs-return-535215-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 113661 invoked by alias); 22 Aug 2016 08:10:42 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 113629 invoked by uid 89); 22 Aug 2016 08:10:41 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:10:31 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71824] [6/7 Regression] ICE when compiling libiberty with Graphite loop optimizations
Date: Mon, 22 Aug 2016 08:10:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71824-4-vMpj8EPbed@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71824-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71824-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02551.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71824

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535217-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:11:53 2016
Return-Path: <gcc-bugs-return-535217-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 115913 invoked by alias); 22 Aug 2016 08:11:52 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 115885 invoked by uid 89); 22 Aug 2016 08:11:51 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:450
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:11:41 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug go/70597] [6/7 Regression] cmd/go: deduplicate gccgo afiles by package path, not *Package
Date: Mon, 22 Aug 2016 08:11:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: go
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: ian at airs dot com
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-70597-4-3UX85WFYk3@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70597-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70597-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02553.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70597

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #2 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535216-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:11:17 2016
Return-Path: <gcc-bugs-return-535216-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 114650 invoked by alias); 22 Aug 2016 08:11:17 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 114633 invoked by uid 89); 22 Aug 2016 08:11:16 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:415
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:11:07 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/70768] [6/7 Regression] Increased compilation time
Date: Mon, 22 Aug 2016 08:11:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: compile-time-hog, memory-hog
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: REOPENED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-70768-4-NAiV2We9uZ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70768-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70768-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02552.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70768

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #6 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535220-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:12:56 2016
Return-Path: <gcc-bugs-return-535220-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 118463 invoked by alias); 22 Aug 2016 08:12:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 118440 invoked by uid 89); 22 Aug 2016 08:12:55 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:310
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:12:45 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/71779] [5/6 regression] isl miscompiled with -mabi=ilp32
Date: Mon, 22 Aug 2016 08:12:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: ra, wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-71779-4-rlKdxMpQ0r@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71779-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71779-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02556.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71779

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |5.5
>From gcc-bugs-return-535218-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:12:05 2016
Return-Path: <gcc-bugs-return-535218-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 116672 invoked by alias); 22 Aug 2016 08:12:05 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 116623 invoked by uid 89); 22 Aug 2016 08:12:02 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=strategy, Hx-languages-length:1277, 1432, 8221
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:11:54 +0000
From: "bernd.edlinger at hotmail dot de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77308] surprisingly large stack usage for sha512 on arm
Date: Mon, 22 Aug 2016 08:12:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization, ra
X-Bugzilla-Severity: normal
X-Bugzilla-Who: bernd.edlinger at hotmail dot de
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77308-4-zZLVCeIyoW@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77308-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77308-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02554.txt.bz2
Content-length: 1281

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77308

--- Comment #8 from Bernd Edlinger <bernd.edlinger at hotmail dot de> ---
analyzing the different thumb1/2 reload dumps,
I see t2 often uses code like that to access spill slots:

(insn 11576 8090 9941 5 (set (reg:SI 3 r3 [11890])
        (plus:SI (reg/f:SI 13 sp)
            (const_int 480 [0x1e0]))) sha512.c:147 4 {*arm_addsi3}
     (nil))
(insn 9941 11576 2978 5 (set (reg:DI 2 r2 [4210])
        (mem/c:DI (reg:SI 3 r3 [11890]) [5 %sfpD.4158+-3112 S8 A64]))
sha512.c:147 170 {*arm_movdi}
     (nil))

while t1 often does it this way:

(insn 8221 8219 4591 6 (set (reg/v:DI 4 r4 [orig:1450 fD.4102 ] [1450])
        (mem/c:DI (plus:SI (reg/f:SI 13 sp)
                (const_int 152 [0x98])) [5 %sfpD.4164+-1432 S8 A64]))
sha512.c:155 748 {*thumb1_movdi_insn}
     (nil))


grep "plus.*reg.*sp" t1/sha512.c.260r.reload |grep -v mem |wc -l
110

grep "plus.*reg.*sp" t2/sha512.c.260r.reload |grep -v mem |wc -l
602


I think in thumb1 the 110 memory accesses are all for frame-objects,
like X, a-h, etc, while thumb2 also uses pointers to access spill slots.

It must be pretty expensive for thumb1 to access something using
a pointer register.  But for thumb2 it this strategy creates rather
significant register pressure.
>From gcc-bugs-return-535219-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:12:15 2016
Return-Path: <gcc-bugs-return-535219-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 117457 invoked by alias); 22 Aug 2016 08:12:14 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 117398 invoked by uid 89); 22 Aug 2016 08:12:12 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:235
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:12:02 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/70768] [6/7 Regression] Increased compilation time
Date: Mon, 22 Aug 2016 08:12:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: compile-time-hog, memory-hog
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: REOPENED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-70768-4-2uRhD4Rwfo@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70768-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70768-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02555.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70768

--- Comment #7 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535221-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:12:57 2016
Return-Path: <gcc-bugs-return-535221-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 118474 invoked by alias); 22 Aug 2016 08:12:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 118443 invoked by uid 89); 22 Aug 2016 08:12:55 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:574
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:12:45 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug go/70597] [6/7 Regression] cmd/go: deduplicate gccgo afiles by package path, not *Package
Date: Mon, 22 Aug 2016 08:13:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: go
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: ian at airs dot com
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-70597-4-ZTe1XZzq2A@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70597-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70597-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02558.txt.bz2
Content-length: 541

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70597

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #2 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.

--- Comment #3 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535222-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:13:07 2016
Return-Path: <gcc-bugs-return-535222-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 119653 invoked by alias); 22 Aug 2016 08:13:07 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 119528 invoked by uid 89); 22 Aug 2016 08:13:06 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:12:55 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71488] [6 Regression] Wrong code for vector comparisons with ivybridge and westmere targets
Date: Mon, 22 Aug 2016 08:13:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-71488-4-MDUvwa069t@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71488-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71488-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02557.txt.bz2
Content-length: 418

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71488

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #15 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535224-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:14:17 2016
Return-Path: <gcc-bugs-return-535224-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 121228 invoked by alias); 22 Aug 2016 08:14:12 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 121187 invoked by uid 89); 22 Aug 2016 08:14:09 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:13:59 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/71463] [6/7 regression] unexpected warning: ignoring function return attributes on template argument
Date: Mon, 22 Aug 2016 08:14:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-71463-4-u6Qvv8WCNw@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71463-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71463-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02560.txt.bz2
Content-length: 418

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71463

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #10 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535223-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:14:12 2016
Return-Path: <gcc-bugs-return-535223-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 121204 invoked by alias); 22 Aug 2016 08:14:10 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 121186 invoked by uid 89); 22 Aug 2016 08:14:09 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:13:59 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71488] [6 Regression] Wrong code for vector comparisons with ivybridge and westmere targets
Date: Mon, 22 Aug 2016 08:14:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71488-4-gl2YIHrSvu@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71488-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71488-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02559.txt.bz2
Content-length: 178

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71488

--- Comment #16 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535228-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:15:55 2016
Return-Path: <gcc-bugs-return-535228-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 125027 invoked by alias); 22 Aug 2016 08:15:54 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 124719 invoked by uid 89); 22 Aug 2016 08:15:52 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:307
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:15:44 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/60936] [5/6/7 Regression] Binary code bloat with std::string
Date: Mon, 22 Aug 2016 08:15:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-60936-4-4I9Q2pwvtn@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-60936-4@http.gcc.gnu.org/bugzilla/>
References: <bug-60936-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02564.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60936

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |5.5
>From gcc-bugs-return-535226-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:15:43 2016
Return-Path: <gcc-bugs-return-535226-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 123492 invoked by alias); 22 Aug 2016 08:15:39 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 123245 invoked by uid 89); 22 Aug 2016 08:15:18 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:15:04 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/71463] [6/7 regression] unexpected warning: ignoring function return attributes on template argument
Date: Mon, 22 Aug 2016 08:15:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71463-4-IJ2xo3zyET@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71463-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71463-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02562.txt.bz2
Content-length: 178

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71463

--- Comment #11 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535227-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:15:44 2016
Return-Path: <gcc-bugs-return-535227-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 123634 invoked by alias); 22 Aug 2016 08:15:43 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 123498 invoked by uid 89); 22 Aug 2016 08:15:40 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:310
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:15:35 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug debug/53118] [5/6/7 regression] -feliminate-dwarf2-dups is broken for C++
Date: Mon, 22 Aug 2016 08:15:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: debug
X-Bugzilla-Version: 4.7.0
X-Bugzilla-Keywords: wrong-debug
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-53118-4-3AKAXn6WFj@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-53118-4@http.gcc.gnu.org/bugzilla/>
References: <bug-53118-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02563.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53118

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |5.5
>From gcc-bugs-return-535225-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:15:41 2016
Return-Path: <gcc-bugs-return-535225-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 123323 invoked by alias); 22 Aug 2016 08:15:26 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 123032 invoked by uid 89); 22 Aug 2016 08:15:02 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:14:52 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ipa/70583] [6/7 Regression] FAIL: g++.old-deja/g++.abi/vtable2.C  -std=gnu++98 execution test
Date: Mon, 22 Aug 2016 08:15:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ipa
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-70583-4-wODRp8mZFp@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70583-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70583-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02561.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70583

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535231-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:16:46 2016
Return-Path: <gcc-bugs-return-535231-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 128117 invoked by alias); 22 Aug 2016 08:16:45 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 128102 invoked by uid 89); 22 Aug 2016 08:16:45 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:474, images
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:16:36 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/71706] [6/7 Regression] ICE on using sync images with integer(kind<>4), with -fcoarray=lib -fcheck=bounds
Date: Mon, 22 Aug 2016 08:16:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-checking, ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-71706-4-W4NANpwGhC@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71706-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71706-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02567.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71706

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535230-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:16:25 2016
Return-Path: <gcc-bugs-return-535230-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 127239 invoked by alias); 22 Aug 2016 08:16:25 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 127201 invoked by uid 89); 22 Aug 2016 08:16:24 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:16:15 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ipa/70583] [6/7 Regression] FAIL: g++.old-deja/g++.abi/vtable2.C  -std=gnu++98 execution test
Date: Mon, 22 Aug 2016 08:16:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ipa
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-70583-4-EimC0pRqcv@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70583-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70583-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02566.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70583

--- Comment #5 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535229-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:16:18 2016
Return-Path: <gcc-bugs-return-535229-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 126503 invoked by alias); 22 Aug 2016 08:16:18 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 126438 invoked by uid 89); 22 Aug 2016 08:16:14 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:16:04 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug lto/70955] [6/7 Regression] Wrong code generation for __builtin_ms_va_list with -flto
Date: Mon, 22 Aug 2016 08:16:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: lto
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords: lto, wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-70955-4-GKMdvZyWDk@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70955-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70955-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02565.txt.bz2
Content-length: 418

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70955

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #13 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535235-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:17:50 2016
Return-Path: <gcc-bugs-return-535235-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 549 invoked by alias); 22 Aug 2016 08:17:49 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 500 invoked by uid 89); 22 Aug 2016 08:17:48 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=images
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:17:38 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/71706] [6/7 Regression] ICE on using sync images with integer(kind<>4), with -fcoarray=lib -fcheck=bounds
Date: Mon, 22 Aug 2016 08:17:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-checking, ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71706-4-IPerrrlQ75@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71706-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71706-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02571.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71706

--- Comment #5 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535233-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:17:28 2016
Return-Path: <gcc-bugs-return-535233-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 129845 invoked by alias); 22 Aug 2016 08:17:28 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 129811 invoked by uid 89); 22 Aug 2016 08:17:27 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:332
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:17:16 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/61225] [5/6/7 Regression] Several new failures after r210458 on x86_64-*-* with -m32
Date: Mon, 22 Aug 2016 08:17:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 5.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-61225-4-S201rnR0J5@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-61225-4@http.gcc.gnu.org/bugzilla/>
References: <bug-61225-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02569.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61225

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535236-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:17:50 2016
Return-Path: <gcc-bugs-return-535236-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 560 invoked by alias); 22 Aug 2016 08:17:50 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 503 invoked by uid 89); 22 Aug 2016 08:17:48 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:17:38 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71144] [6/7 Regression] isl_aff.c:1001: position out of bounds
Date: Mon, 22 Aug 2016 08:17:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-71144-4-GxHSMgAE3P@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71144-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71144-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02572.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71144

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #3 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535234-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:17:39 2016
Return-Path: <gcc-bugs-return-535234-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 130581 invoked by alias); 22 Aug 2016 08:17:38 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 130545 invoked by uid 89); 22 Aug 2016 08:17:37 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:17:27 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/62254] [5/6/7 Regression] gcc-4.9 ICEs on linux kernel zlib for armv3
Date: Mon, 22 Aug 2016 08:17:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 5.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: REOPENED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-62254-4-iGOkTnj26u@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-62254-4@http.gcc.gnu.org/bugzilla/>
References: <bug-62254-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02570.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=62254

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |5.5
>From gcc-bugs-return-535232-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:17:18 2016
Return-Path: <gcc-bugs-return-535232-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 129115 invoked by alias); 22 Aug 2016 08:17:17 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 129086 invoked by uid 89); 22 Aug 2016 08:17:16 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:17:06 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug lto/70955] [6/7 Regression] Wrong code generation for __builtin_ms_va_list with -flto
Date: Mon, 22 Aug 2016 08:17:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: lto
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords: lto, wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-70955-4-qjYKTVkyUE@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70955-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70955-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02568.txt.bz2
Content-length: 543

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70955

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #13 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.

--- Comment #14 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535237-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:18:41 2016
Return-Path: <gcc-bugs-return-535237-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 3313 invoked by alias); 22 Aug 2016 08:18:41 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 3276 invoked by uid 89); 22 Aug 2016 08:18:40 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:18:30 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/70390] [6/7 Regression] internal compiler error: in copy_loop_close_phi_args, at graphite-isl-ast-to-gimple.c:2114
Date: Mon, 22 Aug 2016 08:18:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-70390-4-opYUMpzWug@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70390-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70390-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02573.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70390

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #6 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535238-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:18:42 2016
Return-Path: <gcc-bugs-return-535238-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 3323 invoked by alias); 22 Aug 2016 08:18:41 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 3277 invoked by uid 89); 22 Aug 2016 08:18:40 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:18:35 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/64715] [5/6/7 Regression] __builtin_object_size (..., 1) fails to locate subobject
Date: Mon, 22 Aug 2016 08:18:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 5.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-64715-4-nxAHoCIFYe@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-64715-4@http.gcc.gnu.org/bugzilla/>
References: <bug-64715-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02574.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64715

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |7.0
>From gcc-bugs-return-535239-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:18:53 2016
Return-Path: <gcc-bugs-return-535239-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 4589 invoked by alias); 22 Aug 2016 08:18:52 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 4440 invoked by uid 89); 22 Aug 2016 08:18:51 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:565
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:18:40 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71144] [6/7 Regression] isl_aff.c:1001: position out of bounds
Date: Mon, 22 Aug 2016 08:18:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-71144-4-iL9YBewnCU@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71144-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71144-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02575.txt.bz2
Content-length: 541

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71144

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #3 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535240-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:19:46 2016
Return-Path: <gcc-bugs-return-535240-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 30158 invoked by alias); 22 Aug 2016 08:19:45 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 30130 invoked by uid 89); 22 Aug 2016 08:19:44 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:19:33 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/70390] [6/7 Regression] internal compiler error: in copy_loop_close_phi_args, at graphite-isl-ast-to-gimple.c:2114
Date: Mon, 22 Aug 2016 08:19:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-70390-4-IIGMDZG2fU@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70390-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70390-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02576.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70390

--- Comment #7 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535241-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:20:06 2016
Return-Path: <gcc-bugs-return-535241-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 31125 invoked by alias); 22 Aug 2016 08:20:06 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 31098 invoked by uid 89); 22 Aug 2016 08:20:05 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:19:55 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/70359] [6/7 Regression] Code size increase for ARM compared to gcc-5.3.0
Date: Mon, 22 Aug 2016 08:20:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-70359-4-XZbxeQedNx@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70359-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70359-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02577.txt.bz2
Content-length: 418

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70359

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #17 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535242-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:20:07 2016
Return-Path: <gcc-bugs-return-535242-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 31144 invoked by alias); 22 Aug 2016 08:20:06 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 31099 invoked by uid 89); 22 Aug 2016 08:20:05 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:19:55 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/67326] [5/6/7 Regression] -ftree-loop-if-convert-stores does not vectorize conditional assignment (anymore)
Date: Mon, 22 Aug 2016 08:20:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: vekumar at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-67326-4-h3SAqH5Vx8@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67326-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67326-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02578.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67326

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |7.0
>From gcc-bugs-return-535243-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:20:58 2016
Return-Path: <gcc-bugs-return-535243-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 32876 invoked by alias); 22 Aug 2016 08:20:58 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 32857 invoked by uid 89); 22 Aug 2016 08:20:57 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:300
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:20:47 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/71166] [7 Regression] ICE with nested constexpr/initializer
Date: Mon, 22 Aug 2016 08:20:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-71166-4-qh0d3xbUG0@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71166-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71166-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02579.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71166

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |7.0
>From gcc-bugs-return-535245-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:21:40 2016
Return-Path: <gcc-bugs-return-535245-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 34741 invoked by alias); 22 Aug 2016 08:21:39 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 34725 invoked by uid 89); 22 Aug 2016 08:21:38 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:21:29 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/71294] [6 Regression] ICE in gen_add2_insn, at optabs.c:4442 on powerpc64le-linux
Date: Mon, 22 Aug 2016 08:21:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-71294-4-McI5THyRbJ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71294-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71294-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02581.txt.bz2
Content-length: 418

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71294

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #10 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535244-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:21:09 2016
Return-Path: <gcc-bugs-return-535244-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 33645 invoked by alias); 22 Aug 2016 08:21:09 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 33621 invoked by uid 89); 22 Aug 2016 08:21:07 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:20:57 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/70359] [6/7 Regression] Code size increase for ARM compared to gcc-5.3.0
Date: Mon, 22 Aug 2016 08:21:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-70359-4-RUDftaTKJg@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70359-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70359-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02580.txt.bz2
Content-length: 543

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70359

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #17 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.

--- Comment #18 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535247-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:22:44 2016
Return-Path: <gcc-bugs-return-535247-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 47175 invoked by alias); 22 Aug 2016 08:22:44 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 45353 invoked by uid 89); 22 Aug 2016 08:22:42 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:22:32 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/71294] [6 Regression] ICE in gen_add2_insn, at optabs.c:4442 on powerpc64le-linux
Date: Mon, 22 Aug 2016 08:22:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-71294-4-jRlxpK2c6m@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71294-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71294-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02583.txt.bz2
Content-length: 543

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71294

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #10 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.

--- Comment #11 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535246-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:22:01 2016
Return-Path: <gcc-bugs-return-535246-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 35662 invoked by alias); 22 Aug 2016 08:22:01 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 35622 invoked by uid 89); 22 Aug 2016 08:22:00 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:21:49 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72759] [6 Regression] ICE on invalid C++ code on x86_64-linux-gnu (Segmentation fault, tree_class_check, ocp_convert)
Date: Mon, 22 Aug 2016 08:22:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: error-recovery, ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: ppalka at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-72759-4-oxOqU4UeBm@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72759-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72759-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02582.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72759

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535248-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:23:05 2016
Return-Path: <gcc-bugs-return-535248-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 48365 invoked by alias); 22 Aug 2016 08:23:04 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 48329 invoked by uid 89); 22 Aug 2016 08:23:03 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:22:53 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72759] [6 Regression] ICE on invalid C++ code on x86_64-linux-gnu (Segmentation fault, tree_class_check, ocp_convert)
Date: Mon, 22 Aug 2016 08:23:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: error-recovery, ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: ppalka at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-72759-4-oQzFYsXKLP@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72759-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72759-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02584.txt.bz2
Content-length: 541

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72759

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.

--- Comment #5 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535250-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:23:27 2016
Return-Path: <gcc-bugs-return-535250-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 49256 invoked by alias); 22 Aug 2016 08:23:26 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 49200 invoked by uid 89); 22 Aug 2016 08:23:24 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:515
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:23:14 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/71638] [6/7 Regression] ICE on invalid C++ code on x86_64-linux-gnu with -Wall (internal compiler error: non-constant element in constant CONSTRUCTOR)
Date: Mon, 22 Aug 2016 08:23:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: error-recovery, ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-71638-4-lCO17VbWvg@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71638-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71638-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02586.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71638

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #2 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535249-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:23:26 2016
Return-Path: <gcc-bugs-return-535249-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 49234 invoked by alias); 22 Aug 2016 08:23:26 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 49199 invoked by uid 89); 22 Aug 2016 08:23:24 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:23:14 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/69823] [6/7 Regression] internal compiler error: in create_pw_aff_from_tree, at graphite-sese-to-poly.c:445
Date: Mon, 22 Aug 2016 08:23:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-69823-4-nJwXOjRkWz@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69823-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69823-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02585.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69823

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #3 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535254-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:24:51 2016
Return-Path: <gcc-bugs-return-535254-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 90512 invoked by alias); 22 Aug 2016 08:24:50 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 89256 invoked by uid 89); 22 Aug 2016 08:24:49 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:24:39 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72775] [6/7 Regression] internal compiler error: in finish_expr_stmt, at cp/semantics.c:677
Date: Mon, 22 Aug 2016 08:24:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-72775-4-tH7brkAg4t@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72775-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72775-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02588.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72775

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #6 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535251-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:24:39 2016
Return-Path: <gcc-bugs-return-535251-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 83108 invoked by alias); 22 Aug 2016 08:24:39 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 82117 invoked by uid 89); 22 Aug 2016 08:24:38 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:306
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:24:28 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/69823] [6/7 Regression] internal compiler error: in create_pw_aff_from_tree, at graphite-sese-to-poly.c:445
Date: Mon, 22 Aug 2016 08:24:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-69823-4-AJ9q1hV7Wh@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69823-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69823-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02587.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69823

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535256-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:25:47 2016
Return-Path: <gcc-bugs-return-535256-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 1219 invoked by alias); 22 Aug 2016 08:25:44 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 130867 invoked by uid 89); 22 Aug 2016 08:25:43 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-0.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00,UNWANTED_LANGUAGE_BODY autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:25:32 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/68682] [6/7 Regression] [graphite] loop interchange no longer working after r227277
Date: Mon, 22 Aug 2016 08:25:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-68682-4-VvEkntAHOI@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68682-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68682-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02591.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68682

--- Comment #3 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535257-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:25:55 2016
Return-Path: <gcc-bugs-return-535257-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 9012 invoked by alias); 22 Aug 2016 08:25:54 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 8269 invoked by uid 89); 22 Aug 2016 08:25:53 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:25:43 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72775] [6/7 Regression] internal compiler error: in finish_expr_stmt, at cp/semantics.c:677
Date: Mon, 22 Aug 2016 08:25:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72775-4-DLpQOwlpVC@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72775-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72775-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02589.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72775

--- Comment #7 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535255-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:25:33 2016
Return-Path: <gcc-bugs-return-535255-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 124235 invoked by alias); 22 Aug 2016 08:25:33 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 123770 invoked by uid 89); 22 Aug 2016 08:25:32 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:25:22 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/69728] [6/7 Regression] internal compiler error: in outer_projection_mupa, at graphite-sese-to-poly.c:1175
Date: Mon, 22 Aug 2016 08:25:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-69728-4-jvd5Cvfo1m@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69728-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69728-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02590.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69728

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535253-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:24:40 2016
Return-Path: <gcc-bugs-return-535253-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 83510 invoked by alias); 22 Aug 2016 08:24:40 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 82122 invoked by uid 89); 22 Aug 2016 08:24:38 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:24:28 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/71638] [6/7 Regression] ICE on invalid C++ code on x86_64-linux-gnu with -Wall (internal compiler error: non-constant element in constant CONSTRUCTOR)
Date: Mon, 22 Aug 2016 08:25:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: error-recovery, ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-71638-4-zWPGfG9QlC@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71638-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71638-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02592.txt.bz2
Content-length: 541

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71638

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #2 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.

--- Comment #3 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535252-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:24:40 2016
Return-Path: <gcc-bugs-return-535252-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 83280 invoked by alias); 22 Aug 2016 08:24:39 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 82123 invoked by uid 89); 22 Aug 2016 08:24:38 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:24:28 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/68682] [6/7 Regression] [graphite] loop interchange no longer working after r227277
Date: Mon, 22 Aug 2016 08:26:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-68682-4-jN7kRpQsPQ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68682-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68682-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02594.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68682

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #2 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535260-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:26:37 2016
Return-Path: <gcc-bugs-return-535260-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 35661 invoked by alias); 22 Aug 2016 08:26:36 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 35201 invoked by uid 89); 22 Aug 2016 08:26:36 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:26:27 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/67219] [6/7 Regression] Incorrect conversion warning
Date: Mon, 22 Aug 2016 08:26:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-67219-4-mEeO9hWaAs@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67219-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67219-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02593.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67219

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #7 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535262-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:27:09 2016
Return-Path: <gcc-bugs-return-535262-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 63853 invoked by alias); 22 Aug 2016 08:27:09 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 61468 invoked by uid 89); 22 Aug 2016 08:27:07 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:299
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:26:58 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/71778] [6/7 Regression][ARM] ICE using non-constant argument to Neon intrinsic that requires constant arguments
Date: Mon, 22 Aug 2016 08:27:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords: error-recovery, ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71778-4-ZLjaU6IEk8@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71778-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71778-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02595.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71778

--- Comment #3 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535261-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:26:37 2016
Return-Path: <gcc-bugs-return-535261-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 36155 invoked by alias); 22 Aug 2016 08:26:37 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 35225 invoked by uid 89); 22 Aug 2016 08:26:36 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:26:26 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/69728] [6/7 Regression] internal compiler error: in outer_projection_mupa, at graphite-sese-to-poly.c:1175
Date: Mon, 22 Aug 2016 08:27:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-69728-4-koGdD1tEy6@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69728-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69728-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02596.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69728

--- Comment #5 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535264-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:27:10 2016
Return-Path: <gcc-bugs-return-535264-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 64713 invoked by alias); 22 Aug 2016 08:27:10 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 61469 invoked by uid 89); 22 Aug 2016 08:27:07 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:26:57 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/72813] [6/7 Regression] atomic header cannot be compiled into translation unit with -fkeep-inline-functions
Date: Mon, 22 Aug 2016 08:27:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: rejects-valid
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-72813-4-7FpngtzNU7@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72813-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72813-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02599.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72813

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #3 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535263-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:27:10 2016
Return-Path: <gcc-bugs-return-535263-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 64455 invoked by alias); 22 Aug 2016 08:27:09 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 61472 invoked by uid 89); 22 Aug 2016 08:27:07 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:599
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:26:57 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/71570] [6/7 regression] ICE on invalid variable capture in cxx_incomplete_type_diagnostic, at cp/typeck2.c:551
Date: Mon, 22 Aug 2016 08:27:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: error-recovery, ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-71570-4-KkkH2bYspL@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71570-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71570-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02597.txt.bz2
Content-length: 541

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71570

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #2 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.

--- Comment #3 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535258-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:26:05 2016
Return-Path: <gcc-bugs-return-535258-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 15670 invoked by alias); 22 Aug 2016 08:26:05 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 14868 invoked by uid 89); 22 Aug 2016 08:26:04 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:475
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:25:54 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/71570] [6/7 regression] ICE on invalid variable capture in cxx_incomplete_type_diagnostic, at cp/typeck2.c:551
Date: Mon, 22 Aug 2016 08:27:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: error-recovery, ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-71570-4-1mRNR45SPL@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71570-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71570-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02598.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71570

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #2 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535267-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:27:52 2016
Return-Path: <gcc-bugs-return-535267-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 104443 invoked by alias); 22 Aug 2016 08:27:52 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 103577 invoked by uid 89); 22 Aug 2016 08:27:51 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:27:42 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug debug/71906] [6/7 Regression] Fortran allocatable strings debug info type size regression
Date: Mon, 22 Aug 2016 08:28:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: debug
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-71906-4-iD7nj9hNN6@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71906-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71906-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02606.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71906

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #8 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535270-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:28:47 2016
Return-Path: <gcc-bugs-return-535270-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 7379 invoked by alias); 22 Aug 2016 08:28:46 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 7209 invoked by uid 89); 22 Aug 2016 08:28:43 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:28:34 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/70164] [6/7 Regression] Code/performance regression due to poor register allocation on Cortex-M0
Date: Mon, 22 Aug 2016 08:28:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: missed-optimization, ra
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-70164-4-MbJA9hRcI3@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70164-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70164-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02604.txt.bz2
Content-length: 543

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70164

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #17 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.

--- Comment #18 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535259-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:26:06 2016
Return-Path: <gcc-bugs-return-535259-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 15837 invoked by alias); 22 Aug 2016 08:26:05 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 15134 invoked by uid 89); 22 Aug 2016 08:26:04 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:479
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:25:54 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/71778] [6/7 Regression][ARM] ICE using non-constant argument to Neon intrinsic that requires constant arguments
Date: Mon, 22 Aug 2016 08:28:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords: error-recovery, ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-71778-4-BjtzqJWAP9@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71778-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71778-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02602.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71778

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #2 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535265-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:27:43 2016
Return-Path: <gcc-bugs-return-535265-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 97951 invoked by alias); 22 Aug 2016 08:27:42 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 94929 invoked by uid 89); 22 Aug 2016 08:27:40 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:241
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:27:30 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/67219] [6/7 Regression] Incorrect conversion warning
Date: Mon, 22 Aug 2016 08:28:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-67219-4-of9OOo3rQb@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67219-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67219-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02601.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67219

--- Comment #8 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535266-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:27:43 2016
Return-Path: <gcc-bugs-return-535266-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 98380 invoked by alias); 22 Aug 2016 08:27:43 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 94998 invoked by uid 89); 22 Aug 2016 08:27:40 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:27:30 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/70164] [6/7 Regression] Code/performance regression due to poor register allocation on Cortex-M0
Date: Mon, 22 Aug 2016 08:28:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: missed-optimization, ra
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-70164-4-ehDmt5QMcC@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70164-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70164-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02607.txt.bz2
Content-length: 418

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70164

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #17 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535268-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:28:14 2016
Return-Path: <gcc-bugs-return-535268-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 1684 invoked by alias); 22 Aug 2016 08:28:13 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 130542 invoked by uid 89); 22 Aug 2016 08:28:12 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:28:02 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/72813] [6/7 Regression] atomic header cannot be compiled into translation unit with -fkeep-inline-functions
Date: Mon, 22 Aug 2016 08:28:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: rejects-valid
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72813-4-VKW9FZvO12@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72813-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72813-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02600.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72813

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535269-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:28:35 2016
Return-Path: <gcc-bugs-return-535269-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 6368 invoked by alias); 22 Aug 2016 08:28:34 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 6341 invoked by uid 89); 22 Aug 2016 08:28:33 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:28:23 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71563] [6/7 Regression] Regression in GCC-7.0.0's optimizer.
Date: Mon, 22 Aug 2016 08:28:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-71563-4-P6YFz0R6cb@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71563-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71563-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02603.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71563

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535271-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:28:55 2016
Return-Path: <gcc-bugs-return-535271-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 8126 invoked by alias); 22 Aug 2016 08:28:55 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 8099 invoked by uid 89); 22 Aug 2016 08:28:54 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:28:45 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/68717] [6/7 Regression] New (bogus?) warnings when compiling some gfortran.dg tests with -flto after r231239
Date: Mon, 22 Aug 2016 08:28:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-68717-4-a3uQyynBym@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68717-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68717-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02605.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68717

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535272-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:28:56 2016
Return-Path: <gcc-bugs-return-535272-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 8205 invoked by alias); 22 Aug 2016 08:28:55 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 8094 invoked by uid 89); 22 Aug 2016 08:28:54 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:270
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:28:45 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug debug/71906] [6/7 Regression] Fortran allocatable strings debug info type size regression
Date: Mon, 22 Aug 2016 08:29:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: debug
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71906-4-nE06NgvSbE@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71906-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71906-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02610.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71906

--- Comment #9 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535274-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:29:28 2016
Return-Path: <gcc-bugs-return-535274-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 10054 invoked by alias); 22 Aug 2016 08:29:27 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 9968 invoked by uid 89); 22 Aug 2016 08:29:26 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:29:15 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72752] [6 Regression] ICE: in retrieve_specialization, at cp/pt.c:1183
Date: Mon, 22 Aug 2016 08:29:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-72752-4-90kKAQlzQN@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72752-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72752-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02609.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72752

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #5 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535275-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:29:37 2016
Return-Path: <gcc-bugs-return-535275-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 11245 invoked by alias); 22 Aug 2016 08:29:37 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 11130 invoked by uid 89); 22 Aug 2016 08:29:36 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:259
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:29:26 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71563] [6/7 Regression] Regression in GCC-7.0.0's optimizer.
Date: Mon, 22 Aug 2016 08:29:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71563-4-hQpPNDlq3V@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71563-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71563-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02612.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71563

--- Comment #5 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535276-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:29:58 2016
Return-Path: <gcc-bugs-return-535276-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 12390 invoked by alias); 22 Aug 2016 08:29:58 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 12348 invoked by uid 89); 22 Aug 2016 08:29:57 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:29:47 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/68717] [6/7 Regression] New (bogus?) warnings when compiling some gfortran.dg tests with -flto after r231239
Date: Mon, 22 Aug 2016 08:29:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-68717-4-022WI24YzJ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68717-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68717-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02611.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68717

--- Comment #5 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535273-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:29:27 2016
Return-Path: <gcc-bugs-return-535273-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 10036 invoked by alias); 22 Aug 2016 08:29:27 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 9971 invoked by uid 89); 22 Aug 2016 08:29:26 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:29:16 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/77259] [6/7 Regression] ICE in emit_move_insn since r232167
Date: Mon, 22 Aug 2016 08:29:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-77259-4-iBhybVr0A6@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77259-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77259-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02608.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77259

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #3 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535280-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:30:46 2016
Return-Path: <gcc-bugs-return-535280-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 15255 invoked by alias); 22 Aug 2016 08:30:45 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 15156 invoked by uid 89); 22 Aug 2016 08:30:37 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:251
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:30:28 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/77259] [6/7 Regression] ICE in emit_move_insn since r232167
Date: Mon, 22 Aug 2016 08:30:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77259-4-4UhuhqTXIB@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77259-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77259-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02617.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77259

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535281-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:30:49 2016
Return-Path: <gcc-bugs-return-535281-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 15767 invoked by alias); 22 Aug 2016 08:30:49 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 15660 invoked by uid 89); 22 Aug 2016 08:30:48 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:30:44 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/71778] [6/7 Regression][ARM] ICE using non-constant argument to Neon intrinsic that requires constant arguments
Date: Mon, 22 Aug 2016 08:30:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords: error-recovery, ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71778-4-x1q4vu7bvX@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71778-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71778-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02616.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71778

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535279-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:30:45 2016
Return-Path: <gcc-bugs-return-535279-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 15242 invoked by alias); 22 Aug 2016 08:30:45 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 15154 invoked by uid 89); 22 Aug 2016 08:30:37 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:30:27 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72752] [6 Regression] ICE: in retrieve_specialization, at cp/pt.c:1183
Date: Mon, 22 Aug 2016 08:30:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72752-4-AwN8x2tzx5@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72752-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72752-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02615.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72752

--- Comment #6 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535278-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:30:19 2016
Return-Path: <gcc-bugs-return-535278-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 13636 invoked by alias); 22 Aug 2016 08:30:18 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 13421 invoked by uid 89); 22 Aug 2016 08:30:07 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:29:57 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71947] [6/7 Regression] x ^ y not folded to 0 if x == y by DOM
Date: Mon, 22 Aug 2016 08:30:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-71947-4-uOY5qnGyPP@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71947-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71947-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02614.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71947

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #5 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535277-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:30:18 2016
Return-Path: <gcc-bugs-return-535277-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 13583 invoked by alias); 22 Aug 2016 08:30:18 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 13419 invoked by uid 89); 22 Aug 2016 08:30:07 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:29:57 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/68560] [6/7 Regression] The test gfortran.dg/shape_8.f90 now fails when compiled with -flto
Date: Mon, 22 Aug 2016 08:30:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-68560-4-PanVEJPCuU@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68560-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68560-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02613.txt.bz2
Content-length: 418

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68560

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #22 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535283-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:31:23 2016
Return-Path: <gcc-bugs-return-535283-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 58311 invoked by alias); 22 Aug 2016 08:31:20 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 55119 invoked by uid 89); 22 Aug 2016 08:31:19 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:261
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:31:09 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71947] [6/7 Regression] x ^ y not folded to 0 if x == y by DOM
Date: Mon, 22 Aug 2016 08:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71947-4-wnxHqzAs7J@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71947-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71947-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02619.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71947

--- Comment #6 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535285-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:31:53 2016
Return-Path: <gcc-bugs-return-535285-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 108444 invoked by alias); 22 Aug 2016 08:31:53 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 100182 invoked by uid 89); 22 Aug 2016 08:31:50 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:31:40 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/71778] [6/7 Regression][ARM] ICE using non-constant argument to Neon intrinsic that requires constant arguments
Date: Mon, 22 Aug 2016 08:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords: error-recovery, ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71778-4-Cqf4tOI53w@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71778-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71778-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02621.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71778

--- Comment #5 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535284-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:31:24 2016
Return-Path: <gcc-bugs-return-535284-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 60355 invoked by alias); 22 Aug 2016 08:31:23 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 55125 invoked by uid 89); 22 Aug 2016 08:31:19 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:31:09 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/68560] [6/7 Regression] The test gfortran.dg/shape_8.f90 now fails when compiled with -flto
Date: Mon, 22 Aug 2016 08:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-68560-4-IN5RcivOBW@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68560-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68560-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02620.txt.bz2
Content-length: 178

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68560

--- Comment #23 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535282-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:31:20 2016
Return-Path: <gcc-bugs-return-535282-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 57155 invoked by alias); 22 Aug 2016 08:31:20 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 55124 invoked by uid 89); 22 Aug 2016 08:31:19 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:31:09 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/70867] [6 regression] access discriminant in return aggregate wrongly detected as dangling
Date: Mon, 22 Aug 2016 08:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-70867-4-VGGNR9OXqe@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70867-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70867-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02618.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70867

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #3 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535286-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:31:54 2016
Return-Path: <gcc-bugs-return-535286-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 109040 invoked by alias); 22 Aug 2016 08:31:53 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 104126 invoked by uid 89); 22 Aug 2016 08:31:51 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:31:41 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/67239] [6 Regression] FAIL: 23_containers/unordered_set/insert/hash_policy.cc execution test
Date: Mon, 22 Aug 2016 08:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: ABI
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-67239-4-uO5HqotxVm@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67239-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67239-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02622.txt.bz2
Content-length: 418

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67239

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #27 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535289-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:32:35 2016
Return-Path: <gcc-bugs-return-535289-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 38864 invoked by alias); 22 Aug 2016 08:32:35 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 36804 invoked by uid 89); 22 Aug 2016 08:32:34 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:32:24 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/68644] [6/7 Regression] FAIL: gcc.dg/tree-ssa/ivopts-lt-2.c scan-tree-dump-times ivopts "PHI <p_" 1
Date: Mon, 22 Aug 2016 08:32:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-68644-4-rpg3Tvvqi1@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68644-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68644-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02625.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68644

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #6 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535288-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:32:25 2016
Return-Path: <gcc-bugs-return-535288-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 24510 invoked by alias); 22 Aug 2016 08:32:25 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 22047 invoked by uid 89); 22 Aug 2016 08:32:24 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:32:14 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/70867] [6 regression] access discriminant in return aggregate wrongly detected as dangling
Date: Mon, 22 Aug 2016 08:32:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-70867-4-LHE9Bg36b2@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70867-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70867-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02624.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70867

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535290-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:32:56 2016
Return-Path: <gcc-bugs-return-535290-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 77681 invoked by alias); 22 Aug 2016 08:32:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 77571 invoked by uid 89); 22 Aug 2016 08:32:55 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:32:45 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/71208] [6 regression] mmix: C++ code fails to link
Date: Mon, 22 Aug 2016 08:32:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: hp at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-71208-4-hAsPydv7bd@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71208-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71208-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02626.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71208

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #6 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535287-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:32:15 2016
Return-Path: <gcc-bugs-return-535287-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 7337 invoked by alias); 22 Aug 2016 08:32:15 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 4758 invoked by uid 89); 22 Aug 2016 08:32:13 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:32:03 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/71602] [6/7 regression] ICE on __builtin_va_arg in build_va_arg, at c-family/c-common.c:5810
Date: Mon, 22 Aug 2016 08:32:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-invalid-code, patch
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-71602-4-VpufaPX7Xt@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71602-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71602-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02623.txt.bz2
Content-length: 418

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71602

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #11 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535291-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:32:56 2016
Return-Path: <gcc-bugs-return-535291-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 77732 invoked by alias); 22 Aug 2016 08:32:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 77672 invoked by uid 89); 22 Aug 2016 08:32:56 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:285
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:32:45 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/67239] [6 Regression] FAIL: 23_containers/unordered_set/insert/hash_policy.cc execution test
Date: Mon, 22 Aug 2016 08:32:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: ABI
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-67239-4-p01lhsN3RP@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67239-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67239-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02627.txt.bz2
Content-length: 178

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67239

--- Comment #28 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535292-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:33:18 2016
Return-Path: <gcc-bugs-return-535292-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 79370 invoked by alias); 22 Aug 2016 08:33:17 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 79347 invoked by uid 89); 22 Aug 2016 08:33:16 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:581
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:33:06 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/71602] [6/7 regression] ICE on __builtin_va_arg in build_va_arg, at c-family/c-common.c:5810
Date: Mon, 22 Aug 2016 08:33:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-invalid-code, patch
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-71602-4-jN7Yv3YxNB@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71602-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71602-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02628.txt.bz2
Content-length: 543

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71602

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #11 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.

--- Comment #12 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535296-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:33:58 2016
Return-Path: <gcc-bugs-return-535296-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 82369 invoked by alias); 22 Aug 2016 08:33:58 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 82342 invoked by uid 89); 22 Aug 2016 08:33:57 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:238
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:33:47 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/71208] [6 regression] mmix: C++ code fails to link
Date: Mon, 22 Aug 2016 08:33:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: hp at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71208-4-6a1cDamGdF@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71208-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71208-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02632.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71208

--- Comment #7 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535293-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:33:18 2016
Return-Path: <gcc-bugs-return-535293-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 79400 invoked by alias); 22 Aug 2016 08:33:18 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 79342 invoked by uid 89); 22 Aug 2016 08:33:16 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:33:07 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71016] [6/7 Regression] Redundant sign extension with conditional __builtin_clzl
Date: Mon, 22 Aug 2016 08:33:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-71016-4-hQorBPHKUr@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71016-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71016-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02629.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71016

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #3 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535297-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:33:58 2016
Return-Path: <gcc-bugs-return-535297-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 82385 invoked by alias); 22 Aug 2016 08:33:58 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 82343 invoked by uid 89); 22 Aug 2016 08:33:57 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:33:47 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/69633] [6/7 Regression] Redundant move is generated after r228097
Date: Mon, 22 Aug 2016 08:33:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: missed-optimization, ra
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: bernds at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-69633-4-fYYSGMYBEX@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69633-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69633-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02633.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69633

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #8 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535295-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:33:38 2016
Return-Path: <gcc-bugs-return-535295-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 81519 invoked by alias); 22 Aug 2016 08:33:38 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 81479 invoked by uid 89); 22 Aug 2016 08:33:37 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:33:27 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/68644] [6/7 Regression] FAIL: gcc.dg/tree-ssa/ivopts-lt-2.c scan-tree-dump-times ivopts "PHI <p_" 1
Date: Mon, 22 Aug 2016 08:33:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-68644-4-3H3oDSxe14@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68644-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68644-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02630.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68644

--- Comment #7 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535294-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:33:28 2016
Return-Path: <gcc-bugs-return-535294-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 80585 invoked by alias); 22 Aug 2016 08:33:27 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 80491 invoked by uid 89); 22 Aug 2016 08:33:26 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:33:17 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71691] [6/7 Regression] wrong code at -O3 in both 32-bit and 64-bit modes on x86_64-linux-gnu (Floating point exception)
Date: Mon, 22 Aug 2016 08:33:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-71691-4-nQyTWUxUin@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71691-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71691-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02631.txt.bz2
Content-length: 418

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71691

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #11 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535300-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:34:30 2016
Return-Path: <gcc-bugs-return-535300-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 87573 invoked by alias); 22 Aug 2016 08:34:30 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 87519 invoked by uid 89); 22 Aug 2016 08:34:28 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:34:19 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71691] [6/7 Regression] wrong code at -O3 in both 32-bit and 64-bit modes on x86_64-linux-gnu (Floating point exception)
Date: Mon, 22 Aug 2016 08:34:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-71691-4-pj0cKTIxQu@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71691-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71691-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02636.txt.bz2
Content-length: 543

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71691

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #11 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.

--- Comment #12 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535301-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:34:40 2016
Return-Path: <gcc-bugs-return-535301-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 88811 invoked by alias); 22 Aug 2016 08:34:40 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 88695 invoked by uid 89); 22 Aug 2016 08:34:39 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:34:29 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71575] [6/7 Regression] [graphite] internal compiler error: in copy_cond_phi_nodes, at graphite-isl-ast-to-gimple.c:2500
Date: Mon, 22 Aug 2016 08:34:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-71575-4-lLNM47t4d4@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71575-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71575-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02637.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71575

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535298-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:34:19 2016
Return-Path: <gcc-bugs-return-535298-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 84391 invoked by alias); 22 Aug 2016 08:34:19 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 84364 invoked by uid 89); 22 Aug 2016 08:34:18 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:34:12 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/77259] [6/7 Regression] ICE in emit_move_insn since r232167
Date: Mon, 22 Aug 2016 08:34:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77259-4-7cnnlDliBe@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77259-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77259-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02634.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77259

--- Comment #5 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535299-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:34:30 2016
Return-Path: <gcc-bugs-return-535299-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 87553 invoked by alias); 22 Aug 2016 08:34:29 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 87513 invoked by uid 89); 22 Aug 2016 08:34:28 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:34:12 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71016] [6/7 Regression] Redundant sign extension with conditional __builtin_clzl
Date: Mon, 22 Aug 2016 08:34:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71016-4-MWuuuwfBmz@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71016-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71016-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02635.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71016

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535303-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:35:22 2016
Return-Path: <gcc-bugs-return-535303-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 90930 invoked by alias); 22 Aug 2016 08:35:22 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 90908 invoked by uid 89); 22 Aug 2016 08:35:21 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:35:11 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/77259] [6/7 Regression] ICE in emit_move_insn since r232167
Date: Mon, 22 Aug 2016 08:35:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77259-4-QsOk6R1MiD@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77259-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77259-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02639.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77259

--- Comment #6 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535305-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:35:45 2016
Return-Path: <gcc-bugs-return-535305-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 95102 invoked by alias); 22 Aug 2016 08:35:44 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 94013 invoked by uid 89); 22 Aug 2016 08:35:43 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:35:33 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ipa/70582] [6/7 regression] gcc.dg/attr-weakref-1.c FAILs
Date: Mon, 22 Aug 2016 08:35:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ipa
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-70582-4-FRCJKXavzu@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70582-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70582-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02641.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70582

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535306-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:35:57 2016
Return-Path: <gcc-bugs-return-535306-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 101792 invoked by alias); 22 Aug 2016 08:35:57 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 101351 invoked by uid 89); 22 Aug 2016 08:35:54 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:35:35 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71575] [6/7 Regression] [graphite] internal compiler error: in copy_cond_phi_nodes, at graphite-isl-ast-to-gimple.c:2500
Date: Mon, 22 Aug 2016 08:35:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71575-4-7Di9XP1HJ8@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71575-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71575-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02642.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71575

--- Comment #5 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535304-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:35:36 2016
Return-Path: <gcc-bugs-return-535304-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 91794 invoked by alias); 22 Aug 2016 08:35:36 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 91699 invoked by uid 89); 22 Aug 2016 08:35:31 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:35:21 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71518] [6 Regression] wrong code at -O3 on x86_64-linux-gnu in 64-bit mode (not in 32-bit mode)
Date: Mon, 22 Aug 2016 08:35:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-71518-4-7JkZx3lDRh@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71518-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71518-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02640.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71518

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #5 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535302-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:35:11 2016
Return-Path: <gcc-bugs-return-535302-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 90182 invoked by alias); 22 Aug 2016 08:35:11 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 90164 invoked by uid 89); 22 Aug 2016 08:35:10 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:35:00 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/69633] [6/7 Regression] Redundant move is generated after r228097
Date: Mon, 22 Aug 2016 08:35:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: missed-optimization, ra
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: bernds at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-69633-4-M8x0CmiKIx@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69633-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69633-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02638.txt.bz2
Content-length: 541

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69633

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #8 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.

--- Comment #9 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535311-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:36:57 2016
Return-Path: <gcc-bugs-return-535311-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 105495 invoked by alias); 22 Aug 2016 08:36:57 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 105389 invoked by uid 89); 22 Aug 2016 08:36:56 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:36:46 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ipa/70582] [6/7 regression] gcc.dg/attr-weakref-1.c FAILs
Date: Mon, 22 Aug 2016 08:36:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ipa
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-70582-4-ny41P8JAsW@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70582-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70582-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02646.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70582

--- Comment #5 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535309-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:36:47 2016
Return-Path: <gcc-bugs-return-535309-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 104355 invoked by alias); 22 Aug 2016 08:36:47 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 104310 invoked by uid 89); 22 Aug 2016 08:36:46 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:598
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:36:35 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71518] [6 Regression] wrong code at -O3 on x86_64-linux-gnu in 64-bit mode (not in 32-bit mode)
Date: Mon, 22 Aug 2016 08:36:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-71518-4-tuCDdmlTZb@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71518-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71518-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02645.txt.bz2
Content-length: 541

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71518

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #5 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.

--- Comment #6 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535307-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:36:16 2016
Return-Path: <gcc-bugs-return-535307-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 102705 invoked by alias); 22 Aug 2016 08:36:15 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 102664 invoked by uid 89); 22 Aug 2016 08:36:14 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:434
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:36:04 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/71112] [6/7 Regression] ICE with -fpie on aarch64 ILP32 big-endian
Date: Mon, 22 Aug 2016 08:36:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: pinskia at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-71112-4-s3PIJMqblf@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71112-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71112-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02643.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71112

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535308-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:36:36 2016
Return-Path: <gcc-bugs-return-535308-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 103578 invoked by alias); 22 Aug 2016 08:36:35 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 103552 invoked by uid 89); 22 Aug 2016 08:36:35 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:437
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:36:24 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/71907] [6 regression] missing buffer overflow warnings with -flto
Date: Mon, 22 Aug 2016 08:36:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: diagnostic, lto
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-71907-4-vbfQlQx2Nq@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71907-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71907-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02644.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71907

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #7 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535310-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:36:47 2016
Return-Path: <gcc-bugs-return-535310-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 104402 invoked by alias); 22 Aug 2016 08:36:47 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 104308 invoked by uid 89); 22 Aug 2016 08:36:46 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:36:35 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/71907] [6 regression] missing buffer overflow warnings with -flto
Date: Mon, 22 Aug 2016 08:37:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: diagnostic, lto
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-71907-4-SRg32JqzPB@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71907-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71907-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02649.txt.bz2
Content-length: 541

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71907

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #7 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.

--- Comment #8 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535314-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:37:28 2016
Return-Path: <gcc-bugs-return-535314-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 108003 invoked by alias); 22 Aug 2016 08:37:28 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 107948 invoked by uid 89); 22 Aug 2016 08:37:27 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:254
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:37:17 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/71112] [6/7 Regression] ICE with -fpie on aarch64 ILP32 big-endian
Date: Mon, 22 Aug 2016 08:37:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: pinskia at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71112-4-UNaKmIG9JE@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71112-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71112-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02650.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71112

--- Comment #5 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535315-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:37:51 2016
Return-Path: <gcc-bugs-return-535315-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 108909 invoked by alias); 22 Aug 2016 08:37:50 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 108872 invoked by uid 89); 22 Aug 2016 08:37:48 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:257
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:37:38 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/71907] [6 regression] missing buffer overflow warnings with -flto
Date: Mon, 22 Aug 2016 08:37:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: diagnostic, lto
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71907-4-gwOE9Bhl0P@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71907-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71907-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02651.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71907

--- Comment #9 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535316-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:38:00 2016
Return-Path: <gcc-bugs-return-535316-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 109679 invoked by alias); 22 Aug 2016 08:37:59 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 109652 invoked by uid 89); 22 Aug 2016 08:37:59 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:37:49 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/71907] [6 regression] missing buffer overflow warnings with -flto
Date: Mon, 22 Aug 2016 08:37:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: diagnostic, lto
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71907-4-QPzyqIMsfJ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71907-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71907-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02652.txt.bz2
Content-length: 302

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71907

--- Comment #9 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.

--- Comment #10 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535312-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:37:08 2016
Return-Path: <gcc-bugs-return-535312-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 106490 invoked by alias); 22 Aug 2016 08:37:07 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 106460 invoked by uid 89); 22 Aug 2016 08:37:06 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:36:56 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/68009] [6/7 Regression] prototype for gfortran_runtime_error with inline matmul
Date: Mon, 22 Aug 2016 08:37:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-68009-4-6cvYbJsFSK@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68009-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68009-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02647.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68009

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #7 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535313-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:37:19 2016
Return-Path: <gcc-bugs-return-535313-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 107266 invoked by alias); 22 Aug 2016 08:37:19 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 107209 invoked by uid 89); 22 Aug 2016 08:37:17 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:444
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:37:07 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72808] [6/7 Regression] ICE on valid c++ code in verify_type (gcc/tree.c:14047)
Date: Mon, 22 Aug 2016 08:37:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-72808-4-KGgVIMz1v4@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72808-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72808-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02648.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72808

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #2 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535321-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:38:42 2016
Return-Path: <gcc-bugs-return-535321-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 112861 invoked by alias); 22 Aug 2016 08:38:42 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 112804 invoked by uid 89); 22 Aug 2016 08:38:40 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:38:30 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/71654] [6/7 Regression] missing VRP optimization on c++ unsigned char and short expressions
Date: Mon, 22 Aug 2016 08:38:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: ppalka at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-71654-4-hqCS1SxOkN@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71654-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71654-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02657.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71654

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #5 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535317-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:38:00 2016
Return-Path: <gcc-bugs-return-535317-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 109715 invoked by alias); 22 Aug 2016 08:38:00 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 109653 invoked by uid 89); 22 Aug 2016 08:37:59 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:442
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:37:48 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/71290] [6/7 Regression] Flexible array member is not diagnosed with -pedantic
Date: Mon, 22 Aug 2016 08:38:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: msebor at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-71290-4-1vPBSmSone@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71290-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71290-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02653.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71290

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #2 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535320-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:38:42 2016
Return-Path: <gcc-bugs-return-535320-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 112849 invoked by alias); 22 Aug 2016 08:38:41 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 112797 invoked by uid 89); 22 Aug 2016 08:38:40 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:38:30 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71142] [6/7 Regression] ICE: Segmentation fault in ssa_default_def (graphite)
Date: Mon, 22 Aug 2016 08:38:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-71142-4-dpBsSr3LCv@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71142-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71142-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02656.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71142

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #5 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535318-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:38:27 2016
Return-Path: <gcc-bugs-return-535318-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 111326 invoked by alias); 22 Aug 2016 08:38:26 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 111227 invoked by uid 89); 22 Aug 2016 08:38:19 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:268
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:38:09 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/68009] [6/7 Regression] prototype for gfortran_runtime_error with inline matmul
Date: Mon, 22 Aug 2016 08:38:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-68009-4-0KWiqHumML@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68009-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68009-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02654.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68009

--- Comment #8 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535319-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:38:31 2016
Return-Path: <gcc-bugs-return-535319-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 111795 invoked by alias); 22 Aug 2016 08:38:30 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 111732 invoked by uid 89); 22 Aug 2016 08:38:30 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:264
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:38:20 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72808] [6/7 Regression] ICE on valid c++ code in verify_type (gcc/tree.c:14047)
Date: Mon, 22 Aug 2016 08:38:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72808-4-HoNGm4b2K8@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72808-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72808-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02655.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72808

--- Comment #3 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535324-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:39:56 2016
Return-Path: <gcc-bugs-return-535324-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 122672 invoked by alias); 22 Aug 2016 08:39:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 121519 invoked by uid 89); 22 Aug 2016 08:39:55 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:39:45 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71142] [6/7 Regression] ICE: Segmentation fault in ssa_default_def (graphite)
Date: Mon, 22 Aug 2016 08:39:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71142-4-io6egRmW5y@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71142-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71142-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02660.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71142

--- Comment #6 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535322-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:39:12 2016
Return-Path: <gcc-bugs-return-535322-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 114512 invoked by alias); 22 Aug 2016 08:39:12 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 114476 invoked by uid 89); 22 Aug 2016 08:39:11 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:39:02 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/71290] [6/7 Regression] Flexible array member is not diagnosed with -pedantic
Date: Mon, 22 Aug 2016 08:39:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: msebor at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71290-4-XKFARha20j@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71290-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71290-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02658.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71290

--- Comment #3 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535323-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:39:35 2016
Return-Path: <gcc-bugs-return-535323-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 115448 invoked by alias); 22 Aug 2016 08:39:34 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 115419 invoked by uid 89); 22 Aug 2016 08:39:32 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:39:22 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/71577] [6/7 regression] ICE on invalid C++11 code (with extra struct initializer) on x86_64-linux-gnu: in digest_init_r, at cp/typeck2.c:1117
Date: Mon, 22 Aug 2016 08:39:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: error-recovery, ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-71577-4-Bf8aaAqpOX@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71577-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71577-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02659.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71577

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #2 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535326-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:40:07 2016
Return-Path: <gcc-bugs-return-535326-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 125422 invoked by alias); 22 Aug 2016 08:40:06 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 125298 invoked by uid 89); 22 Aug 2016 08:40:05 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:39:55 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71076] [6/7 Regression] error: missing PHI def
Date: Mon, 22 Aug 2016 08:40:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-71076-4-JAwXKC6QkO@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71076-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71076-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02661.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71076

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #3 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535325-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:39:57 2016
Return-Path: <gcc-bugs-return-535325-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 122967 invoked by alias); 22 Aug 2016 08:39:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 121517 invoked by uid 89); 22 Aug 2016 08:39:55 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:39:45 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/71654] [6/7 Regression] missing VRP optimization on c++ unsigned char and short expressions
Date: Mon, 22 Aug 2016 08:40:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: ppalka at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71654-4-MTikWsdZ8x@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71654-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71654-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02662.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71654

--- Comment #6 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535327-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:41:00 2016
Return-Path: <gcc-bugs-return-535327-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 127095 invoked by alias); 22 Aug 2016 08:40:59 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 126937 invoked by uid 89); 22 Aug 2016 08:40:47 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:302
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:40:37 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72759] [6 Regression] ICE on invalid C++ code on x86_64-linux-gnu (Segmentation fault, tree_class_check, ocp_convert)
Date: Mon, 22 Aug 2016 08:40:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: error-recovery, ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: ppalka at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72759-4-txLC1g4ypH@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72759-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72759-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02663.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72759

--- Comment #6 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535330-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:41:23 2016
Return-Path: <gcc-bugs-return-535330-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 129257 invoked by alias); 22 Aug 2016 08:41:22 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 129213 invoked by uid 89); 22 Aug 2016 08:41:21 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:41:11 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71076] [6/7 Regression] error: missing PHI def
Date: Mon, 22 Aug 2016 08:41:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71076-4-roahjSD0Bx@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71076-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71076-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02665.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71076

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535329-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:41:01 2016
Return-Path: <gcc-bugs-return-535329-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 127231 invoked by alias); 22 Aug 2016 08:41:01 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 127129 invoked by uid 89); 22 Aug 2016 08:41:00 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:469
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:40:51 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/69580] [6/7 Regression] From 26/7 seconds to 10 minutes moving from gcc 5.3.1 to gcc 6.0.0
Date: Mon, 22 Aug 2016 08:41:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: compile-time-hog
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: law at redhat dot com
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-69580-4-WYiI8ncB1T@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69580-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69580-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02664.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69580

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #9 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535328-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:41:01 2016
Return-Path: <gcc-bugs-return-535328-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 127152 invoked by alias); 22 Aug 2016 08:41:00 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 126934 invoked by uid 89); 22 Aug 2016 08:40:47 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:40:37 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/71577] [6/7 regression] ICE on invalid C++11 code (with extra struct initializer) on x86_64-linux-gnu: in digest_init_r, at cp/typeck2.c:1117
Date: Mon, 22 Aug 2016 08:41:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: error-recovery, ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71577-4-nKAecxA3EX@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71577-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71577-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02666.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71577

--- Comment #3 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535331-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:42:05 2016
Return-Path: <gcc-bugs-return-535331-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 130470 invoked by alias); 22 Aug 2016 08:42:05 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 130454 invoked by uid 89); 22 Aug 2016 08:42:04 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:41:54 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/69675] [6/7 Regression] [graphite] ICE: verify_ssa failed (definition in block 42 does not dominate use in block 34)
Date: Mon, 22 Aug 2016 08:42:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-69675-4-JgCIdePxIE@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69675-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69675-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02667.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69675

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535334-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:42:52 2016
Return-Path: <gcc-bugs-return-535334-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 12982 invoked by alias); 22 Aug 2016 08:42:51 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 12928 invoked by uid 89); 22 Aug 2016 08:42:47 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:42:37 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/69675] [6/7 Regression] [graphite] ICE: verify_ssa failed (definition in block 42 does not dominate use in block 34)
Date: Mon, 22 Aug 2016 08:42:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-69675-4-SolPSImDb2@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69675-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69675-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02670.txt.bz2
Content-length: 541

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69675

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.

--- Comment #5 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535333-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:42:16 2016
Return-Path: <gcc-bugs-return-535333-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 1015 invoked by alias); 22 Aug 2016 08:42:16 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 902 invoked by uid 89); 22 Aug 2016 08:42:15 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:302
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:42:05 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72759] [6 Regression] ICE on invalid C++ code on x86_64-linux-gnu (Segmentation fault, tree_class_check, ocp_convert)
Date: Mon, 22 Aug 2016 08:42:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: error-recovery, ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: ppalka at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72759-4-F757BB0dxj@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72759-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72759-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02668.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72759

--- Comment #7 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535335-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:42:59 2016
Return-Path: <gcc-bugs-return-535335-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 13667 invoked by alias); 22 Aug 2016 08:42:59 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 13652 invoked by uid 89); 22 Aug 2016 08:42:58 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:42:49 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/66089] [6/7 Regression] elemental dependency mishandling when derived types are involved
Date: Mon, 22 Aug 2016 08:42:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: mikael at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-66089-4-4NekRnvB38@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-66089-4@http.gcc.gnu.org/bugzilla/>
References: <bug-66089-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02671.txt.bz2
Content-length: 418

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66089

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #17 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535332-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:42:06 2016
Return-Path: <gcc-bugs-return-535332-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 130487 invoked by alias); 22 Aug 2016 08:42:05 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 130456 invoked by uid 89); 22 Aug 2016 08:42:04 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:41:54 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/69580] [6/7 Regression] From 26/7 seconds to 10 minutes moving from gcc 5.3.1 to gcc 6.0.0
Date: Mon, 22 Aug 2016 08:42:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: compile-time-hog
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: law at redhat dot com
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-69580-4-dp9irbOxJV@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69580-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69580-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02669.txt.bz2
Content-length: 542

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69580

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #9 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.

--- Comment #10 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535336-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:43:31 2016
Return-Path: <gcc-bugs-return-535336-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 14672 invoked by alias); 22 Aug 2016 08:43:30 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 14648 invoked by uid 89); 22 Aug 2016 08:43:29 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:43:20 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/69580] [6/7 Regression] From 26/7 seconds to 10 minutes moving from gcc 5.3.1 to gcc 6.0.0
Date: Mon, 22 Aug 2016 08:43:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: compile-time-hog
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: law at redhat dot com
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-69580-4-RdcMjmla2w@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69580-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69580-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02672.txt.bz2
Content-length: 178

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69580

--- Comment #11 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535337-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:44:02 2016
Return-Path: <gcc-bugs-return-535337-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 15848 invoked by alias); 22 Aug 2016 08:44:01 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 15829 invoked by uid 89); 22 Aug 2016 08:44:01 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:43:51 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/71638] [6/7 Regression] ICE on invalid C++ code on x86_64-linux-gnu with -Wall (internal compiler error: non-constant element in constant CONSTRUCTOR)
Date: Mon, 22 Aug 2016 08:44:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: error-recovery, ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71638-4-EgweT2b4uY@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71638-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71638-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02673.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71638

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535339-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:44:44 2016
Return-Path: <gcc-bugs-return-535339-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 17557 invoked by alias); 22 Aug 2016 08:44:44 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 17525 invoked by uid 89); 22 Aug 2016 08:44:43 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyq321
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:44:34 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/71321] [6/7 Regression] x86: worse code for uint8_t % 10 and / 10
Date: Mon, 22 Aug 2016 08:44:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-71321-4-6CXVVj9pGb@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71321-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71321-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02675.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71321

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #2 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535338-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:44:12 2016
Return-Path: <gcc-bugs-return-535338-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 16572 invoked by alias); 22 Aug 2016 08:44:12 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 16553 invoked by uid 89); 22 Aug 2016 08:44:11 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:44:01 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/69675] [6/7 Regression] [graphite] ICE: verify_ssa failed (definition in block 42 does not dominate use in block 34)
Date: Mon, 22 Aug 2016 08:44:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-69675-4-uLJoxH3v8W@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69675-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69675-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02674.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69675

--- Comment #6 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535341-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:45:54 2016
Return-Path: <gcc-bugs-return-535341-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 20443 invoked by alias); 22 Aug 2016 08:45:54 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 20426 invoked by uid 89); 22 Aug 2016 08:45:53 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:45:44 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72775] [6/7 Regression] internal compiler error: in finish_expr_stmt, at cp/semantics.c:677
Date: Mon, 22 Aug 2016 08:45:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72775-4-t6xzkg435Q@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72775-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72775-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02677.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72775

--- Comment #8 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535340-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:45:34 2016
Return-Path: <gcc-bugs-return-535340-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 18973 invoked by alias); 22 Aug 2016 08:45:34 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 18949 invoked by uid 89); 22 Aug 2016 08:45:33 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:45:23 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/71638] [6/7 Regression] ICE on invalid C++ code on x86_64-linux-gnu with -Wall (internal compiler error: non-constant element in constant CONSTRUCTOR)
Date: Mon, 22 Aug 2016 08:45:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: error-recovery, ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71638-4-OXaCjIZyEd@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71638-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71638-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02676.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71638

--- Comment #5 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535342-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:46:17 2016
Return-Path: <gcc-bugs-return-535342-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 22115 invoked by alias); 22 Aug 2016 08:46:15 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 22092 invoked by uid 89); 22 Aug 2016 08:46:14 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:46:06 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/71321] [6/7 Regression] x86: worse code for uint8_t % 10 and / 10
Date: Mon, 22 Aug 2016 08:46:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71321-4-xr4KHxTaip@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71321-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71321-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02678.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71321

--- Comment #3 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535343-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:46:47 2016
Return-Path: <gcc-bugs-return-535343-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 23286 invoked by alias); 22 Aug 2016 08:46:46 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 23270 invoked by uid 89); 22 Aug 2016 08:46:46 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:46:35 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71109] [6 Regression] gcc ICE at -O3 on valid code on x86_64-linux-gnu in "maybe_record_trace_start"
Date: Mon, 22 Aug 2016 08:46:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-71109-4-tq4Udf8bPJ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71109-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71109-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02679.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71109

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535344-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:47:18 2016
Return-Path: <gcc-bugs-return-535344-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 24134 invoked by alias); 22 Aug 2016 08:47:17 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 24120 invoked by uid 89); 22 Aug 2016 08:47:17 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:47:07 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72775] [6/7 Regression] internal compiler error: in finish_expr_stmt, at cp/semantics.c:677
Date: Mon, 22 Aug 2016 08:47:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72775-4-XYxp1RPt7y@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72775-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72775-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02680.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72775

--- Comment #9 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535345-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:48:12 2016
Return-Path: <gcc-bugs-return-535345-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 27571 invoked by alias); 22 Aug 2016 08:48:12 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 27436 invoked by uid 89); 22 Aug 2016 08:48:10 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:47:59 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71109] [6 Regression] gcc ICE at -O3 on valid code on x86_64-linux-gnu in "maybe_record_trace_start"
Date: Mon, 22 Aug 2016 08:48:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71109-4-x2P8AhYNHA@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71109-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71109-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02681.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71109

--- Comment #5 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535346-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:48:13 2016
Return-Path: <gcc-bugs-return-535346-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 27638 invoked by alias); 22 Aug 2016 08:48:12 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 27439 invoked by uid 89); 22 Aug 2016 08:48:10 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:47:59 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/71570] [6/7 regression] ICE on invalid variable capture in cxx_incomplete_type_diagnostic, at cp/typeck2.c:551
Date: Mon, 22 Aug 2016 08:48:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: error-recovery, ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71570-4-S4ISyUkuXO@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71570-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71570-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02683.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71570

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535347-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:48:44 2016
Return-Path: <gcc-bugs-return-535347-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 30326 invoked by alias); 22 Aug 2016 08:48:44 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 30297 invoked by uid 89); 22 Aug 2016 08:48:43 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:48:39 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/77318] [7 regression] FAIL: gfortran.dg/graphite/pr68279.f90   -O  (internal compiler error)
Date: Mon, 22 Aug 2016 08:48:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-77318-4-ClYQlNicvV@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77318-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77318-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02682.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77318

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |7.0
>From gcc-bugs-return-535349-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:49:38 2016
Return-Path: <gcc-bugs-return-535349-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 32468 invoked by alias); 22 Aug 2016 08:49:38 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 32442 invoked by uid 89); 22 Aug 2016 08:49:36 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:49:26 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/71570] [6/7 regression] ICE on invalid variable capture in cxx_incomplete_type_diagnostic, at cp/typeck2.c:551
Date: Mon, 22 Aug 2016 08:49:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: error-recovery, ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71570-4-X6mBuLHcMR@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71570-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71570-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02685.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71570

--- Comment #5 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535348-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:49:17 2016
Return-Path: <gcc-bugs-return-535348-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 31659 invoked by alias); 22 Aug 2016 08:49:16 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 31637 invoked by uid 89); 22 Aug 2016 08:49:16 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:49:05 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/72813] [6/7 Regression] atomic header cannot be compiled into translation unit with -fkeep-inline-functions
Date: Mon, 22 Aug 2016 08:49:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: rejects-valid
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72813-4-gBErAleCvz@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72813-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72813-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02684.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72813

--- Comment #5 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535350-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:49:58 2016
Return-Path: <gcc-bugs-return-535350-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 33251 invoked by alias); 22 Aug 2016 08:49:58 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 33232 invoked by uid 89); 22 Aug 2016 08:49:57 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:271
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:49:47 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug debug/71906] [6/7 Regression] Fortran allocatable strings debug info type size regression
Date: Mon, 22 Aug 2016 08:49:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: debug
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71906-4-hqYgeGV4U3@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71906-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71906-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02686.txt.bz2
Content-length: 178

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71906

--- Comment #10 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535351-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:50:40 2016
Return-Path: <gcc-bugs-return-535351-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 35754 invoked by alias); 22 Aug 2016 08:50:40 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 35734 invoked by uid 89); 22 Aug 2016 08:50:39 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:50:29 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71563] [6/7 Regression] Regression in GCC-7.0.0's optimizer.
Date: Mon, 22 Aug 2016 08:50:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71563-4-pUtHb25Akp@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71563-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71563-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02687.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71563

--- Comment #6 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535352-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:50:40 2016
Return-Path: <gcc-bugs-return-535352-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 35773 invoked by alias); 22 Aug 2016 08:50:40 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 35735 invoked by uid 89); 22 Aug 2016 08:50:39 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:50:29 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/72813] [6/7 Regression] atomic header cannot be compiled into translation unit with -fkeep-inline-functions
Date: Mon, 22 Aug 2016 08:50:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: rejects-valid
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72813-4-ehfWEW7jsw@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72813-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72813-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02688.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72813

--- Comment #6 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535355-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:51:23 2016
Return-Path: <gcc-bugs-return-535355-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 38702 invoked by alias); 22 Aug 2016 08:51:22 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 38665 invoked by uid 89); 22 Aug 2016 08:51:21 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:51:11 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug debug/71906] [6/7 Regression] Fortran allocatable strings debug info type size regression
Date: Mon, 22 Aug 2016 08:51:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: debug
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71906-4-3p0RPQVm47@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71906-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71906-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02691.txt.bz2
Content-length: 178

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71906

--- Comment #11 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535357-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:51:45 2016
Return-Path: <gcc-bugs-return-535357-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 40221 invoked by alias); 22 Aug 2016 08:51:44 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 40181 invoked by uid 89); 22 Aug 2016 08:51:42 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:573
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:51:32 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/68733] [6/7 Regression] FAIL: libgomp.c/target-29.c (internal compiler error)
Date: Mon, 22 Aug 2016 08:51:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-68733-4-5jg0TXAYUv@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68733-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68733-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02693.txt.bz2
Content-length: 541

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68733

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #6 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.

--- Comment #7 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535353-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:50:51 2016
Return-Path: <gcc-bugs-return-535353-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 37062 invoked by alias); 22 Aug 2016 08:50:51 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 36990 invoked by uid 89); 22 Aug 2016 08:50:50 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:50:39 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/68733] [6/7 Regression] FAIL: libgomp.c/target-29.c (internal compiler error)
Date: Mon, 22 Aug 2016 08:51:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-68733-4-u9IVrWE6KJ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68733-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68733-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02690.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68733

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #6 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535356-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:51:33 2016
Return-Path: <gcc-bugs-return-535356-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 39468 invoked by alias); 22 Aug 2016 08:51:33 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 39442 invoked by uid 89); 22 Aug 2016 08:51:32 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Waddress, waddress
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:51:23 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/71121] [6 Regression] Spurious warning: "the address of [...] will never be NULL [-Waddress]"
Date: Mon, 22 Aug 2016 08:51:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: jason at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-71121-4-IK8pNxoXWA@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71121-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71121-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02692.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71121

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535354-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:51:02 2016
Return-Path: <gcc-bugs-return-535354-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 37846 invoked by alias); 22 Aug 2016 08:51:01 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 37815 invoked by uid 89); 22 Aug 2016 08:51:00 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:50:50 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/66089] [6/7 Regression] elemental dependency mishandling when derived types are involved
Date: Mon, 22 Aug 2016 08:51:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: mikael at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-66089-4-78b1EqbgXS@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-66089-4@http.gcc.gnu.org/bugzilla/>
References: <bug-66089-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02689.txt.bz2
Content-length: 178

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66089

--- Comment #18 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535358-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:51:55 2016
Return-Path: <gcc-bugs-return-535358-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 44762 invoked by alias); 22 Aug 2016 08:51:55 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 43063 invoked by uid 89); 22 Aug 2016 08:51:52 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:51:44 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71947] [6/7 Regression] x ^ y not folded to 0 if x == y by DOM
Date: Mon, 22 Aug 2016 08:51:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71947-4-OUYFPozanP@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71947-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71947-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02694.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71947

--- Comment #7 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535362-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:52:36 2016
Return-Path: <gcc-bugs-return-535362-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 49833 invoked by alias); 22 Aug 2016 08:52:35 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 49779 invoked by uid 89); 22 Aug 2016 08:52:35 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:52:25 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/70831] [6/7 Regression] FTBFS: Build fails with bootstrap-lto and profiledbootstrap
Date: Mon, 22 Aug 2016 08:52:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: build, lto
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-70831-4-QXXCOSicJY@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70831-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70831-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02698.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70831

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535359-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:52:05 2016
Return-Path: <gcc-bugs-return-535359-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 45793 invoked by alias); 22 Aug 2016 08:52:05 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 45740 invoked by uid 89); 22 Aug 2016 08:52:04 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:51:54 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71563] [6/7 Regression] Regression in GCC-7.0.0's optimizer.
Date: Mon, 22 Aug 2016 08:52:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71563-4-rqjMfaXUfp@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71563-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71563-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02695.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71563

--- Comment #7 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535361-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:52:26 2016
Return-Path: <gcc-bugs-return-535361-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 48687 invoked by alias); 22 Aug 2016 08:52:26 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 48640 invoked by uid 89); 22 Aug 2016 08:52:24 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:582
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:52:15 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/71121] [6 Regression] Spurious warning: "the address of [...] will never be NULL [-Waddress]"
Date: Mon, 22 Aug 2016 08:52:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: jason at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-71121-4-wCsLa9y0SQ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71121-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71121-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02697.txt.bz2
Content-length: 541

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71121

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.

--- Comment #5 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535360-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:52:26 2016
Return-Path: <gcc-bugs-return-535360-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 48673 invoked by alias); 22 Aug 2016 08:52:26 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 48635 invoked by uid 89); 22 Aug 2016 08:52:24 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:52:15 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/66089] [6/7 Regression] elemental dependency mishandling when derived types are involved
Date: Mon, 22 Aug 2016 08:52:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: mikael at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-66089-4-X9PhbHJoen@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-66089-4@http.gcc.gnu.org/bugzilla/>
References: <bug-66089-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02696.txt.bz2
Content-length: 178

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66089

--- Comment #19 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535363-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:52:58 2016
Return-Path: <gcc-bugs-return-535363-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 51128 invoked by alias); 22 Aug 2016 08:52:57 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 51095 invoked by uid 89); 22 Aug 2016 08:52:56 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:52:46 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72752] [6 Regression] ICE: in retrieve_specialization, at cp/pt.c:1183
Date: Mon, 22 Aug 2016 08:52:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72752-4-DGPacGqUPV@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72752-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72752-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02699.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72752

--- Comment #7 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535365-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:53:29 2016
Return-Path: <gcc-bugs-return-535365-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 53065 invoked by alias); 22 Aug 2016 08:53:29 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 52697 invoked by uid 89); 22 Aug 2016 08:53:27 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:53:17 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/69639] [6/7 Regression] FAIL: gcc.c-torture/compile/limits-exprparen.c
Date: Mon, 22 Aug 2016 08:53:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-69639-4-cSEAPBBgKD@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69639-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69639-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02701.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69639

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #5 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535366-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:53:29 2016
Return-Path: <gcc-bugs-return-535366-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 53304 invoked by alias); 22 Aug 2016 08:53:29 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 52693 invoked by uid 89); 22 Aug 2016 08:53:27 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:53:18 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/70831] [6/7 Regression] FTBFS: Build fails with bootstrap-lto and profiledbootstrap
Date: Mon, 22 Aug 2016 08:53:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: build, lto
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-70831-4-qape3Di67F@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70831-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70831-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02702.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70831

--- Comment #5 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535364-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:53:18 2016
Return-Path: <gcc-bugs-return-535364-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 51977 invoked by alias); 22 Aug 2016 08:53:18 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 51944 invoked by uid 89); 22 Aug 2016 08:53:17 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:53:06 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71947] [6/7 Regression] x ^ y not folded to 0 if x == y by DOM
Date: Mon, 22 Aug 2016 08:53:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71947-4-MoO7dmlDZN@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71947-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71947-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02700.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71947

--- Comment #8 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535368-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:54:30 2016
Return-Path: <gcc-bugs-return-535368-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 56263 invoked by alias); 22 Aug 2016 08:54:30 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 56244 invoked by uid 89); 22 Aug 2016 08:54:29 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:269
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:54:19 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/68733] [6/7 Regression] FAIL: libgomp.c/target-29.c (internal compiler error)
Date: Mon, 22 Aug 2016 08:54:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-68733-4-le2XgLmzmk@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68733-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68733-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02704.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68733

--- Comment #8 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535367-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:54:20 2016
Return-Path: <gcc-bugs-return-535367-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 55558 invoked by alias); 22 Aug 2016 08:54:20 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 55527 invoked by uid 89); 22 Aug 2016 08:54:19 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:54:09 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72752] [6 Regression] ICE: in retrieve_specialization, at cp/pt.c:1183
Date: Mon, 22 Aug 2016 08:54:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72752-4-NSKW0gTw4h@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72752-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72752-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02703.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72752

--- Comment #8 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535369-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:54:31 2016
Return-Path: <gcc-bugs-return-535369-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 56274 invoked by alias); 22 Aug 2016 08:54:30 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 56243 invoked by uid 89); 22 Aug 2016 08:54:29 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:54:19 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/70703] [6/7 regression] Regression in register usage on x86
Date: Mon, 22 Aug 2016 08:54:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: missed-optimization, ra
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-70703-4-vUK4Bzr8pu@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70703-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70703-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02705.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70703

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535370-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:54:52 2016
Return-Path: <gcc-bugs-return-535370-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 57721 invoked by alias); 22 Aug 2016 08:54:51 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 57698 invoked by uid 89); 22 Aug 2016 08:54:50 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:54:40 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/69639] [6/7 Regression] FAIL: gcc.c-torture/compile/limits-exprparen.c
Date: Mon, 22 Aug 2016 08:54:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-69639-4-8AHEvalpck@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69639-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69639-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02706.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69639

--- Comment #6 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535371-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:55:12 2016
Return-Path: <gcc-bugs-return-535371-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 59142 invoked by alias); 22 Aug 2016 08:55:12 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 59130 invoked by uid 89); 22 Aug 2016 08:55:11 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:55:02 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libgcj/69333] [6/7 Regression] FAIL: StackTrace2 execution - source compiled test
Date: Mon, 22 Aug 2016 08:55:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libgcj
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-69333-4-aTPzkZ3SVC@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69333-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69333-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02707.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69333

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #2 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535374-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:55:56 2016
Return-Path: <gcc-bugs-return-535374-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 66391 invoked by alias); 22 Aug 2016 08:55:55 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 66350 invoked by uid 89); 22 Aug 2016 08:55:53 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:55:43 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/68733] [6/7 Regression] FAIL: libgomp.c/target-29.c (internal compiler error)
Date: Mon, 22 Aug 2016 08:55:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-68733-4-nD70WIilWR@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68733-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68733-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02710.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68733

--- Comment #9 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535372-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:55:34 2016
Return-Path: <gcc-bugs-return-535372-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 64899 invoked by alias); 22 Aug 2016 08:55:33 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 64878 invoked by uid 89); 22 Aug 2016 08:55:32 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=cris
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:55:22 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/66171] [6/7 Regression]: gcc.target/cris/biap.c
Date: Mon, 22 Aug 2016 08:55:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: hp at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-66171-4-HqpcCm2bjE@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-66171-4@http.gcc.gnu.org/bugzilla/>
References: <bug-66171-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02708.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66171

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #3 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535373-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:55:44 2016
Return-Path: <gcc-bugs-return-535373-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 65609 invoked by alias); 22 Aug 2016 08:55:43 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 65584 invoked by uid 89); 22 Aug 2016 08:55:43 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:55:33 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/71602] [6/7 regression] ICE on __builtin_va_arg in build_va_arg, at c-family/c-common.c:5810
Date: Mon, 22 Aug 2016 08:55:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-invalid-code, patch
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71602-4-B8yaBxTxNR@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71602-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71602-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02709.txt.bz2
Content-length: 178

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71602

--- Comment #13 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535376-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:56:57 2016
Return-Path: <gcc-bugs-return-535376-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 70137 invoked by alias); 22 Aug 2016 08:56:57 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 70105 invoked by uid 89); 22 Aug 2016 08:56:56 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:56:46 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71691] [6/7 Regression] wrong code at -O3 in both 32-bit and 64-bit modes on x86_64-linux-gnu (Floating point exception)
Date: Mon, 22 Aug 2016 08:56:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71691-4-VCSQw6SgH7@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71691-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71691-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02712.txt.bz2
Content-length: 178

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71691

--- Comment #13 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535375-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:56:47 2016
Return-Path: <gcc-bugs-return-535375-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 69364 invoked by alias); 22 Aug 2016 08:56:46 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 69351 invoked by uid 89); 22 Aug 2016 08:56:46 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:56:36 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/70621] [6/7 Regression] ICE on invalid code at -O1 and above on x86_64-linux-gnu in record_reference, at cgraphbuild.c:64
Date: Mon, 22 Aug 2016 08:56:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: error-recovery, ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-70621-4-F7iKHyFxvp@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70621-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70621-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02711.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70621

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535377-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:56:57 2016
Return-Path: <gcc-bugs-return-535377-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 70149 invoked by alias); 22 Aug 2016 08:56:57 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 70108 invoked by uid 89); 22 Aug 2016 08:56:56 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:56:46 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/70621] [6/7 Regression] ICE on invalid code at -O1 and above on x86_64-linux-gnu in record_reference, at cgraphbuild.c:64
Date: Mon, 22 Aug 2016 08:56:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: error-recovery, ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-70621-4-DrURHfn3ue@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70621-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70621-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02713.txt.bz2
Content-length: 541

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70621

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.

--- Comment #5 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535379-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:57:29 2016
Return-Path: <gcc-bugs-return-535379-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 72830 invoked by alias); 22 Aug 2016 08:57:28 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 72811 invoked by uid 89); 22 Aug 2016 08:57:27 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:57:18 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/71342] [6/7 Regression][RL78] set1 / clr1 with !addr16 sometimes doesn't work
Date: Mon, 22 Aug 2016 08:57:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-71342-4-A4KLwzu6UD@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71342-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71342-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02715.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71342

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #3 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535378-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:57:08 2016
Return-Path: <gcc-bugs-return-535378-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 71749 invoked by alias); 22 Aug 2016 08:57:07 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 71668 invoked by uid 89); 22 Aug 2016 08:57:07 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:56:57 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/71602] [6/7 regression] ICE on __builtin_va_arg in build_va_arg, at c-family/c-common.c:5810
Date: Mon, 22 Aug 2016 08:57:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-invalid-code, patch
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71602-4-yJEKMQGHBG@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71602-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71602-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02714.txt.bz2
Content-length: 178

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71602

--- Comment #14 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535380-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:57:40 2016
Return-Path: <gcc-bugs-return-535380-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 73598 invoked by alias); 22 Aug 2016 08:57:39 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 73553 invoked by uid 89); 22 Aug 2016 08:57:38 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:57:28 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/71342] [6/7 Regression][RL78] set1 / clr1 with !addr16 sometimes doesn't work
Date: Mon, 22 Aug 2016 08:57:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-71342-4-Jt6sIfaWTE@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71342-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71342-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02716.txt.bz2
Content-length: 541

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71342

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #3 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535381-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:58:01 2016
Return-Path: <gcc-bugs-return-535381-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 74564 invoked by alias); 22 Aug 2016 08:58:01 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 74424 invoked by uid 89); 22 Aug 2016 08:57:59 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:57:49 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/70959] [6/7 Regression] Invalid type determination due to expression in a type declaration statement
Date: Mon, 22 Aug 2016 08:58:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-70959-4-7ynkwIRatu@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70959-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70959-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02717.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70959

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #7 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535382-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:58:11 2016
Return-Path: <gcc-bugs-return-535382-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 75895 invoked by alias); 22 Aug 2016 08:58:10 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 75850 invoked by uid 89); 22 Aug 2016 08:58:10 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:58:00 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/70959] [6/7 Regression] Invalid type determination due to expression in a type declaration statement
Date: Mon, 22 Aug 2016 08:58:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-70959-4-0hGmrU0R8a@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70959-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70959-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02718.txt.bz2
Content-length: 541

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70959

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #7 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.

--- Comment #8 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535383-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:58:21 2016
Return-Path: <gcc-bugs-return-535383-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 76673 invoked by alias); 22 Aug 2016 08:58:21 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 76653 invoked by uid 89); 22 Aug 2016 08:58:20 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:58:10 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71691] [6/7 Regression] wrong code at -O3 in both 32-bit and 64-bit modes on x86_64-linux-gnu (Floating point exception)
Date: Mon, 22 Aug 2016 08:58:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71691-4-PHcHZMs35x@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71691-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71691-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02719.txt.bz2
Content-length: 303

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71691

--- Comment #13 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.

--- Comment #14 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535384-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:58:31 2016
Return-Path: <gcc-bugs-return-535384-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 77407 invoked by alias); 22 Aug 2016 08:58:31 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 77387 invoked by uid 89); 22 Aug 2016 08:58:30 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:58:20 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/71121] [6 Regression] Spurious warning: "the address of [...] will never be NULL [-Waddress]"
Date: Mon, 22 Aug 2016 08:58:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: jason at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71121-4-vTDcFRzAq4@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71121-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71121-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02720.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71121

--- Comment #6 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535388-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:59:23 2016
Return-Path: <gcc-bugs-return-535388-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 82216 invoked by alias); 22 Aug 2016 08:59:23 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 82140 invoked by uid 89); 22 Aug 2016 08:59:22 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:59:13 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71575] [6/7 Regression] [graphite] internal compiler error: in copy_cond_phi_nodes, at graphite-isl-ast-to-gimple.c:2500
Date: Mon, 22 Aug 2016 08:59:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71575-4-KADsplZIZp@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71575-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71575-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02722.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71575

--- Comment #6 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535389-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:59:54 2016
Return-Path: <gcc-bugs-return-535389-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 91909 invoked by alias); 22 Aug 2016 08:59:54 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 91387 invoked by uid 89); 22 Aug 2016 08:59:54 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:59:44 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/71121] [6 Regression] Spurious warning: "the address of [...] will never be NULL [-Waddress]"
Date: Mon, 22 Aug 2016 08:59:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: jason at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71121-4-x0ZZJMu2gY@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71121-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71121-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02725.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71121

--- Comment #7 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535386-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:59:14 2016
Return-Path: <gcc-bugs-return-535386-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 80535 invoked by alias); 22 Aug 2016 08:59:13 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 80389 invoked by uid 89); 22 Aug 2016 08:59:12 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:59:02 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/68887] [6/7 regression] gfortran.dg/coarray/event_[12].f90 -fcoarray=lib  -O2  -lcaf_single -latomic fails
Date: Mon, 22 Aug 2016 08:59:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-68887-4-2UjndBBKkh@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68887-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68887-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02723.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68887

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #6 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535385-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:59:13 2016
Return-Path: <gcc-bugs-return-535385-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 80492 invoked by alias); 22 Aug 2016 08:59:13 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 80387 invoked by uid 89); 22 Aug 2016 08:59:12 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:59:02 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/70831] [6/7 Regression] FTBFS: Build fails with bootstrap-lto and profiledbootstrap
Date: Mon, 22 Aug 2016 08:59:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: build, lto
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-70831-4-2Fim9yE22J@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70831-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70831-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02721.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70831

--- Comment #6 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535387-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:59:14 2016
Return-Path: <gcc-bugs-return-535387-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 80588 invoked by alias); 22 Aug 2016 08:59:14 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 80396 invoked by uid 89); 22 Aug 2016 08:59:12 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:59:02 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/68887] [6/7 regression] gfortran.dg/coarray/event_[12].f90 -fcoarray=lib  -O2  -lcaf_single -latomic fails
Date: Mon, 22 Aug 2016 08:59:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-68887-4-m2C5R1k7bi@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68887-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68887-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02724.txt.bz2
Content-length: 541

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68887

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #6 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.

--- Comment #7 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535390-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 08:59:55 2016
Return-Path: <gcc-bugs-return-535390-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 92473 invoked by alias); 22 Aug 2016 08:59:55 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 92227 invoked by uid 89); 22 Aug 2016 08:59:55 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 08:59:44 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ipa/66004] [6/7 Regression]: performance of 26_numerics/random/negative_binomial_distribution/operators/values.cc
Date: Mon, 22 Aug 2016 09:00:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ipa
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-66004-4-UZFudgXNjI@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-66004-4@http.gcc.gnu.org/bugzilla/>
References: <bug-66004-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02728.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66004

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #9 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535394-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:00:57 2016
Return-Path: <gcc-bugs-return-535394-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 124741 invoked by alias); 22 Aug 2016 09:00:57 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 124548 invoked by uid 89); 22 Aug 2016 09:00:56 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:00:46 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ipa/66004] [6/7 Regression]: performance of 26_numerics/random/negative_binomial_distribution/operators/values.cc
Date: Mon, 22 Aug 2016 09:00:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ipa
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-66004-4-u1AVouQiLr@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-66004-4@http.gcc.gnu.org/bugzilla/>
References: <bug-66004-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02729.txt.bz2
Content-length: 178

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66004

--- Comment #10 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535392-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:00:45 2016
Return-Path: <gcc-bugs-return-535392-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 114665 invoked by alias); 22 Aug 2016 09:00:44 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 113197 invoked by uid 89); 22 Aug 2016 09:00:43 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:00:33 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/70831] [6/7 Regression] FTBFS: Build fails with bootstrap-lto and profiledbootstrap
Date: Mon, 22 Aug 2016 09:00:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: build, lto
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-70831-4-1HTDNDyzNW@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70831-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70831-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02727.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70831

--- Comment #7 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535393-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:00:55 2016
Return-Path: <gcc-bugs-return-535393-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 123542 invoked by alias); 22 Aug 2016 09:00:55 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 122492 invoked by uid 89); 22 Aug 2016 09:00:53 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:00:44 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71575] [6/7 Regression] [graphite] internal compiler error: in copy_cond_phi_nodes, at graphite-isl-ast-to-gimple.c:2500
Date: Mon, 22 Aug 2016 09:00:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71575-4-ApYpvr4yvd@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71575-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71575-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02730.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71575

--- Comment #7 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535391-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:00:33 2016
Return-Path: <gcc-bugs-return-535391-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 106293 invoked by alias); 22 Aug 2016 09:00:32 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 100273 invoked by uid 89); 22 Aug 2016 09:00:21 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:00:06 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/69332] [6/7 Regression] FAIL: libstdc++-prettyprinters/libfundts.cc print ab
Date: Mon, 22 Aug 2016 09:00:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-69332-4-oaBav92579@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69332-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69332-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02726.txt.bz2
Content-length: 417

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69332

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #3 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535395-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:01:27 2016
Return-Path: <gcc-bugs-return-535395-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 130529 invoked by alias); 22 Aug 2016 09:01:27 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 130479 invoked by uid 89); 22 Aug 2016 09:01:25 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:01:16 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/70703] [6/7 regression] Regression in register usage on x86
Date: Mon, 22 Aug 2016 09:01:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: missed-optimization, ra
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-70703-4-vPgDruz2sF@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70703-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70703-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02731.txt.bz2
Content-length: 301

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70703

--- Comment #5 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.

--- Comment #6 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535396-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:02:09 2016
Return-Path: <gcc-bugs-return-535396-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 1020 invoked by alias); 22 Aug 2016 09:02:09 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 998 invoked by uid 89); 22 Aug 2016 09:02:08 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:01:58 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libgcj/69333] [6/7 Regression] FAIL: StackTrace2 execution - source compiled test
Date: Mon, 22 Aug 2016 09:02:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libgcj
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-69333-4-Xfu7EYSJqC@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69333-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69333-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02732.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69333

--- Comment #3 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535399-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:02:53 2016
Return-Path: <gcc-bugs-return-535399-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 3558 invoked by alias); 22 Aug 2016 09:02:52 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 3517 invoked by uid 89); 22 Aug 2016 09:02:51 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:02:41 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/68649] [6/7 Regression] note: code may be misoptimized unless -fno-strict-aliasing is used
Date: Mon, 22 Aug 2016 09:02:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-68649-4-o5nwkyDY0B@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68649-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68649-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02735.txt.bz2
Content-length: 543

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68649

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3

--- Comment #15 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.

--- Comment #16 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535397-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:02:32 2016
Return-Path: <gcc-bugs-return-535397-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 1913 invoked by alias); 22 Aug 2016 09:02:31 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 1875 invoked by uid 89); 22 Aug 2016 09:02:29 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:02:19 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/69196] [5/6/7 Regression] code size regression with jump threading at -O2
Date: Mon, 22 Aug 2016 09:02:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: law at redhat dot com
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-69196-4-9slXvdL4pO@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69196-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69196-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02733.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69196

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535398-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:02:52 2016
Return-Path: <gcc-bugs-return-535398-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 3545 invoked by alias); 22 Aug 2016 09:02:52 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 3515 invoked by uid 89); 22 Aug 2016 09:02:51 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:02:41 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/70703] [6/7 regression] Regression in register usage on x86
Date: Mon, 22 Aug 2016 09:02:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: missed-optimization, ra
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-70703-4-urDuOVKSa1@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70703-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70703-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02734.txt.bz2
Content-length: 425

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70703

--- Comment #5 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.

--- Comment #6 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.

--- Comment #7 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535400-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:03:04 2016
Return-Path: <gcc-bugs-return-535400-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 4993 invoked by alias); 22 Aug 2016 09:03:04 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 4916 invoked by uid 89); 22 Aug 2016 09:03:03 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:03:01 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/71875] [5 Regression] template specialization compile error
Date: Mon, 22 Aug 2016 09:03:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords: assemble-failure, rejects-valid
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cf_known_to_work target_milestone
Message-ID: <bug-71875-4-QYpKYaH4oE@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71875-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71875-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02736.txt.bz2
Content-length: 348

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71875

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
      Known to work|                            |6.2.0
   Target Milestone|6.2                         |5.5
>From gcc-bugs-return-535402-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:03:45 2016
Return-Path: <gcc-bugs-return-535402-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 6764 invoked by alias); 22 Aug 2016 09:03:44 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 6734 invoked by uid 89); 22 Aug 2016 09:03:43 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:03:33 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/66171] [6/7 Regression]: gcc.target/cris/biap.c
Date: Mon, 22 Aug 2016 09:03:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: hp at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-66171-4-cYofRgDle5@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-66171-4@http.gcc.gnu.org/bugzilla/>
References: <bug-66171-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02738.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66171

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535401-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:03:34 2016
Return-Path: <gcc-bugs-return-535401-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 6023 invoked by alias); 22 Aug 2016 09:03:34 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 6004 invoked by uid 89); 22 Aug 2016 09:03:33 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:03:23 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libgcj/69333] [6/7 Regression] FAIL: StackTrace2 execution - source compiled test
Date: Mon, 22 Aug 2016 09:03:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libgcj
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-69333-4-AWnFu6cClB@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69333-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69333-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02737.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69333

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535403-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:04:16 2016
Return-Path: <gcc-bugs-return-535403-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 7741 invoked by alias); 22 Aug 2016 09:04:16 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 7727 invoked by uid 89); 22 Aug 2016 09:04:15 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:04:05 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/68649] [6/7 Regression] note: code may be misoptimized unless -fno-strict-aliasing is used
Date: Mon, 22 Aug 2016 09:04:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-68649-4-P8v6dyogBN@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68649-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68649-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02739.txt.bz2
Content-length: 178

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68649

--- Comment #17 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535405-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:04:58 2016
Return-Path: <gcc-bugs-return-535405-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 10863 invoked by alias); 22 Aug 2016 09:04:57 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 10849 invoked by uid 89); 22 Aug 2016 09:04:57 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:04:47 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/65452] strcmp (foo, foo) could give a warning
Date: Mon, 22 Aug 2016 09:04:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-65452-4-IyCRqKmsPV@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-65452-4@http.gcc.gnu.org/bugzilla/>
References: <bug-65452-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02741.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65452

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535404-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:04:48 2016
Return-Path: <gcc-bugs-return-535404-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 9309 invoked by alias); 22 Aug 2016 09:04:47 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 9285 invoked by uid 89); 22 Aug 2016 09:04:46 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:04:38 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71518] [6 Regression] wrong code at -O3 on x86_64-linux-gnu in 64-bit mode (not in 32-bit mode)
Date: Mon, 22 Aug 2016 09:04:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71518-4-GKF5OMWcvS@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71518-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71518-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02740.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71518

--- Comment #7 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535406-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:05:08 2016
Return-Path: <gcc-bugs-return-535406-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 12183 invoked by alias); 22 Aug 2016 09:05:08 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 12148 invoked by uid 89); 22 Aug 2016 09:05:07 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:04:57 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/66171] [6/7 Regression]: gcc.target/cris/biap.c
Date: Mon, 22 Aug 2016 09:05:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: hp at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-66171-4-qqiZOwPhby@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-66171-4@http.gcc.gnu.org/bugzilla/>
References: <bug-66171-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02742.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66171

--- Comment #5 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535408-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:06:22 2016
Return-Path: <gcc-bugs-return-535408-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 21023 invoked by alias); 22 Aug 2016 09:06:22 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 21006 invoked by uid 89); 22 Aug 2016 09:06:21 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:06:11 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/70621] [6/7 Regression] ICE on invalid code at -O1 and above on x86_64-linux-gnu in record_reference, at cgraphbuild.c:64
Date: Mon, 22 Aug 2016 09:06:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: error-recovery, ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-70621-4-7V0teGZOMP@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70621-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70621-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02744.txt.bz2
Content-length: 301

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70621

--- Comment #6 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.

--- Comment #7 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535407-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:06:12 2016
Return-Path: <gcc-bugs-return-535407-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 20297 invoked by alias); 22 Aug 2016 09:06:11 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 20275 invoked by uid 89); 22 Aug 2016 09:06:10 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:06:01 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71518] [6 Regression] wrong code at -O3 on x86_64-linux-gnu in 64-bit mode (not in 32-bit mode)
Date: Mon, 22 Aug 2016 09:06:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71518-4-kA8JzXshbm@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71518-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71518-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02743.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71518

--- Comment #8 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535409-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:06:27 2016
Return-Path: <gcc-bugs-return-535409-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 21052 invoked by alias); 22 Aug 2016 09:06:22 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 21005 invoked by uid 89); 22 Aug 2016 09:06:21 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:06:11 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/65430] Missing -Wsequence-point warning with COMPOUND_EXPRs
Date: Mon, 22 Aug 2016 09:06:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 5.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-65430-4-Eqnf1NaMjv@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-65430-4@http.gcc.gnu.org/bugzilla/>
References: <bug-65430-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02745.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65430

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535411-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:07:04 2016
Return-Path: <gcc-bugs-return-535411-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 22802 invoked by alias); 22 Aug 2016 09:07:04 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 22770 invoked by uid 89); 22 Aug 2016 09:07:03 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:265
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:06:54 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/71342] [6/7 Regression][RL78] set1 / clr1 with !addr16 sometimes doesn't work
Date: Mon, 22 Aug 2016 09:07:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71342-4-W3Q9oCJlij@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71342-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71342-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02747.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71342

--- Comment #5 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535410-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:07:04 2016
Return-Path: <gcc-bugs-return-535410-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 22790 invoked by alias); 22 Aug 2016 09:07:03 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 22771 invoked by uid 89); 22 Aug 2016 09:07:03 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:06:53 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/70315] FAIL: gcc.dg/tree-ssa/sra-17.c scan-tree-dump-times esra
Date: Mon, 22 Aug 2016 09:07:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-70315-4-OgVj1NAqcf@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70315-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70315-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02746.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70315

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535412-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:07:45 2016
Return-Path: <gcc-bugs-return-535412-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 24535 invoked by alias); 22 Aug 2016 09:07:45 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 24515 invoked by uid 89); 22 Aug 2016 09:07:44 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:07:34 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/70621] [6/7 Regression] ICE on invalid code at -O1 and above on x86_64-linux-gnu in record_reference, at cgraphbuild.c:64
Date: Mon, 22 Aug 2016 09:07:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: error-recovery, ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-70621-4-t6L9U9vcFg@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70621-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70621-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02748.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70621

--- Comment #8 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535413-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:07:46 2016
Return-Path: <gcc-bugs-return-535413-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 24552 invoked by alias); 22 Aug 2016 09:07:45 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 24516 invoked by uid 89); 22 Aug 2016 09:07:44 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:289
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:07:24 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/70959] [6/7 Regression] Invalid type determination due to expression in a type declaration statement
Date: Mon, 22 Aug 2016 09:07:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-70959-4-66pxhcadUA@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70959-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70959-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02749.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70959

--- Comment #9 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535414-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:08:27 2016
Return-Path: <gcc-bugs-return-535414-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 32917 invoked by alias); 22 Aug 2016 09:08:27 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 32899 invoked by uid 89); 22 Aug 2016 09:08:26 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:08:16 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/71342] [6/7 Regression][RL78] set1 / clr1 with !addr16 sometimes doesn't work
Date: Mon, 22 Aug 2016 09:08:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71342-4-zSOXYoPR89@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71342-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71342-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02750.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71342

--- Comment #6 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535415-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:08:38 2016
Return-Path: <gcc-bugs-return-535415-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 33665 invoked by alias); 22 Aug 2016 09:08:37 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 33652 invoked by uid 89); 22 Aug 2016 09:08:37 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:08:26 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72808] [6/7 Regression] ICE on valid c++ code in verify_type (gcc/tree.c:14047)
Date: Mon, 22 Aug 2016 09:08:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72808-4-Csapx5ndh8@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72808-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72808-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02751.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72808

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535416-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:08:58 2016
Return-Path: <gcc-bugs-return-535416-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 37340 invoked by alias); 22 Aug 2016 09:08:58 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 37327 invoked by uid 89); 22 Aug 2016 09:08:57 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:08:47 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/70959] [6/7 Regression] Invalid type determination due to expression in a type declaration statement
Date: Mon, 22 Aug 2016 09:08:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-70959-4-uqo88FJG5A@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70959-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70959-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02752.txt.bz2
Content-length: 178

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70959

--- Comment #10 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535417-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:09:51 2016
Return-Path: <gcc-bugs-return-535417-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 44268 invoked by alias); 22 Aug 2016 09:09:51 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 44248 invoked by uid 89); 22 Aug 2016 09:09:50 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:09:40 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/68887] [6/7 regression] gfortran.dg/coarray/event_[12].f90 -fcoarray=lib  -O2  -lcaf_single -latomic fails
Date: Mon, 22 Aug 2016 09:09:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-68887-4-uizYkP2nu4@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68887-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68887-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02753.txt.bz2
Content-length: 301

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68887

--- Comment #7 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.

--- Comment #8 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535418-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:09:51 2016
Return-Path: <gcc-bugs-return-535418-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 44281 invoked by alias); 22 Aug 2016 09:09:51 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 44249 invoked by uid 89); 22 Aug 2016 09:09:50 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:09:40 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72808] [6/7 Regression] ICE on valid c++ code in verify_type (gcc/tree.c:14047)
Date: Mon, 22 Aug 2016 09:09:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72808-4-baFQufMWn3@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72808-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72808-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02754.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72808

--- Comment #5 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535419-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:11:15 2016
Return-Path: <gcc-bugs-return-535419-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 46235 invoked by alias); 22 Aug 2016 09:11:13 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 46170 invoked by uid 89); 22 Aug 2016 09:11:05 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:293
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:10:55 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/68887] [6/7 regression] gfortran.dg/coarray/event_[12].f90 -fcoarray=lib  -O2  -lcaf_single -latomic fails
Date: Mon, 22 Aug 2016 09:11:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-68887-4-yfYrBUilVr@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68887-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68887-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02755.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68887

--- Comment #9 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535420-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:11:15 2016
Return-Path: <gcc-bugs-return-535420-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 46250 invoked by alias); 22 Aug 2016 09:11:15 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 46177 invoked by uid 89); 22 Aug 2016 09:11:06 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:10:55 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/71654] [6/7 Regression] missing VRP optimization on c++ unsigned char and short expressions
Date: Mon, 22 Aug 2016 09:11:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: ppalka at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71654-4-BfRwnn7xBb@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71654-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71654-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02756.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71654

--- Comment #7 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535421-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:12:01 2016
Return-Path: <gcc-bugs-return-535421-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 48875 invoked by alias); 22 Aug 2016 09:12:00 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 48816 invoked by uid 89); 22 Aug 2016 09:11:59 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:11:49 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/71577] [6/7 regression] ICE on invalid C++11 code (with extra struct initializer) on x86_64-linux-gnu: in digest_init_r, at cp/typeck2.c:1117
Date: Mon, 22 Aug 2016 09:12:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: error-recovery, ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71577-4-71oGhqXXoo@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71577-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71577-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02757.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71577

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535422-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:12:21 2016
Return-Path: <gcc-bugs-return-535422-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 49833 invoked by alias); 22 Aug 2016 09:12:20 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 49812 invoked by uid 89); 22 Aug 2016 09:12:20 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:12:10 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/71654] [6/7 Regression] missing VRP optimization on c++ unsigned char and short expressions
Date: Mon, 22 Aug 2016 09:12:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: ppalka at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71654-4-0BznG0MNIl@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71654-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71654-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02758.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71654

--- Comment #8 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535425-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:13:35 2016
Return-Path: <gcc-bugs-return-535425-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 55617 invoked by alias); 22 Aug 2016 09:13:34 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 55595 invoked by uid 89); 22 Aug 2016 09:13:34 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:13:24 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ipa/66004] [6/7 Regression]: performance of 26_numerics/random/negative_binomial_distribution/operators/values.cc
Date: Mon, 22 Aug 2016 09:13:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ipa
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-66004-4-F7FS3s80GG@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-66004-4@http.gcc.gnu.org/bugzilla/>
References: <bug-66004-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02761.txt.bz2
Content-length: 178

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66004

--- Comment #11 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535423-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:13:03 2016
Return-Path: <gcc-bugs-return-535423-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 54046 invoked by alias); 22 Aug 2016 09:13:03 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 54026 invoked by uid 89); 22 Aug 2016 09:13:02 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:267
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:12:52 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/69332] [6/7 Regression] FAIL: libstdc++-prettyprinters/libfundts.cc print ab
Date: Mon, 22 Aug 2016 09:13:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-69332-4-HXfAMobHC5@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69332-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69332-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02759.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69332

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535424-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:13:12 2016
Return-Path: <gcc-bugs-return-535424-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 54764 invoked by alias); 22 Aug 2016 09:13:12 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 54753 invoked by uid 89); 22 Aug 2016 09:13:12 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:13:02 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/71577] [6/7 regression] ICE on invalid C++11 code (with extra struct initializer) on x86_64-linux-gnu: in digest_init_r, at cp/typeck2.c:1117
Date: Mon, 22 Aug 2016 09:13:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: error-recovery, ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71577-4-fiJfyvDrCf@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71577-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71577-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02760.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71577

--- Comment #5 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535426-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:14:17 2016
Return-Path: <gcc-bugs-return-535426-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 57162 invoked by alias); 22 Aug 2016 09:14:16 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 57043 invoked by uid 89); 22 Aug 2016 09:14:16 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:14:06 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/69332] [6/7 Regression] FAIL: libstdc++-prettyprinters/libfundts.cc print ab
Date: Mon, 22 Aug 2016 09:14:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-69332-4-ZB7PyB912G@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69332-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69332-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02762.txt.bz2
Content-length: 177

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69332

--- Comment #5 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535427-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:14:48 2016
Return-Path: <gcc-bugs-return-535427-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 60437 invoked by alias); 22 Aug 2016 09:14:48 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 60381 invoked by uid 89); 22 Aug 2016 09:14:47 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:14:37 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ipa/66004] [6/7 Regression]: performance of 26_numerics/random/negative_binomial_distribution/operators/values.cc
Date: Mon, 22 Aug 2016 09:14:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ipa
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-66004-4-LHF8F2DUPZ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-66004-4@http.gcc.gnu.org/bugzilla/>
References: <bug-66004-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02763.txt.bz2
Content-length: 178

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66004

--- Comment #12 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 6.2 is being released, adjusting target milestone.
>From gcc-bugs-return-535428-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:24:45 2016
Return-Path: <gcc-bugs-return-535428-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 99758 invoked by alias); 22 Aug 2016 09:24:45 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 99749 invoked by uid 89); 22 Aug 2016 09:24:44 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:24:39 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/65139] Improve register allocation for aarch64_*_sisd_or_int<mode>3 patterns
Date: Mon, 22 Aug 2016 09:24:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: kugan at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-65139-4-TgpgYAOn5Q@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-65139-4@http.gcc.gnu.org/bugzilla/>
References: <bug-65139-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02764.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65139

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535429-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:25:48 2016
Return-Path: <gcc-bugs-return-535429-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 108769 invoked by alias); 22 Aug 2016 09:25:48 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 108752 invoked by uid 89); 22 Aug 2016 09:25:47 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:303
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:25:36 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug other/66250] Can't adjust complex nor decimal floating point modes
Date: Mon, 22 Aug 2016 09:25:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: other
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: SUSPENDED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-66250-4-ReVlHftIPI@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-66250-4@http.gcc.gnu.org/bugzilla/>
References: <bug-66250-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02765.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66250

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535430-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:26:10 2016
Return-Path: <gcc-bugs-return-535430-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 109626 invoked by alias); 22 Aug 2016 09:26:09 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 109615 invoked by uid 89); 22 Aug 2016 09:26:09 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:25:58 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug testsuite/66403] gcc.dg/torture/builtin-self.c FAILs with PIE
Date: Mon, 22 Aug 2016 09:26:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: testsuite
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-66403-4-gzYUQEzJUW@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-66403-4@http.gcc.gnu.org/bugzilla/>
References: <bug-66403-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02766.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66403

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535431-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:27:23 2016
Return-Path: <gcc-bugs-return-535431-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 123473 invoked by alias); 22 Aug 2016 09:27:23 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 123459 invoked by uid 89); 22 Aug 2016 09:27:22 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:27:12 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/68664] PowerPC: speculative sqrt in c-ray main loop causes large slow down
Date: Mon, 22 Aug 2016 09:27:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-68664-4-gZui1tvk0X@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68664-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68664-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02767.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68664

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535432-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:28:26 2016
Return-Path: <gcc-bugs-return-535432-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 127895 invoked by alias); 22 Aug 2016 09:28:26 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 127874 invoked by uid 89); 22 Aug 2016 09:28:25 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:28:15 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/64918] invalid (?) warning when initializing structure
Date: Mon, 22 Aug 2016 09:28:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 4.9.2
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: mpolacek at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-64918-4-PIeHre6e17@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-64918-4@http.gcc.gnu.org/bugzilla/>
References: <bug-64918-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02768.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64918

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535433-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:41:14 2016
Return-Path: <gcc-bugs-return-535433-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 25564 invoked by alias); 22 Aug 2016 09:41:14 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 25548 invoked by uid 89); 22 Aug 2016 09:41:13 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00,KAM_ASCII_DIVIDERS autolearn=no version=3.3.2 spammy«normal, succs
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:41:03 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/27336] delete null checks in callers to nonnull functions
Date: Mon, 22 Aug 2016 09:41:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 4.1.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status assigned_to
Message-ID: <bug-27336-4-5zd9aqStXi@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-27336-4@http.gcc.gnu.org/bugzilla/>
References: <bug-27336-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02769.txt.bz2
Content-length: 2835

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=27336

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED
           Assignee|unassigned at gcc dot gnu.org      |rguenth at gcc dot gnu.org

--- Comment #11 from Richard Biener <rguenth at gcc dot gnu.org> ---
This is because of

static bool
infer_value_range (gimple *stmt, tree op, tree_code *comp_code_p, tree *val_p)
{
  *val_p = NULL_TREE;
  *comp_code_p = ERROR_MARK;

  /* Do not attempt to infer anything in names that flow through
     abnormal edges.  */
  if (SSA_NAME_OCCURS_IN_ABNORMAL_PHI (op))
    return false;

  /* Similarly, don't infer anything from statements that may throw
     exceptions. ??? Relax this requirement?  */
  if (stmt_could_throw_p (stmt))
    return false;

thus it works with -fno-exceptions.  I think we can insert an assertion
anyway (on the non-EH edge).  Or at least relax the above to
stmt_could_throw_internal_p (stmt).  The following works for me.

Index: gcc/tree-vrp.c
===================================================================
--- gcc/tree-vrp.c      (revision 239653)
+++ gcc/tree-vrp.c      (working copy)
@@ -4782,11 +4760,6 @@ infer_value_range (gimple *stmt, tree op
   if (SSA_NAME_OCCURS_IN_ABNORMAL_PHI (op))
     return false;

-  /* Similarly, don't infer anything from statements that may throw
-     exceptions. ??? Relax this requirement?  */
-  if (stmt_could_throw_p (stmt))
-    return false;
-
   /* If STMT is the last statement of a basic block with no normal
      successors, there is no point inferring anything about any of its
      operands.  We would not be able to find a proper insertion point
@@ -4797,7 +4770,7 @@ infer_value_range (gimple *stmt, tree op
       edge e;

       FOR_EACH_EDGE (e, ei, gimple_bb (stmt)->succs)
-       if (!(e->flags & EDGE_ABNORMAL))
+       if (!(e->flags & (EDGE_ABNORMAL|EDGE_EH)))
          break;
       if (e == NULL)
        return false;
@@ -6370,10 +6343,10 @@ process_assert_insertions_for (tree name

   /* If STMT must be the last statement in BB, we can only insert new
      assertions on the non-abnormal edge out of BB.  Note that since
-     STMT is not control flow, there may only be one non-abnormal edge
+     STMT is not control flow, there may only be one non-abnormal/eh edge
      out of BB.  */
   FOR_EACH_EDGE (e, ei, loc->bb->succs)
-    if (!(e->flags & EDGE_ABNORMAL))
+    if (!(e->flags & (EDGE_ABNORMAL|EDGE_EH)))
       {
        gsi_insert_on_edge (e, assert_stmt);
        return true;
>From gcc-bugs-return-535434-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:43:14 2016
Return-Path: <gcc-bugs-return-535434-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 102414 invoked by alias); 22 Aug 2016 09:43:14 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 101220 invoked by uid 89); 22 Aug 2016 09:43:13 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:43:11 +0000
From: "saaadhu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/71873] ICE in push_reload
Date: Mon, 22 Aug 2016 09:43:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: saaadhu at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: saaadhu at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-71873-4-mNkjZHuBdd@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71873-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71873-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02770.txt.bz2
Content-length: 509

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71873

Senthil Kumar Selvaraj <saaadhu at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #2 from Senthil Kumar Selvaraj <saaadhu at gcc dot gnu.org> ---
Maintainers did not approve backporting, so fixed on trunk (7.0) only.
>From gcc-bugs-return-535435-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:50:15 2016
Return-Path: <gcc-bugs-return-535435-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 8186 invoked by alias); 22 Aug 2016 09:50:15 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 8170 invoked by uid 89); 22 Aug 2016 09:50:14 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:50:04 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: =?UTF-8?B?W0J1ZyBjLzY1ODkxXSAtV2xvZ2ljYWwtb3Agbm93IHdhcm5zIGFib3V0IGxv?= =?UTF-8?B?Z2ljYWwg4oCYYW5k4oCZIG9mIGVxdWFsIGV4cHJlc3Npb25zIGV2ZW4gd2hl?= =?UTF-8?B?biBkaWZmZXJlbnQgdHlwZXMvc2l6ZW9mcyBhcmUgaW52b2x2ZWQ=?Date: Mon, 22 Aug 2016 09:50:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-65891-4-dF9EjKQjMa@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-65891-4@http.gcc.gnu.org/bugzilla/>
References: <bug-65891-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02771.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65891

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535436-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:51:08 2016
Return-Path: <gcc-bugs-return-535436-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 9253 invoked by alias); 22 Aug 2016 09:51:08 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 9225 invoked by uid 89); 22 Aug 2016 09:51:07 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:50:57 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: =?UTF-8?B?W0J1ZyBjLzY1ODkxXSAtV2xvZ2ljYWwtb3Agbm93IHdhcm5zIGFib3V0IGxv?= =?UTF-8?B?Z2ljYWwg4oCYYW5k4oCZIG9mIGVxdWFsIGV4cHJlc3Npb25zIGV2ZW4gd2hl?= =?UTF-8?B?biBkaWZmZXJlbnQgdHlwZXMvc2l6ZW9mcyBhcmUgaW52b2x2ZWQ=?Date: Mon, 22 Aug 2016 09:51:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-65891-4-XIxe8Hu9pj@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-65891-4@http.gcc.gnu.org/bugzilla/>
References: <bug-65891-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02772.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65891

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535437-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:51:18 2016
Return-Path: <gcc-bugs-return-535437-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 9974 invoked by alias); 22 Aug 2016 09:51:18 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 9956 invoked by uid 89); 22 Aug 2016 09:51:17 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:51:07 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/66195] Optimize _GLIBCXX_GUARD_TEST_AND_ACQUIRE and _GLIBCXX_GUARD_SET_AND_RELEASE for PowerPC
Date: Mon, 22 Aug 2016 09:51:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-66195-4-CKP7JdBqYk@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-66195-4@http.gcc.gnu.org/bugzilla/>
References: <bug-66195-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02773.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66195

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535439-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:52:12 2016
Return-Path: <gcc-bugs-return-535439-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 16969 invoked by alias); 22 Aug 2016 09:52:12 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 15968 invoked by uid 89); 22 Aug 2016 09:52:10 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:52:00 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/66195] Optimize _GLIBCXX_GUARD_TEST_AND_ACQUIRE and _GLIBCXX_GUARD_SET_AND_RELEASE for PowerPC
Date: Mon, 22 Aug 2016 09:52:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-66195-4-PDB6ZK90nY@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-66195-4@http.gcc.gnu.org/bugzilla/>
References: <bug-66195-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02775.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66195

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535438-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:52:12 2016
Return-Path: <gcc-bugs-return-535438-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 16958 invoked by alias); 22 Aug 2016 09:52:11 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 15967 invoked by uid 89); 22 Aug 2016 09:52:10 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:52:00 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/64266] Can GCC produce local mergeable symbols for *.__FUNCTION__ and *.__PRETTY_FUNCTION__ functions?
Date: Mon, 22 Aug 2016 09:52:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-64266-4-RoIdZurd7L@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-64266-4@http.gcc.gnu.org/bugzilla/>
References: <bug-64266-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02774.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64266

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535440-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:53:04 2016
Return-Path: <gcc-bugs-return-535440-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 18921 invoked by alias); 22 Aug 2016 09:53:04 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 18786 invoked by uid 89); 22 Aug 2016 09:53:03 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:52:53 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/64266] Can GCC produce local mergeable symbols for *.__FUNCTION__ and *.__PRETTY_FUNCTION__ functions?
Date: Mon, 22 Aug 2016 09:53:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-64266-4-7AxbDYhOgX@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-64266-4@http.gcc.gnu.org/bugzilla/>
References: <bug-64266-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02776.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64266

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535441-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:53:15 2016
Return-Path: <gcc-bugs-return-535441-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 19969 invoked by alias); 22 Aug 2016 09:53:14 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 19911 invoked by uid 89); 22 Aug 2016 09:53:14 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:53:04 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/65866] Wrong warning when using list-initialization: operation on 'b' may be undefined [-Wsequence-point]
Date: Mon, 22 Aug 2016 09:53:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-65866-4-Qqp3QXcg39@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-65866-4@http.gcc.gnu.org/bugzilla/>
References: <bug-65866-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02777.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65866

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535442-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:53:58 2016
Return-Path: <gcc-bugs-return-535442-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 21131 invoked by alias); 22 Aug 2016 09:53:58 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 21107 invoked by uid 89); 22 Aug 2016 09:53:55 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:53:45 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/65024] [OOP] unlimited polymorphic pointer structure not built when it should be
Date: Mon, 22 Aug 2016 09:53:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 5.0
X-Bugzilla-Keywords: FIXME
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: pault at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-65024-4-hxJtNFhLV8@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-65024-4@http.gcc.gnu.org/bugzilla/>
References: <bug-65024-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02778.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65024

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535443-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:54:40 2016
Return-Path: <gcc-bugs-return-535443-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 22172 invoked by alias); 22 Aug 2016 09:54:40 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 22137 invoked by uid 89); 22 Aug 2016 09:54:38 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=closure
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:54:28 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77312] Lambda that deletes itself accesses freed memory, but only if class is templated
Date: Mon, 22 Aug 2016 09:54:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77312-4-1v9X5bHtot@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77312-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77312-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02779.txt.bz2
Content-length: 572

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77312

--- Comment #3 from Jonathan Wakely <redi at gcc dot gnu.org> ---
(In reply to Andrew Pinski from comment #2)
> I don't see why you think this is valid thing to do.
> You are in a function which calls delete on the object you are in currently.
> That seems like this code is broken.

It's valid as long as nothing accesses any members of the class after it is
destroyed. When using code you don't control, such as std::function and a
lambda closure, you can't guarantee what it does or doesn't do with the memory.
>From gcc-bugs-return-535444-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:55:01 2016
Return-Path: <gcc-bugs-return-535444-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 23329 invoked by alias); 22 Aug 2016 09:55:01 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 22969 invoked by uid 89); 22 Aug 2016 09:55:00 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:54:50 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/65846] Optimize data access in PIE with copy reloc
Date: Mon, 22 Aug 2016 09:55:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-65846-4-KveYtneUbQ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-65846-4@http.gcc.gnu.org/bugzilla/>
References: <bug-65846-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02780.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65846

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535446-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:56:25 2016
Return-Path: <gcc-bugs-return-535446-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 29336 invoked by alias); 22 Aug 2016 09:56:25 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 29307 invoked by uid 89); 22 Aug 2016 09:56:24 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:56:14 +0000
From: "saaadhu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug other/67031] avr-gcc internal compiler error: segmentation fault in push_reload, at reload.c
Date: Mon, 22 Aug 2016 09:56:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: other
X-Bugzilla-Version: 4.8.1
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: saaadhu at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cc
Message-ID: <bug-67031-4-n7SYQflAHY@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67031-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67031-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02782.txt.bz2
Content-length: 382

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67031

Senthil Kumar Selvaraj <saaadhu at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED
                 CC|                            |saaadhu at gcc dot gnu.org
>From gcc-bugs-return-535445-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:56:04 2016
Return-Path: <gcc-bugs-return-535445-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 28492 invoked by alias); 22 Aug 2016 09:56:04 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 28477 invoked by uid 89); 22 Aug 2016 09:56:03 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:55:53 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/65534] tailcall not optimized away
Date: Mon, 22 Aug 2016 09:56:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 5.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: marxin at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-65534-4-LgYOFqKrnR@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-65534-4@http.gcc.gnu.org/bugzilla/>
References: <bug-65534-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02781.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65534

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535447-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:57:18 2016
Return-Path: <gcc-bugs-return-535447-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 31537 invoked by alias); 22 Aug 2016 09:57:17 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 31510 invoked by uid 89); 22 Aug 2016 09:57:17 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:304
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:57:07 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ipa/64253] IPA inline analysis processes a code transform operation
Date: Mon, 22 Aug 2016 09:57:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ipa
X-Bugzilla-Version: 5.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: hubicka at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-64253-4-rodrOYtgIB@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-64253-4@http.gcc.gnu.org/bugzilla/>
References: <bug-64253-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02783.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64253

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535448-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:57:40 2016
Return-Path: <gcc-bugs-return-535448-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 32884 invoked by alias); 22 Aug 2016 09:57:39 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 32871 invoked by uid 89); 22 Aug 2016 09:57:39 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:57:29 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/61551] [NEON] alter costs to allow use of post-indexed addressing modes for VLD{2..4}/VST{2..4}
Date: Mon, 22 Aug 2016 09:57:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 5.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-61551-4-7nxaQ9xLjS@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-61551-4@http.gcc.gnu.org/bugzilla/>
References: <bug-61551-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02784.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61551

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535449-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:58:11 2016
Return-Path: <gcc-bugs-return-535449-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 36752 invoked by alias); 22 Aug 2016 09:58:11 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 36703 invoked by uid 89); 22 Aug 2016 09:58:10 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:491
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:58:06 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/77303] std::max_element not constexpr with -D_GLIBCXX_DEBUG
Date: Mon, 22 Aug 2016 09:58:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: DUPLICATE
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-77303-4-w8rLbCba3G@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77303-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77303-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02785.txt.bz2
Content-length: 513

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77303

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |DUPLICATE

--- Comment #1 from Jonathan Wakely <redi at gcc dot gnu.org> ---
This is already in bugzilla.

*** This bug has been marked as a duplicate of bug 71960 ***
>From gcc-bugs-return-535450-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:58:43 2016
Return-Path: <gcc-bugs-return-535450-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 38829 invoked by alias); 22 Aug 2016 09:58:42 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 38771 invoked by uid 89); 22 Aug 2016 09:58:42 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyÞbug
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:58:32 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/71960] __glibcxx_assert and Debug Mode checks can't be used in constexpr functions
Date: Mon, 22 Aug 2016 09:58:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: rejects-valid
X-Bugzilla-Severity: minor
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-71960-4-LgR1oINnod@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71960-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71960-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02786.txt.bz2
Content-length: 443

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71960

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |lukibartl at gmail dot com

--- Comment #2 from Jonathan Wakely <redi at gcc dot gnu.org> ---
*** Bug 77303 has been marked as a duplicate of this bug. ***
>From gcc-bugs-return-535451-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 09:59:04 2016
Return-Path: <gcc-bugs-return-535451-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 44353 invoked by alias); 22 Aug 2016 09:59:04 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 43585 invoked by uid 89); 22 Aug 2016 09:59:03 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 09:58:53 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/60336] empty struct value is passed differently in C and C++
Date: Mon, 22 Aug 2016 09:59:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.0
X-Bugzilla-Keywords: ABI, wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-60336-4-my714jXTjv@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-60336-4@http.gcc.gnu.org/bugzilla/>
References: <bug-60336-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02787.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60336

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535452-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 10:02:28 2016
Return-Path: <gcc-bugs-return-535452-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 57319 invoked by alias); 22 Aug 2016 10:02:28 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 57307 invoked by uid 89); 22 Aug 2016 10:02:27 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 10:02:17 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug web/77319] New: [bugzilla] bugzilla behaves erratically
Date: Mon, 22 Aug 2016 10:02:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: web
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter cc target_milestone
Message-ID: <bug-77319-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02788.txt.bz2
Content-length: 964

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77319

            Bug ID: 77319
           Summary: [bugzilla] bugzilla behaves erratically
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: web
          Assignee: unassigned at gcc dot gnu.org
          Reporter: rguenth at gcc dot gnu.org
                CC: LpSolit at netscape dot net
  Target Milestone: ---

I now get all requests that not only add a comment through
the "mid-air collision" warning with my very same change listed as being the
conflicting one.  With changing multiple bugs at once this results in duplicate
comments being added (see my recent GCC 6.2 release updates for example to
PR70621 - in fact it seems to get into an infinite loop ... :/)

Also multiple bug at once changes seem to be stopped after processing only a
few
of the selected ones (even up to as little as a single one).
>From gcc-bugs-return-535453-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 10:08:00 2016
Return-Path: <gcc-bugs-return-535453-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 66981 invoked by alias); 22 Aug 2016 10:08:00 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 66961 invoked by uid 89); 22 Aug 2016 10:07:59 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:1248
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 10:07:49 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77312] Lambda that deletes itself accesses freed memory, but only if class is templated
Date: Mon, 22 Aug 2016 10:08:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.4.1
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on version everconfirmed
Message-ID: <bug-77312-4-YpyuLnzCQ6@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77312-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77312-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02789.txt.bz2
Content-length: 1415

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77312

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |wrong-code
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-22
            Version|unknown                     |5.4.1
     Ever confirmed|0                           |1

--- Comment #4 from Jonathan Wakely <redi at gcc dot gnu.org> ---
Reduced:

struct function_impl_base {
  virtual ~function_impl_base() = default;
  virtual void invoke() = 0;
};

template<typename F>
struct function_impl : function_impl_base {
  function_impl(F f) : f(f) { }
  void invoke() { f(); }
  F f;
};

struct function
{
  template<typename F>
    function(F f) : impl(new function_impl<F>{f}) { }
  ~function() { delete impl; }
  function(const function&) = delete;
  function_impl_base* impl;
  void operator()() { impl->invoke(); }
};

template <class U>
struct LambdaHolder {
    LambdaHolder() : lambda_{[this]() { delete this; }} {
    }
    void Run() {
        lambda_();
    }
    function lambda_;
};

int main() {
    LambdaHolder<int>* l = new LambdaHolder<int>();
    l->Run();
}


There's no reason this should need to access the freed memory. Clang and EDG
don't.
>From gcc-bugs-return-535454-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 10:08:54 2016
Return-Path: <gcc-bugs-return-535454-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 68170 invoked by alias); 22 Aug 2016 10:08:54 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 68153 invoked by uid 89); 22 Aug 2016 10:08:53 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 10:08:43 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug web/77319] [bugzilla] bugzilla behaves erratically
Date: Mon, 22 Aug 2016 10:08:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: web
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-77319-4-mBrX53mA0R@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77319-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77319-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02790.txt.bz2
Content-length: 402

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77319

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-22
     Ever confirmed|0                           |1
>From gcc-bugs-return-535455-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 10:19:12 2016
Return-Path: <gcc-bugs-return-535455-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 92236 invoked by alias); 22 Aug 2016 10:19:12 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 92197 invoked by uid 89); 22 Aug 2016 10:19:10 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 10:19:00 +0000
From: "saaadhu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug other/67031] avr-gcc internal compiler error: segmentation fault in push_reload, at reload.c
Date: Mon, 22 Aug 2016 10:19:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: other
X-Bugzilla-Version: 4.8.1
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: saaadhu at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: DUPLICATE
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution target_milestone
Message-ID: <bug-67031-4-Es6LN2400Q@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67031-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67031-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02791.txt.bz2
Content-length: 697

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67031

Senthil Kumar Selvaraj <saaadhu at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |DUPLICATE
   Target Milestone|---                         |7.0

--- Comment #3 from Senthil Kumar Selvaraj <saaadhu at gcc dot gnu.org> ---
Confirmed that a local backport of fix for 71873 to 5.2 fixes this.
Unfortunately, maintainers did not approve backporting patch for 71873.

*** This bug has been marked as a duplicate of bug 71873 ***
>From gcc-bugs-return-535456-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 10:19:57 2016
Return-Path: <gcc-bugs-return-535456-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 93563 invoked by alias); 22 Aug 2016 10:19:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 93549 invoked by uid 89); 22 Aug 2016 10:19:56 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-0.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00,UNWANTED_LANGUAGE_BODY autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 10:19:46 +0000
From: "saaadhu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/71873] ICE in push_reload
Date: Mon, 22 Aug 2016 10:19:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: saaadhu at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: saaadhu at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-71873-4-ja0IvDc9d9@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71873-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71873-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02792.txt.bz2
Content-length: 524

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71873

Senthil Kumar Selvaraj <saaadhu at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |gccbugs at dima dot secretsauce.ne
                   |                            |t

--- Comment #3 from Senthil Kumar Selvaraj <saaadhu at gcc dot gnu.org> ---
*** Bug 67031 has been marked as a duplicate of this bug. ***
>From gcc-bugs-return-535457-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 10:44:35 2016
Return-Path: <gcc-bugs-return-535457-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 30574 invoked by alias); 22 Aug 2016 10:44:35 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 30555 invoked by uid 89); 22 Aug 2016 10:44:33 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 10:44:22 +0000
From: "dominiq at lps dot ens.fr" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/77318] [7 regression] FAIL: gfortran.dg/graphite/pr68279.f90   -O  (internal compiler error)
Date: Mon, 22 Aug 2016 10:44:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dominiq at lps dot ens.fr
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-77318-4-il6kLyJmj1@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77318-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77318-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02793.txt.bz2
Content-length: 622

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77318

Dominique d'Humieres <dominiq at lps dot ens.fr> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-22
     Ever confirmed|0                           |1

--- Comment #1 from Dominique d'Humieres <dominiq at lps dot ens.fr> ---
Confirmed. Note that the test has been failing since a long time up to revision
r239564 and passed only in the range r239565 to r239606.
>From gcc-bugs-return-535458-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 10:57:27 2016
Return-Path: <gcc-bugs-return-535458-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 69098 invoked by alias); 22 Aug 2016 10:57:26 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 69064 invoked by uid 89); 22 Aug 2016 10:57:26 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:602
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 10:57:15 +0000
From: "schwab@linux-m68k.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/77318] [7 regression] FAIL: gfortran.dg/graphite/pr68279.f90   -O  (internal compiler error)
Date: Mon, 22 Aug 2016 10:57:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: schwab@linux-m68k.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: blocked
Message-ID: <bug-77318-4-jETVrF7J2A@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77318-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77318-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02794.txt.bz2
Content-length: 564

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77318

Andreas Schwab <schwab@linux-m68k.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Blocks|77290                       |

--- Comment #2 from Andreas Schwab <schwab@linux-m68k.org> ---
It actually started between r236439 and r236491.


Referenced Bugs:

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77290
[Bug 77290] [7 regression] test case gcc.dg/tree-ssa/pr71347.c fails starting
with r239565
>From gcc-bugs-return-535459-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 11:42:20 2016
Return-Path: <gcc-bugs-return-535459-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 112113 invoked by alias); 22 Aug 2016 11:42:20 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 112101 invoked by uid 89); 22 Aug 2016 11:42:19 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 11:42:09 +0000
From: "manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/64918] invalid (?) warning when initializing structure
Date: Mon, 22 Aug 2016 11:42:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 4.9.2
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: manu at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: mpolacek at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords target_milestone
Message-ID: <bug-64918-4-uepueYZ542@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-64918-4@http.gcc.gnu.org/bugzilla/>
References: <bug-64918-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02795.txt.bz2
Content-length: 498

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64918

Manuel López-Ibáñez <manu at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |diagnostic
   Target Milestone|6.3                         |---

--- Comment #9 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
Only regressions have target milestone.
>From gcc-bugs-return-535460-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 12:44:04 2016
Return-Path: <gcc-bugs-return-535460-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 38741 invoked by alias); 22 Aug 2016 12:44:03 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 38725 invoked by uid 89); 22 Aug 2016 12:44:02 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=noted
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 12:43:52 +0000
From: "schwab@linux-m68k.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/77318] [7 regression] FAIL: gfortran.dg/graphite/pr68279.f90   -O  (internal compiler error)
Date: Mon, 22 Aug 2016 12:44:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: schwab@linux-m68k.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: blocked
Message-ID: <bug-77318-4-8Rt224YCIi@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77318-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77318-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02796.txt.bz2
Content-length: 516

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77318

Andreas Schwab <schwab@linux-m68k.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Blocks|                            |70729

--- Comment #3 from Andreas Schwab <schwab@linux-m68k.org> ---
Already noted in PR70729.


Referenced Bugs:

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70729
[Bug 70729] Loop marked with omp simd pragma is not vectorized
>From gcc-bugs-return-535461-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 12:54:07 2016
Return-Path: <gcc-bugs-return-535461-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 25062 invoked by alias); 22 Aug 2016 12:54:07 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 23710 invoked by uid 89); 22 Aug 2016 12:54:06 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 12:53:56 +0000
From: "dominiq at lps dot ens.fr" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/77318] [7 regression] FAIL: gfortran.dg/graphite/pr68279.f90   -O  (internal compiler error)
Date: Mon, 22 Aug 2016 12:54:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dominiq at lps dot ens.fr
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77318-4-inPZG73Yk2@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77318-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77318-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02797.txt.bz2
Content-length: 289

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77318

--- Comment #4 from Dominique d'Humieres <dominiq at lps dot ens.fr> ---
> It actually started between r236439 and r236491.

It already failed at r236449 for both -m32 and -m64. It stopped to fail for
-m32 between r236902 and r236930.
>From gcc-bugs-return-535462-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:07:27 2016
Return-Path: <gcc-bugs-return-535462-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 7251 invoked by alias); 22 Aug 2016 13:07:26 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 7238 invoked by uid 89); 22 Aug 2016 13:07:25 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:308
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:07:15 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/69940] gcc.c-torture/execute/alias-3.c FAILs with Solaris/x86 as
Date: Mon, 22 Aug 2016 13:07:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-69940-4-A5oslX57Nc@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69940-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69940-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02798.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69940

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535463-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:07:58 2016
Return-Path: <gcc-bugs-return-535463-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 12559 invoked by alias); 22 Aug 2016 13:07:58 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 11914 invoked by uid 89); 22 Aug 2016 13:07:57 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:07:46 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/67352] [avr] incorrect warning with -Waddr-space-convert and array in struct in __flash
Date: Mon, 22 Aug 2016 13:07:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 5.2.0
X-Bugzilla-Keywords: addr-space, diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: gjl at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-67352-4-Vl3c7e2Wsm@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67352-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67352-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02799.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67352

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535464-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:08:19 2016
Return-Path: <gcc-bugs-return-535464-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 16217 invoked by alias); 22 Aug 2016 13:08:19 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 16195 invoked by uid 89); 22 Aug 2016 13:08:18 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:08:08 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/70927] avx512dq instructions emitted even with -mavx512vl -mno-avx512dq
Date: Mon, 22 Aug 2016 13:08:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-70927-4-Mn4eZyMSEd@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70927-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70927-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02800.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70927

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535466-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:09:53 2016
Return-Path: <gcc-bugs-return-535466-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 20615 invoked by alias); 22 Aug 2016 13:09:53 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 20562 invoked by uid 89); 22 Aug 2016 13:09:52 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:09:42 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/66398] g++.dg/abi/anon1.C FAILs with PIE
Date: Mon, 22 Aug 2016 13:09:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-66398-4-GOQtSvPI2X@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-66398-4@http.gcc.gnu.org/bugzilla/>
References: <bug-66398-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02802.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66398

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535465-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:09:11 2016
Return-Path: <gcc-bugs-return-535465-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 18498 invoked by alias); 22 Aug 2016 13:09:11 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 18483 invoked by uid 89); 22 Aug 2016 13:09:10 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:09:00 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/69153] --with-advance-toolchain configure option does not correctly set configure variable target_header_dir
Date: Mon, 22 Aug 2016 13:09:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-69153-4-e5BwkkDFTt@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69153-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69153-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02801.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69153

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535467-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:10:35 2016
Return-Path: <gcc-bugs-return-535467-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 28111 invoked by alias); 22 Aug 2016 13:10:35 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 28096 invoked by uid 89); 22 Aug 2016 13:10:34 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:10:24 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/68749] FAIL: gcc.dg/ifcvt-4.c scan-rtl-dump ce1 "2 true changes made"
Date: Mon, 22 Aug 2016 13:10:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-68749-4-bm5YDKzYYE@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68749-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68749-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02803.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68749

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535468-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:11:24 2016
Return-Path: <gcc-bugs-return-535468-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 29185 invoked by alias); 22 Aug 2016 13:11:24 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 29175 invoked by uid 89); 22 Aug 2016 13:11:23 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.2 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00,KAM_ASCII_DIVIDERS autolearn=no version=3.3.2 spammy=workspace
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:11:13 +0000
From: "sabrinadfs at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug testsuite/77320] New: ICE: get_ubsan_type_info_for_type, at ubsan.c:305
Date: Mon, 22 Aug 2016 13:11:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: testsuite
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: critical
X-Bugzilla-Who: sabrinadfs at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77320-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02804.txt.bz2
Content-length: 11253

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77320

            Bug ID: 77320
           Summary: ICE: get_ubsan_type_info_for_type, at ubsan.c:305
           Product: gcc
           Version: 6.1.0
            Status: UNCONFIRMED
          Severity: critical
          Priority: P3
         Component: testsuite
          Assignee: unassigned at gcc dot gnu.org
          Reporter: sabrinadfs at gmail dot com
  Target Milestone: ---

GCC-6.1.0
x86_64-pc-linux-gnu and x86_64-apple-darwin15.4.0

Running the following test:
make -s -C gcc check-gcc RUNTESTFLAGS="dg-torture.exp=pr48953.c
--target_board=unix/-fsanitize=undefined/"

GCC throw an ICE:
------------------------------------------------------------------------
/Users/sabrinasouto/workspace/gcc-6.x/gcc-6.1.0/gcc/testsuite/gcc.dg/torture/pr48953.c:
In function 'foo':
/Users/sabrinasouto/workspace/gcc-6.x/gcc-6.1.0/gcc/testsuite/gcc.dg/torture/pr48953.c:5:19:
internal compiler error: in get_ubsan_type_info_for_type, at ubsan.c:305
libbacktrace could not find executable to open
Please submit a full bug report,
with preprocessed source if appropriate.
See <http://gcc.gnu.org/bugs.html> for instructions.
compiler exited with status 1
output is:
/Users/sabrinasouto/workspace/gcc-6.x/gcc-6.1.0/gcc/testsuite/gcc.dg/torture/pr48953.c:
In function 'foo':
/Users/sabrinasouto/workspace/gcc-6.x/gcc-6.1.0/gcc/testsuite/gcc.dg/torture/pr48953.c:5:19:
internal compiler error: in get_ubsan_type_info_for_type, at ubsan.c:305
libbacktrace could not find executable to open
Please submit a full bug report,
with preprocessed source if appropriate.
See <http://gcc.gnu.org/bugs.html> for instructions.

FAIL: gcc.dg/torture/pr48953.c   -O0  (internal compiler error)
FAIL: gcc.dg/torture/pr48953.c   -O0  (test for excess errors)
Excess errors:
/Users/sabrinasouto/workspace/gcc-6.x/gcc-6.1.0/gcc/testsuite/gcc.dg/torture/pr48953.c:5:19:
internal compiler error: in get_ubsan_type_info_for_type, at ubsan.c:305
libbacktrace could not find executable to open

UNRESOLVED: gcc.dg/torture/pr48953.c   -O0  compilation failed to produce
executable
Executing on host: /Users/sabrinasouto/workspace/gcc-6.x/objdir/gcc/xgcc
-B/Users/sabrinasouto/workspace/gcc-6.x/objdir/gcc/
/Users/sabrinasouto/workspace/gcc-6.x/gcc-6.1.0/gcc/testsuite/gcc.dg/torture/pr48953.c
 -fno-diagnostics-show-caret -fdiagnostics-color=never    -O1  -fno-tree-dce 
-lm   -fsanitize=undefined  -o ./pr48953.exe    (timeout = 300)
spawn /Users/sabrinasouto/workspace/gcc-6.x/objdir/gcc/xgcc
-B/Users/sabrinasouto/workspace/gcc-6.x/objdir/gcc/
/Users/sabrinasouto/workspace/gcc-6.x/gcc-6.1.0/gcc/testsuite/gcc.dg/torture/pr48953.c
-fno-diagnostics-show-caret -fdiagnostics-color=never -O1 -fno-tree-dce -lm
-fsanitize=undefined -o ./pr48953.exe
/Users/sabrinasouto/workspace/gcc-6.x/gcc-6.1.0/gcc/testsuite/gcc.dg/torture/pr48953.c:
In function 'main':
/Users/sabrinasouto/workspace/gcc-6.x/gcc-6.1.0/gcc/testsuite/gcc.dg/torture/pr48953.c:15:5:
internal compiler error: in get_ubsan_type_info_for_type, at ubsan.c:305
libbacktrace could not find executable to open
Please submit a full bug report,
with preprocessed source if appropriate.
See <http://gcc.gnu.org/bugs.html> for instructions.
compiler exited with status 1
output is:
/Users/sabrinasouto/workspace/gcc-6.x/gcc-6.1.0/gcc/testsuite/gcc.dg/torture/pr48953.c:
In function 'main':
/Users/sabrinasouto/workspace/gcc-6.x/gcc-6.1.0/gcc/testsuite/gcc.dg/torture/pr48953.c:15:5:
internal compiler error: in get_ubsan_type_info_for_type, at ubsan.c:305
libbacktrace could not find executable to open
Please submit a full bug report,
with preprocessed source if appropriate.
See <http://gcc.gnu.org/bugs.html> for instructions.

FAIL: gcc.dg/torture/pr48953.c   -O1  (internal compiler error)
FAIL: gcc.dg/torture/pr48953.c   -O1  (test for excess errors)
Excess errors:
/Users/sabrinasouto/workspace/gcc-6.x/gcc-6.1.0/gcc/testsuite/gcc.dg/torture/pr48953.c:15:5:
internal compiler error: in get_ubsan_type_info_for_type, at ubsan.c:305
libbacktrace could not find executable to open

UNRESOLVED: gcc.dg/torture/pr48953.c   -O1  compilation failed to produce
executable
Executing on host: /Users/sabrinasouto/workspace/gcc-6.x/objdir/gcc/xgcc
-B/Users/sabrinasouto/workspace/gcc-6.x/objdir/gcc/
/Users/sabrinasouto/workspace/gcc-6.x/gcc-6.1.0/gcc/testsuite/gcc.dg/torture/pr48953.c
 -fno-diagnostics-show-caret -fdiagnostics-color=never    -O2  -fno-tree-dce 
-lm   -fsanitize=undefined  -o ./pr48953.exe    (timeout = 300)
spawn /Users/sabrinasouto/workspace/gcc-6.x/objdir/gcc/xgcc
-B/Users/sabrinasouto/workspace/gcc-6.x/objdir/gcc/
/Users/sabrinasouto/workspace/gcc-6.x/gcc-6.1.0/gcc/testsuite/gcc.dg/torture/pr48953.c
-fno-diagnostics-show-caret -fdiagnostics-color=never -O2 -fno-tree-dce -lm
-fsanitize=undefined -o ./pr48953.exe
/Users/sabrinasouto/workspace/gcc-6.x/gcc-6.1.0/gcc/testsuite/gcc.dg/torture/pr48953.c:
In function 'main':
/Users/sabrinasouto/workspace/gcc-6.x/gcc-6.1.0/gcc/testsuite/gcc.dg/torture/pr48953.c:15:5:
internal compiler error: in get_ubsan_type_info_for_type, at ubsan.c:305
libbacktrace could not find executable to open
Please submit a full bug report,
with preprocessed source if appropriate.
See <http://gcc.gnu.org/bugs.html> for instructions.
compiler exited with status 1
output is:
/Users/sabrinasouto/workspace/gcc-6.x/gcc-6.1.0/gcc/testsuite/gcc.dg/torture/pr48953.c:
In function 'main':
/Users/sabrinasouto/workspace/gcc-6.x/gcc-6.1.0/gcc/testsuite/gcc.dg/torture/pr48953.c:15:5:
internal compiler error: in get_ubsan_type_info_for_type, at ubsan.c:305
libbacktrace could not find executable to open
Please submit a full bug report,
with preprocessed source if appropriate.
See <http://gcc.gnu.org/bugs.html> for instructions.

FAIL: gcc.dg/torture/pr48953.c   -O2  (internal compiler error)
FAIL: gcc.dg/torture/pr48953.c   -O2  (test for excess errors)
Excess errors:
/Users/sabrinasouto/workspace/gcc-6.x/gcc-6.1.0/gcc/testsuite/gcc.dg/torture/pr48953.c:15:5:
internal compiler error: in get_ubsan_type_info_for_type, at ubsan.c:305
libbacktrace could not find executable to open

UNRESOLVED: gcc.dg/torture/pr48953.c   -O2  compilation failed to produce
executable
Executing on host: /Users/sabrinasouto/workspace/gcc-6.x/objdir/gcc/xgcc
-B/Users/sabrinasouto/workspace/gcc-6.x/objdir/gcc/
/Users/sabrinasouto/workspace/gcc-6.x/gcc-6.1.0/gcc/testsuite/gcc.dg/torture/pr48953.c
 -fno-diagnostics-show-caret -fdiagnostics-color=never    -O3 -g  -fno-tree-dce
 -lm   -fsanitize=undefined  -o ./pr48953.exe    (timeout = 300)
spawn /Users/sabrinasouto/workspace/gcc-6.x/objdir/gcc/xgcc
-B/Users/sabrinasouto/workspace/gcc-6.x/objdir/gcc/
/Users/sabrinasouto/workspace/gcc-6.x/gcc-6.1.0/gcc/testsuite/gcc.dg/torture/pr48953.c
-fno-diagnostics-show-caret -fdiagnostics-color=never -O3 -g -fno-tree-dce -lm
-fsanitize=undefined -o ./pr48953.exe
/Users/sabrinasouto/workspace/gcc-6.x/gcc-6.1.0/gcc/testsuite/gcc.dg/torture/pr48953.c:
In function 'main':
/Users/sabrinasouto/workspace/gcc-6.x/gcc-6.1.0/gcc/testsuite/gcc.dg/torture/pr48953.c:15:5:
internal compiler error: in get_ubsan_type_info_for_type, at ubsan.c:305
libbacktrace could not find executable to open
Please submit a full bug report,
with preprocessed source if appropriate.
See <http://gcc.gnu.org/bugs.html> for instructions.
compiler exited with status 1
output is:
/Users/sabrinasouto/workspace/gcc-6.x/gcc-6.1.0/gcc/testsuite/gcc.dg/torture/pr48953.c:
In function 'main':
/Users/sabrinasouto/workspace/gcc-6.x/gcc-6.1.0/gcc/testsuite/gcc.dg/torture/pr48953.c:15:5:
internal compiler error: in get_ubsan_type_info_for_type, at ubsan.c:305
libbacktrace could not find executable to open
Please submit a full bug report,
with preprocessed source if appropriate.
See <http://gcc.gnu.org/bugs.html> for instructions.

FAIL: gcc.dg/torture/pr48953.c   -O3 -g  (internal compiler error)
FAIL: gcc.dg/torture/pr48953.c   -O3 -g  (test for excess errors)
Excess errors:
/Users/sabrinasouto/workspace/gcc-6.x/gcc-6.1.0/gcc/testsuite/gcc.dg/torture/pr48953.c:15:5:
internal compiler error: in get_ubsan_type_info_for_type, at ubsan.c:305
libbacktrace could not find executable to open

UNRESOLVED: gcc.dg/torture/pr48953.c   -O3 -g  compilation failed to produce
executable
Executing on host: /Users/sabrinasouto/workspace/gcc-6.x/objdir/gcc/xgcc
-B/Users/sabrinasouto/workspace/gcc-6.x/objdir/gcc/
/Users/sabrinasouto/workspace/gcc-6.x/gcc-6.1.0/gcc/testsuite/gcc.dg/torture/pr48953.c
 -fno-diagnostics-show-caret -fdiagnostics-color=never    -Os  -fno-tree-dce 
-lm   -fsanitize=undefined  -o ./pr48953.exe    (timeout = 300)
spawn /Users/sabrinasouto/workspace/gcc-6.x/objdir/gcc/xgcc
-B/Users/sabrinasouto/workspace/gcc-6.x/objdir/gcc/
/Users/sabrinasouto/workspace/gcc-6.x/gcc-6.1.0/gcc/testsuite/gcc.dg/torture/pr48953.c
-fno-diagnostics-show-caret -fdiagnostics-color=never -Os -fno-tree-dce -lm
-fsanitize=undefined -o ./pr48953.exe
/Users/sabrinasouto/workspace/gcc-6.x/gcc-6.1.0/gcc/testsuite/gcc.dg/torture/pr48953.c:
In function 'main':
/Users/sabrinasouto/workspace/gcc-6.x/gcc-6.1.0/gcc/testsuite/gcc.dg/torture/pr48953.c:15:5:
internal compiler error: in get_ubsan_type_info_for_type, at ubsan.c:305
libbacktrace could not find executable to open
Please submit a full bug report,
with preprocessed source if appropriate.
See <http://gcc.gnu.org/bugs.html> for instructions.
compiler exited with status 1
output is:
/Users/sabrinasouto/workspace/gcc-6.x/gcc-6.1.0/gcc/testsuite/gcc.dg/torture/pr48953.c:
In function 'main':
/Users/sabrinasouto/workspace/gcc-6.x/gcc-6.1.0/gcc/testsuite/gcc.dg/torture/pr48953.c:15:5:
internal compiler error: in get_ubsan_type_info_for_type, at ubsan.c:305
libbacktrace could not find executable to open
Please submit a full bug report,
with preprocessed source if appropriate.
See <http://gcc.gnu.org/bugs.html> for instructions.

FAIL: gcc.dg/torture/pr48953.c   -Os  (internal compiler error)
FAIL: gcc.dg/torture/pr48953.c   -Os  (test for excess errors)
Excess errors:
/Users/sabrinasouto/workspace/gcc-6.x/gcc-6.1.0/gcc/testsuite/gcc.dg/torture/pr48953.c:15:5:
internal compiler error: in get_ubsan_type_info_for_type, at ubsan.c:305
libbacktrace could not find executable to open

UNRESOLVED: gcc.dg/torture/pr48953.c   -Os  compilation failed to produce
executable
testcase
/Users/sabrinasouto/workspace/gcc-6.x/gcc-6.1.0/gcc/testsuite/gcc.dg/torture/dg-torture.exp
completed in 2 seconds

                === gcc Summary ===

# of unexpected failures        10
# of unresolved testcases       5
Executing on host: /Users/sabrinasouto/workspace/gcc-6.x/objdir/gcc/xgcc -v   
(timeout = 300)
spawn /Users/sabrinasouto/workspace/gcc-6.x/objdir/gcc/xgcc -v
Using built-in specs.
COLLECT_GCC=/Users/sabrinasouto/workspace/gcc-6.x/objdir/gcc/xgcc
Target: x86_64-apple-darwin15.4.0
Configured with: ./../gcc-6.1.0/configure
--prefix=/Users/sabrinasouto/workspace/gcc-6.x/gcc-6.1.0
--enable-languages=c,c++
Thread model: posix
gcc version 6.1.0 (GCC) 
------------------------------------------------------------------------


Can anyone confirm this bug?
>From gcc-bugs-return-535469-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:13:29 2016
Return-Path: <gcc-bugs-return-535469-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 40770 invoked by alias); 22 Aug 2016 13:13:29 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 40757 invoked by uid 89); 22 Aug 2016 13:13:28 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:13:18 +0000
From: "saguryev.gnu at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77267] MPX does not work in a presence of "-Wl,-as-needed" option (Ubuntu default)
Date: Mon, 22 Aug 2016 13:13:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: saguryev.gnu at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-77267-4-nckPNm4LYP@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77267-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77267-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02805.txt.bz2
Content-length: 630

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77267

Sergey <saguryev.gnu at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |saguryev.gnu at gmail dot com

--- Comment #1 from Sergey <saguryev.gnu at gmail dot com> ---
  Why can't we engage usual linkage mechanism by adding some undefined weak
symbol   in mpx code and its definition in mpx library ? ( probably two
different ones, for libmpx and libmpxwrappers ). Then we wouldn't have to
juggle with (no-)as-needed.
>From gcc-bugs-return-535471-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:14:49 2016
Return-Path: <gcc-bugs-return-535471-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 43026 invoked by alias); 22 Aug 2016 13:14:49 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 43012 invoked by uid 89); 22 Aug 2016 13:14:48 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:14:38 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/70598] Fortran OpenACC host_data construct ICE
Date: Mon, 22 Aug 2016 13:14:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: openacc, patch
X-Bugzilla-Severity: major
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: cltang at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-70598-4-UUh9yspvM8@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70598-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70598-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02807.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70598

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535470-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:14:04 2016
Return-Path: <gcc-bugs-return-535470-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 41776 invoked by alias); 22 Aug 2016 13:14:04 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 41763 invoked by uid 89); 22 Aug 2016 13:14:03 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:13:53 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/71419] interrupt attribute silently dropped for Thumb code on armv7-a
Date: Mon, 22 Aug 2016 13:14:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: documentation
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-71419-4-GneivV7smq@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71419-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71419-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02806.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71419

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535472-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:15:42 2016
Return-Path: <gcc-bugs-return-535472-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 44220 invoked by alias); 22 Aug 2016 13:15:40 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 44162 invoked by uid 89); 22 Aug 2016 13:15:36 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=2.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00,SCAM_SUBJECT autolearn=no version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:15:26 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/67819] -Wduplicated-cond should take macros into account
Date: Mon, 22 Aug 2016 13:15:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-67819-4-72HWSJlIvs@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67819-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67819-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02808.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67819

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535473-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:16:52 2016
Return-Path: <gcc-bugs-return-535473-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 55204 invoked by alias); 22 Aug 2016 13:16:52 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 54648 invoked by uid 89); 22 Aug 2016 13:16:51 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:16:41 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug other/66259] Combined gcc and binutils build from git-master fails, with gas/as-new not existing
Date: Mon, 22 Aug 2016 13:16:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: other
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-66259-4-Eh1x3D1Tp8@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-66259-4@http.gcc.gnu.org/bugzilla/>
References: <bug-66259-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02809.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66259

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535474-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:17:37 2016
Return-Path: <gcc-bugs-return-535474-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 61173 invoked by alias); 22 Aug 2016 13:17:36 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 61151 invoked by uid 89); 22 Aug 2016 13:17:35 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:17:25 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/66399] g++.dg/abi/anon4.C FAILs with PIE
Date: Mon, 22 Aug 2016 13:17:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-66399-4-mDvOye0zNy@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-66399-4@http.gcc.gnu.org/bugzilla/>
References: <bug-66399-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02810.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66399

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535475-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:20:42 2016
Return-Path: <gcc-bugs-return-535475-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 67626 invoked by alias); 22 Aug 2016 13:20:42 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 67574 invoked by uid 89); 22 Aug 2016 13:20:41 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyªrch64**, aarch64-*-*, gcc-regression, gccregression
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:20:30 +0000
From: "dominiq at lps dot ens.fr" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/77318] [7 regression] FAIL: gfortran.dg/graphite/pr68279.f90   -O  (internal compiler error)
Date: Mon, 22 Aug 2016 13:20:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dominiq at lps dot ens.fr
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cf_gcctarget cc
Message-ID: <bug-77318-4-kl6NHJoox4@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77318-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77318-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02811.txt.bz2
Content-length: 702

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77318

Dominique d'Humieres <dominiq at lps dot ens.fr> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Target|aarch64-*-*                 |
                 CC|                            |vries at gcc dot gnu.org

--- Comment #5 from Dominique d'Humieres <dominiq at lps dot ens.fr> ---
> It already failed at r236449 for both -m32 and -m64.

Likely r236440.

> It stopped to fail for -m32 between r236902 and r236930.

Reduced range from https://gcc.gnu.org/ml/gcc-regression/2016-05/msg00587.html:
between r236906 and r236909, likely 236907.
>From gcc-bugs-return-535476-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:26:28 2016
Return-Path: <gcc-bugs-return-535476-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 89664 invoked by alias); 22 Aug 2016 13:26:27 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 88998 invoked by uid 89); 22 Aug 2016 13:26:27 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:26:16 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/69331] FAIL: 20_util/shared_ptr/thread/default_weaktoshared.cc execution test
Date: Mon, 22 Aug 2016 13:26:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-69331-4-LysBhauzrP@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69331-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69331-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02812.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69331

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535477-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:27:22 2016
Return-Path: <gcc-bugs-return-535477-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 103837 invoked by alias); 22 Aug 2016 13:27:21 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 103826 invoked by uid 89); 22 Aug 2016 13:27:21 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:27:10 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/69331] FAIL: 20_util/shared_ptr/thread/default_weaktoshared.cc execution test
Date: Mon, 22 Aug 2016 13:27:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-69331-4-HiFHhfFszH@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69331-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69331-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02813.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69331

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535480-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:28:46 2016
Return-Path: <gcc-bugs-return-535480-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 107656 invoked by alias); 22 Aug 2016 13:28:45 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 107632 invoked by uid 89); 22 Aug 2016 13:28:44 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:28:43 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug testsuite/66404] gcc.target/i386/pad-10.c etc. FAIL with PIE
Date: Mon, 22 Aug 2016 13:28:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: testsuite
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-66404-4-0HIjMsdHlh@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-66404-4@http.gcc.gnu.org/bugzilla/>
References: <bug-66404-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02816.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66404

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535479-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:28:34 2016
Return-Path: <gcc-bugs-return-535479-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 106843 invoked by alias); 22 Aug 2016 13:28:34 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 106821 invoked by uid 89); 22 Aug 2016 13:28:34 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:28:24 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/67412] gfortran.dg/execute_command_line_2.f90 FAILs on Solaris 10
Date: Mon, 22 Aug 2016 13:28:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: SUSPENDED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: ro at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-67412-4-dbLerFiE2o@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67412-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67412-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02815.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67412

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535481-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:28:56 2016
Return-Path: <gcc-bugs-return-535481-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 108627 invoked by alias); 22 Aug 2016 13:28:55 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 108573 invoked by uid 89); 22 Aug 2016 13:28:54 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:28:44 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/67412] gfortran.dg/execute_command_line_2.f90 FAILs on Solaris 10
Date: Mon, 22 Aug 2016 13:28:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: SUSPENDED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: ro at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-67412-4-Gc5FyF863g@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67412-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67412-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02817.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67412

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535478-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:28:04 2016
Return-Path: <gcc-bugs-return-535478-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 105511 invoked by alias); 22 Aug 2016 13:28:04 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 105475 invoked by uid 89); 22 Aug 2016 13:28:02 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:27:52 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/67420] gfortran.dg/norm2_3.f90 FAILs
Date: Mon, 22 Aug 2016 13:28:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: SUSPENDED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-67420-4-IwYbccnaCW@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67420-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67420-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02814.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67420

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535484-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:29:37 2016
Return-Path: <gcc-bugs-return-535484-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 110608 invoked by alias); 22 Aug 2016 13:29:37 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 110575 invoked by uid 89); 22 Aug 2016 13:29:36 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:29:25 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug testsuite/66404] gcc.target/i386/pad-10.c etc. FAIL with PIE
Date: Mon, 22 Aug 2016 13:29:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: testsuite
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-66404-4-3HNGogMDkD@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-66404-4@http.gcc.gnu.org/bugzilla/>
References: <bug-66404-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02821.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66404

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535482-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:29:17 2016
Return-Path: <gcc-bugs-return-535482-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 109686 invoked by alias); 22 Aug 2016 13:29:16 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 109641 invoked by uid 89); 22 Aug 2016 13:29:15 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:29:05 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug testsuite/66404] gcc.target/i386/pad-10.c etc. FAIL with PIE
Date: Mon, 22 Aug 2016 13:29:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: testsuite
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-66404-4-lKEd43EEH4@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-66404-4@http.gcc.gnu.org/bugzilla/>
References: <bug-66404-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02818.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66404

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535486-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:29:47 2016
Return-Path: <gcc-bugs-return-535486-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 112014 invoked by alias); 22 Aug 2016 13:29:47 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 111901 invoked by uid 89); 22 Aug 2016 13:29:46 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:29:36 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug testsuite/70150] Additonal test failures with --enable-default-pie
Date: Mon, 22 Aug 2016 13:29:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: testsuite
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-70150-4-0TafhjurlY@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70150-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70150-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02820.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70150

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535483-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:29:37 2016
Return-Path: <gcc-bugs-return-535483-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 110597 invoked by alias); 22 Aug 2016 13:29:37 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 110576 invoked by uid 89); 22 Aug 2016 13:29:36 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:29:25 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug testsuite/70150] Additonal test failures with --enable-default-pie
Date: Mon, 22 Aug 2016 13:29:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: testsuite
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-70150-4-IPMjCJwGn1@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70150-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70150-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02819.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70150

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535489-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:30:42 2016
Return-Path: <gcc-bugs-return-535489-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 115434 invoked by alias); 22 Aug 2016 13:30:42 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 115391 invoked by uid 89); 22 Aug 2016 13:30:40 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:30:30 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/68510] [concepts] ICE: in gimplify_var_or_parm_decl, at gimplify.c:1827
Date: Mon, 22 Aug 2016 13:30:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-68510-4-Be0CI9u8VI@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68510-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68510-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02824.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68510

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535485-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:29:45 2016
Return-Path: <gcc-bugs-return-535485-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 111711 invoked by alias); 22 Aug 2016 13:29:45 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 111611 invoked by uid 89); 22 Aug 2016 13:29:44 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:29:34 +0000
From: "egall at gwmail dot gwu.edu" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/53129] Wself-assign
Date: Mon, 22 Aug 2016 13:30:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords: diagnostic, easyhack
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: egall at gwmail dot gwu.edu
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-53129-4-aNdQiHM4m6@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-53129-4@http.gcc.gnu.org/bugzilla/>
References: <bug-53129-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02825.txt.bz2
Content-length: 459

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53129

Eric Gallager <egall at gwmail dot gwu.edu> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |egall at gwmail dot gwu.edu

--- Comment #2 from Eric Gallager <egall at gwmail dot gwu.edu> ---
I'd like to see this warning added, too... can I mark this as confirmed?
>From gcc-bugs-return-535487-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:30:27 2016
Return-Path: <gcc-bugs-return-535487-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 113943 invoked by alias); 22 Aug 2016 13:30:25 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 113709 invoked by uid 89); 22 Aug 2016 13:30:09 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:29:57 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug testsuite/70150] Additonal test failures with --enable-default-pie
Date: Mon, 22 Aug 2016 13:30:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: testsuite
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-70150-4-c6oEREv47r@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70150-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70150-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02822.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70150

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535488-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:30:31 2016
Return-Path: <gcc-bugs-return-535488-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 114483 invoked by alias); 22 Aug 2016 13:30:31 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 114349 invoked by uid 89); 22 Aug 2016 13:30:30 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:30:20 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/68510] [concepts] ICE: in gimplify_var_or_parm_decl, at gimplify.c:1827
Date: Mon, 22 Aug 2016 13:30:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-68510-4-HvWhpTIgsd@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68510-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68510-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02823.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68510

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535491-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:31:34 2016
Return-Path: <gcc-bugs-return-535491-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 117358 invoked by alias); 22 Aug 2016 13:31:34 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 117329 invoked by uid 89); 22 Aug 2016 13:31:32 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:31:23 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/68128] A huge regression in Parboil v2.5 OpenMP CUTCP test (2.5 times lower performance)
Date: Mon, 22 Aug 2016 13:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 5.3.0
X-Bugzilla-Keywords: missed-optimization, openmp
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-68128-4-QK52SlqWBQ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68128-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68128-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02827.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68128

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535494-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:31:56 2016
Return-Path: <gcc-bugs-return-535494-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 119961 invoked by alias); 22 Aug 2016 13:31:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 119849 invoked by uid 89); 22 Aug 2016 13:31:55 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:31:45 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/68128] A huge regression in Parboil v2.5 OpenMP CUTCP test (2.5 times lower performance)
Date: Mon, 22 Aug 2016 13:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 5.3.0
X-Bugzilla-Keywords: missed-optimization, openmp
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-68128-4-TFaIijETqB@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68128-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68128-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02829.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68128

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535490-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:31:02 2016
Return-Path: <gcc-bugs-return-535490-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 116388 invoked by alias); 22 Aug 2016 13:31:02 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 116369 invoked by uid 89); 22 Aug 2016 13:31:01 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:30:51 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/68510] [concepts] ICE: in gimplify_var_or_parm_decl, at gimplify.c:1827
Date: Mon, 22 Aug 2016 13:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-68510-4-ZOItFi83aC@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68510-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68510-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02826.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68510

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535493-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:31:35 2016
Return-Path: <gcc-bugs-return-535493-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 117441 invoked by alias); 22 Aug 2016 13:31:35 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 117328 invoked by uid 89); 22 Aug 2016 13:31:32 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:31:23 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/68128] A huge regression in Parboil v2.5 OpenMP CUTCP test (2.5 times lower performance)
Date: Mon, 22 Aug 2016 13:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 5.3.0
X-Bugzilla-Keywords: missed-optimization, openmp
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-68128-4-Xt2CrAIVFa@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68128-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68128-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02830.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68128

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535492-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:31:35 2016
Return-Path: <gcc-bugs-return-535492-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 117373 invoked by alias); 22 Aug 2016 13:31:34 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 117326 invoked by uid 89); 22 Aug 2016 13:31:32 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyw320, sk:get_ubs, Hx-languages-length:252
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:31:19 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug testsuite/77320] ICE: get_ubsan_type_info_for_type, at ubsan.c:305
Date: Mon, 22 Aug 2016 13:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: testsuite
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: critical
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77320-4-PejjiVc8mF@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77320-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77320-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02828.txt.bz2
Content-length: 182

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77320

--- Comment #1 from Richard Biener <rguenth at gcc dot gnu.org> ---
Seems to work for me on the branch head (for x86_64-linux).
>From gcc-bugs-return-535496-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:32:28 2016
Return-Path: <gcc-bugs-return-535496-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 123684 invoked by alias); 22 Aug 2016 13:32:28 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 123587 invoked by uid 89); 22 Aug 2016 13:32:27 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:32:17 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/66207] Switch alpha to LRA
Date: Mon, 22 Aug 2016 13:32:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: ra
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-66207-4-0EfjHcClCi@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-66207-4@http.gcc.gnu.org/bugzilla/>
References: <bug-66207-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02831.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66207

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535495-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:32:18 2016
Return-Path: <gcc-bugs-return-535495-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 122426 invoked by alias); 22 Aug 2016 13:32:18 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 122221 invoked by uid 89); 22 Aug 2016 13:32:16 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:32:06 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/66207] Switch alpha to LRA
Date: Mon, 22 Aug 2016 13:32:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: ra
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-66207-4-FZE61EFLeL@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-66207-4@http.gcc.gnu.org/bugzilla/>
References: <bug-66207-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02832.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66207

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535497-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:32:39 2016
Return-Path: <gcc-bugs-return-535497-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 124694 invoked by alias); 22 Aug 2016 13:32:38 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 124638 invoked by uid 89); 22 Aug 2016 13:32:38 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:32:28 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/66207] Switch alpha to LRA
Date: Mon, 22 Aug 2016 13:32:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: ra
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-66207-4-pCCKtokwLZ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-66207-4@http.gcc.gnu.org/bugzilla/>
References: <bug-66207-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02833.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66207

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535499-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:33:31 2016
Return-Path: <gcc-bugs-return-535499-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 2635 invoked by alias); 22 Aug 2016 13:33:30 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 2558 invoked by uid 89); 22 Aug 2016 13:33:29 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:33:20 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/67710] FAIL: gcc.dg/darwin-*version-*.c (test for excess errors) with Xcode 7
Date: Mon, 22 Aug 2016 13:33:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: ro at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-67710-4-LU4pEm9cIs@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67710-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67710-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02835.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67710

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535498-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:33:10 2016
Return-Path: <gcc-bugs-return-535498-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 129776 invoked by alias); 22 Aug 2016 13:33:10 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 128866 invoked by uid 89); 22 Aug 2016 13:33:09 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=exploit
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:32:59 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/67321] [ARM] Exploit Wide Add operations when appropriate
Date: Mon, 22 Aug 2016 13:33:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: michael.collison at linaro dot org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-67321-4-uyuT3ECvAO@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67321-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67321-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02834.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67321

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535500-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:33:52 2016
Return-Path: <gcc-bugs-return-535500-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 4145 invoked by alias); 22 Aug 2016 13:33:51 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 4130 invoked by uid 89); 22 Aug 2016 13:33:50 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:33:40 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/67710] FAIL: gcc.dg/darwin-*version-*.c (test for excess errors) with Xcode 7
Date: Mon, 22 Aug 2016 13:33:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: ro at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-67710-4-BcCjmyKQlk@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67710-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67710-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02836.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67710

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535503-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:34:43 2016
Return-Path: <gcc-bugs-return-535503-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 7149 invoked by alias); 22 Aug 2016 13:34:43 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 7109 invoked by uid 89); 22 Aug 2016 13:34:42 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:34:32 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug sanitizer/68065] Size calculations for VLAs can overflow
Date: Mon, 22 Aug 2016 13:34:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: sanitizer
X-Bugzilla-Version: 5.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-68065-4-wrQqyAdU8B@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68065-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68065-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02839.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68065

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535501-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:34:02 2016
Return-Path: <gcc-bugs-return-535501-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 5206 invoked by alias); 22 Aug 2016 13:34:01 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 5108 invoked by uid 89); 22 Aug 2016 13:34:01 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:33:51 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/67321] [ARM] Exploit Wide Add operations when appropriate
Date: Mon, 22 Aug 2016 13:34:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: michael.collison at linaro dot org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-67321-4-DXIAJWUWyx@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67321-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67321-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02837.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67321

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535502-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:34:43 2016
Return-Path: <gcc-bugs-return-535502-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 7132 invoked by alias); 22 Aug 2016 13:34:43 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 7108 invoked by uid 89); 22 Aug 2016 13:34:42 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:34:32 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug sanitizer/68065] Size calculations for VLAs can overflow
Date: Mon, 22 Aug 2016 13:34:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: sanitizer
X-Bugzilla-Version: 5.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-68065-4-FPS6kfw1j9@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68065-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68065-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02838.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68065

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535506-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:35:56 2016
Return-Path: <gcc-bugs-return-535506-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 50682 invoked by alias); 22 Aug 2016 13:35:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 50647 invoked by uid 89); 22 Aug 2016 13:35:55 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:35:45 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug sanitizer/66401] g++.dg/ubsan/vla-1.C FAILs with PIE
Date: Mon, 22 Aug 2016 13:35:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: sanitizer
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-66401-4-hySz5MrlAz@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-66401-4@http.gcc.gnu.org/bugzilla/>
References: <bug-66401-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02842.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66401

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535505-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:35:56 2016
Return-Path: <gcc-bugs-return-535505-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 50662 invoked by alias); 22 Aug 2016 13:35:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 50646 invoked by uid 89); 22 Aug 2016 13:35:55 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:35:45 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug sanitizer/66401] g++.dg/ubsan/vla-1.C FAILs with PIE
Date: Mon, 22 Aug 2016 13:35:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: sanitizer
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-66401-4-60TohZR4iL@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-66401-4@http.gcc.gnu.org/bugzilla/>
References: <bug-66401-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02841.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66401

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535504-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:35:15 2016
Return-Path: <gcc-bugs-return-535504-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 33343 invoked by alias); 22 Aug 2016 13:35:14 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 32023 invoked by uid 89); 22 Aug 2016 13:35:13 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:35:04 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug sanitizer/68065] Size calculations for VLAs can overflow
Date: Mon, 22 Aug 2016 13:35:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: sanitizer
X-Bugzilla-Version: 5.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-68065-4-2KW4R3u2bu@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68065-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68065-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02840.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68065

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535507-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:36:28 2016
Return-Path: <gcc-bugs-return-535507-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 52357 invoked by alias); 22 Aug 2016 13:36:28 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 52327 invoked by uid 89); 22 Aug 2016 13:36:27 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:36:17 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug sanitizer/66401] g++.dg/ubsan/vla-1.C FAILs with PIE
Date: Mon, 22 Aug 2016 13:36:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: sanitizer
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-66401-4-1mQBn5YLPB@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-66401-4@http.gcc.gnu.org/bugzilla/>
References: <bug-66401-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02843.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66401

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535509-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:37:14 2016
Return-Path: <gcc-bugs-return-535509-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 54740 invoked by alias); 22 Aug 2016 13:37:14 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 54702 invoked by uid 89); 22 Aug 2016 13:37:13 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:37:03 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug sanitizer/67513] ASAN: Not optimal shadow value check (unlikely condition checked in fast path)
Date: Mon, 22 Aug 2016 13:37:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: sanitizer
X-Bugzilla-Version: 5.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-67513-4-Vel9TbGd8n@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67513-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67513-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02845.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67513

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535508-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:37:05 2016
Return-Path: <gcc-bugs-return-535508-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 53898 invoked by alias); 22 Aug 2016 13:37:04 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 53815 invoked by uid 89); 22 Aug 2016 13:36:58 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:36:48 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug sanitizer/67513] ASAN: Not optimal shadow value check (unlikely condition checked in fast path)
Date: Mon, 22 Aug 2016 13:37:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: sanitizer
X-Bugzilla-Version: 5.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-67513-4-CkpcdpZdTg@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67513-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67513-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02844.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67513

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535510-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:37:46 2016
Return-Path: <gcc-bugs-return-535510-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 56473 invoked by alias); 22 Aug 2016 13:37:46 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 56446 invoked by uid 89); 22 Aug 2016 13:37:45 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:37:35 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug sanitizer/67513] ASAN: Not optimal shadow value check (unlikely condition checked in fast path)
Date: Mon, 22 Aug 2016 13:37:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: sanitizer
X-Bugzilla-Version: 5.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-67513-4-ASrBnb1pds@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67513-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67513-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02846.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67513

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535512-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:38:27 2016
Return-Path: <gcc-bugs-return-535512-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 58973 invoked by alias); 22 Aug 2016 13:38:27 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 58949 invoked by uid 89); 22 Aug 2016 13:38:26 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:38:16 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/68752] PowerPC: vector reciprocal square root estimate missed optimisations
Date: Mon, 22 Aug 2016 13:38:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-68752-4-lhn2ywFkv8@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68752-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68752-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02848.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68752

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535514-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:38:58 2016
Return-Path: <gcc-bugs-return-535514-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 60721 invoked by alias); 22 Aug 2016 13:38:58 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 60684 invoked by uid 89); 22 Aug 2016 13:38:57 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:38:47 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/69513] LTO bootstrap fails with bootstrap-profiled during linking gnat1 in stagefeedback
Date: Mon, 22 Aug 2016 13:38:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: REOPENED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-69513-4-DpLyMgxEVi@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69513-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69513-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02850.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69513

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535513-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:38:38 2016
Return-Path: <gcc-bugs-return-535513-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 59787 invoked by alias); 22 Aug 2016 13:38:37 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 59760 invoked by uid 89); 22 Aug 2016 13:38:37 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:38:27 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/68752] PowerPC: vector reciprocal square root estimate missed optimisations
Date: Mon, 22 Aug 2016 13:38:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-68752-4-Tp65q7dnPl@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68752-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68752-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02849.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68752

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535511-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:38:07 2016
Return-Path: <gcc-bugs-return-535511-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 57707 invoked by alias); 22 Aug 2016 13:38:07 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 57669 invoked by uid 89); 22 Aug 2016 13:38:05 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:37:55 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug sanitizer/67513] ASAN: Not optimal shadow value check (unlikely condition checked in fast path)
Date: Mon, 22 Aug 2016 13:38:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: sanitizer
X-Bugzilla-Version: 5.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-67513-4-yfzOQ7ktcB@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67513-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67513-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02847.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67513

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535516-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:39:09 2016
Return-Path: <gcc-bugs-return-535516-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 62015 invoked by alias); 22 Aug 2016 13:39:09 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 61855 invoked by uid 89); 22 Aug 2016 13:39:08 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:38:58 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/69513] LTO bootstrap fails with bootstrap-profiled during linking gnat1 in stagefeedback
Date: Mon, 22 Aug 2016 13:39:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: REOPENED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-69513-4-ERmV1f6KNQ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69513-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69513-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02851.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69513

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535521-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:39:52 2016
Return-Path: <gcc-bugs-return-535521-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 66252 invoked by alias); 22 Aug 2016 13:39:51 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 66215 invoked by uid 89); 22 Aug 2016 13:39:50 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:39:40 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/66960] Add interrupt attribute to x86 backend
Date: Mon, 22 Aug 2016 13:39:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-66960-4-8nJmS2Hk8N@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-66960-4@http.gcc.gnu.org/bugzilla/>
References: <bug-66960-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02854.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66960

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535519-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:39:30 2016
Return-Path: <gcc-bugs-return-535519-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 64046 invoked by alias); 22 Aug 2016 13:39:30 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 63954 invoked by uid 89); 22 Aug 2016 13:39:29 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:39:19 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/66960] Add interrupt attribute to x86 backend
Date: Mon, 22 Aug 2016 13:39:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-66960-4-zdDssmiGgS@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-66960-4@http.gcc.gnu.org/bugzilla/>
References: <bug-66960-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02856.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66960

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535518-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:39:30 2016
Return-Path: <gcc-bugs-return-535518-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 63993 invoked by alias); 22 Aug 2016 13:39:30 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 63950 invoked by uid 89); 22 Aug 2016 13:39:29 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:39:19 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/66960] Add interrupt attribute to x86 backend
Date: Mon, 22 Aug 2016 13:39:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-66960-4-H15iEmktat@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-66960-4@http.gcc.gnu.org/bugzilla/>
References: <bug-66960-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02855.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66960

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535520-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:39:42 2016
Return-Path: <gcc-bugs-return-535520-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 65381 invoked by alias); 22 Aug 2016 13:39:42 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 65181 invoked by uid 89); 22 Aug 2016 13:39:40 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:39:29 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/66960] Add interrupt attribute to x86 backend
Date: Mon, 22 Aug 2016 13:39:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-66960-4-TvpRy4tlbS@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-66960-4@http.gcc.gnu.org/bugzilla/>
References: <bug-66960-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02853.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66960

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535515-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:38:59 2016
Return-Path: <gcc-bugs-return-535515-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 60746 invoked by alias); 22 Aug 2016 13:38:58 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 60685 invoked by uid 89); 22 Aug 2016 13:38:57 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:38:47 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/69513] LTO bootstrap fails with bootstrap-profiled during linking gnat1 in stagefeedback
Date: Mon, 22 Aug 2016 13:39:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: REOPENED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-69513-4-eMtrZo3L8h@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69513-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69513-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02857.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69513

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535517-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:39:20 2016
Return-Path: <gcc-bugs-return-535517-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 62980 invoked by alias); 22 Aug 2016 13:39:20 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 62954 invoked by uid 89); 22 Aug 2016 13:39:19 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:39:09 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/69513] LTO bootstrap fails with bootstrap-profiled during linking gnat1 in stagefeedback
Date: Mon, 22 Aug 2016 13:39:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: REOPENED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-69513-4-nOAQnQubsc@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69513-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69513-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02852.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69513

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535523-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:40:39 2016
Return-Path: <gcc-bugs-return-535523-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 68194 invoked by alias); 22 Aug 2016 13:40:38 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 68127 invoked by uid 89); 22 Aug 2016 13:40:32 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:40:22 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/68690] PowerPC64: TOC save in PHP core loop results in load hit store
Date: Mon, 22 Aug 2016 13:40:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-68690-4-VAfq2BAiOQ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68690-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68690-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02860.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68690

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535522-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:40:38 2016
Return-Path: <gcc-bugs-return-535522-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 68171 invoked by alias); 22 Aug 2016 13:40:38 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 68126 invoked by uid 89); 22 Aug 2016 13:40:32 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:40:22 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/68690] PowerPC64: TOC save in PHP core loop results in load hit store
Date: Mon, 22 Aug 2016 13:40:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-68690-4-QRgnoMJ2n2@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68690-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68690-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02858.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68690

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535524-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:40:45 2016
Return-Path: <gcc-bugs-return-535524-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 68910 invoked by alias); 22 Aug 2016 13:40:45 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 68756 invoked by uid 89); 22 Aug 2016 13:40:44 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:40:33 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/68690] PowerPC64: TOC save in PHP core loop results in load hit store
Date: Mon, 22 Aug 2016 13:40:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-68690-4-qZALgQOmTq@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68690-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68690-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02859.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68690

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535530-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:41:50 2016
Return-Path: <gcc-bugs-return-535530-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 74099 invoked by alias); 22 Aug 2016 13:41:50 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 74029 invoked by uid 89); 22 Aug 2016 13:41:49 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:41:39 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/68939] ICE or wrong code with OpenMP privatization of reference to VLAs
Date: Mon, 22 Aug 2016 13:41:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: openmp, wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-68939-4-YGBTvLXTpb@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68939-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68939-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02863.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68939

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535526-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:41:19 2016
Return-Path: <gcc-bugs-return-535526-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 71232 invoked by alias); 22 Aug 2016 13:41:18 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 71163 invoked by uid 89); 22 Aug 2016 13:41:15 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:41:06 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/70588] SIGBUS on a VLA larger than SIZE_MAX / 2
Date: Mon, 22 Aug 2016 13:41:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: REOPENED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: msebor at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-70588-4-t62p0RdGHe@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70588-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70588-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02861.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70588

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535527-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:41:29 2016
Return-Path: <gcc-bugs-return-535527-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 71989 invoked by alias); 22 Aug 2016 13:41:29 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 71958 invoked by uid 89); 22 Aug 2016 13:41:28 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:41:17 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/70588] SIGBUS on a VLA larger than SIZE_MAX / 2
Date: Mon, 22 Aug 2016 13:41:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: REOPENED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: msebor at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-70588-4-FmtVjABXYZ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70588-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70588-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02862.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70588

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535525-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:40:56 2016
Return-Path: <gcc-bugs-return-535525-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 69987 invoked by alias); 22 Aug 2016 13:40:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 69900 invoked by uid 89); 22 Aug 2016 13:40:55 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:40:45 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/68690] PowerPC64: TOC save in PHP core loop results in load hit store
Date: Mon, 22 Aug 2016 13:42:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-68690-4-QCOVPvKzdf@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68690-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68690-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02866.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68690

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535533-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:42:11 2016
Return-Path: <gcc-bugs-return-535533-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 76190 invoked by alias); 22 Aug 2016 13:42:10 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 76080 invoked by uid 89); 22 Aug 2016 13:42:09 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:41:59 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/68939] ICE or wrong code with OpenMP privatization of reference to VLAs
Date: Mon, 22 Aug 2016 13:42:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: openmp, wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-68939-4-TGlquioFVM@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68939-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68939-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02868.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68939

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535532-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:42:00 2016
Return-Path: <gcc-bugs-return-535532-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 74902 invoked by alias); 22 Aug 2016 13:42:00 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 74845 invoked by uid 89); 22 Aug 2016 13:41:59 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:41:49 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/68939] ICE or wrong code with OpenMP privatization of reference to VLAs
Date: Mon, 22 Aug 2016 13:42:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: openmp, wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-68939-4-mlXu7FkjzM@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68939-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68939-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02865.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68939

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535531-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:42:00 2016
Return-Path: <gcc-bugs-return-535531-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 74887 invoked by alias); 22 Aug 2016 13:42:00 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 74846 invoked by uid 89); 22 Aug 2016 13:41:59 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:41:49 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/68939] ICE or wrong code with OpenMP privatization of reference to VLAs
Date: Mon, 22 Aug 2016 13:42:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: openmp, wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-68939-4-TkuperjWDV@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68939-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68939-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02864.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68939

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535529-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:41:39 2016
Return-Path: <gcc-bugs-return-535529-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 73022 invoked by alias); 22 Aug 2016 13:41:39 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 72940 invoked by uid 89); 22 Aug 2016 13:41:38 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:41:28 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/70588] SIGBUS on a VLA larger than SIZE_MAX / 2
Date: Mon, 22 Aug 2016 13:42:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: REOPENED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: msebor at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-70588-4-1k55iKYtbp@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70588-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70588-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02869.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70588

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535528-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:41:29 2016
Return-Path: <gcc-bugs-return-535528-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 72019 invoked by alias); 22 Aug 2016 13:41:29 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 71957 invoked by uid 89); 22 Aug 2016 13:41:28 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:41:17 +0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/70588] SIGBUS on a VLA larger than SIZE_MAX / 2
Date: Mon, 22 Aug 2016 13:42:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: REOPENED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: msebor at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-70588-4-7oL2m8TRPf@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70588-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70588-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02867.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70588

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|6.2                         |6.3
>From gcc-bugs-return-535534-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 13:45:51 2016
Return-Path: <gcc-bugs-return-535534-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 83079 invoked by alias); 22 Aug 2016 13:45:51 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 83058 invoked by uid 89); 22 Aug 2016 13:45:50 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=prs, PRs
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 13:45:40 +0000
From: "manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/53129] Wself-assign
Date: Mon, 22 Aug 2016 13:45:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: diagnostic, easyhack
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: manu at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on version everconfirmed
Message-ID: <bug-53129-4-gYsSVTKzlV@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-53129-4@http.gcc.gnu.org/bugzilla/>
References: <bug-53129-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02870.txt.bz2
Content-length: 667

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53129

Manuel López-Ibáñez <manu at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-22
            Version|unknown                     |7.0
     Ever confirmed|0                           |1

--- Comment #3 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
Usually one does not confirm their own PRs, but in this case it seems obvious
and given you request...
>From gcc-bugs-return-535535-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 14:12:59 2016
Return-Path: <gcc-bugs-return-535535-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 64565 invoked by alias); 22 Aug 2016 14:12:59 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 64550 invoked by uid 89); 22 Aug 2016 14:12:58 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=old-style, oldstyle, Personally
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 14:12:48 +0000
From: "egall at gwmail dot gwu.edu" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/69818] warn for C++ functional cast expression on pointer or reference
Date: Mon, 22 Aug 2016 14:12:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.2.1
X-Bugzilla-Keywords: diagnostic, easyhack
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: egall at gwmail dot gwu.edu
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-69818-4-JbOw1aURQt@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69818-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69818-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02871.txt.bz2
Content-length: 860

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69818

Eric Gallager <egall at gwmail dot gwu.edu> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |egall at gwmail dot gwu.edu

--- Comment #5 from Eric Gallager <egall at gwmail dot gwu.edu> ---
Personally I'd prefer a separate option, -Wfunctional-cast or something, as
functional casts and "old-style" casts are different things. I generally avoid
-Wold-style-cast currently, as it is often pretty noisy in code that started
off written as C and was then converted to C++, but I'd consider using a
separate -Wfunctional-cast, as that would catch just things added
post-C++-conversion, which means it would probably be significantly less noisy,
and easier to fix.
>From gcc-bugs-return-535536-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 14:28:50 2016
Return-Path: <gcc-bugs-return-535536-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 85480 invoked by alias); 22 Aug 2016 14:28:50 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 85249 invoked by uid 89); 22 Aug 2016 14:28:49 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=bitfields, sk:kyrylo, kyrylo.tkachov@arm.com, sk:kyrylo.
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 14:28:39 +0000
From: "ktkachov at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/71700] [5/6 Regression] wrong code with struct assignment with sub-word signed bitfields
Date: Mon, 22 Aug 2016 14:28:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ktkachov at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: ktkachov at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71700-4-lDzGGmitDd@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71700-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71700-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02872.txt.bz2
Content-length: 871

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71700

--- Comment #5 from ktkachov at gcc dot gnu.org ---
Author: ktkachov
Date: Mon Aug 22 14:28:05 2016
New Revision: 239660

URL: https://gcc.gnu.org/viewcvs?rev=239660&root=gcc&view=rev
Log:
[expr.c] PR middle-end/71700: zero-extend sub-word value when widening
constructor element

        Backport from mainline
        2016-07-12  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>

        PR middle-end/71700
        * expr.c (store_constructor): Mask sign-extended bits when widening
        sub-word constructor element at the start of a word.

        * gcc.c-torture/execute/pr71700.c: New test.


Added:
    branches/gcc-6-branch/gcc/testsuite/gcc.c-torture/execute/pr71700.c
Modified:
    branches/gcc-6-branch/gcc/ChangeLog
    branches/gcc-6-branch/gcc/expr.c
    branches/gcc-6-branch/gcc/testsuite/ChangeLog
>From gcc-bugs-return-535537-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 14:29:16 2016
Return-Path: <gcc-bugs-return-535537-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 92171 invoked by alias); 22 Aug 2016 14:29:16 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 92083 invoked by uid 89); 22 Aug 2016 14:29:15 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=anti-spam, antispam, editing, tens
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 14:29:07 +0000
From: "LpSolit at netscape dot net" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug web/77319] [bugzilla] bugzilla behaves erratically
Date: Mon, 22 Aug 2016 14:29:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: web
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: LpSolit at netscape dot net
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77319-4-sky1wWvyUq@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77319-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77319-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02873.txt.bz2
Content-length: 584

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77319

--- Comment #1 from Frédéric Buclin <LpSolit at netscape dot net> ---
Is this behavior new? Because the Bugzilla code and configuration didn't change
since Aug 17.

I suspect that the anti-spam filters on the mail server are the culprit. fche
said they could take several tens of seconds to proceed, and so when editing
several bugs at once, Apache probably times out before pending emails have all
been sent and so not all changes have been committed.

I have no control on the mail server. Not sure who to CC.
>From gcc-bugs-return-535538-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 14:31:26 2016
Return-Path: <gcc-bugs-return-535538-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 15291 invoked by alias); 22 Aug 2016 14:31:26 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 14801 invoked by uid 89); 22 Aug 2016 14:31:25 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 14:31:15 +0000
From: "mwahab at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/57326] Piecewise folding of operations on PHI nodes
Date: Mon, 22 Aug 2016 14:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mwahab at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-57326-4-CZhraON1h2@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-57326-4@http.gcc.gnu.org/bugzilla/>
References: <bug-57326-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02874.txt.bz2
Content-length: 604

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57326

mwahab at gcc dot gnu.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mwahab at gcc dot gnu.org

--- Comment #4 from mwahab at gcc dot gnu.org ---
I think that this change is the cause of a failure in gcc.dg/autopar/pr46193.c
on aarch64-none-linux-gnu.

Looking at the parloop2 log when the test is run, neither function in pr46193.c
is vectorized because for both 'latch block not empty'.

Matthew
>From gcc-bugs-return-535539-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 14:57:10 2016
Return-Path: <gcc-bugs-return-535539-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 119566 invoked by alias); 22 Aug 2016 14:57:09 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 119555 invoked by uid 89); 22 Aug 2016 14:57:09 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 14:56:58 +0000
From: "trippels at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77321] New: [7 Regression] crash in warn_for_memset
Date: Mon, 22 Aug 2016 14:57:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: trippels at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77321-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02875.txt.bz2
Content-length: 2596

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77321

            Bug ID: 77321
           Summary: [7 Regression] crash in warn_for_memset
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: trippels at gcc dot gnu.org
  Target Milestone: ---

markus@x4 /tmp % cat crash.ii
template <typename> void foo() {
  auto &a();
  __builtin_memset(a, 'X', 4);
}

markus@x4 /tmp % g++ -c -Wall crash.ii
crash.ii: In function ‘void foo()’:
crash.ii:3:29: internal compiler error: Segmentation fault
   __builtin_memset(a, 'X', 4);
                             ^
0xd7904f crash_signal
        ../../gcc/gcc/toplev.c:335
0x7f13dc06dc2f ???
       
/home/markus/glibc/signal/../sysdeps/unix/sysv/linux/x86_64/sigaction.c:0
0x8cc6ca warn_for_memset(unsigned int, tree_node*, tree_node*, int)
        ../../gcc/gcc/c-family/c-common.c:11994
0x75efcf cp_parser_postfix_expression
        ../../gcc/gcc/cp/parser.c:6878
0x75ceac cp_parser_unary_expression
        ../../gcc/gcc/cp/parser.c:8019
0x766e87 cp_parser_cast_expression
        ../../gcc/gcc/cp/parser.c:8696
0x76741d cp_parser_binary_expression
        ../../gcc/gcc/cp/parser.c:8797
0x767ce0 cp_parser_assignment_expression
        ../../gcc/gcc/cp/parser.c:9084
0x76a66a cp_parser_expression
        ../../gcc/gcc/cp/parser.c:9253
0x76ac13 cp_parser_expression_statement
        ../../gcc/gcc/cp/parser.c:10736
0x77a5cc cp_parser_statement
        ../../gcc/gcc/cp/parser.c:10587
0x77b664 cp_parser_statement_seq_opt
        ../../gcc/gcc/cp/parser.c:10859
0x77b76f cp_parser_compound_statement
        ../../gcc/gcc/cp/parser.c:10813
0x77b8cd cp_parser_function_body
        ../../gcc/gcc/cp/parser.c:20832
0x77b8cd cp_parser_ctor_initializer_opt_and_function_body
        ../../gcc/gcc/cp/parser.c:20868
0x77c381 cp_parser_function_definition_after_declarator
        ../../gcc/gcc/cp/parser.c:25565
0x77d131 cp_parser_function_definition_from_specifiers_and_declarator
        ../../gcc/gcc/cp/parser.c:25477
0x77d131 cp_parser_init_declarator
        ../../gcc/gcc/cp/parser.c:18603
0x77e5b7 cp_parser_single_declaration
        ../../gcc/gcc/cp/parser.c:26021
0x77e6dc cp_parser_template_declaration_after_parameters
        ../../gcc/gcc/cp/parser.c:25626
Please submit a full bug report,
with preprocessed source if appropriate.
Please include the complete backtrace with any bug report.
See <http://gcc.gnu.org/bugs.html> for instructions.
>From gcc-bugs-return-535540-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 15:11:35 2016
Return-Path: <gcc-bugs-return-535540-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 17476 invoked by alias); 22 Aug 2016 15:11:35 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 17455 invoked by uid 89); 22 Aug 2016 15:11:34 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Trippelsdorf, trippelsdorf
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 15:11:24 +0000
From: "trippels at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77321] [7 Regression] crash in warn_for_memset
Date: Mon, 22 Aug 2016 15:11:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: trippels at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-77321-4-SMcb1NkhXG@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77321-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77321-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02876.txt.bz2
Content-length: 427

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77321

Markus Trippelsdorf <trippels at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |bernds at gcc dot gnu.org

--- Comment #1 from Markus Trippelsdorf <trippels at gcc dot gnu.org> ---
Probably started with r235475.
>From gcc-bugs-return-535541-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 15:18:35 2016
Return-Path: <gcc-bugs-return-535541-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 42222 invoked by alias); 22 Aug 2016 15:18:35 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 41685 invoked by uid 89); 22 Aug 2016 15:18:34 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Signature, Hx-languages-length:1014, 4.7, 47
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 15:18:24 +0000
From: "ralph.tandetzky at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/77322] New: [C++11] std::function::swap should be noexcept.
Date: Mon, 22 Aug 2016 15:18:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ralph.tandetzky at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77322-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02877.txt.bz2
Content-length: 1088

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77322

            Bug ID: 77322
           Summary: [C++11] std::function::swap should be noexcept.
           Product: gcc
           Version: 6.1.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: libstdc++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: ralph.tandetzky at gmail dot com
  Target Milestone: ---

The C++11, C++14 and C++17 standard require, that
std::function<Signature>::swap() be noexcept. However, the following program
does not compile:

    #include <functional>

    int main()
    {
        std::function<void()> f;
        static_assert( noexcept( f.swap(f) ), "" );
    }

This is the error message:

main.cpp: In function 'int main()':
main.cpp:6:5: error: static assertion failed
     static_assert( noexcept( f.swap(f) ), "" );
     ^~~~~~~~~~~~~

By the way, clang does it right. This bug should be very simple to fix. This
concerns all GCC versions that support C++11 from version 4.7 (or maybe
earlier) until 6.1 (or maybe later).
>From gcc-bugs-return-535542-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 15:21:09 2016
Return-Path: <gcc-bugs-return-535542-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 49564 invoked by alias); 22 Aug 2016 15:21:08 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 49555 invoked by uid 89); 22 Aug 2016 15:21:08 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 15:20:57 +0000
From: "mpolacek at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77321] [7 Regression] crash in warn_for_memset
Date: Mon, 22 Aug 2016 15:21:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: diagnostic, ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mpolacek at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-77321-4-QiUw3NoTfh@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77321-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77321-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02878.txt.bz2
Content-length: 880

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77321

Marek Polacek <mpolacek at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mpolacek at gcc dot gnu.org

--- Comment #2 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
The fix should be just

--- a/gcc/c-family/c-common.c
+++ b/gcc/c-family/c-common.c
@@ -11991,7 +11991,7 @@ warn_for_memset (location_t loc, tree arg0, tree arg2,
       if (TREE_CODE (arg0) == ADDR_EXPR)
    arg0 = TREE_OPERAND (arg0, 0);
       tree type = TREE_TYPE (arg0);
-      if (TREE_CODE (type) == ARRAY_TYPE)
+      if (type != NULL_TREE && TREE_CODE (type) == ARRAY_TYPE)
    {
      tree elt_type = TREE_TYPE (type);
      tree domain = TYPE_DOMAIN (type);
>From gcc-bugs-return-535543-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 15:28:52 2016
Return-Path: <gcc-bugs-return-535543-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 71751 invoked by alias); 22 Aug 2016 15:28:52 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 71671 invoked by uid 89); 22 Aug 2016 15:28:51 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 15:28:49 +0000
From: "mpolacek at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug testsuite/77320] ICE: get_ubsan_type_info_for_type, at ubsan.c:305
Date: Mon, 22 Aug 2016 15:28:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: testsuite
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: critical
X-Bugzilla-Who: mpolacek at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cc resolution
Message-ID: <bug-77320-4-smdzv3rLMu@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77320-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77320-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02879.txt.bz2
Content-length: 529

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77320

Marek Polacek <mpolacek at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
                 CC|                            |mpolacek at gcc dot gnu.org
         Resolution|---                         |FIXED

--- Comment #2 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
Yes, I fixed this in r235951.
>From gcc-bugs-return-535544-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 15:33:06 2016
Return-Path: <gcc-bugs-return-535544-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 77999 invoked by alias); 22 Aug 2016 15:33:06 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 77964 invoked by uid 89); 22 Aug 2016 15:33:05 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 15:32:55 +0000
From: "jsm28 at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/77269] __builtin_isinf_sign does not work for __float128
Date: Mon, 22 Aug 2016 15:33:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jsm28 at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jsm28 at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status assigned_to
Message-ID: <bug-77269-4-nwixFZDYy7@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77269-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77269-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02880.txt.bz2
Content-length: 465

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77269

Joseph S. Myers <jsm28 at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED
           Assignee|unassigned at gcc dot gnu.org      |jsm28 at gcc dot gnu.org

--- Comment #2 from Joseph S. Myers <jsm28 at gcc dot gnu.org> ---
Testing a patch.
>From gcc-bugs-return-535545-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 15:42:55 2016
Return-Path: <gcc-bugs-return-535545-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 119360 invoked by alias); 22 Aug 2016 15:42:55 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 119328 invoked by uid 89); 22 Aug 2016 15:42:55 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 15:42:45 +0000
From: "jsm28 at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/77323] New: Bad "defaults to 'int'" warning for unsupported types
Date: Mon, 22 Aug 2016 15:42:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jsm28 at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77323-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02881.txt.bz2
Content-length: 1314

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77323

            Bug ID: 77323
           Summary: Bad "defaults to 'int'" warning for unsupported types
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: jsm28 at gcc dot gnu.org
  Target Milestone: ---

When declaring something using an unsupported type specifier, such as __int128
on 32-bit systems, or _Float128x, the error for the unsupported type is
followed by a warning about the type defaulting to int.  The warning isn't
useful in this case (where a type was specified, but was unsupported, and got
an error for being unsupported).  E.g., on x86_64-pc-linux-gnu with -m32:

__int128 a;
_Float128x b;

gets:

t.c:1:1: error: '__int128' is not supported on this target
 __int128 a;
 ^~~~~~~~
t.c:1:10: warning: type defaults to 'int' in declaration of 'a'
[-Wimplicit-int]
 __int128 a;
          ^
t.c:2:1: error: '_Float128x' is not supported on this target
 _Float128x b;
 ^~~~~~~~~~
t.c:2:12: warning: type defaults to 'int' in declaration of 'b'
[-Wimplicit-int]
 _Float128x b;
            ^

and it would be better just to give the two errors, without the following
warnings.
>From gcc-bugs-return-535546-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 15:49:50 2016
Return-Path: <gcc-bugs-return-535546-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 12804 invoked by alias); 22 Aug 2016 15:49:50 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 12789 invoked by uid 89); 22 Aug 2016 15:49:49 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Ian
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 15:49:39 +0000
From: "ian at airs dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug go/70597] [6/7 Regression] cmd/go: deduplicate gccgo afiles by package path, not *Package
Date: Mon, 22 Aug 2016 15:49:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: go
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ian at airs dot com
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: ian at airs dot com
X-Bugzilla-Target-Milestone: 6.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution target_milestone
Message-ID: <bug-70597-4-FvMhUTrdgL@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70597-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70597-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02882.txt.bz2
Content-length: 578

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70597

Ian Lance Taylor <ian at airs dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |FIXED
   Target Milestone|6.3                         |6.2

--- Comment #4 from Ian Lance Taylor <ian at airs dot com> ---
A patch to fix this was committed to the GCC 6 branch before the 6.2 release. 
It is also fixed on mainline.
>From gcc-bugs-return-535547-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 15:58:08 2016
Return-Path: <gcc-bugs-return-535547-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 48102 invoked by alias); 22 Aug 2016 15:58:07 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 48091 invoked by uid 89); 22 Aug 2016 15:58:07 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 15:57:57 +0000
From: "joseph at codesourcery dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug web/77319] [bugzilla] bugzilla behaves erratically
Date: Mon, 22 Aug 2016 15:58:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: web
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: joseph at codesourcery dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77319-4-K7uG7mYsiY@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77319-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77319-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02883.txt.bz2
Content-length: 394

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77319

--- Comment #2 from joseph at codesourcery dot com <joseph at codesourcery dot com> ---
Maybe CC overseers, ask for the mail settings to be restored to what they 
were (sending mail in a way that bypasses spamassassin and restoring the 
Bugzilla addresses to the global-allow list) now we have some spam control 
on bug creation?
>From gcc-bugs-return-535548-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 16:04:37 2016
Return-Path: <gcc-bugs-return-535548-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 59251 invoked by alias); 22 Aug 2016 16:04:37 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 59034 invoked by uid 89); 22 Aug 2016 16:04:36 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy 62, UD:github.io
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 16:04:26 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/77322] [C++11] std::function::swap should be noexcept.
Date: Mon, 22 Aug 2016 16:04:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77322-4-Q7n0rhmGZS@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77322-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77322-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02884.txt.bz2
Content-length: 269

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77322

--- Comment #1 from Jonathan Wakely <redi at gcc dot gnu.org> ---
This has been the subject of a longstanding issue, which is only now close to
being resolved:

http://cplusplus.github.io/LWG/lwg-active.html#2062
>From gcc-bugs-return-535549-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 16:07:29 2016
Return-Path: <gcc-bugs-return-535549-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 80999 invoked by alias); 22 Aug 2016 16:07:29 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 80982 invoked by uid 89); 22 Aug 2016 16:07:28 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:921
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 16:07:18 +0000
From: "mpolacek at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/77309] wrong code at -Os and above on x86_64-linux-gnu (in the 64-bit mode)
Date: Mon, 22 Aug 2016 16:07:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mpolacek at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc everconfirmed
Message-ID: <bug-77309-4-aVQ3ZVOQAr@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77309-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77309-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02885.txt.bz2
Content-length: 1028

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77309

Marek Polacek <mpolacek at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-22
                 CC|                            |mpolacek at gcc dot gnu.org
     Ever confirmed|0                           |1

--- Comment #1 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
Started with

commit aaaaacd4b7bf3e977ed8b932fdca4adc7eeb4e6c
Author: jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>
Date:   Wed Dec 4 11:25:06 2013 +0000

        PR rtl-optimization/58726
        * combine.c (force_to_mode): Fix comment typo.  Don't destructively
        modify x for ROTATE, ROTATERT and IF_THEN_ELSE.

        * gcc.c-torture/execute/pr58726.c: New test.


    git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@205664
138bc75d-0d04-0410-961f-82ee72b054a4
>From gcc-bugs-return-535550-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 16:11:15 2016
Return-Path: <gcc-bugs-return-535550-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 93465 invoked by alias); 22 Aug 2016 16:11:14 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 93454 invoked by uid 89); 22 Aug 2016 16:11:14 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 16:11:04 +0000
From: "mpolacek at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/77309] [5/6/7 Regression] wrong code at -Os and above on x86_64-linux-gnu (in the 64-bit mode)
Date: Mon, 22 Aug 2016 16:11:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mpolacek at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords target_milestone short_desc
Message-ID: <bug-77309-4-nbP8mct8J1@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77309-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77309-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02886.txt.bz2
Content-length: 637

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77309

Marek Polacek <mpolacek at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |wrong-code
   Target Milestone|---                         |5.5
            Summary|wrong code at -Os and above |[5/6/7 Regression] wrong
                   |on x86_64-linux-gnu (in the |code at -Os and above on
                   |64-bit mode)                |x86_64-linux-gnu (in the
                   |                            |64-bit mode)
>From gcc-bugs-return-535551-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 16:30:59 2016
Return-Path: <gcc-bugs-return-535551-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 4816 invoked by alias); 22 Aug 2016 16:30:59 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 4803 invoked by uid 89); 22 Aug 2016 16:30:58 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 16:30:48 +0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77312] Lambda that deletes itself accesses freed memory, but only if class is templated
Date: Mon, 22 Aug 2016 16:30:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.4.1
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77312-4-YGvDzgQXBN@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77312-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77312-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02887.txt.bz2
Content-length: 750

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77312

--- Comment #5 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
It all comes down to this statement:
delete this;

The C++ front-end expands it as:

  [t33.cc:28:39] D.3592 = [t33.cc:28:39] __closure->__this;
  [t33.cc:28:41] LambdaHolder<int>::~LambdaHolder (D.3592);
  [t33.cc:28:39] D.3592 = [t33.cc:28:39] __closure->__this;
  [t33.cc:28:41] operator delete (D.3592, 360);


Notice how it reads from __closure here but __closure is deleted during the
call to ~LambdaHolder.

So the question comes what is the semantics of:
delete XYZ;

Inside a lambda where XYZ is captured?  Do we need to read from the closure
twice, once for the deconstructor and then again for the call to delete.
>From gcc-bugs-return-535552-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 16:48:25 2016
Return-Path: <gcc-bugs-return-535552-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 69332 invoked by alias); 22 Aug 2016 16:48:25 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 68283 invoked by uid 89); 22 Aug 2016 16:48:24 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 16:48:14 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/77322] [C++11] std::function::swap should be noexcept.
Date: Mon, 22 Aug 2016 16:48:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77322-4-zpS2PYujRy@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77322-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77322-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02888.txt.bz2
Content-length: 783

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77322

--- Comment #2 from Jonathan Wakely <redi at gcc dot gnu.org> ---
Author: redi
Date: Mon Aug 22 16:47:34 2016
New Revision: 239662

URL: https://gcc.gnu.org/viewcvs?rev=239662&root=gcc&view=rev
Log:
Add noexcept to std::function swap

        PR libstdc++/77322
        * doc/xml/manual/intro.xml: Document DR 2062 change.
        * include/std/functional (function::swap): Add noexcept.
        (swap(function<Res(Args...)&, function<Res(Args...)&)): Likewise.
        * testsuite/20_util/function/77322.cc: New test.

Added:
    trunk/libstdc++-v3/testsuite/20_util/function/77322.cc
Modified:
    trunk/libstdc++-v3/ChangeLog
    trunk/libstdc++-v3/doc/xml/manual/intro.xml
    trunk/libstdc++-v3/include/std/functional
>From gcc-bugs-return-535553-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 16:48:35 2016
Return-Path: <gcc-bugs-return-535553-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 75860 invoked by alias); 22 Aug 2016 16:48:35 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 75606 invoked by uid 89); 22 Aug 2016 16:48:34 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy\x1350, vol
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 16:48:25 +0000
From: "ro at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/77324] New: [7 regression] ICE in push_reload, at reload.c:1350
Date: Mon, 22 Aug 2016 16:48:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ro at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77324-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02889.txt.bz2
Content-length: 1114

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77324

            Bug ID: 77324
           Summary: [7 regression] ICE in push_reload, at reload.c:1350
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: ro at gcc dot gnu.org
  Target Milestone: ---

Between 20160812 and 20160822, Ada bootstrap started to fail on Solaris/SPARC,
with
ICEs in stage 2:

+===========================GNAT BUG DETECTED==============================+
| 7.0.0 20160822 (experimental) [trunk revision 239658] (sparc-sun-solaris2.12)
GCC error:|
| in push_reload, at reload.c:1350                                         |
| Error detected around
/vol/gcc/src/hg/trunk/local/gcc/ada/exp_strm.adb:1468:11|
[...]
raised TYPES.UNRECOVERABLE_ERROR : comperr.adb:406
make[3]: *** [ada/exp_strm.o] Error 1

I'll start reghunting now.

  Rainer
>From gcc-bugs-return-535554-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 16:49:31 2016
Return-Path: <gcc-bugs-return-535554-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 100785 invoked by alias); 22 Aug 2016 16:49:31 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 100734 invoked by uid 89); 22 Aug 2016 16:49:29 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 16:49:19 +0000
From: "ro at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/77324] [7 regression] ICE in push_reload, at reload.c:1350
Date: Mon, 22 Aug 2016 16:49:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ro at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cf_gcctarget cf_gcchost target_milestone cf_gccbuild
Message-ID: <bug-77324-4-LnHZIBxD7X@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77324-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77324-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02890.txt.bz2
Content-length: 492

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77324

Rainer Orth <ro at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Target|                            |sparc*-*-solaris2.*
               Host|                            |sparc*-*-solaris2.*
   Target Milestone|---                         |7.0
              Build|                            |sparc*-*-solaris2.*
>From gcc-bugs-return-535555-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 17:06:53 2016
Return-Path: <gcc-bugs-return-535555-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 65648 invoked by alias); 22 Aug 2016 17:06:51 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 65598 invoked by uid 89); 22 Aug 2016 17:06:49 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 17:06:41 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/77322] [C++11] std::function::swap should be noexcept.
Date: Mon, 22 Aug 2016 17:06:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-77322-4-EMUwmtTlaC@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77322-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77322-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02891.txt.bz2
Content-length: 434

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77322

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |FIXED

--- Comment #3 from Jonathan Wakely <redi at gcc dot gnu.org> ---
Fixed on trunk.
>From gcc-bugs-return-535556-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 17:09:24 2016
Return-Path: <gcc-bugs-return-535556-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 83723 invoked by alias); 22 Aug 2016 17:09:23 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 83638 invoked by uid 89); 22 Aug 2016 17:09:23 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Inside
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 17:09:21 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77312] Lambda that deletes itself accesses freed memory, but only if class is templated
Date: Mon, 22 Aug 2016 17:09:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.4.1
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77312-4-pYHpupbY6z@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77312-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77312-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02892.txt.bz2
Content-length: 362

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77312

--- Comment #6 from Jonathan Wakely <redi at gcc dot gnu.org> ---
(In reply to Andrew Pinski from comment #5)
> Inside a lambda where XYZ is captured?  Do we need to read from the closure
> twice, once for the deconstructor and then again for the call to delete.

I don't see why that should be necessary.
>From gcc-bugs-return-535557-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 17:22:40 2016
Return-Path: <gcc-bugs-return-535557-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 108941 invoked by alias); 22 Aug 2016 17:22:39 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 108804 invoked by uid 89); 22 Aug 2016 17:22:38 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=pettersson, Pettersson
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 17:22:28 +0000
From: "mikpelinux at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/77324] [7 regression] ICE in push_reload, at reload.c:1350
Date: Mon, 22 Aug 2016 17:22:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mikpelinux at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-77324-4-TbaKYjKl1T@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77324-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77324-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02893.txt.bz2
Content-length: 515

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77324

Mikael Pettersson <mikpelinux at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mikpelinux at gmail dot com

--- Comment #1 from Mikael Pettersson <mikpelinux at gmail dot com> ---
Also happens on sparc-linux-gnu, and during rebuilds I've seen the ICE also
while it's recompiling non-Ada parts of gcc.
>From gcc-bugs-return-535558-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 17:30:27 2016
Return-Path: <gcc-bugs-return-535558-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 123108 invoked by alias); 22 Aug 2016 17:30:25 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 122801 invoked by uid 89); 22 Aug 2016 17:30:19 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyúster, Hx-languages-length:2268, friend
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 17:30:05 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/68297] Faster std::make_exception
Date: Mon, 22 Aug 2016 17:30:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 5.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-68297-4-a3hUFTNjPK@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68297-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68297-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02894.txt.bz2
Content-length: 2484

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68297

--- Comment #3 from Jonathan Wakely <redi at gcc dot gnu.org> ---
Author: redi
Date: Mon Aug 22 17:29:31 2016
New Revision: 239664

URL: https://gcc.gnu.org/viewcvs?rev=239664&root=gcc&view=rev
Log:
libstdc++/68297 avoid throw/catch in make_exception_ptr

2016-08-22  Gleb Natapov  <gleb@scylladb.com>

        PR libstdc++/68297
        * config/abi/pre/gnu-versioned-namespace.ver: Export
        __cxa_init_primary_exception and std::exception_ptr(void*).
        * config/abi/pre/gnu.ver (CXXABI_1.3.11) : Add new symbol version and
        export __cxa_init_primary_exception and std::exception_ptr(void*).
        * include/Makefile.am: Add new headers.
        * include/Makefile.in: Regenerate.
        * libsupc++/Makefile.am: Add new headers.
        * libsupc++/Makefile.in: Regenerate.
        * libsupc++/cxxabi.h (__cxa_allocate_exception): Move to ...
        * libsupc++/cxxabi_init_exception.h: New header.
        (__cxa_init_primary_exception): Declare.
        * libsupc++/eh_throw.cc (__cxa_init_primary_exception): Define.
        (__cxa_throw): Use __cxa_init_primary_exception.
        * libsupc++/exception (std::exception): Move to ...
        * libsupc++/exception.h: New header.
        * libsupc++/exception_ptr.h (__exception_ptr::exception_ptr): Add
        friend declaration.
        (__exception_ptr::__dest_thunk): New function template.
        (std::make_exception_ptr) [__cpp_rtti && !_GLIBCXX_HAVE_CDTOR_CALLABI]:
        Use __cxa_allocate_exception and __cxa_init_primary_exception to
        create exception_ptr.
        * libsupc++/typeinfo: Include bits/exception.h instead of exception.
        * testsuite/util/testsuite_abi.cc: Add CXXABI_1.3.11 version.

Added:
    trunk/libstdc++-v3/libsupc++/cxxabi_init_exception.h
    trunk/libstdc++-v3/libsupc++/exception.h
Modified:
    trunk/libstdc++-v3/ChangeLog
    trunk/libstdc++-v3/config/abi/pre/gnu-versioned-namespace.ver
    trunk/libstdc++-v3/config/abi/pre/gnu.ver
    trunk/libstdc++-v3/include/Makefile.am
    trunk/libstdc++-v3/include/Makefile.in
    trunk/libstdc++-v3/libsupc++/Makefile.am
    trunk/libstdc++-v3/libsupc++/Makefile.in
    trunk/libstdc++-v3/libsupc++/cxxabi.h
    trunk/libstdc++-v3/libsupc++/eh_throw.cc
    trunk/libstdc++-v3/libsupc++/exception
    trunk/libstdc++-v3/libsupc++/exception_ptr.h
    trunk/libstdc++-v3/libsupc++/typeinfo
    trunk/libstdc++-v3/testsuite/util/testsuite_abi.cc
>From gcc-bugs-return-535559-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 17:36:40 2016
Return-Path: <gcc-bugs-return-535559-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 1298 invoked by alias); 22 Aug 2016 17:36:40 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 1280 invoked by uid 89); 22 Aug 2016 17:36:38 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 17:36:28 +0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/68297] Faster std::make_exception
Date: Mon, 22 Aug 2016 17:36:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 5.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution target_milestone
Message-ID: <bug-68297-4-g8KSSHcUmF@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68297-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68297-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02895.txt.bz2
Content-length: 518

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68297

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED
   Target Milestone|---                         |7.0

--- Comment #4 from Jonathan Wakely <redi at gcc dot gnu.org> ---
Implemented for GCC 7, thanks to Gleb Natapov.
>From gcc-bugs-return-535560-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 17:46:33 2016
Return-Path: <gcc-bugs-return-535560-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 23608 invoked by alias); 22 Aug 2016 17:46:32 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 23595 invoked by uid 89); 22 Aug 2016 17:46:31 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=UD:trans-expr.c, transexprc, trans-expr.c, H*F:D*t-online.de
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 17:46:21 +0000
From: "gerhard.steinmetz.fortran@t-online.de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/68439] ICE in alloc_scalar_allocatable_for_subcomponent_assignment, at fortran/trans-expr.c:6711
Date: Mon, 22 Aug 2016 17:46:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 5.2.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: gerhard.steinmetz.fortran@t-online.de
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-68439-4-3xdTLkGjPl@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68439-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68439-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02896.txt.bz2
Content-length: 244

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68439

--- Comment #2 from Gerhard Steinmetz <gerhard.steinmetz.fortran@t-online.de> ---
ICE is completely gone for all tested constellations with
gcc-Version 7.0.0 20160821 (experimental) (GCC)
>From gcc-bugs-return-535561-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 17:49:15 2016
Return-Path: <gcc-bugs-return-535561-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 28035 invoked by alias); 22 Aug 2016 17:49:14 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 28020 invoked by uid 89); 22 Aug 2016 17:49:14 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:310
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 17:49:10 +0000
From: "gerhard.steinmetz.fortran@t-online.de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/68567] ICE on using wrong defined arrays (different cases/messages)
Date: Mon, 22 Aug 2016 17:49:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 5.2.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: gerhard.steinmetz.fortran@t-online.de
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-68567-4-vvPgFWE3oB@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68567-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68567-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02897.txt.bz2
Content-length: 233

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68567

--- Comment #3 from Gerhard Steinmetz <gerhard.steinmetz.fortran@t-online.de> ---
ICE is gone for all tested constellations with
gcc-Version 7.0.0 20160821 (experimental) (GCC)
>From gcc-bugs-return-535562-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 17:50:53 2016
Return-Path: <gcc-bugs-return-535562-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 31904 invoked by alias); 22 Aug 2016 17:50:53 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 31890 invoked by uid 89); 22 Aug 2016 17:50:52 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 17:50:46 +0000
From: "gerhard.steinmetz.fortran@t-online.de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/68225] ICE with -Wrealloc-lhs-all on structure constructor with allocatable scalar component(s)
Date: Mon, 22 Aug 2016 17:50:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 5.2.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: gerhard.steinmetz.fortran@t-online.de
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-68225-4-fMCDPuyXhN@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68225-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68225-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02898.txt.bz2
Content-length: 283

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68225

--- Comment #6 from Gerhard Steinmetz <gerhard.steinmetz.fortran@t-online.de> ---
ICE seems to be gone, z1 now and z2 still aborting at runtime.
Program received signal SIGSEGV: Segmentation fault - invalid memory reference.
>From gcc-bugs-return-535563-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 17:51:10 2016
Return-Path: <gcc-bugs-return-535563-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 32712 invoked by alias); 22 Aug 2016 17:51:10 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 32692 invoked by uid 89); 22 Aug 2016 17:51:10 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=antispam
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 17:51:04 +0000
From: "LpSolit at netscape dot net" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug web/77319] [bugzilla] bugzilla behaves erratically
Date: Mon, 22 Aug 2016 17:51:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: web
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: LpSolit at netscape dot net
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-77319-4-37XIgqoPEF@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77319-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77319-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02899.txt.bz2
Content-length: 996

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77319

Frédéric Buclin <LpSolit at netscape dot net> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |overseers at gcc dot gnu.org

--- Comment #3 from Frédéric Buclin <LpSolit at netscape dot net> ---
I do not plan to relax user account creation for now. Logs show that spammers
still try to create accounts again and again. Many of them are caught due to
their IP address (banned), but many random IP addresses are also used to create
such accounts (and looking at the email addresses used lets no doubt on the
purpose of the accounts).

So despite I implemented anti-spam features in Bugzilla itself, which does its
job for now, restricting user account creation still prevents a lot of attacks.

I still want to implement bug 72856 before relaxing user account creation.
>From gcc-bugs-return-535564-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 17:52:53 2016
Return-Path: <gcc-bugs-return-535564-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 34928 invoked by alias); 22 Aug 2016 17:52:53 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 34863 invoked by uid 89); 22 Aug 2016 17:52:53 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=gfc_expr*, symbol.c, resolve_types, symbolc
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 17:52:42 +0000
From: "gerhard.steinmetz.fortran@t-online.de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/69859] Non-deterministic ICEs on incomplete character declaration statement
Date: Mon, 22 Aug 2016 17:52:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: error-recovery, ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: gerhard.steinmetz.fortran@t-online.de
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: version
Message-ID: <bug-69859-4-Z5M2UfpDvw@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69859-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69859-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02900.txt.bz2
Content-length: 1714

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69859

Gerhard Steinmetz <gerhard.steinmetz.fortran@t-online.de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Version|6.0                         |7.0

--- Comment #6 from Gerhard Steinmetz <gerhard.steinmetz.fortran@t-online.de> ---
For most constellations the ICE is still inherent.


$ gfortran-7-20160821 -g z5.f90
z5.f90:3:36:

       character, allocatable :: x(:) y(:)
                                    1
Error: Syntax error in data declaration at (1)
f951: internal compiler error: Segmentation fault
0xc1b63f crash_signal
        ../../gcc/toplev.c:335
0x688b02 gfc_is_constant_expr(gfc_expr*)
        ../../gcc/fortran/expr.c:899
0x688c1b gfc_is_constant_expr(gfc_expr*)
        ../../gcc/fortran/expr.c:902
0x6f47d6 resolve_component
        ../../gcc/fortran/resolve.c:13092
0x6f4eb4 resolve_component
        ../../gcc/fortran/resolve.c:12847
0x6f4eb4 resolve_fl_derived0
        ../../gcc/fortran/resolve.c:13329
0x6f508c resolve_fl_derived0
        ../../gcc/fortran/resolve.c:13298
0x6f508c resolve_fl_derived
        ../../gcc/fortran/resolve.c:13406
0x6f0206 resolve_symbol
        ../../gcc/fortran/resolve.c:13685
0x7098ab do_traverse_symtree
        ../../gcc/fortran/symbol.c:3930
0x6f319a resolve_types
        ../../gcc/fortran/resolve.c:15482
0x6eee5c gfc_resolve(gfc_namespace*)
        ../../gcc/fortran/resolve.c:15593
0x6da18a resolve_all_program_units
        ../../gcc/fortran/parse.c:5855
0x6da18a gfc_parse_file()
        ../../gcc/fortran/parse.c:6107
0x71c602 gfc_be_parse_file
        ../../gcc/fortran/f95-lang.c:198
>From gcc-bugs-return-535565-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 17:56:20 2016
Return-Path: <gcc-bugs-return-535565-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 39332 invoked by alias); 22 Aug 2016 17:56:19 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 39319 invoked by uid 89); 22 Aug 2016 17:56:18 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 17:56:08 +0000
From: "gerhard.steinmetz.fortran@t-online.de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/69860] ICE on missing end apostrophe with character(kind=4)
Date: Mon, 22 Aug 2016 17:56:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: gerhard.steinmetz.fortran@t-online.de
X-Bugzilla-Status: REOPENED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status version resolution
Message-ID: <bug-69860-4-I5CC9ygopF@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69860-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69860-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02901.txt.bz2
Content-length: 1594

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69860

Gerhard Steinmetz <gerhard.steinmetz.fortran@t-online.de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
            Version|6.0                         |7.0
         Resolution|FIXED                       |---

--- Comment #5 from Gerhard Steinmetz <gerhard.steinmetz.fortran@t-online.de> ---
The ICE is gone for several constellations, but not for all.


$ gfortran-7-20160821 -mavx z1.f90
z1.f90:2:46:

    character(len=2, kind=4) :: a = 'aa', b = 'bb
                                              1
Error: Unterminated character constant beginning at (1)
f951: internal compiler error: Segmentation fault
0xc1b63f crash_signal
        ../../gcc/toplev.c:335
0x688b02 gfc_is_constant_expr(gfc_expr*)
        ../../gcc/fortran/expr.c:899
0x688c1b gfc_is_constant_expr(gfc_expr*)
        ../../gcc/fortran/expr.c:902
0x6f13ba resolve_fl_procedure
        ../../gcc/fortran/resolve.c:11618
0x6f13ba resolve_symbol
        ../../gcc/fortran/resolve.c:14257
0x7098ab do_traverse_symtree
        ../../gcc/fortran/symbol.c:3930
0x6f319a resolve_types
        ../../gcc/fortran/resolve.c:15482
0x6eee5c gfc_resolve(gfc_namespace*)
        ../../gcc/fortran/resolve.c:15593
0x6da18a resolve_all_program_units
        ../../gcc/fortran/parse.c:5855
0x6da18a gfc_parse_file()
        ../../gcc/fortran/parse.c:6107
0x71c602 gfc_be_parse_file
        ../../gcc/fortran/f95-lang.c:198
>From gcc-bugs-return-535566-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 17:58:43 2016
Return-Path: <gcc-bugs-return-535566-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 45849 invoked by alias); 22 Aug 2016 17:58:42 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 45822 invoked by uid 89); 22 Aug 2016 17:58:41 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=Hx-languages-length:1355
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 17:58:39 +0000
From: "gerhard.steinmetz.fortran@t-online.de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/65173] ICE while compiling wrong code
Date: Mon, 22 Aug 2016 17:58:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 4.9.2
X-Bugzilla-Keywords:
X-Bugzilla-Severity: minor
X-Bugzilla-Who: gerhard.steinmetz.fortran@t-online.de
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-65173-4-9KUFhFPkn6@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-65173-4@http.gcc.gnu.org/bugzilla/>
References: <bug-65173-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02902.txt.bz2
Content-length: 1455

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65173

--- Comment #5 from Gerhard Steinmetz <gerhard.steinmetz.fortran@t-online.de> ---
On my environment the ICE is gone only for z1.f90 and z8.f90.


$ gfortran-7-20160821 z7.f90
z7.f90:5:20:

       character x(:)
                    1
Error: Array component of structure at (1) must have an explicit shape
f951: internal compiler error: Segmentation fault
0xc1b63f crash_signal
        ../../gcc/toplev.c:335
0x688b02 gfc_is_constant_expr(gfc_expr*)
        ../../gcc/fortran/expr.c:899
0x688c1b gfc_is_constant_expr(gfc_expr*)
        ../../gcc/fortran/expr.c:902
0x6f47d6 resolve_component
        ../../gcc/fortran/resolve.c:13092
0x6f4eb4 resolve_component
        ../../gcc/fortran/resolve.c:12847
0x6f4eb4 resolve_fl_derived0
        ../../gcc/fortran/resolve.c:13329
0x6f508c resolve_fl_derived0
        ../../gcc/fortran/resolve.c:13298
0x6f508c resolve_fl_derived
        ../../gcc/fortran/resolve.c:13406
0x6f0206 resolve_symbol
        ../../gcc/fortran/resolve.c:13685
0x7098ab do_traverse_symtree
        ../../gcc/fortran/symbol.c:3930
0x6f319a resolve_types
        ../../gcc/fortran/resolve.c:15482
0x6eee5c gfc_resolve(gfc_namespace*)
        ../../gcc/fortran/resolve.c:15593
0x6da18a resolve_all_program_units
        ../../gcc/fortran/parse.c:5855
0x6da18a gfc_parse_file()
        ../../gcc/fortran/parse.c:6107
0x71c602 gfc_be_parse_file
        ../../gcc/fortran/f95-lang.c:198
>From gcc-bugs-return-535567-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 18:03:50 2016
Return-Path: <gcc-bugs-return-535567-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 52762 invoked by alias); 22 Aug 2016 18:03:50 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 52751 invoked by uid 89); 22 Aug 2016 18:03:49 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy\x1549
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 18:03:39 +0000
From: "gerhard.steinmetz.fortran@t-online.de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/77325] New: ICE in gimplify_var_or_parm_decl, at gimplify.c:1933
Date: Mon, 22 Aug 2016 18:03:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: gerhard.steinmetz.fortran@t-online.de
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77325-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02903.txt.bz2
Content-length: 2570

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77325

            Bug ID: 77325
           Summary: ICE in gimplify_var_or_parm_decl, at gimplify.c:1933
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: fortran
          Assignee: unassigned at gcc dot gnu.org
          Reporter: gerhard.steinmetz.fortran@t-online.de
  Target Milestone: ---

For versions down to at least 4.8 :


$ cat z1.f90
program p
   character(1), parameter :: c(3) = ['a', 'b', 'c']
   character(:), allocatable :: z(:)
   z = c([1])
end


$ gfortran-7-20160821 z1.f90
z1.f90:4:0:

    z = c([1])

internal compiler error: in gimplify_var_or_parm_decl, at gimplify.c:1933
0x9acaef gimplify_var_or_parm_decl
        ../../gcc/gimplify.c:1933
0x9b0dfc gimplify_expr(tree_node**, gimple**, gimple**, bool (*)(tree_node*),
int)
        ../../gcc/gimplify.c:10945
0x9af9c2 gimplify_expr(tree_node**, gimple**, gimple**, bool (*)(tree_node*),
int)
        ../../gcc/gimplify.c:11232
0x9b9072 gimplify_compound_lval
        ../../gcc/gimplify.c:2210
0x9afbfa gimplify_expr(tree_node**, gimple**, gimple**, bool (*)(tree_node*),
int)
        ../../gcc/gimplify.c:10464
0x9c2bef gimplify_modify_expr
        ../../gcc/gimplify.c:4808
0x9b1a3a gimplify_expr(tree_node**, gimple**, gimple**, bool (*)(tree_node*),
int)
        ../../gcc/gimplify.c:10512
0x9b4d96 gimplify_stmt(tree_node**, gimple**)
        ../../gcc/gimplify.c:5804
0x9afd4b gimplify_statement_list
        ../../gcc/gimplify.c:1549
0x9afd4b gimplify_expr(tree_node**, gimple**, gimple**, bool (*)(tree_node*),
int)
        ../../gcc/gimplify.c:10929
0x9b4d96 gimplify_stmt(tree_node**, gimple**)
        ../../gcc/gimplify.c:5804
0x9b5fe5 gimplify_bind_expr
        ../../gcc/gimplify.c:1154
0x9b1ef5 gimplify_expr(tree_node**, gimple**, gimple**, bool (*)(tree_node*),
int)
        ../../gcc/gimplify.c:10711
0x9b4d96 gimplify_stmt(tree_node**, gimple**)
        ../../gcc/gimplify.c:5804
0x9afd4b gimplify_statement_list
        ../../gcc/gimplify.c:1549
0x9afd4b gimplify_expr(tree_node**, gimple**, gimple**, bool (*)(tree_node*),
int)
        ../../gcc/gimplify.c:10929
0x9b4d96 gimplify_stmt(tree_node**, gimple**)
        ../../gcc/gimplify.c:5804
0x9b5fe5 gimplify_bind_expr
        ../../gcc/gimplify.c:1154
0x9b1ef5 gimplify_expr(tree_node**, gimple**, gimple**, bool (*)(tree_node*),
int)
        ../../gcc/gimplify.c:10711
0x9b4d96 gimplify_stmt(tree_node**, gimple**)
        ../../gcc/gimplify.c:5804
>From gcc-bugs-return-535569-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 18:04:55 2016
Return-Path: <gcc-bugs-return-535569-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 55298 invoked by alias); 22 Aug 2016 18:04:55 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 54808 invoked by uid 89); 22 Aug 2016 18:04:54 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=uninitialized
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 18:04:49 +0000
From: "gerhard.steinmetz.fortran@t-online.de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/77325] ICE in gimplify_var_or_parm_decl, at gimplify.c:1933
Date: Mon, 22 Aug 2016 18:04:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: gerhard.steinmetz.fortran@t-online.de
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77325-4-A1cWNVpx7X@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77325-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77325-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02905.txt.bz2
Content-length: 542

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77325

--- Comment #1 from Gerhard Steinmetz <gerhard.steinmetz.fortran@t-online.de> ---

Slightly simplified, indicating an uninitialized variable :


$ cat z3.f90
program p
   character(1), parameter :: c(3) = ['a', 'b', 'c']
   character(:), allocatable :: z(:)
   z = c(1)
   print *, z
end


$ gfortran-7-20160821 -g -O0 -Wall -fcheck=all -c z3.f90
z3.f90:3:0:

    character(:), allocatable :: z(:)

Warning: '.z' may be used uninitialized in this function
[-Wmaybe-uninitialized]
>From gcc-bugs-return-535568-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 18:04:45 2016
Return-Path: <gcc-bugs-return-535568-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 54125 invoked by alias); 22 Aug 2016 18:04:45 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 54076 invoked by uid 89); 22 Aug 2016 18:04:42 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-0.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_50 autolearn=ham version=3.3.2 spammy=sk:BUILT_I, sk:built_i, isinf, guarantees
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 18:04:32 +0000
From: "jsm28 at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/77269] __builtin_isinf_sign does not work for __float128
Date: Mon, 22 Aug 2016 18:04:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jsm28 at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jsm28 at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77269-4-WygDGLo7GL@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77269-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77269-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02904.txt.bz2
Content-length: 2775

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77269

--- Comment #3 from Joseph S. Myers <jsm28 at gcc dot gnu.org> ---
Author: jsm28
Date: Mon Aug 22 18:03:59 2016
New Revision: 239665

URL: https://gcc.gnu.org/viewcvs?rev=239665&root=gcc&view=rev
Log:
Support __builtin_isinf_sign for new floating-point types (PR
middle-end/77269).

The __builtin_isinf_sign folding uses a type-specific signbit built-in
function, meaning it only works for the types float, double and long
double, not for types such as _FloatN, _FloatNx, __float128.  Since
the signbit built-in function is now type-generic, that can be used
unconditionally, much as the code uses the type-generic isinf built-in
function unconditionally, and this patch makes it do so, thereby
enabling __builtin_isinf_sign (which glibc uses to expand the isinf
macro since that macro in glibc traditionally provided the stronger
guarantees about the return value given by __builtin_isinf_sign) to
work for all floating-point types.

The test gcc.dg/torture/builtin-isinf_sign-1.c needs updating because
it tests that comparisons of calls to __builtin_isinf_sign to
conditional expressions involving __builtin_isinf and
__builtin_signbit* get optimized away, and with a change of what
particular built-in function for signbit is used, GCC doesn't notice
the expressions with type-generic and non-type-generic built-in
functions are equivalent at -O0 or -O1 (it does optimize away the
original test at -O2).

Bootstrapped with no regressions on x86_64-pc-linux-gnu.

        PR middle-end/77269
gcc:
        * builtins.c (fold_builtin_classify): Use builtin_decl_explicit
        (BUILT_IN_SIGNBIT) to expand __builtin_isinf_sign.

gcc/testsuite:
        * gcc.dg/torture/builtin-isinf_sign-1.c: Use __builtin_signbit not
        __builtin_signbitf and __builtin_signbitl in expected generic
        expansion.
        * gcc.dg/torture/float128-tg-2.c, gcc.dg/torture/float128x-tg-2.c,
        gcc.dg/torture/float16-tg-2.c, gcc.dg/torture/float32-tg-2.c,
        gcc.dg/torture/float32x-tg-2.c, gcc.dg/torture/float64-tg-2.c,
        gcc.dg/torture/float64x-tg-2.c, gcc.dg/torture/floatn-tg-2.h: New
        tests.

Added:
    trunk/gcc/testsuite/gcc.dg/torture/float128-tg-2.c
    trunk/gcc/testsuite/gcc.dg/torture/float128x-tg-2.c
    trunk/gcc/testsuite/gcc.dg/torture/float16-tg-2.c
    trunk/gcc/testsuite/gcc.dg/torture/float32-tg-2.c
    trunk/gcc/testsuite/gcc.dg/torture/float32x-tg-2.c
    trunk/gcc/testsuite/gcc.dg/torture/float64-tg-2.c
    trunk/gcc/testsuite/gcc.dg/torture/float64x-tg-2.c
    trunk/gcc/testsuite/gcc.dg/torture/floatn-tg-2.h
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/builtins.c
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/testsuite/gcc.dg/torture/builtin-isinf_sign-1.c
>From gcc-bugs-return-535570-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 18:06:01 2016
Return-Path: <gcc-bugs-return-535570-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 73965 invoked by alias); 22 Aug 2016 18:06:00 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 73287 invoked by uid 89); 22 Aug 2016 18:06:00 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 18:05:50 +0000
From: "jsm28 at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/77269] __builtin_isinf_sign does not work for __float128
Date: Mon, 22 Aug 2016 18:06:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jsm28 at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jsm28 at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution target_milestone
Message-ID: <bug-77269-4-Zl5gJxNnY5@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77269-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77269-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02906.txt.bz2
Content-length: 490

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77269

Joseph S. Myers <jsm28 at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED
   Target Milestone|---                         |7.0

--- Comment #4 from Joseph S. Myers <jsm28 at gcc dot gnu.org> ---
Fixed for GCC 7.
>From gcc-bugs-return-535571-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 18:13:21 2016
Return-Path: <gcc-bugs-return-535571-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 32185 invoked by alias); 22 Aug 2016 18:13:20 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 31232 invoked by uid 89); 22 Aug 2016 18:13:20 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 18:13:10 +0000
From: "kargl at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/77260] bogus warning with ENTRY in a function
Date: Mon, 22 Aug 2016 18:13:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: minor
X-Bugzilla-Who: kargl at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77260-4-4r5bYkq8if@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77260-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77260-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02907.txt.bz2
Content-length: 833

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77260

--- Comment #2 from kargl at gcc dot gnu.org ---
Author: kargl
Date: Mon Aug 22 18:12:33 2016
New Revision: 239666

URL: https://gcc.gnu.org/viewcvs?rev=239666&root=gcc&view=rev
Log:
2016-08-22  Steven G. Kargl  <kargl@gcc.gnu.org>

        PR fortran/77260
        * gcc/fortran/trans-decl.c (generate_local_decl): Suppress warning
        for unused variable if symbol is entry point.

2016-08-22  Steven G. Kargl  <kargl@gcc.gnu.org>

        PR fortran/77260
        * gfortran.dg/pr77260_1.f90: New test.
        * gfortran.dg/pr77260_2.f90: Ditto.

Added:
    trunk/gcc/testsuite/gfortran.dg/pr77260_1.f90
    trunk/gcc/testsuite/gfortran.dg/pr77260_2.f90
Modified:
    trunk/gcc/fortran/ChangeLog
    trunk/gcc/fortran/trans-decl.c
    trunk/gcc/testsuite/ChangeLog
>From gcc-bugs-return-535572-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 18:18:58 2016
Return-Path: <gcc-bugs-return-535572-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 41398 invoked by alias); 22 Aug 2016 18:18:58 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 41386 invoked by uid 89); 22 Aug 2016 18:18:57 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=UD:interface.c, interfacec, interface.c, Hx-languages-length:753
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 18:18:47 +0000
From: "kargl at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/61318] Improve error diagnostic by pointing to the expression and not to declared-at of a USE-associated variable
Date: Mon, 22 Aug 2016 18:18:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: kargl at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-61318-4-VzXNeVX9kE@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-61318-4@http.gcc.gnu.org/bugzilla/>
References: <bug-61318-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02908.txt.bz2
Content-length: 686

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61318

--- Comment #3 from kargl at gcc dot gnu.org ---
Author: kargl
Date: Mon Aug 22 18:18:14 2016
New Revision: 239667

URL: https://gcc.gnu.org/viewcvs?rev=239667&root=gcc&view=rev
Log:
2016-08-22  Steven G. Kargl  <kargl@gcc.gnu.org>

        PR fortran/61318
        * interface.c (compare_parameter): Use better locus for error message.

2016-08-22  Steven G. Kargl  <kargl@gcc.gnu.org>

        PR fortran/61318
        * gfortran.dg/pr61318.f90: New test.

Added:
    trunk/gcc/testsuite/gfortran.dg/pr61318.f90
Modified:
    trunk/gcc/fortran/ChangeLog
    trunk/gcc/fortran/interface.c
    trunk/gcc/testsuite/ChangeLog
>From gcc-bugs-return-535573-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 18:24:29 2016
Return-Path: <gcc-bugs-return-535573-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 46202 invoked by alias); 22 Aug 2016 18:24:29 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 46175 invoked by uid 89); 22 Aug 2016 18:24:28 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammy=bud, Davis, davis, Hx-languages-length:1206
X-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 18:24:18 +0000
From: "kargl at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/60774] f951: internal compiler error: Segmentation fault: 11
Date: Mon, 22 Aug 2016 18:24:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 4.6.2
X-Bugzilla-Keywords: ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: kargl at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-60774-4-9SEQTysRqS@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-60774-4@http.gcc.gnu.org/bugzilla/>
References: <bug-60774-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02909.txt.bz2
Content-length: 1259

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60774

--- Comment #6 from kargl at gcc dot gnu.org ---
Author: kargl
Date: Mon Aug 22 18:23:43 2016
New Revision: 239668

URL: https://gcc.gnu.org/viewcvs?rev=239668&root=gcc&view=rev
Log:
2016-08-22  Steven G. Kargl  <kargl@gcc.gnu.org>
            Bud Davis  <jmdavis@link.com>

        PR fortran/60774
        * parse.c (next_free,next_fixed): Issue error for statement label
        without a statement.

2016-08-22  Steven G. Kargl  <kargl@gcc.gnu.org>

        PR fortran/60774
        * gfortran.dg/empty_label.f: Adjust test for new error message.
        * gfortran.dg/empty_label.f90: Ditto.
        * gfortran.dg/empty_label_typedecl.f90: Ditto.
        * gfortran.dg/label_3.f90: Deleted (redundant with empty_label.f90).
        * gfortran.dg/warnings_are_errors_1.f90: Remove invalid statement
label.

Removed:
    trunk/gcc/testsuite/gfortran.dg/label_3.f90
Modified:
    trunk/gcc/fortran/ChangeLog
    trunk/gcc/fortran/parse.c
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/testsuite/gfortran.dg/empty_label.f
    trunk/gcc/testsuite/gfortran.dg/empty_label.f90
    trunk/gcc/testsuite/gfortran.dg/empty_label_typedecl.f90
    trunk/gcc/testsuite/gfortran.dg/warnings_are_errors_1.f90
>From gcc-bugs-return-535574-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 18:25:16 2016
Return-Path: <gcc-bugs-return-535574-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 61907 invoked by alias); 22 Aug 2016 18:25:15 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 61890 invoked by uid 89); 22 Aug 2016 18:25:15 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 18:25:05 +0000
From: "dominiq at lps dot ens.fr" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/77325] ICE in gimplify_var_or_parm_decl, at gimplify.c:1933
Date: Mon, 22 Aug 2016 18:25:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dominiq at lps dot ens.fr
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-77325-4-ZjTxbxGlwZ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77325-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77325-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02910.txt.bz2
Content-length: 521

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77325

Dominique d'Humieres <dominiq at lps dot ens.fr> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-22
     Ever confirmed|0                           |1

--- Comment #2 from Dominique d'Humieres <dominiq at lps dot ens.fr> ---
Confirmed from 4.8 up to trunk (7.0).
>From gcc-bugs-return-535575-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 18:26:32 2016
Return-Path: <gcc-bugs-return-535575-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 70373 invoked by alias); 22 Aug 2016 18:26:31 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 70364 invoked by uid 89); 22 Aug 2016 18:26:31 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.3.2 spammyX-HELO: gcc.gnu.org
Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Aug 2016 18:26:21 +0000
From: "kargl at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/77260] bogus warning with ENTRY in a function
Date: Mon, 22 Aug 2016 18:26:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: minor
X-Bugzilla-Who: kargl at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cc resolution target_milestone
Message-ID: <bug-77260-4-BP5DzxrVA5@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77260-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77260-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02911.txt.bz2
Content-length: 527

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77260

kargl at gcc dot gnu.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |kargl at gcc dot gnu.org
         Resolution|---                         |FIXED
   Target Milestone|---                         |7.0

--- Comment #3 from kargl at gcc dot gnu.org ---
Fixed on trunk.
>From gcc-bugs-return-535576-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 18:27:36 2016
Return-Path: <gcc-bugs-return-535576-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 74977 invoked by alias); 22 Aug 2016 18:27:35 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 71828 invoked by uid 48); 22 Aug 2016 18:27:23 -0000
From: "kargl at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/61318] Improve error diagnostic by pointing to the expression and not to declared-at of a USE-associated variable
Date: Mon, 22 Aug 2016 18:27:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: kargl at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cc resolution target_milestone
Message-ID: <bug-61318-4-UBGKSovuQr@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-61318-4@http.gcc.gnu.org/bugzilla/>
References: <bug-61318-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02912.txt.bz2
Content-length: 527

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61318

kargl at gcc dot gnu.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |kargl at gcc dot gnu.org
         Resolution|---                         |FIXED
   Target Milestone|---                         |7.0

--- Comment #4 from kargl at gcc dot gnu.org ---
Fixed on trunk.
>From gcc-bugs-return-535577-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 18:28:32 2016
Return-Path: <gcc-bugs-return-535577-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 77272 invoked by alias); 22 Aug 2016 18:28:32 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 77119 invoked by uid 48); 22 Aug 2016 18:28:20 -0000
From: "kargl at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/60774] f951: internal compiler error: Segmentation fault: 11
Date: Mon, 22 Aug 2016 18:28:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 4.6.2
X-Bugzilla-Keywords: ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: kargl at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cc resolution target_milestone
Message-ID: <bug-60774-4-zx0rYNJwb7@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-60774-4@http.gcc.gnu.org/bugzilla/>
References: <bug-60774-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02913.txt.bz2
Content-length: 527

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60774

kargl at gcc dot gnu.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |kargl at gcc dot gnu.org
         Resolution|---                         |FIXED
   Target Milestone|---                         |7.0

--- Comment #7 from kargl at gcc dot gnu.org ---
Fixed on trunk.
>From gcc-bugs-return-535578-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 18:32:34 2016
Return-Path: <gcc-bugs-return-535578-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 80552 invoked by alias); 22 Aug 2016 18:32:34 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 80420 invoked by uid 48); 22 Aug 2016 18:32:21 -0000
From: "fche at redhat dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug web/77319] [bugzilla] bugzilla behaves erratically
Date: Mon, 22 Aug 2016 18:32:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: web
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: fche at redhat dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-77319-4-ZXeolMVUnZ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77319-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77319-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02914.txt.bz2
Content-length: 467

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77319

Frank Ch. Eigler <fche at redhat dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |fche at redhat dot com

--- Comment #4 from Frank Ch. Eigler <fche at redhat dot com> ---
Reset the email delivery mode to 'sendmail' from the recently experimented-with
'smtp'.
>From gcc-bugs-return-535579-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 18:39:31 2016
Return-Path: <gcc-bugs-return-535579-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 111924 invoked by alias); 22 Aug 2016 18:39:30 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 111799 invoked by uid 48); 22 Aug 2016 18:39:17 -0000
From: "kargl at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/69860] ICE on missing end apostrophe with character(kind=4)
Date: Mon, 22 Aug 2016 18:39:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: kargl at gcc dot gnu.org
X-Bugzilla-Status: REOPENED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-69860-4-E9LrWmVaNa@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69860-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69860-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02915.txt.bz2
Content-length: 927

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69860

--- Comment #6 from kargl at gcc dot gnu.org ---
(In reply to Gerhard Steinmetz from comment #5)
> The ICE is gone for several constellations, but not for all.
> 
> 
> $ gfortran-7-20160821 -mavx z1.f90
> z1.f90:2:46:
> 
>     character(len=2, kind=4) :: a = 'aa', b = 'bb
>                                               1
> Error: Unterminated character constant beginning at (1)
> f951: internal compiler error: Segmentation fault
> 0xc1b63f crash_signal
>         ../../gcc/toplev.c:335
> 0x688b02 gfc_is_constant_expr(gfc_expr*)
>         ../../gcc/fortran/expr.c:899

Works for me. 

% gfc7 -o z a.f90
a.f90:2:46:

    character(len=2, kind=1) :: a = 'aa', b = 'bb
                                              1
Error: Unterminated character constant beginning at (1)

% gfc7 -v |& grep version
gcc version 7.0.0 20160822 (experimental) (GCC)
>From gcc-bugs-return-535580-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 18:40:32 2016
Return-Path: <gcc-bugs-return-535580-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 116494 invoked by alias); 22 Aug 2016 18:40:32 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 116425 invoked by uid 48); 22 Aug 2016 18:40:27 -0000
From: "bernds at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77321] [7 Regression] crash in warn_for_memset
Date: Mon, 22 Aug 2016 18:40:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: diagnostic, ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: bernds at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77321-4-6ZoGhBsHD5@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77321-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77321-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02916.txt.bz2
Content-length: 315

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77321

--- Comment #3 from Bernd Schmidt <bernds at gcc dot gnu.org> ---
Looks OK to commit if you want to. I have no idea what the testcase is supposed
to mean or why the C++ frontend makes an identifier node with a NULL type, but
I assume there's a good reason.
>From gcc-bugs-return-535581-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 18:41:22 2016
Return-Path: <gcc-bugs-return-535581-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 119043 invoked by alias); 22 Aug 2016 18:41:21 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 118898 invoked by uid 48); 22 Aug 2016 18:41:09 -0000
From: "dominiq at lps dot ens.fr" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/69860] ICE on missing end apostrophe with character(kind=4)
Date: Mon, 22 Aug 2016 18:41:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dominiq at lps dot ens.fr
X-Bugzilla-Status: REOPENED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-69860-4-nhPzTGPBAh@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69860-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69860-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02917.txt.bz2
Content-length: 163

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69860

--- Comment #7 from Dominique d'Humieres <dominiq at lps dot ens.fr> ---
> Works for me. 

You need -mavx.
>From gcc-bugs-return-535582-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 18:50:55 2016
Return-Path: <gcc-bugs-return-535582-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 51909 invoked by alias); 22 Aug 2016 18:50:54 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 51766 invoked by uid 48); 22 Aug 2016 18:50:42 -0000
From: "matthijs at stdin dot nl" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77326] New: [avr] Invalid optimization using varargs and a weak function
Date: Mon, 22 Aug 2016 18:50:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 5.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: matthijs at stdin dot nl
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-77326-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02918.txt.bz2
Content-length: 8501

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77326

            Bug ID: 77326
           Summary: [avr] Invalid optimization using varargs and a weak
                    function
           Product: gcc
           Version: 5.1.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: target
          Assignee: unassigned at gcc dot gnu.org
          Reporter: matthijs at stdin dot nl
  Target Milestone: ---

Created attachment 39483
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39483&action=edit
Preprocessed source generated by avr-gcc foo.c -Dissue -save-temps

This bug was originally reported to the Arduino bug tracker[1], but seems to be
a avr-specific gcc bug.

A minimal program showing the problem:

        #include <stddef.h>
        #include <stdarg.h>

        void test(void) __attribute__((weak));

        void va_pseudo(int flag,...){
                va_list ap;
                va_start (ap, flag);
                va_end (ap);
        }

        int main(void) {
                #if defined(issue)
                        va_pseudo(1, 2, 3, 4);
                #else
                        va_pseudo(1, 2, 3);
                #endif

                if(test!=NULL) {
                        test();
                }
                return 0;
        }

When compiled with -O but without -Dissue, this produces the following
assembler:

        $ avr-gcc foo.c -O; avr-objdump -d a.out

        a.out:     file format elf32-avr


        Disassembly of section .text:

        00000000 <va_pseudo>:
           0:   cf 93           push    r28
           2:   df 93           push    r29
           4:   cd b7           in      r28, 0x3d       ; 61
           6:   de b7           in      r29, 0x3e       ; 62
           8:   df 91           pop     r29
           a:   cf 91           pop     r28
           c:   08 95           ret

        0000000e <main>:
           e:   1f 92           push    r1
          10:   83 e0           ldi     r24, 0x03       ; 3
          12:   8f 93           push    r24
          14:   1f 92           push    r1
          16:   82 e0           ldi     r24, 0x02       ; 2
          18:   8f 93           push    r24
          1a:   1f 92           push    r1
          1c:   81 e0           ldi     r24, 0x01       ; 1
          1e:   8f 93           push    r24
          20:   ef df           rcall   .-34            ; 0x0 <va_pseudo>
          22:   0f 90           pop     r0
          24:   0f 90           pop     r0
          26:   0f 90           pop     r0
          28:   0f 90           pop     r0
          2a:   0f 90           pop     r0
          2c:   0f 90           pop     r0
          2e:   80 e0           ldi     r24, 0x00       ; 0
          30:   90 e0           ldi     r25, 0x00       ; 0
          32:   89 2b           or      r24, r25
          34:   09 f0           breq    .+2             ; 0x38 <main+0x2a>
          36:   e4 df           rcall   .-56            ; 0x0 <va_pseudo>
          38:   80 e0           ldi     r24, 0x00       ; 0
          3a:   90 e0           ldi     r25, 0x00       ; 0
          3c:   08 95           ret

Note the lines from 0x2e to 0x34, which implement the `if(test!=NULL)`, which
should of course always fail and skip the next `rcall`. Now, when compiling
this with -Dissue, the `or r24, r25` line gets dropped, making the generated
code invalid:

        $ avr-gcc foo.c -O -Dissue; avr-objdump -d a.out | grep -B 2 breq
          38:   80 e0           ldi     r24, 0x00       ; 0
          3a:   90 e0           ldi     r25, 0x00       ; 0
          3c:   09 f0           breq    .+2             ; 0x40 <__SREG__+0x1>

The diff between without and with -Dissue looks like this (jump addresses have
been stripped to minimize the diff):

        @@ -15,6 +15,9 @@ <va_pseudo>:

         <main>:
                 1f 92           push    r1
        +        84 e0           ldi     r24, 0x04       ; 4
        +        8f 93           push    r24
        +        1f 92           push    r1
                 83 e0           ldi     r24, 0x03       ; 3
                 8f 93           push    r24
                 1f 92           push    r1
        @@ -24,16 +27,17 @@ <main>:
                 81 e0           ldi     r24, 0x01       ; 1
                 8f 93           push    r24
                 xx xx           rcall                   ; <va_pseudo>
        -        0f 90           pop     r0
        -        0f 90           pop     r0
        -        0f 90           pop     r0
        -        0f 90           pop     r0
        -        0f 90           pop     r0
        -        0f 90           pop     r0
        +        8d b7           in      r24, 0x3d       ; 61
        +        9e b7           in      r25, 0x3e       ; 62
        +        08 96           adiw    r24, 0x08       ; 8
        +        0f b6           in      r0, 0x3f        ; 63
        +        f8 94           cli
        +        9e bf           out     0x3e, r25       ; 62
        +        0f be           out     0x3f, r0        ; 63
        +        8d bf           out     0x3d, r24       ; 61
                 80 e0           ldi     r24, 0x00       ; 0
                 90 e0           ldi     r25, 0x00       ; 0
        -        89 2b           or      r24, r25
                 xx xx           breq                    ; <main+0x....>
                 xx xx           rcall                   ; <va_pseudo>
                 80 e0           ldi     r24, 0x00       ; 0
                 90 e0           ldi     r25, 0x00       ; 0

As you can see, the extra vararg changes the stack cleanup from a number
of pops to direct manipulation of the stack pointer, which involves the
same registers (r24 and r25) as the `test` check.

When running without -O, this bug does not occur. Then, the check looks
like this:

        $ avr-gcc foo.c -Dissue; avr-objdump -d a.out | grep -B 3 breq
          50:   80 e0           ldi     r24, 0x00       ; 0
          52:   90 e0           ldi     r25, 0x00       ; 0
          54:   00 97           sbiw    r24, 0x00       ; 0
          56:   09 f0           breq    .+2             ; 0x5a <__SREG__+0x1b>


Here, the check uses the (slightly slower) sbiw instruction, where the
-O version uses or. I suspect that the optimization that makes this
change is responsible for, or at least involved in the bug. I couldn't
pinpoint the exact optimization responsible, running without -O, but
with all the options that -O is documented to turn on did not produce
the bug.

The above was tested using:

        Using built-in specs.
        COLLECT_GCC=avr-gcc
        COLLECT_LTO_WRAPPER=/usr/lib/gcc/avr/4.8.1/lto-wrapper
        Target: avr
        Configured with: ../src/configure -v --enable-languages=c,c++
--prefix=/usr/lib --infodir=/usr/share/info --mandir=/usr/share/man
--bindir=/usr/bin --libexecdir=/usr/lib --libdir=/usr/lib --enable-shared
--with-system-zlib --enable-long-long --enable-nls --without-included-gettext
--disable-libssp --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=avr
        Thread model: single
        gcc version 4.8.1 (GCC)

But the bug also occurs using:

        Using built-in specs.
        Reading specs from
       
/home/matthijs/pkg-x86_64-unknown-linux-gnu/bin/../lib/gcc/avr/5.1.0/device-specs/specs-avr2
        COLLECT_GCC=/home/matthijs/pkg-x86_64-unknown-linux-gnu/bin/avr-gcc
       
COLLECT_LTO_WRAPPER=/home/matthijs/pkg-x86_64-unknown-linux-gnu/bin/../libexec/gcc/avr/5.1.0/lto-wrapper
        Target: avr
        Configured with: /home/admin/avr-gcc-5.1.0/gcc-5.1.0/configure
        --disable-install-libiberty --disable-libssp --disable-libstdcxx-pch
        --disable-libunwind-exceptions --disable-nls --enable-fixed-point
        --enable-long-long --disable-werror --disable-__cxa_atexit
        --enable-checking=release --enable-clocale=gnu
        --enable-cloog-backend=isl --enable-gnu-unique-object
--with-avrlibc=yes
        --with-dwarf2 --enable-languages=c,c++ --disable-libada --disable-doc
        --enable-lto --enable-gold --disable-plugin
        --prefix=/home/admin/avr-gcc-5.1.0/pkg-x86_64-unknown-linux-gnu/
        --disable-shared --with-gnu-ld --host=x86_64-unknown-linux-gnu
        --build=x86_64-unknown-linux-gnu --target=avr
        Thread model: single
        gcc version 5.1.0 (GCC)
>From gcc-bugs-return-535583-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 18:55:40 2016
Return-Path: <gcc-bugs-return-535583-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 58466 invoked by alias); 22 Aug 2016 18:55:40 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 58366 invoked by uid 48); 22 Aug 2016 18:55:27 -0000
From: "matthijs at stdin dot nl" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77326] [avr] Invalid optimization using varargs and a weak function
Date: Mon, 22 Aug 2016 18:55:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 5.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: matthijs at stdin dot nl
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77326-4-J4LXw3KLn1@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77326-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77326-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02919.txt.bz2
Content-length: 285

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77326

--- Comment #1 from Matthijs Kooijman <matthijs at stdin dot nl> ---
The original reporter just added a comment that this does not occur anymore in
gcc 6.1.0, though I haven't got anything newer than 5.1 available here to
check.
>From gcc-bugs-return-535585-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 18:58:24 2016
Return-Path: <gcc-bugs-return-535585-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 64452 invoked by alias); 22 Aug 2016 18:58:23 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 64348 invoked by uid 55); 22 Aug 2016 18:58:11 -0000
From: "uros at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/72843] [7 Regression] internal compiler error: in lra_set_insn_recog_data, at lra.c:964
Date: Mon, 22 Aug 2016 18:58:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: uros at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: ubizjak at gmail dot com
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72843-4-Crls2N696l@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72843-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72843-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02921.txt.bz2
Content-length: 2084

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72843

--- Comment #8 from uros at gcc dot gnu.org ---
Author: uros
Date: Mon Aug 22 18:57:37 2016
New Revision: 239669

URL: https://gcc.gnu.org/viewcvs?rev=239669&root=gcc&view=rev
Log:
        Backport from mainline
        2016-08-14  Uros Bizjak  <ubizjak@gmail.com>

        PR target/76342
        * config/i386/avx512fintrin.h (_mm512_undefined_epi32):
        Renamed from _mm512_undefined_si512.
        (_mm_undefined_si512): New definition.

        Backport from mainline:
        2016-08-09  David Wohlferd  <dw@LimeGreenSocks.com>

        * config/i3836/avx512fintrin.h (_mm512_cvtsepi64_epi32): Remove
        unused variable __O.

        Backport from mainline:
        2016-08-09  Uros Bizjak  <ubizjak@gmail.com>

        PR target/72843
        * config/i386/i386.md (*movtf_internal): Use
        lra_in_progress || reload_completed instead of !can_create_pseudo_p
        in the insn constraint.
        (*movxf_internal): Ditto.
        (*movdf_internal): Ditto.
        (*movsf_internal): Ditto.

testsuite/ChangeLog:

        Backport from mainline
        2016-08-14  Uros Bizjak  <ubizjak@gmail.com>

        PR target/76342
        * gcc.target/i386/pr76342.c: New test.


Added:
    branches/gcc-5-branch/gcc/testsuite/gcc.target/i386/pr76342.c
Modified:
    branches/gcc-5-branch/gcc/ChangeLog
    branches/gcc-5-branch/gcc/config/i386/avx512bwintrin.h
    branches/gcc-5-branch/gcc/config/i386/avx512dqintrin.h
    branches/gcc-5-branch/gcc/config/i386/avx512fintrin.h
    branches/gcc-5-branch/gcc/config/i386/avx512ifmaintrin.h
    branches/gcc-5-branch/gcc/config/i386/avx512ifmavlintrin.h
    branches/gcc-5-branch/gcc/config/i386/avx512vbmiintrin.h
    branches/gcc-5-branch/gcc/config/i386/avx512vbmivlintrin.h
    branches/gcc-5-branch/gcc/config/i386/avx512vlbwintrin.h
    branches/gcc-5-branch/gcc/config/i386/avx512vldqintrin.h
    branches/gcc-5-branch/gcc/config/i386/avx512vlintrin.h
    branches/gcc-5-branch/gcc/config/i386/i386.md
    branches/gcc-5-branch/gcc/testsuite/ChangeLog
>From gcc-bugs-return-535584-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 18:58:23 2016
Return-Path: <gcc-bugs-return-535584-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 64444 invoked by alias); 22 Aug 2016 18:58:23 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 64338 invoked by uid 55); 22 Aug 2016 18:58:10 -0000
From: "uros at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/76342] AVX512: _mm512_undefined_epi32() intrinsic missing (incorrectly named _mm512_undefined_si512)
Date: Mon, 22 Aug 2016 18:58:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: uros at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-76342-4-qTmEU1DAGF@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76342-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76342-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02920.txt.bz2
Content-length: 2084

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76342

--- Comment #4 from uros at gcc dot gnu.org ---
Author: uros
Date: Mon Aug 22 18:57:37 2016
New Revision: 239669

URL: https://gcc.gnu.org/viewcvs?rev=239669&root=gcc&view=rev
Log:
        Backport from mainline
        2016-08-14  Uros Bizjak  <ubizjak@gmail.com>

        PR target/76342
        * config/i386/avx512fintrin.h (_mm512_undefined_epi32):
        Renamed from _mm512_undefined_si512.
        (_mm_undefined_si512): New definition.

        Backport from mainline:
        2016-08-09  David Wohlferd  <dw@LimeGreenSocks.com>

        * config/i3836/avx512fintrin.h (_mm512_cvtsepi64_epi32): Remove
        unused variable __O.

        Backport from mainline:
        2016-08-09  Uros Bizjak  <ubizjak@gmail.com>

        PR target/72843
        * config/i386/i386.md (*movtf_internal): Use
        lra_in_progress || reload_completed instead of !can_create_pseudo_p
        in the insn constraint.
        (*movxf_internal): Ditto.
        (*movdf_internal): Ditto.
        (*movsf_internal): Ditto.

testsuite/ChangeLog:

        Backport from mainline
        2016-08-14  Uros Bizjak  <ubizjak@gmail.com>

        PR target/76342
        * gcc.target/i386/pr76342.c: New test.


Added:
    branches/gcc-5-branch/gcc/testsuite/gcc.target/i386/pr76342.c
Modified:
    branches/gcc-5-branch/gcc/ChangeLog
    branches/gcc-5-branch/gcc/config/i386/avx512bwintrin.h
    branches/gcc-5-branch/gcc/config/i386/avx512dqintrin.h
    branches/gcc-5-branch/gcc/config/i386/avx512fintrin.h
    branches/gcc-5-branch/gcc/config/i386/avx512ifmaintrin.h
    branches/gcc-5-branch/gcc/config/i386/avx512ifmavlintrin.h
    branches/gcc-5-branch/gcc/config/i386/avx512vbmiintrin.h
    branches/gcc-5-branch/gcc/config/i386/avx512vbmivlintrin.h
    branches/gcc-5-branch/gcc/config/i386/avx512vlbwintrin.h
    branches/gcc-5-branch/gcc/config/i386/avx512vldqintrin.h
    branches/gcc-5-branch/gcc/config/i386/avx512vlintrin.h
    branches/gcc-5-branch/gcc/config/i386/i386.md
    branches/gcc-5-branch/gcc/testsuite/ChangeLog
>From gcc-bugs-return-535586-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 19:00:49 2016
Return-Path: <gcc-bugs-return-535586-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 80631 invoked by alias); 22 Aug 2016 19:00:49 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 79881 invoked by uid 48); 22 Aug 2016 19:00:36 -0000
From: "kargl at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/68567] ICE on using wrong defined arrays (different cases/messages)
Date: Mon, 22 Aug 2016 19:00:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 5.2.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: kargl at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-68567-4-0dh09weSdZ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68567-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68567-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02922.txt.bz2
Content-length: 1824

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68567

kargl at gcc dot gnu.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |kargl at gcc dot gnu.org

--- Comment #4 from kargl at gcc dot gnu.org ---
(In reply to Gerhard Steinmetz from comment #3)
> ICE is gone for all tested constellations with
> gcc-Version 7.0.0 20160821 (experimental) (GCC)

We must be using drastically different compilers.  With your

% cat a.f90
program p
   integer, parameter :: a(:) = [2, 1]
   integer :: b = a(a(1))
end

I get an ICE.

% gfc6 -o z a.f90
f951: internal compiler error: Segmentation fault
0xa53fff crash_signal
        ../../gcc6/gcc/toplev.c:333
0x5da9e3 gfc_reduce_init_expr(gfc_expr*)
        ../../gcc6/gcc/fortran/expr.c:2676
0x5dae33 find_array_element
        ../../gcc6/gcc/fortran/expr.c:1206

With the obvious simple patch,

% svn diff gcc/fortran/expr.c 
Index: gcc/fortran/expr.c
===================================================================
--- gcc/fortran/expr.c  (revision 239661)
+++ gcc/fortran/expr.c  (working copy)
@@ -2670,7 +2670,7 @@ gfc_reduce_init_expr (gfc_expr *expr)
     t = gfc_check_init_expr (expr);
   gfc_init_expr_flag = false;

-  if (!t)
+  if (!t || !expr)
     return false;

   if (expr->expr_type == EXPR_ARRAY)

I get

% gfc7 -o z a.f90
a.f90:3:3:

    integer :: b = a(a(1))
   1
Error: Unclassifiable statement at (1)
a.f90:2:29:

    integer, parameter :: a(:) = [2, 1]
                             1
Error: Parameter array 'a' at (1) cannot be automatic or of deferred shape
>From gcc-bugs-return-535587-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 19:08:32 2016
Return-Path: <gcc-bugs-return-535587-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 88571 invoked by alias); 22 Aug 2016 19:08:31 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 88484 invoked by uid 48); 22 Aug 2016 19:08:18 -0000
From: "kargl at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/69860] ICE on missing end apostrophe with character(kind=4)
Date: Mon, 22 Aug 2016 19:08:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: kargl at gcc dot gnu.org
X-Bugzilla-Status: REOPENED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-69860-4-jnCW0onkSA@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69860-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69860-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02923.txt.bz2
Content-length: 683

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69860

kargl at gcc dot gnu.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |kargl at gcc dot gnu.org

--- Comment #8 from kargl at gcc dot gnu.org ---
(In reply to Dominique d'Humieres from comment #7)
> > Works for me. 
> 
> You need -mavx.

Like I said.  Works for me.

gfc7 -c -mavx a.f90
a.f90:2:46:

    character(len=2, kind=1) :: a = 'aa', b = 'bb
                                              1
Error: Unterminated character constant beginning at (1)

There is no ICE.
>From gcc-bugs-return-535588-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 19:15:28 2016
Return-Path: <gcc-bugs-return-535588-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 17085 invoked by alias); 22 Aug 2016 19:15:28 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 16945 invoked by uid 48); 22 Aug 2016 19:15:13 -0000
From: "ubizjak at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/76342] AVX512: _mm512_undefined_epi32() intrinsic missing (incorrectly named _mm512_undefined_si512)
Date: Mon, 22 Aug 2016 19:15:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ubizjak at gmail dot com
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cf_gcctarget target_milestone
Message-ID: <bug-76342-4-mU9yV8QSWT@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76342-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76342-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02924.txt.bz2
Content-length: 346

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76342

Uroš Bizjak <ubizjak at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Target|                            |x86
   Target Milestone|---                         |5.5
>From gcc-bugs-return-535589-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 19:16:15 2016
Return-Path: <gcc-bugs-return-535589-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 20206 invoked by alias); 22 Aug 2016 19:16:15 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 20081 invoked by uid 48); 22 Aug 2016 19:16:02 -0000
From: "ubizjak at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/72843] [7 Regression] internal compiler error: in lra_set_insn_recog_data, at lra.c:964
Date: Mon, 22 Aug 2016 19:16:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ubizjak at gmail dot com
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: ubizjak at gmail dot com
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-72843-4-hbqYPL9Akm@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72843-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72843-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02925.txt.bz2
Content-length: 440

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72843

Uroš Bizjak <ubizjak at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #9 from Uroš Bizjak <ubizjak at gmail dot com> ---
Fixed everywhere.
>From gcc-bugs-return-535590-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 19:20:00 2016
Return-Path: <gcc-bugs-return-535590-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 36366 invoked by alias); 22 Aug 2016 19:20:00 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 36096 invoked by uid 48); 22 Aug 2016 19:19:39 -0000
From: "trippels at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77321] [7 Regression] crash in warn_for_memset
Date: Mon, 22 Aug 2016 19:20:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: diagnostic, ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: trippels at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-77321-4-8g9kiLoFve@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77321-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77321-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02926.txt.bz2
Content-length: 624

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77321

Markus Trippelsdorf <trippels at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-22
     Ever confirmed|0                           |1

--- Comment #4 from Markus Trippelsdorf <trippels at gcc dot gnu.org> ---
The testcase is a bit over-reduced (or even invalid).
See https://gcc.gnu.org/ml/gcc-help/2016-08/msg00041.html for the original
testcase.
>From gcc-bugs-return-535592-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 19:26:46 2016
Return-Path: <gcc-bugs-return-535592-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 75015 invoked by alias); 22 Aug 2016 19:26:46 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 74941 invoked by uid 48); 22 Aug 2016 19:26:39 -0000
From: "jb at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libfortran/77261] gfortran.dg/random_3.f90 FAILs
Date: Mon, 22 Aug 2016 19:26:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libfortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jb at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jb at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status assigned_to
Message-ID: <bug-77261-4-qqCTfalTaw@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77261-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77261-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02928.txt.bz2
Content-length: 460

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77261

Janne Blomqvist <jb at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |ASSIGNED
           Assignee|unassigned at gcc dot gnu.org      |jb at gcc dot gnu.org

--- Comment #3 from Janne Blomqvist <jb at gcc dot gnu.org> ---
Assigning to myself.
>From gcc-bugs-return-535591-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 19:26:14 2016
Return-Path: <gcc-bugs-return-535591-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 74090 invoked by alias); 22 Aug 2016 19:26:14 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 73724 invoked by uid 48); 22 Aug 2016 19:26:01 -0000
From: "jb at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libfortran/77261] gfortran.dg/random_3.f90 FAILs
Date: Mon, 22 Aug 2016 19:26:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libfortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jb at gcc dot gnu.org
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77261-4-4r0LHXpFKd@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77261-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77261-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02927.txt.bz2
Content-length: 524

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77261

--- Comment #2 from Janne Blomqvist <jb at gcc dot gnu.org> ---
(In reply to Dominique d'Humieres from comment #1)
> AFAIU this occurs for platforms without real(10) and is due to the fact that
> the sequence for real(16) is different from the sequence for other reals.

Yes, I agree with this analysis. The test case already checks for the presence
of fortran_large_real, but we need to distinguish whether

selected_real_kind (precision (0.0_8) + 1)

is 10 or 16.
>From gcc-bugs-return-535593-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 20:10:43 2016
Return-Path: <gcc-bugs-return-535593-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 57802 invoked by alias); 22 Aug 2016 20:10:37 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 55566 invoked by uid 48); 22 Aug 2016 20:10:23 -0000
From: "bernd.edlinger at hotmail dot de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug web/72856] Trottle bug creation for newly created accounts (to limit spam)
Date: Mon, 22 Aug 2016 20:10:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: web
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: bernd.edlinger at hotmail dot de
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: LpSolit at netscape dot net
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-72856-4-tr0YoGSYZj@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72856-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72856-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02929.txt.bz2
Content-length: 503

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72856

Bernd Edlinger <bernd.edlinger at hotmail dot de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |bernd.edlinger at hotmail dot de

--- Comment #11 from Bernd Edlinger <bernd.edlinger at hotmail dot de> ---
Are the user accounts created by bots?
if yes, would an anti robot security code (captcha) help?
>From gcc-bugs-return-535594-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 20:42:48 2016
Return-Path: <gcc-bugs-return-535594-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 116714 invoked by alias); 22 Aug 2016 20:42:48 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 116565 invoked by uid 55); 22 Aug 2016 20:42:35 -0000
From: "uros at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72867] SSE/AVX/AVX512: incorrect optimization of VMINPS/VMAXPS at compile time
Date: Mon, 22 Aug 2016 20:42:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: uros at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: ubizjak at gmail dot com
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72867-4-sEZ70BW4Pn@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72867-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72867-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02930.txt.bz2
Content-length: 2308

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72867

--- Comment #6 from uros at gcc dot gnu.org ---
Author: uros
Date: Mon Aug 22 20:42:03 2016
New Revision: 239674

URL: https://gcc.gnu.org/viewcvs?rev=239674&root=gcc&view=rev
Log:
        Backport from mainline
        2016-08-15  Uros Bizjak  <ubizjak@gmail.com>

        PR target/72867
        * config/i386/sse.md (<code><mode>3<mask_name><round_saeonly_name>):
        Emit ieee_<ieee_maxmin><mode>3<mask_name><round_saeonly_name>
        for !flag_finite_math_only or flag_signed_zeros.
        (*<code><mode>3<mask_name><round_saeonly_name>): Rename from
        *<code><mode>3_finite<mask_name><round_saeonly_name>.  Do not
        depend on flag_finite_math_only.
        (ieee_<ieee_maxmin><mode>3<mask_name><round_saeonly_name>):
        New insn pattern.
        (*<code><mode>3<mask_name><round_saeonly_name>): Remove.
        (*ieee_smin<mode>3): Ditto.
        (*ieee_smax<mode>3): Ditto.
        * config/i386/mmx.md (mmx_<code>v2sf3): Emit
        mmx_ieee_<ieee_maxmin>v2sf3 for !flag_finite_math_only or
        flag_signed_zeros.
        (*mmx_<code>v2sf3): Rename from *mmx_<code>v2sf3_finite.  Do not
        depend on flag_finite_math_only.
        (mmx_ieee_<ieee_maxmin>v2sf3): New insn pattern.
        (*mmx_<code>v2sf3): Remove.
        * config/i386/subst.md (round_saeonly_mask_arg3): New subst attribute.
        * config/i386/i386.c (ix86_expand_sse_fp_mimnax): Check
        flag_signed_zeros instead of !flag_unsafe_math_optimizations.

testsuite/ChangeLog:

        Backport from mainline
        2016-08-16  Jakub Jelinek  <jakub@redhat.com>

        PR target/72867
        * gcc.target/i386/pr72867.c: Add -msse to dg-options.

        Backport from mainline
        2016-08-15  Uros Bizjak  <ubizjak@gmail.com>

        PR target/72867
        * gcc.target/i386/pr72867.c: New test.


Added:
    branches/gcc-6-branch/gcc/testsuite/gcc.target/i386/pr72867.c
Modified:
    branches/gcc-6-branch/gcc/ChangeLog
    branches/gcc-6-branch/gcc/config/i386/i386.c
    branches/gcc-6-branch/gcc/config/i386/i386.md
    branches/gcc-6-branch/gcc/config/i386/mmx.md
    branches/gcc-6-branch/gcc/config/i386/sse.md
    branches/gcc-6-branch/gcc/config/i386/subst.md
    branches/gcc-6-branch/gcc/testsuite/ChangeLog
>From gcc-bugs-return-535595-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 20:44:20 2016
Return-Path: <gcc-bugs-return-535595-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 118317 invoked by alias); 22 Aug 2016 20:44:20 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 118154 invoked by uid 48); 22 Aug 2016 20:44:07 -0000
From: "ubizjak at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72867] SSE/AVX/AVX512: incorrect optimization of VMINPS/VMAXPS at compile time
Date: Mon, 22 Aug 2016 20:44:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ubizjak at gmail dot com
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: ubizjak at gmail dot com
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution target_milestone
Message-ID: <bug-72867-4-h2UqxlhO7K@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72867-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72867-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02931.txt.bz2
Content-length: 495

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72867

Uroš Bizjak <ubizjak at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED
   Target Milestone|---                         |6.3

--- Comment #7 from Uroš Bizjak <ubizjak at gmail dot com> ---
Fixed for gcc-6.3+.
>From gcc-bugs-return-535596-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 20:45:20 2016
Return-Path: <gcc-bugs-return-535596-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 119647 invoked by alias); 22 Aug 2016 20:45:03 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 119450 invoked by uid 48); 22 Aug 2016 20:44:51 -0000
From: "wenzel@mitsuba-renderer.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/76731] [AVX512] _mm512_i32gather_epi32 and other scatter/gather routines have incorrect signature
Date: Mon, 22 Aug 2016 20:45:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wenzel@mitsuba-renderer.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-76731-4-odX637rC3J@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76731-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76731-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02932.txt.bz2
Content-length: 142

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76731

--- Comment #2 from Wenzel Jakob <wenzel@mitsuba-renderer.org> ---
+1 this looks great!
>From gcc-bugs-return-535597-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 20:48:28 2016
Return-Path: <gcc-bugs-return-535597-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 123006 invoked by alias); 22 Aug 2016 20:48:28 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 122891 invoked by uid 48); 22 Aug 2016 20:48:13 -0000
From: "ro at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/77324] [7 regression] ICE in push_reload, at reload.c:1350
Date: Mon, 22 Aug 2016 20:48:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ro at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-77324-4-5LqNlD4Eky@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77324-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77324-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02933.txt.bz2
Content-length: 681

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77324

Rainer Orth <ro at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |amodra at gcc dot gnu.org

--- Comment #2 from Rainer Orth <ro at gcc dot gnu.org> ---
Not unexpectedly, the reghunt identified this patch as the culprit:

        PR rtl-optimization/72771
        * reload.c (find_reloads): Don't assume that a subreg mem is OK
        when find_reloads_toplev returns address_reloaded==-1.
        (alternative_allows_const_pool_ref): Update comment.

  Rainer
>From gcc-bugs-return-535598-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 20:57:37 2016
Return-Path: <gcc-bugs-return-535598-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 68866 invoked by alias); 22 Aug 2016 20:57:36 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 68643 invoked by uid 48); 22 Aug 2016 20:57:23 -0000
From: "zeccav at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/77327] New: AddressSanitizer: heap-use-after-free gcc-trunk-239276/gcc/fortran/interface.c:403 in compare_components
Date: Mon, 22 Aug 2016 20:57:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: zeccav at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77327-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02934.txt.bz2
Content-length: 13292

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77327

            Bug ID: 77327
           Summary: AddressSanitizer: heap-use-after-free
                    gcc-trunk-239276/gcc/fortran/interface.c:403 in
                    compare_components
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: fortran
          Assignee: unassigned at gcc dot gnu.org
          Reporter: zeccav at gmail dot com
  Target Milestone: ---

Compiling the following:

      subroutine foo(a)
      type myT
       sequence
       character :: c
      end type myT
      type(myT) :: a
      end subroutine

      module modtest
      type myT
       sequence
       character :: c
      end type myT
      interface
       subroutine foo(c)
        import :: myT
        type(myT) :: c
       end subroutine foo
      end interface
      contains
       subroutine test2()
        type(myT) :: z
        call foo(z)
       end subroutine test2
      end module modtest

with an address sanitized version of gfortran I get the following:

$gcc-7-address/bin/gfortran ~/f95/gfbug126.f
=================================================================
==15602==ERROR: AddressSanitizer: heap-use-after-free on address 0x60400000c462
at pc 0x00000067217d bp 0x7ffd1903f720 sp 0x7ffd1903f718
READ of size 1 at 0x60400000c462 thread T0
    #0 0x67217c in compare_components
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/interface.c:403
    #1 0x672839 in gfc_compare_derived_types(gfc_symbol*, gfc_symbol*)
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/interface.c:570
    #2 0x798343 in gfc_type_compatible(gfc_typespec*, gfc_typespec*)
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/symbol.c:4869
    #3 0x671da3 in gfc_compare_types(gfc_typespec*, gfc_typespec*)
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/interface.c:630
    #4 0x672b3f in compare_type
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/interface.c:646
    #5 0x675600 in gfc_check_dummy_characteristics(gfc_symbol*, gfc_symbol*,
bool, char*, int)
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/interface.c:1187
    #6 0x674ebd in gfc_compare_interfaces(gfc_symbol*, gfc_symbol*, char
const*, int, int, char*, int, char const*, char const*)
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/interface.c:1644
    #7 0x73cb61 in resolve_global_procedure
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/resolve.c:2463
    #8 0x74d055 in resolve_call
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/resolve.c:3455
    #9 0x764d17 in gfc_resolve_code(gfc_code*, gfc_namespace*)
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/resolve.c:10659
    #10 0x767b59 in resolve_codes
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/resolve.c:15667
    #11 0x7679dd in resolve_codes
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/resolve.c:15652
    #12 0x73c2b1 in gfc_resolve(gfc_namespace*)
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/resolve.c:15701
    #13 0x711dd7 in gfc_parse_file()
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/parse.c:6061
    #14 0x7b4d6d in gfc_be_parse_file
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/f95-lang.c:198
    #15 0x165aada in compile_file
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/toplev.c:465
    #16 0x165ff74 in do_compile
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/toplev.c:1998
    #17 0x16604aa in toplev::main(int, char**)
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/toplev.c:2132
    #18 0x2e2a5ca in main
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/main.c:39
    #19 0x390da1ffdf in __libc_start_main (/lib64/libc.so.6+0x390da1ffdf)
    #20 0x5eafd8 
(/home/vitti/1tb/vitti/local/gcc-7-address/libexec/gcc/x86_64-pc-linux-gnu/7.0.0/f951+0x5eafd8)

0x60400000c462 is located 18 bytes inside of 40-byte region
[0x60400000c450,0x60400000c478)
freed by thread T0 here:
    #0 0x2b862c1d8330 in __interceptor_free
../../.././libsanitizer/asan/asan_malloc_linux.cc:45
    #1 0x2e61f00 in release<(anonymous namespace)::line_span>
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/vec.h:307
    #2 0x2e66774 in release
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/vec.h:1492
    #3 0x2e66774 in ~auto_vec
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/vec.h:1286
    #4 0x2e66774 in calculate_line_spans
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/diagnostic-show-locus.c:894
    #5 0x2e67b02 in layout
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/diagnostic-show-locus.c:785
    #6 0x2e6802e in diagnostic_show_locus(diagnostic_context*, diagnostic_info
const*)
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/diagnostic-show-locus.c:1302
    #7 0x6572e4 in gfc_diagnostic_starter
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/error.c:1096
    #8 0x2e5c244 in diagnostic_report_diagnostic(diagnostic_context*,
diagnostic_info*)
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/diagnostic.c:935
    #9 0x656009 in gfc_error
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/error.c:1277
    #10 0x658644 in gfc_error(char const*, ...)
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/error.c:1296
    #11 0x720a04 in gfc_match_rvalue(gfc_expr**)
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/primary.c:3021
    #12 0x6c97ed in match_primary
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/matchexp.c:157
    #13 0x6c99c6 in match_level_1
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/matchexp.c:211
    #14 0x6c9ba5 in match_mult_operand
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/matchexp.c:267
    #15 0x6ca031 in match_add_operand
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/matchexp.c:356
    #16 0x6ca5ae in match_level_2
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/matchexp.c:480
    #17 0x6ca8bb in match_level_3
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/matchexp.c:551
    #18 0x6cab2e in match_level_4
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/matchexp.c:599
    #19 0x6caf06 in match_and_operand
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/matchexp.c:693
    #20 0x6cb0b7 in match_or_operand
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/matchexp.c:722
    #21 0x6cb326 in match_equiv_operand
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/matchexp.c:765
    #22 0x6cb595 in match_level_5
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/matchexp.c:811
    #23 0x6c9502 in gfc_match_expr(gfc_expr**)
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/matchexp.c:870
    #24 0x6b9a0d in gfc_match(char const*, ...)
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/match.c:1143
    #25 0x6c737b in gfc_match_ptr_fcn_assign()
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/match.c:5301
    #26 0x705064 in match_word
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/parse.c:65
    #27 0x70a660 in decode_statement
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/parse.c:370
    #28 0x70be5b in next_fixed
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/parse.c:1332
    #29 0x70c673 in next_statement
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/parse.c:1382
    #30 0x70d9b4 in parse_derived
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/parse.c:3130
    #31 0x70edee in parse_spec
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/parse.c:3669

previously allocated by thread T0 here:
    #0 0x2b862c1d8648 in __interceptor_malloc
../../.././libsanitizer/asan/asan_malloc_linux.cc:62
    #1 0x2f5b515 in xrealloc
/home/vitti/1tb/vitti/test/gcc-trunk-239276/libiberty/xmalloc.c:178
    #2 0x2e64a30 in reserve<(anonymous namespace)::line_span>
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/vec.h:288
    #3 0x2e64a30 in reserve
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/vec.h:1438
    #4 0x2e64a30 in reserve_exact
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/vec.h:1458
    #5 0x2e64a30 in create
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/vec.h:1473
    #6 0x2e64a30 in auto_vec
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/vec.h:1285
    #7 0x2e64a30 in calculate_line_spans
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/diagnostic-show-locus.c:894
    #8 0x2e67b02 in layout
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/diagnostic-show-locus.c:785
    #9 0x2e6802e in diagnostic_show_locus(diagnostic_context*, diagnostic_info
const*)
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/diagnostic-show-locus.c:1302
    #10 0x6572e4 in gfc_diagnostic_starter
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/error.c:1096
    #11 0x2e5c244 in diagnostic_report_diagnostic(diagnostic_context*,
diagnostic_info*)
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/diagnostic.c:935
    #12 0x656009 in gfc_error
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/error.c:1277
    #13 0x658644 in gfc_error(char const*, ...)
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/error.c:1296
    #14 0x720a04 in gfc_match_rvalue(gfc_expr**)
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/primary.c:3021
    #15 0x6c97ed in match_primary
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/matchexp.c:157
    #16 0x6c99c6 in match_level_1
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/matchexp.c:211
    #17 0x6c9ba5 in match_mult_operand
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/matchexp.c:267
    #18 0x6ca031 in match_add_operand
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/matchexp.c:356
    #19 0x6ca5ae in match_level_2
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/matchexp.c:480
    #20 0x6ca8bb in match_level_3
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/matchexp.c:551
    #21 0x6cab2e in match_level_4
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/matchexp.c:599
    #22 0x6caf06 in match_and_operand
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/matchexp.c:693
    #23 0x6cb0b7 in match_or_operand
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/matchexp.c:722
    #24 0x6cb326 in match_equiv_operand
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/matchexp.c:765
    #25 0x6cb595 in match_level_5
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/matchexp.c:811
    #26 0x6c9502 in gfc_match_expr(gfc_expr**)
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/matchexp.c:870
    #27 0x6b9a0d in gfc_match(char const*, ...)
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/match.c:1143
    #28 0x6c737b in gfc_match_ptr_fcn_assign()
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/match.c:5301
    #29 0x705064 in match_word
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/parse.c:65
    #30 0x70a660 in decode_statement
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/parse.c:370
    #31 0x70be5b in next_fixed
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/parse.c:1332
    #32 0x70c673 in next_statement
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/parse.c:1382
    #33 0x70d9b4 in parse_derived
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/parse.c:3130
    #34 0x70edee in parse_spec
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/parse.c:3669

SUMMARY: AddressSanitizer: heap-use-after-free
/home/vitti/1tb/vitti/test/gcc-trunk-239276/gcc/fortran/interface.c:403 in
compare_components
Shadow bytes around the buggy address:
  0x0c087fff9830: fa fa fd fd fd fd fd fd fa fa fd fd fd fd fd fd
  0x0c087fff9840: fa fa fd fd fd fd fd fd fa fa fd fd fd fd fd fd
  0x0c087fff9850: fa fa fd fd fd fd fd fa fa fa fd fd fd fd fd fa
  0x0c087fff9860: fa fa fd fd fd fd fd fd fa fa fd fd fd fd fd fd
  0x0c087fff9870: fa fa fd fd fd fd fd fd fa fa fd fd fd fd fd fd
=>0x0c087fff9880: fa fa 00 00 00 00 00 00 fa fa fd fd[fd]fd fd fa
  0x0c087fff9890: fa fa fd fd fd fd fd fa fa fa fd fd fd fd fd fd
  0x0c087fff98a0: fa fa fd fd fd fd fd fd fa fa fd fd fd fd fd fd
  0x0c087fff98b0: fa fa fd fd fd fd fd fd fa fa fd fd fd fd fd fd
  0x0c087fff98c0: fa fa fd fd fd fd fd fa fa fa fd fd fd fd fd fa
  0x0c087fff98d0: fa fa fd fd fd fd fd fd fa fa fd fd fd fd fd fd
Shadow byte legend (one shadow byte represents 8 application bytes):
  Addressable:           00
  Partially addressable: 01 02 03 04 05 06 07 
  Heap left redzone:       fa
  Heap right redzone:      fb
  Freed heap region:       fd
  Stack left redzone:      f1
  Stack mid redzone:       f2
  Stack right redzone:     f3
  Stack partial redzone:   f4
  Stack after return:      f5
  Stack use after scope:   f8
  Global redzone:          f9
  Global init order:       f6
  Poisoned by user:        f7
  Container overflow:      fc
  Array cookie:            ac
  Intra object redzone:    bb
  ASan internal:           fe
  Left alloca redzone:     ca
  Right alloca redzone:    cb
==15602==ABORTING


interface.c:403 is 
if ( (d1 && (d1->attr.flavor == FL_STRUCT || d1->attr.flavor == FL_UNION)

and I believe d->attr.flavor is the item used after freed.
>From gcc-bugs-return-535599-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 21:03:23 2016
Return-Path: <gcc-bugs-return-535599-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 83127 invoked by alias); 22 Aug 2016 21:03:22 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 83066 invoked by uid 48); 22 Aug 2016 21:03:16 -0000
From: "msebor at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/77328] New: incorrect caret location in -Wformat calling printf via a macro
Date: Mon, 22 Aug 2016 21:03:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: msebor at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77328-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02935.txt.bz2
Content-length: 1678

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77328

            Bug ID: 77328
           Summary: incorrect caret location in -Wformat calling printf
                    via a macro
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: msebor at gcc dot gnu.org
  Target Milestone: ---

With recent improvements to token location range information, GCC has started
to underline entire format directives in -Wformat diagnostics issued for calls
to functions like printf.  However, when the function invocation happens as a
result of even simple macro expansion, the caret is still in the wrong place:

$ cat t.c && /build/gcc-trunk/gcc/xgcc -B /build/gcc-trunk/gcc -S -Wformat t.c
void f (void)
{
  char d [8];

#define P(d, f, a, b) __builtin_sprintf (d, f, a, b)

  __builtin_sprintf (d, "%i %i", 1, 2.0);

  P (d, "%i %i", 1, 2.0);
}
t.c: In function ‘f’:
t.c:7:30: warning: format ‘%i’ expects argument of type ‘int’, but argument 4
has type ‘double’ [-Wformat=]
   __builtin_sprintf (d, "%i %i", 1, 2.0);
                             ~^
                             %f
t.c:9:9: warning: format ‘%i’ expects argument of type ‘int’, but argument 4
has type ‘double’ [-Wformat=]
   P (d, "%i %i", 1, 2.0);
         ^
t.c:5:45: note: in definition of macro ‘P’
 #define P(d, f, a, b) __builtin_sprintf (d, f, a, b)
                                             ^
>From gcc-bugs-return-535600-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 21:16:08 2016
Return-Path: <gcc-bugs-return-535600-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 90949 invoked by alias); 22 Aug 2016 21:16:08 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 90844 invoked by uid 48); 22 Aug 2016 21:15:54 -0000
From: "rbd at debian dot org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77316] [5 Regression] Unnecessary template copy constructor weak symbol emitted in wrong section
Date: Mon, 22 Aug 2016 21:16:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.4.1
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rbd at debian dot org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77316-4-NJEOMZkYTR@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77316-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77316-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02936.txt.bz2
Content-length: 1866

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77316

--- Comment #4 from Roland Dreier <rbd at debian dot org> ---
Discovered this is due to abi-compat, I think.  gcc 6 works because abi-compat
went from 2 (gcc 5.4) to 8, and the significant break is 6 -> 7:

$ g++ -Wabi=6 --std=c++11 -c b.cpp                                              
b.cpp: In instantiation of ‘vec<A>::vec(A) [with A = alloc<std::nullptr_t>]’:
b.cpp:5:46:   required from ‘void vec<A>::operator=(vec<A>) [with A =
alloc<std::nullptr_t>; vec<A> = vec<alloc<std::nullptr_t> >]’
b.cpp:16:6:   required from here
b.cpp:4:3: warning: the mangled name of ‘vec<A>::vec(A) [with A =
alloc<std::nullptr_t>]’ changed between -fabi-version=6
(_ZN3vecI5allocIDnEEC1ES2_) and -fabi-version=9 (_ZN3vecI5allocIDnEEC1ES1_)
[-Wabi]
   vec(A) {}
   ^
b.cpp:4:3: warning: the mangled name of ‘vec<A>::vec(A) [with A =
alloc<std::nullptr_t>]’ changed between -fabi-version=6
(_ZN3vecI5allocIDnEEC2ES2_) and -fabi-version=9 (_ZN3vecI5allocIDnEEC2ES1_)
[-Wabi]
b.cpp:5:8: warning: the mangled name of ‘void vec<A>::operator=(vec<A>) [with A
= alloc<std::nullptr_t>; vec<A> = vec<alloc<std::nullptr_t> >]’ changed between
-fabi-version=6 (_ZN3vecI5allocIDnEEaSES3_) and -fabi-version=9
(_ZN3vecI5allocIDnEEaSES2_) [-Wabi]
   void operator=(vec) { vec a(get_allocator()); }
        ^

So gcc is generating a backward-compatible symbol that happens to collide with
a different symbol in the current ABI.

Not sure I see a way for this to be fixed, but it's a really unfortunate
booby-trap.  I guess I can work around it by just building with -Wabi=7 and/or
-fabi-compat-version=0.
>From gcc-bugs-return-535601-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 21:47:04 2016
Return-Path: <gcc-bugs-return-535601-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 17484 invoked by alias); 22 Aug 2016 21:47:04 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 17364 invoked by uid 48); 22 Aug 2016 21:46:51 -0000
From: "dominiq at lps dot ens.fr" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/69860] ICE on missing end apostrophe with character(kind=4)
Date: Mon, 22 Aug 2016 21:47:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dominiq at lps dot ens.fr
X-Bugzilla-Status: REOPENED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-69860-4-TueVbYcjtI@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69860-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69860-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02937.txt.bz2
Content-length: 360

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69860

--- Comment #9 from Dominique d'Humieres <dominiq at lps dot ens.fr> ---
> Like I said.  Works for me.

How many times did you try? It worked for me the first time, but then I tried
-mavx -m32 and got an ICE, then I got the same ICE with -mavx only. Another
instance of non-deterministic error recovery?
>From gcc-bugs-return-535602-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 21:48:36 2016
Return-Path: <gcc-bugs-return-535602-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 19191 invoked by alias); 22 Aug 2016 21:48:34 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 19091 invoked by uid 48); 22 Aug 2016 21:48:22 -0000
From: "mpolacek at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77321] [7 Regression] crash in warn_for_memset
Date: Mon, 22 Aug 2016 21:48:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: diagnostic, ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mpolacek at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: mpolacek at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status assigned_to target_milestone
Message-ID: <bug-77321-4-zk5CaE8zQX@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77321-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77321-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02938.txt.bz2
Content-length: 959

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77321

Marek Polacek <mpolacek at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED
           Assignee|unassigned at gcc dot gnu.org      |mpolacek at gcc dot gnu.org
   Target Milestone|---                         |7.0

--- Comment #5 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
All right, I'm going to commit the patch with this testcase instead (it's the
original testcase, I just removed #includes and added prototypes.

extern "C" void *memset (void *, int, __SIZE_TYPE__);
extern "C" void *malloc(__SIZE_TYPE__);

struct S {
    char *a;
};

template <typename T>
void Test(T & Obj) {
    auto && a(Obj.a);
    a = (char*)::malloc(1024 * 1024);
    ::memset(a + 28, 'X', 6);
}

int main()
{
  S d;
  Test(d);
  return 0;
}
>From gcc-bugs-return-535603-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 21:54:45 2016
Return-Path: <gcc-bugs-return-535603-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 30311 invoked by alias); 22 Aug 2016 21:54:45 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 27652 invoked by uid 55); 22 Aug 2016 21:54:31 -0000
From: "mpolacek at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77321] [7 Regression] crash in warn_for_memset
Date: Mon, 22 Aug 2016 21:54:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: diagnostic, ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mpolacek at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: mpolacek at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77321-4-AFHZevsCsb@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77321-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77321-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02939.txt.bz2
Content-length: 558

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77321

--- Comment #6 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
Author: mpolacek
Date: Mon Aug 22 21:53:59 2016
New Revision: 239676

URL: https://gcc.gnu.org/viewcvs?rev=239676&root=gcc&view=rev
Log:
        PR c++/77321
        * c-common.c (warn_for_memset): Check type for null.

        * g++.dg/cpp1y/pr77321.C: New test.

Added:
    trunk/gcc/testsuite/g++.dg/cpp1y/pr77321.C
Modified:
    trunk/gcc/c-family/ChangeLog
    trunk/gcc/c-family/c-common.c
    trunk/gcc/testsuite/ChangeLog
>From gcc-bugs-return-535604-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 22:06:13 2016
Return-Path: <gcc-bugs-return-535604-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 45337 invoked by alias); 22 Aug 2016 22:06:13 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 45256 invoked by uid 48); 22 Aug 2016 22:06:01 -0000
From: "dhowells at redhat dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/77329] New: gcc doesn't always correctly calculate label addresses
Date: Mon, 22 Aug 2016 22:06:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dhowells at redhat dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77329-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02940.txt.bz2
Content-length: 3080

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77329

            Bug ID: 77329
           Summary: gcc doesn't always correctly calculate label addresses
           Product: gcc
           Version: 6.1.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: dhowells at redhat dot com
  Target Milestone: ---

The following code:

        extern int printf(const char *, ...);
        extern int A(int), B(int);
        int test(void)
        {
                A(0);
        foo:
                printf("%p\n", &&foo);
                B(0);
                return 99;
        }

Incorrectly calculates the address of the label foo with -Os and -O2, but works
fine with -O0.  For -Os on an x86_64 cross-compiler or native compiler of
version 6.1.1, I see:

.LC0:
        .string "%p\n"
test:
.LFB0:
        .cfi_startproc
.L2:
        subq    $8, %rsp
        .cfi_def_cfa_offset 16
        xorl    %edi, %edi
        call    A
        movl    $.L2, %esi
        movl    $.LC0, %edi
        xorl    %eax, %eax
        call    printf
        xorl    %edi, %edi
        call    B
        movl    $99, %eax
        popq    %rdx
        .cfi_def_cfa_offset 8
        ret

Note the .L2 label before the test function prologue - the address of this is
&&foo.  I would expect .L2 to appear between the first and second statements. 
.L2 does indeed appear there if the label address is placed in a variable and
then passed to a goto-statement.

Note that adding:

                asm("jmp *%0" : : "r"(here));

before the return doesn't help.

The cross compiler is built thusly:

configure --bindir=/usr/bin --build=x86_64-redhat-linux-gnu
--datadir=/usr/share --disable-decimal-float --disable-dependency-tracking
--disable-gold --disable-libgcj --disable-libgomp --disable-libmpx
--disable-libquadmath --disable-libssp --disable-libunwind-exceptions
--disable-shared --disable-silent-rules --disable-sjlj-exceptions
--disable-threads --with-ld=/usr/bin/x86_64-linux-gnu-ld --enable-__cxa_atexit
--enable-checking=release --enable-gnu-unique-object --enable-initfini-array
--enable-languages=c,c++ --enable-linker-build-id --enable-lto --enable-nls
--enable-obsolete --enable-plugin --enable-targets=all --exec-prefix=/usr
--host=x86_64-redhat-linux-gnu --includedir=/usr/include
--infodir=/usr/share/info --libexecdir=/usr/libexec --localstatedir=/var
--mandir=/usr/share/man --prefix=/usr --program-prefix=x86_64-linux-gnu-
--sbindir=/usr/sbin --sharedstatedir=/var/lib --sysconfdir=/etc
--target=x86_64-linux-gnu --with-bugurl=http://bugzilla.redhat.com/bugzilla/
--with-isl --with-newlib --with-plugin-ld=/usr/bin/x86_64-linux-gnu-ld
--with-sysroot=/usr/x86_64-linux-gnu/sys-root --with-system-libunwind
--with-system-zlib --without-headers --with-arch_32=i686 --with-tune=generic
--enable-gnu-indirect-function --with-linker-hash-style=gnu

The compiler is 20160621, svn rev 237634.
>From gcc-bugs-return-535605-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 22:11:01 2016
Return-Path: <gcc-bugs-return-535605-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 54549 invoked by alias); 22 Aug 2016 22:11:01 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 54437 invoked by uid 48); 22 Aug 2016 22:10:49 -0000
From: "mikulas at artax dot karlin.mff.cuni.cz" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77330] New: __float128 segfaults on 32-bit x86 due to 8-byte malloc alignment
Date: Mon, 22 Aug 2016 22:11:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mikulas at artax dot karlin.mff.cuni.cz
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone cf_gcchost cf_gcctarget cf_gccbuild
Message-ID: <bug-77330-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02941.txt.bz2
Content-length: 2403

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77330

            Bug ID: 77330
           Summary: __float128 segfaults on 32-bit x86 due to 8-byte
                    malloc alignment
           Product: gcc
           Version: 6.2.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: target
          Assignee: unassigned at gcc dot gnu.org
          Reporter: mikulas at artax dot karlin.mff.cuni.cz
  Target Milestone: ---
              Host: x86_64-pc-linux-gnu
            Target: x86_64-pc-linux-gnu
             Build: x86_64-pc-linux-gnu

On 32-bit x86 system, glibc malloc aligns allocated memory to 8 bytes. The type
__float128 has 16-byte alignment (__alignof__(__float128) return 16), however
this alignment can't be guaranteed because of 8-byte malloc alignment.

GCC uses aligned SSE instructions when accessing the __float128 type, these
instructions cause a crash when accessing heap memory that is aligned only to 8
bytes.

This program will crash if compiled with "gcc -m32 -march=athlon64" (with or
without optimization).

#include <stdio.h>
#include <stdlib.h>

struct s {
        __float128 f1;
};

int main(void)
{
        struct s *p = malloc(sizeof(struct s));
        printf("%p\n", p);
        p->f1 = 1.234;
        return 0;
}

The misgenerated code is this:
0804842b <main>:
 804842b:       55                      push   %ebp
 804842c:       89 e5                   mov    %esp,%ebp
 804842e:       83 e4 f0                and    $0xfffffff0,%esp
 8048431:       83 ec 20                sub    $0x20,%esp
 8048434:       c7 04 24 10 00 00 00    movl   $0x10,(%esp)
 804843b:       e8 a0 fe ff ff          call   80482e0 <malloc@plt>
 8048440:       89 44 24 1c             mov    %eax,0x1c(%esp)
 8048444:       8b 44 24 1c             mov    0x1c(%esp),%eax
 8048448:       89 44 24 04             mov    %eax,0x4(%esp)
 804844c:       c7 04 24 10 85 04 08    movl   $0x8048510,(%esp)
 8048453:       e8 78 fe ff ff          call   80482d0 <printf@plt>
 8048458:       8b 44 24 1c             mov    0x1c(%esp),%eax
 804845c:       66 0f 6f 05 20 85 04    movdqa 0x8048520,%xmm0
 8048463:       08
 8048464:       0f 29 00                movaps %xmm0,(%eax)
 8048467:       b8 00 00 00 00          mov    $0x0,%eax
 804846c:       c9                      leave
 804846d:       c3                      ret
>From gcc-bugs-return-535606-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 22:16:58 2016
Return-Path: <gcc-bugs-return-535606-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 58281 invoked by alias); 22 Aug 2016 22:16:58 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 58168 invoked by uid 48); 22 Aug 2016 22:16:45 -0000
From: "mpolacek at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77321] [7 Regression] crash in warn_for_memset
Date: Mon, 22 Aug 2016 22:16:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: diagnostic, ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mpolacek at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: mpolacek at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-77321-4-eNcUZw9k0R@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77321-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77321-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02942.txt.bz2
Content-length: 429

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77321

Marek Polacek <mpolacek at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #7 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
Fixed.
>From gcc-bugs-return-535607-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 22:17:44 2016
Return-Path: <gcc-bugs-return-535607-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 59294 invoked by alias); 22 Aug 2016 22:17:43 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 59208 invoked by uid 48); 22 Aug 2016 22:17:38 -0000
From: "msebor at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/77331] New: incorrect range location in -Wformat with a concatenated format literal
Date: Mon, 22 Aug 2016 22:17:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: msebor at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77331-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02943.txt.bz2
Content-length: 1897

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77331

            Bug ID: 77331
           Summary: incorrect range location in -Wformat with a
                    concatenated format literal
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: msebor at gcc dot gnu.org
  Target Milestone: ---

While getting the latest c-format.c changes integrated into the -Wformat-length
pass and testing the result I noticed that GCC underlines different parts of
the format strings than shown in the examples in the comment above the
definition of the format_warning_va function.  The output shown in the comments
makes sense.  The actual output not so much because parts of the format strings
that are unrelated to the problem are underlined.

$ cat t.c && /build/gcc-trunk/gcc/xgcc -B /build/gcc-trunk/gcc -S -Wformat
-Wformat-signedness t.c
extern int printf (const char*, ...);

void f (const char *msg)
{
  printf ("hello " "%i", msg);

#define INT_FMT "%i"

  printf ("hello " INT_FMT " world", msg);

}
t.c: In function ‘f’:
t.c:5:11: warning: format ‘%i’ expects argument of type ‘int’, but argument 2
has type ‘const char *’ [-Wformat=]
   printf ("hello " "%i", msg);
           ^~~~~~~~
t.c:5:22: note: format string is defined here
   printf ("hello " "%i", msg);
                     ~^
                     %s
t.c:9:11: warning: format ‘%i’ expects argument of type ‘int’, but argument 2
has type ‘const char *’ [-Wformat=]
   printf ("hello " INT_FMT " world", msg);
           ^~~~~~~~
t.c:7:19: note: format string is defined here
 #define INT_FMT "%i"
                  ~^
                  %s
>From gcc-bugs-return-535608-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 22:25:57 2016
Return-Path: <gcc-bugs-return-535608-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 95295 invoked by alias); 22 Aug 2016 22:25:57 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 93950 invoked by uid 55); 22 Aug 2016 22:25:44 -0000
From: "joseph at codesourcery dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77330] __float128 segfaults on 32-bit x86 due to 8-byte malloc alignment
Date: Mon, 22 Aug 2016 22:25:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: joseph at codesourcery dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77330-4-78wL87ZkNI@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77330-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77330-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02944.txt.bz2
Content-length: 547

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77330

--- Comment #1 from joseph at codesourcery dot com <joseph at codesourcery dot com> ---
I think this is a malloc bug: x86 malloc should produce 16-byte-aligned 
results because the relevant TR / TS documents define _Decimal128 and 
_Float128 in such a way that they are types for which malloc should return 
suitably aligned memory.

I also think GCC should, correspondingly, make max_align_t have 16-byte 
alignment on 32-bit x86, notwithstanding that this is a minor ABI change.
>From gcc-bugs-return-535609-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 22:50:58 2016
Return-Path: <gcc-bugs-return-535609-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 19546 invoked by alias); 22 Aug 2016 22:50:58 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 19427 invoked by uid 48); 22 Aug 2016 22:50:45 -0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/77329] gcc doesn't always correctly calculate label addresses
Date: Mon, 22 Aug 2016 22:50:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-77329-4-wyRK6FeizS@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77329-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77329-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02945.txt.bz2
Content-length: 591

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77329

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |INVALID

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Not a bug.  Addresses of a label is only designed for computed goto.  Any other
use is undefined.

>		asm("jmp *%0" : : "r"(here));

Is not a computed goto statement.
>From gcc-bugs-return-535610-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 22:57:57 2016
Return-Path: <gcc-bugs-return-535610-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 23632 invoked by alias); 22 Aug 2016 22:57:57 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 23475 invoked by uid 48); 22 Aug 2016 22:57:45 -0000
From: "kargl at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/69860] ICE on missing end apostrophe with character(kind=4)
Date: Mon, 22 Aug 2016 22:57:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: kargl at gcc dot gnu.org
X-Bugzilla-Status: REOPENED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-69860-4-WPcTmRYCYR@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69860-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69860-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02946.txt.bz2
Content-length: 810

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69860

--- Comment #10 from kargl at gcc dot gnu.org ---
(In reply to Dominique d'Humieres from comment #9)
> > Like I said.  Works for me.
> 
> How many times did you try? It worked for me the first time, but then I
> tried -mavx -m32 and got an ICE, then I got the same ICE with -mavx only.
> Another instance of non-deterministic error recovery?

Is this enough times?

#! /bin/csh
foreach i (0 1 2 3 4 5 6 7 8 9)
   foreach j (0 1 2 3 4 5 6 7 8 9)
      gfc7 -c a.f90          |& tee sgk.log
      gfc7 -c -mavx a.f90    |& tee sgk.log
      gfc7 -c -m32 a.f90     |& tee sgk.log
      gfc7 -c -O a.f90       |& tee sgk.log
      gfc7 -c -O -mavx a.f90 |& tee sgk.log
      gfc7 -c -O -m32 a.f90  |& tee sgk.log
   end
end
grep -i internal sgk.log

No ICE.
>From gcc-bugs-return-535613-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 23:03:51 2016
Return-Path: <gcc-bugs-return-535613-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 31951 invoked by alias); 22 Aug 2016 23:03:51 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 31246 invoked by uid 48); 22 Aug 2016 23:03:38 -0000
From: "kfischer at college dot harvard.edu" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77333] New: Incorrect stack adjust in epilogue when targeting i686-w64-mingw32
Date: Mon, 22 Aug 2016 23:03:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: kfischer at college dot harvard.edu
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77333-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02949.txt.bz2
Content-length: 4810

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77333

            Bug ID: 77333
           Summary: Incorrect stack adjust in epilogue when targeting
                    i686-w64-mingw32
           Product: gcc
           Version: 6.1.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: target
          Assignee: unassigned at gcc dot gnu.org
          Reporter: kfischer at college dot harvard.edu
  Target Milestone: ---

This is reduced from https://github.com/JuliaLang/julia/issues/18162.
It appears that GCC miscompiles LLVM when targeting i686-w64-mingw32.
This behavior was observed on at least GCC 5.4.0 and 6.1.0.
GCC 4.9 was confirmed to not have this problem.

To reproduce:
```
git clone https://github.com/llvm-mirror/llvm
(cd llvm && git checkout release_37)
mkdir llvm-build
(cd llvm-build && \
../llvm/configure --build=x86_64-linux-gnu --host=i686-w64-mingw32
--enable-optimized CC=i686-w64-mingw32-gcc CXX="i686-w64-mingw32-g++ -g1
-funwind-tables -fasynchronous-unwind-tables" --enable-shared && \
make -j8)
cp llvm-build/Release+Asserts/bin/opt.exe
llvm-build/Release+Asserts/bin/LLVM-3.7.dll .
cp ~/cross-w32/i686-w64-mingw32/lib/libgcc_s_sjlj-1.dll
~/cross-w32/i686-w64-mingw32/lib/libstdc++-6.dll  .
wine ./opt.exe -slp-vectorizer -S
~/llvm/test/Transforms/SLPVectorizer/X86/vector.ll
```
(-g and unwind tables are only to make debugging easier, also happens without)

The problem appears to be the following:
```
Stopped in function
__ZN12_GLOBAL__N_113SLPVectorizer18tryToVectorizePairEPN4llvm5ValueES3_RNS_7BoUpSLPE.part.774
   0x00000000025cf853<+51>:     leal    24(%esp), %eax
   0x00000000025cf857<+55>:     calll   -2284
=> 0x00000000025cf85c<+60>:     subl    $12, %esp
   0x00000000025cf85f<+63>:     addl    $44, %esp
   0x00000000025cf862<+66>:     retl    $12
```
This code jumps to an invalid address once it hits the `retl`.
I believe the `subl 12` is incorrect, perhaps supposed to clean up a
corresponding retl $12` in the callee, when there actually isn't one [^1].
Moreover, stepping back one instruction (to the end of function being called
here) shows the stack intact and a plausible backtrace, lending further
credibility to this theory:
```
1|debug > rsi
Stopped in function
__ZN12_GLOBAL__N_113SLPVectorizer18tryToVectorizeListEN4llvm8ArrayRefIPNS1_5ValueEEERNS_7BoUpSLPES5_b.constprop.793
   0x00000000025cf051<+225>:    popl    %edi
   0x00000000025cf052<+226>:    popl    %ebp
=> 0x00000000025cf053<+227>:    retl
   0x00000000025cf054<+228>:    addl    $4, %ebx
   0x00000000025cf057<+231>:    cmpl    %ebx, %esi
1|debug > bt
[1]
__ZN12_GLOBAL__N_113SLPVectorizer18tryToVectorizeListEN4llvm8ArrayRefIPNS1_5ValueEEERNS_7BoUpSLPES5_b.constprop.793
[2]
__ZN12_GLOBAL__N_113SLPVectorizer18tryToVectorizePairEPN4llvm5ValueES3_RNS_7BoUpSLPE.part.774
[3]
__ZN12_GLOBAL__N_113SLPVectorizer22vectorizeChainsInBlockEPN4llvm10BasicBlockERNS_7BoUpSLPE
[4] __ZN12_GLOBAL__N_113SLPVectorizer13runOnFunctionERN4llvm8FunctionE.part.786
[5] __ZN4llvm13FPPassManager13runOnFunctionERNS_8FunctionE
[6] __ZN4llvm13FPPassManager11runOnModuleERNS_6ModuleE
[7] __ZN4llvm6legacy15PassManagerImpl3runERNS_6ModuleE
[8] Most likely <Unknown Module>
```
(full assembly of that function is here:
https://gist.github.com/Keno/cb45c3f1e925c6ae3484ca98f7300a4a)

Lastly, looking at the CFI of the crashing frame shows that it indeed expected
the stack pointer to have been adjusted up by 12 bytes after the call:
```
Stopped in function
__ZN12_GLOBAL__N_113SLPVectorizer18tryToVectorizePairEPN4llvm5ValueES3_RNS_7BoUpSLPE.part.774
   0x00000000025cf853<+51>:     leal    24(%esp), %eax
   0x00000000025cf857<+55>:     calll   -2284
=> 0x00000000025cf85c<+60>:     subl    $12, %esp
   0x00000000025cf85f<+63>:     addl    $44, %esp
   0x00000000025cf862<+66>:     retl    $12
1|debug > cfi
DW_CFA_def_cfa %esp 4
DW_CFA_offset %eip 1
DW_CFA_nop
DW_CFA_nop
--------------

DW_CFA_advance_loc 3 (=> 3)
DW_CFA_def_cfa_offset 48
DW_CFA_advance_loc 57 (=> 60)
DW_CFA_def_cfa_offset 36
DW_CFA_advance_loc 3 (=> 63)
--------------
DW_CFA_def_cfa_offset 48
DW_CFA_advance_loc 3 (=> 66)
DW_CFA_def_cfa_offset 4
```

[^1]: such cleanup happens when calling
__ZN12_GLOBAL__N_113SLPVectorizer18tryToVectorizePairEPN4llvm5ValueES3_RNS_7BoUpSLPE.part.774
```
1|debug > f 3
Stopped in function
__ZN12_GLOBAL__N_113SLPVectorizer22vectorizeChainsInBlockEPN4llvm10BasicBlockERNS_7BoUpSLPE
   0x00000000025d0727<+3319>:   movl    %ecx, 8(%esp)
   0x00000000025d072b<+3323>:   movl    40(%esp), %ecx
=> 0x00000000025d072f<+3327>:   calll   -3860
   0x00000000025d0734<+3332>:   subl    $12, %esp
   0x00000000025d0737<+3335>:   testb   %al, %al
```

Please let me know if I can provide any further information.
>From gcc-bugs-return-535612-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 23:03:44 2016
Return-Path: <gcc-bugs-return-535612-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 31305 invoked by alias); 22 Aug 2016 23:03:44 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 31190 invoked by uid 48); 22 Aug 2016 23:03:32 -0000
From: "gcc.hall at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug other/77332] ICE when building gcc 6.2 (with gcc 6,1.0)
Date: Mon, 22 Aug 2016 23:03:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: other
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: gcc.hall at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc bug_severity
Message-ID: <bug-77332-4-4qzJSMbsyC@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77332-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77332-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02948.txt.bz2
Content-length: 361

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77332

Jeremy <gcc.hall at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |gcc.hall at gmail dot com
           Severity|normal                      |major
>From gcc-bugs-return-535611-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 23:03:05 2016
Return-Path: <gcc-bugs-return-535611-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 30303 invoked by alias); 22 Aug 2016 23:03:05 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 30164 invoked by uid 48); 22 Aug 2016 23:02:52 -0000
From: "gcc.hall at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug other/77332] New: ICE when building gcc 6.2 (with gcc 6,1.0)
Date: Mon, 22 Aug 2016 23:03:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: other
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: gcc.hall at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77332-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02947.txt.bz2
Content-length: 2925

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77332

            Bug ID: 77332
           Summary: ICE when building gcc 6.2 (with gcc 6,1.0)
           Product: gcc
           Version: 6.1.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: other
          Assignee: unassigned at gcc dot gnu.org
          Reporter: gcc.hall at gmail dot com
  Target Milestone: ---

Linux x86_64.

Configured with: ../configure --disable-multilib --enable-languages=c,c++

The build failed with:-  

/tmp/gcc-6.2.0/obj/./prev-gcc/xg++ -B/tmp/gcc-6.2.0/obj/./prev-gcc/
-B/usr/local/x86_64-pc-linux-gnu/bin/ -nostdinc++
-B/tmp/gcc-6.2.0/obj/prev-x86_64-pc-linux-gnu/libstdc++-v3/src/.libs
-B/tmp/gcc-6.2.0/obj/prev-x86_64-pc-linux-gnu/libstdc++-v3/libsupc++/.libs 
-I/tmp/gcc-6.2.0/obj/prev-x86_64-pc-linux-gnu/libstdc++-v3/include/x86_64-pc-linux-gnu
 -I/tmp/gcc-6.2.0/obj/prev-x86_64-pc-linux-gnu/libstdc++-v3/include 
-I/tmp/gcc-6.2.0/libstdc++-v3/libsupc++
-L/tmp/gcc-6.2.0/obj/prev-x86_64-pc-linux-gnu/libstdc++-v3/src/.libs
-L/tmp/gcc-6.2.0/obj/prev-x86_64-pc-linux-gnu/libstdc++-v3/libsupc++/.libs
-fno-PIE -c   -g -O2 -gtoggle -DIN_GCC     -fno-exceptions -fno-rtti
-fasynchronous-unwind-tables -W -Wall -Wno-narrowing -Wwrite-strings
-Wcast-qual -Wmissing-format-attribute -Woverloaded-virtual -pedantic
-Wno-long-long -Wno-variadic-macros -Wno-overlength-strings   -DHAVE_CONFIG_H
-I. -I. -I../../gcc -I../../gcc/. -I../../gcc/../include
-I../../gcc/../libcpp/include -I/tmp/gcc-6.2.0/obj/./gmp -I/tmp/gcc-6.2.0/gmp
-I/tmp/gcc-6.2.0/obj/./mpfr -I/tmp/gcc-6.2.0/mpfr -I/tmp/gcc-6.2.0/mpc/src 
-I../../gcc/../libdecnumber -I../../gcc/../libdecnumber/bid -I../libdecnumber
-I../../gcc/../libbacktrace -I/tmp/gcc-6.2.0/obj/./isl/include
-I/tmp/gcc-6.2.0/isl/include  -o insn-latencytab.o -MT insn-latencytab.o -MMD
-MP -MF ./.deps/insn-latencytab.TPo insn-latencytab.c
../../gcc/lto/lto-lang.c: In function ‘void lto_define_builtins(tree, tree)’:
../../gcc/lto/lto-lang.c:727:1: internal compiler error: in df_refs_verify, at
df-scan.c:4022
 }
 ^
0xc21563 df_refs_verify
        ../../gcc/df-scan.c:4022
0xc2175f df_insn_refs_verify
        ../../gcc/df-scan.c:4102
0xc21928 df_bb_verify
        ../../gcc/df-scan.c:4131
0xc21e76 df_scan_verify()
        ../../gcc/df-scan.c:4263
0xc0cc29 df_verify()
        ../../gcc/df-core.c:1831
0xc0b537 df_analyze_1
        ../../gcc/df-core.c:1217
0xc0b8d9 df_analyze()
        ../../gcc/df-core.c:1294
0x19bb34b execute_rtl_cprop
        ../../gcc/cprop.c:1875
0x19bb44c execute
        ../../gcc/cprop.c:1914
Please submit a full bug report,
with preprocessed source if appropriate.
Please include the complete backtrace with any bug report.
See <http://gcc.gnu.org/bugs.html> for instructions.
make[3]: *** [Makefile:1085: lto/lto-lang.o] Error 1
make[3]: *** Waiting for unfinished jobs....
>From gcc-bugs-return-535614-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Aug 22 23:34:02 2016
Return-Path: <gcc-bugs-return-535614-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 104882 invoked by alias); 22 Aug 2016 23:34:02 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 104819 invoked by uid 48); 22 Aug 2016 23:33:50 -0000
From: "inadgob at yahoo dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/77334] New: Cannot move assign std::map with non-copyable and non-movable mapped_type
Date: Mon, 22 Aug 2016 23:34:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: inadgob at yahoo dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77334-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02950.txt.bz2
Content-length: 1282

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77334

            Bug ID: 77334
           Summary: Cannot move assign std::map with non-copyable and
                    non-movable mapped_type
           Product: gcc
           Version: 6.1.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: libstdc++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: inadgob at yahoo dot com
  Target Milestone: ---

Consider the following code: 


#include <map>

struct A
{
   A(A&&) = delete;
};

int main()
{
   std::map<int, A> m1, m2;
   m2 = std::move(m1);
}


The move assignment is rejected; diagnostics here:
http://melpon.org/wandbox/permlink/s3MafVYFzQrUMN4F.

According to the allocator-aware container requirements table in
[container.requirements.general], there should be no special requirements on
value_type in this case, so the assignment should work.

This is due to the use of an if statement instead of tag dispatching to check
the allocator traits in the implementation of _Rb_tree's move assignment
operator. 

The issue seems to have appeared in version 4.9.0.

The example that prompted this bug report and more details are available here:
http://stackoverflow.com/q/39040609/4326278.
>From gcc-bugs-return-535615-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 00:06:48 2016
Return-Path: <gcc-bugs-return-535615-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 30404 invoked by alias); 23 Aug 2016 00:06:48 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 30281 invoked by uid 48); 23 Aug 2016 00:06:35 -0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/77332] ICE when building gcc 6.2 (with gcc 6.1.0)
Date: Tue, 23 Aug 2016 00:06:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: build, ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords component bug_severity
Message-ID: <bug-77332-4-jDcu82DijE@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77332-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77332-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02951.txt.bz2
Content-length: 435

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77332

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |build, ice-on-valid-code
          Component|other                       |rtl-optimization
           Severity|major                       |normal
>From gcc-bugs-return-535616-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 00:22:17 2016
Return-Path: <gcc-bugs-return-535616-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 59566 invoked by alias); 23 Aug 2016 00:22:17 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 59472 invoked by uid 48); 23 Aug 2016 00:22:04 -0000
From: "pyer4 at free dot fr" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77335] New: templates and ambiguous call to overloaded function
Date: Tue, 23 Aug 2016 00:22:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.2.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pyer4 at free dot fr
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77335-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02952.txt.bz2
Content-length: 2240

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77335

            Bug ID: 77335
           Summary: templates and ambiguous call to overloaded function
           Product: gcc
           Version: 6.2.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: pyer4 at free dot fr
  Target Milestone: ---

In some cases, function overloading seems to create ambiguity. When the
function contains multiple template arguments. Encountered on MSVC2015, and
tested at : http://melpon.org/wandbox/permlink/mtfWJXEtQ8lEP8ub

template<class> struct A { };
template<template<class> class, class> struct B { };
template<class, class> struct C { };

template<template<class> class TT, class T, class U> void f(TT<T>, B<TT, T>, U)
{ }
template<template<class> class TT, class T, class V> void f(TT<T>, B<TT, T>,
C<TT<T>, V>) { }

int main()
{
   A<int> a;
   B<A, int> b;
   C<A<int>, long> c;
   f(a, b, c);//ambiguity error
}

--------------------------------------------------
Another example :

template <class T>
class BX {
public :
    BX() {}
    ~BX() {}
};

template <class T1, class T2>
class G {
public :
    G() {}
    ~G() {}
};

template <template <class T> class T1, class T>
class DT {};

class B {
public :
    template <template <class T> class T1, class T, class M>
    static void func(const M& m, const DT<T1, T>* dt, T1<T>& val) {}

    template <template <class T> class T1, class T, class M>
    static void func(const G<T1<T>, M>& g, const DT<T1, T>* dt, T1<T>& val) {}

    //here is a small variation of func as a test
    template <template <class T> class T1, class T, class M>
    static void func2(const M& m, const DT<T1, T>* dt) {}

    template <template <class T> class T1, class T, class M>
    static void func2(const G<T1<T>, M>& g, const DT<T1, T>* dt) {}
};

int main() {
    BX< int > bx;
    G<BX< int >, int> g;
    DT<BX, int>* dt;
    B::func(g, dt, bx);//Error  C2668   'B::func': ambiguous call to overloaded
function
    B::func2(g, dt);//no error
}

Problem also submitted at :
http://stackoverflow.com/questions/39060180/c-templates-and-ambiguous-call-to-overloaded-function
>From gcc-bugs-return-535617-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 02:37:42 2016
Return-Path: <gcc-bugs-return-535617-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 62224 invoked by alias); 23 Aug 2016 02:37:42 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 62121 invoked by uid 48); 23 Aug 2016 02:37:28 -0000
From: "msebor at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/77336] New: -Wsuggest-attribute=format warning overly simplistic
Date: Tue, 23 Aug 2016 02:37:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: msebor at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77336-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02953.txt.bz2
Content-length: 2434

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77336

            Bug ID: 77336
           Summary: -Wsuggest-attribute=format warning overly simplistic
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: msebor at gcc dot gnu.org
  Target Milestone: ---

In my work on the -Wformat-length pass (PR 49905) after introducing a call to
the diagnostic_set_info() function decorated with ATTRIBUTE_GCC_DIAG(2,0) I
started seeing -Wsuggest-attribute=format warnings similar to those below:

/src/gcc/49905/gcc/gimple-ssa-sprintf.c: In function ‘void
{anonymous}::format_directive(const
{anonymous}::pass_sprintf_length::call_info&, {anonymous}::format_result*,
const char*, size_t, const {anonymous}::conversion_spec&, tree)’:
/src/gcc/49905/gcc/gimple-ssa-sprintf.c:1836:15: warning: function might be
possible candidate for ‘gcc_tdiag’ format attribute
[-Wsuggest-attribute=format]
         navail);
               ^

Since the warning isn't appropriate in my case I looked into the logic that
triggers it to see how it could be suppressed.  The following is an example
that demonstrates a case where the warning is unhelpful and where it shouldn't
be issued.  The check_function_format() function in c-format.c that's
responsible for issuing the warning simply looks for any char* argument to the
current function and if one exists and the current function calls a function
with attribute format, it issues a -Wsuggest-attribute=format warning
regardless of whether or not the format string is related to the function
argument.  It seems to me that the warning should not be issued if the format
is literal as in the case below since a function that hardcodes the format
string is unlikely to be a candidate for the attribute.

$ cat t.c && /build/gcc-49905/gcc/xgcc -B /build/gcc-49905/gcc -S -Wformat
-Wformat-signedness -Wsuggest-attribute=format t.c
#include <stdio.h>

void f (const char *fname, __builtin_va_list va)
{
  FILE *f = fopen (fname, "w");
  vfprintf (f, "%i", va);
  fclose (f);
}
t.c: In function ‘f’:
t.c:6:3: warning: function might be possible candidate for ‘gnu_printf’ format
attribute [-Wsuggest-attribute=format]
   vfprintf (f, "%i", va);
   ^~~~~~~~
>From gcc-bugs-return-535618-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 02:46:49 2016
Return-Path: <gcc-bugs-return-535618-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 80669 invoked by alias); 23 Aug 2016 02:46:48 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 80529 invoked by uid 48); 23 Aug 2016 02:46:36 -0000
From: "amodra at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/77324] [7 regression] ICE in push_reload, at reload.c:1350
Date: Tue, 23 Aug 2016 02:46:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: amodra at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-77324-4-Tp5UfI3zMs@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77324-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77324-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02954.txt.bz2
Content-length: 632

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77324

Alan Modra <amodra at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |amodra at gmail dot com

--- Comment #3 from Alan Modra <amodra at gmail dot com> ---
It is very likely that the patch exposed a pre-existing sparc backend problem.

I expect you'll find that sparc_legitimate_address_p when non-strict is
rejecting the output of sparc_legitimize_reload_address, or you have a
constraint that is rejecting the same.
>From gcc-bugs-return-535619-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 03:47:08 2016
Return-Path: <gcc-bugs-return-535619-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 38980 invoked by alias); 23 Aug 2016 03:47:07 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 36190 invoked by uid 48); 23 Aug 2016 03:46:21 -0000
From: "malithyapa at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/71776] relocation truncated to fit: R_ARM_THM_JUMP11 against symbol `__gnu_h2f_internal'
Date: Tue, 23 Aug 2016 03:47:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 4.9.3
X-Bugzilla-Keywords: link-failure
X-Bugzilla-Severity: normal
X-Bugzilla-Who: malithyapa at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71776-4-4baGiIv0Hc@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71776-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71776-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02955.txt.bz2
Content-length: 153

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71776

--- Comment #6 from malithyapa at gmail dot com ---
Tried with 4.9.4 in debian sid. Still the same
>From gcc-bugs-return-535620-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 04:43:29 2016
Return-Path: <gcc-bugs-return-535620-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 105830 invoked by alias); 23 Aug 2016 04:43:28 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 105694 invoked by uid 48); 23 Aug 2016 04:43:12 -0000
From: "lucdanton at free dot fr" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77337] New: [7 regression][c++1z] use before deduction of 'auto'
Date: Tue, 23 Aug 2016 04:43:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: lucdanton at free dot fr
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77337-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02956.txt.bz2
Content-length: 1977

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77337

            Bug ID: 77337
           Summary: [7 regression][c++1z] use before deduction of 'auto'
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: lucdanton at free dot fr
  Target Milestone: ---

The included program compiles on 6.1 and I think on the 6.2 branch (I would
need definite confirmation however), with either -std=c++14 or -std=c++1z.

On 7 trunk (rev. 239676) it compiles as well with the following:
$ g++-trunk -std=c++14 main.cpp

but it fails in c++1z mode:
$ g++-trunk -std=c++1z main.cpp                      
main.cpp: In instantiation of 'main()::<lambda(auto:1&)> [with auto:1 =
fix_type<main()::<lambda(auto:1&)> >]':
main.cpp:6:27:   required from 'decltype(auto) fix_type<Functor>::operator()()
[with Functor = main()::<lambda(auto:1&)>]'
main.cpp:25:17:   required from here
main.cpp:21:17: error: use of 'decltype(auto) fix_type<Functor>::operator()()
[with Functor = main()::<lambda(auto:1&)>]' before deduction of 'auto'
             self();
             ~~~~^~

I'm not 100% sure that GCC should accept the program though. FWIW Clang accepts
it.

//------------------

template<typename Functor>
struct fix_type {
    Functor functor;

    decltype(auto) operator()()
    { return functor(*this); }
};

template<typename Functor>
fix_type<Functor> fix(Functor functor)
{ return { functor }; }

int main()
{
    auto zero = fix(
        [](auto& self) -> int // N.B. non-deduced, non-dependent return type
        {
            return 0;

            // error: use of 'decltype(auto) fix_type<Functor>::operator()()
[with Functor = main()::<lambda(auto:1&)>]' before deduction of 'auto'
            self();
        }
    );

    return zero();
}
>From gcc-bugs-return-535621-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 06:31:06 2016
Return-Path: <gcc-bugs-return-535621-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 120786 invoked by alias); 23 Aug 2016 06:31:05 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 120605 invoked by uid 48); 23 Aug 2016 06:30:51 -0000
From: "lucdanton at free dot fr" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/68372] [concepts] invalid use of pack expansion expression in member function template declaration
Date: Tue, 23 Aug 2016 06:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: lucdanton at free dot fr
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-68372-4-fARekMIm9y@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68372-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68372-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02957.txt.bz2
Content-length: 2254

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68372

--- Comment #1 from lucdanton at free dot fr ---
On 7 trunk (rev. 239680) it looks like the program now triggers an ICE:

$ g++-trunk -std=c++1z -fconcepts main.cpp
main.cpp: In substitution of 'template<class ... X>  requires  C<X>... void
foo::bar(X ...) [with X = {}]':
main.cpp:18:16:   required from here
main.cpp:11:10: internal compiler error: in tsubst_constraint, at
cp/constraint.cc:1957
     void bar(X...)
          ^~~
0x764263 tsubst_constraint(tree_node*, tree_node*, int, tree_node*)
        ../../gcc/gcc/cp/constraint.cc:1957
0x764362 tsubst_constraint_info(tree_node*, tree_node*, int, tree_node*)
        ../../gcc/gcc/cp/constraint.cc:1919
0x661f65 tsubst_decl
        ../../gcc/gcc/cp/pt.c:11967
0x667834 tsubst(tree_node*, tree_node*, int, tree_node*)
        ../../gcc/gcc/cp/pt.c:12907
0x670290 instantiate_template_1
        ../../gcc/gcc/cp/pt.c:17558
0x670290 instantiate_template(tree_node*, tree_node*, int)
        ../../gcc/gcc/cp/pt.c:17609
0x67701a fn_type_unification(tree_node*, tree_node*, tree_node*, tree_node*
const*, unsigned int, tree_node*, unification_kind_t, int, bool, bool)
        ../../gcc/gcc/cp/pt.c:17984
0x62a048 add_template_candidate_real
        ../../gcc/gcc/cp/call.c:3119
0x62a813 add_template_candidate
        ../../gcc/gcc/cp/call.c:3197
0x62a813 add_candidates
        ../../gcc/gcc/cp/call.c:5384
0x62afe5 build_new_method_call_1
        ../../gcc/gcc/cp/call.c:8421
0x62afe5 build_new_method_call(tree_node*, tree_node*, vec<tree_node*, va_gc,
vl_embed>**, tree_node*, int, tree_node**, int)
        ../../gcc/gcc/cp/call.c:8620
0x6bb668 cp_parser_postfix_expression
        ../../gcc/gcc/cp/parser.c:6908
0x6b9832 cp_parser_unary_expression
        ../../gcc/gcc/cp/parser.c:8019
0x6c1787 cp_parser_cast_expression
        ../../gcc/gcc/cp/parser.c:8696
0x6c1d53 cp_parser_binary_expression
        ../../gcc/gcc/cp/parser.c:8797
0x6c2434 cp_parser_assignment_expression
        ../../gcc/gcc/cp/parser.c:9084
0x6c48aa cp_parser_expression
        ../../gcc/gcc/cp/parser.c:9253
0x6c4e8f cp_parser_expression_statement
        ../../gcc/gcc/cp/parser.c:10736
0x6d17d4 cp_parser_statement
        ../../gcc/gcc/cp/parser.c:10587
>From gcc-bugs-return-535622-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 06:42:35 2016
Return-Path: <gcc-bugs-return-535622-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 129986 invoked by alias); 23 Aug 2016 06:42:35 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 129858 invoked by uid 48); 23 Aug 2016 06:42:22 -0000
From: "su at cs dot ucdavis.edu" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77338] New: ICE on invalid C++11 code on x86_64-linux-gnu: Segmentation fault
Date: Tue, 23 Aug 2016 06:42:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: su at cs dot ucdavis.edu
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77338-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02958.txt.bz2
Content-length: 3287

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77338

            Bug ID: 77338
           Summary: ICE on invalid C++11 code on x86_64-linux-gnu:
                    Segmentation fault
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: su at cs dot ucdavis.edu
  Target Milestone: ---

This is a regression from 6.x. 


$ g++-trunk -v
Using built-in specs.
COLLECT_GCC=g++-trunk
COLLECT_LTO_WRAPPER=/usr/local/gcc-trunk/libexec/gcc/x86_64-pc-linux-gnu/7.0.0/lto-wrapper
Target: x86_64-pc-linux-gnu
Configured with: ../gcc-source-trunk/configure --enable-languages=c,c++,lto
--prefix=/usr/local/gcc-trunk --disable-bootstrap
Thread model: posix
gcc version 7.0.0 20160822 (experimental) [trunk revision 239655] (GCC) 
$ 
$ g++-trunk -c small.cpp
small.cpp:3:51: internal compiler error: Segmentation fault
 template < typename > auto f (S s)->decltype (s (s));
                                                   ^
0xdd5bff crash_signal
        ../../gcc-source-trunk/gcc/toplev.c:335
0x749d5b tree_check
        ../../gcc-source-trunk/gcc/tree.h:3022
0x749d5b is_really_empty_class(tree_node*)
        ../../gcc-source-trunk/gcc/cp/class.c:8447
0x8b7832 cxx_eval_constant_expression
        ../../gcc-source-trunk/gcc/cp/constexpr.c:3750
0x8bdba9 cxx_eval_outermost_constant_expr
        ../../gcc-source-trunk/gcc/cp/constexpr.c:4390
0x8c10fe fold_non_dependent_expr(tree_node*)
        ../../gcc-source-trunk/gcc/cp/constexpr.c:4669
0x6c98e4 build_non_dependent_expr(tree_node*)
        ../../gcc-source-trunk/gcc/cp/pt.c:23818
0x821b50 finish_call_expr(tree_node*, vec<tree_node*, va_gc, vl_embed>**, bool,
bool, int)
        ../../gcc-source-trunk/gcc/cp/semantics.c:2329
0x798780 cp_parser_postfix_expression
        ../../gcc-source-trunk/gcc/cp/parser.c:6937
0x79993d cp_parser_decltype_expr
        ../../gcc-source-trunk/gcc/cp/parser.c:13266
0x79993d cp_parser_decltype
        ../../gcc-source-trunk/gcc/cp/parser.c:13367
0x797bf7 cp_parser_simple_type_specifier
        ../../gcc-source-trunk/gcc/cp/parser.c:16258
0x793e71 cp_parser_type_specifier
        ../../gcc-source-trunk/gcc/cp/parser.c:16049
0x7963e2 cp_parser_type_specifier_seq
        ../../gcc-source-trunk/gcc/cp/parser.c:20184
0x7a0ac2 cp_parser_type_id_1
        ../../gcc-source-trunk/gcc/cp/parser.c:20046
0x7a0286 cp_parser_trailing_type_id
        ../../gcc-source-trunk/gcc/cp/parser.c:20118
0x7a0286 cp_parser_late_return_type_opt
        ../../gcc-source-trunk/gcc/cp/parser.c:19958
0x7a0286 cp_parser_direct_declarator
        ../../gcc-source-trunk/gcc/cp/parser.c:19147
0x7a0286 cp_parser_declarator
        ../../gcc-source-trunk/gcc/cp/parser.c:18967
0x7b6035 cp_parser_init_declarator
        ../../gcc-source-trunk/gcc/cp/parser.c:18512
Please submit a full bug report,
with preprocessed source if appropriate.
Please include the complete backtrace with any bug report.
See <http://gcc.gnu.org/bugs.html> for instructions.
$ 


---------------------------------------------------------


struct S; //OK: struct S {  void operator () (S); }; 

template < typename > auto f (S s)->decltype (s (s));
>From gcc-bugs-return-535623-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 06:45:58 2016
Return-Path: <gcc-bugs-return-535623-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 1765 invoked by alias); 23 Aug 2016 06:45:55 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 1627 invoked by uid 48); 23 Aug 2016 06:45:40 -0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/77334] [5/6/7 Regression] Cannot move assign std::map with non-copyable and non-movable mapped_type
Date: Tue, 23 Aug 2016 06:45:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: redi at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on assigned_to short_desc everconfirmed
Message-ID: <bug-77334-4-aFL88bA7dt@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77334-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77334-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02959.txt.bz2
Content-length: 778

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77334

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |ASSIGNED
   Last reconfirmed|                            |2016-08-23
           Assignee|unassigned at gcc dot gnu.org      |redi at gcc dot gnu.org
            Summary|Cannot move assign std::map |[5/6/7 Regression] Cannot
                   |with non-copyable and       |move assign std::map with
                   |non-movable mapped_type     |non-copyable and
                   |                            |non-movable mapped_type
     Ever confirmed|0                           |1
>From gcc-bugs-return-535624-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 07:01:23 2016
Return-Path: <gcc-bugs-return-535624-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 53383 invoked by alias); 23 Aug 2016 07:01:23 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 50954 invoked by uid 48); 23 Aug 2016 07:01:10 -0000
From: "su at cs dot ucdavis.edu" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77339] New: ICE on invalid C++ code on x86_64-linux-gnu: in cp_parser_type_name, at cp/parser.c:16532
Date: Tue, 23 Aug 2016 07:01:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: su at cs dot ucdavis.edu
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77339-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02960.txt.bz2
Content-length: 2777

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77339

            Bug ID: 77339
           Summary: ICE on invalid C++ code on x86_64-linux-gnu: in
                    cp_parser_type_name, at cp/parser.c:16532
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: su at cs dot ucdavis.edu
  Target Milestone: ---

It affects 4.8.x and later, and is a regression from 4.7.x.


$ g++-trunk -v
Using built-in specs.
COLLECT_GCC=g++-trunk
COLLECT_LTO_WRAPPER=/usr/local/gcc-trunk/libexec/gcc/x86_64-pc-linux-gnu/7.0.0/lto-wrapper
Target: x86_64-pc-linux-gnu
Configured with: ../gcc-source-trunk/configure --enable-languages=c,c++,lto
--prefix=/usr/local/gcc-trunk --disable-bootstrap
Thread model: posix
gcc version 7.0.0 20160822 (experimental) [trunk revision 239655] (GCC) 
$ 
$ g++-trunk -c small.cpp
small.cpp:3:25: internal compiler error: in cp_parser_type_name, at
cp/parser.c:16532
 template < typename X > A < X >::a;
                         ^~~~~~~
0x7a94ec cp_parser_type_name
        ../../gcc-source-trunk/gcc/cp/parser.c:16532
0x797f89 cp_parser_type_name
        ../../gcc-source-trunk/gcc/cp/parser.c:16482
0x797f89 cp_parser_simple_type_specifier
        ../../gcc-source-trunk/gcc/cp/parser.c:16396
0x793e71 cp_parser_type_specifier
        ../../gcc-source-trunk/gcc/cp/parser.c:16049
0x7a8d33 cp_parser_decl_specifier_seq
        ../../gcc-source-trunk/gcc/cp/parser.c:12889
0x7b7d15 cp_parser_single_declaration
        ../../gcc-source-trunk/gcc/cp/parser.c:25934
0x7b808c cp_parser_template_declaration_after_parameters
        ../../gcc-source-trunk/gcc/cp/parser.c:25630
0x7b8aa1 cp_parser_explicit_template_declaration
        ../../gcc-source-trunk/gcc/cp/parser.c:25861
0x7b8aa1 cp_parser_template_declaration_after_export
        ../../gcc-source-trunk/gcc/cp/parser.c:25879
0x7c00e9 cp_parser_declaration
        ../../gcc-source-trunk/gcc/cp/parser.c:12209
0x7beb34 cp_parser_declaration_seq_opt
        ../../gcc-source-trunk/gcc/cp/parser.c:12139
0x7bee78 cp_parser_translation_unit
        ../../gcc-source-trunk/gcc/cp/parser.c:4356
0x7bee78 c_parse_file()
        ../../gcc-source-trunk/gcc/cp/parser.c:37671
0x92c462 c_common_parse_file()
        ../../gcc-source-trunk/gcc/c-family/c-opts.c:1073
Please submit a full bug report,
with preprocessed source if appropriate.
Please include the complete backtrace with any bug report.
See <http://gcc.gnu.org/bugs.html> for instructions.
$ 


-------------------------------------------


template < typename > using A = int;

//OK: template < typename X > A < X > a; 
template < typename X > A < X >::a;
>From gcc-bugs-return-535625-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 07:22:24 2016
Return-Path: <gcc-bugs-return-535625-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 93124 invoked by alias); 23 Aug 2016 07:22:24 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 93000 invoked by uid 55); 23 Aug 2016 07:22:10 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug lto/77305] [7 Regression] -fdump-tree-all and -flto causes ICE
Date: Tue, 23 Aug 2016 07:22:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: lto
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77305-4-5v6GW2iNoB@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77305-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77305-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02961.txt.bz2
Content-length: 499

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77305

--- Comment #3 from Richard Biener <rguenth at gcc dot gnu.org> ---
Author: rguenth
Date: Tue Aug 23 07:21:36 2016
New Revision: 239683

URL: https://gcc.gnu.org/viewcvs?rev=239683&root=gcc&view=rev
Log:
2016-08-23  Richard Biener  <rguenther@suse.de>

        PR middle-end/77305
        * statistics.c (statistics_counter_event): Robustify against
        NULL current_pass.

Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/statistics.c
>From gcc-bugs-return-535626-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 07:24:21 2016
Return-Path: <gcc-bugs-return-535626-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 96494 invoked by alias); 23 Aug 2016 07:24:20 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 96076 invoked by uid 55); 23 Aug 2016 07:23:56 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/27336] delete null checks in callers to nonnull functions
Date: Tue, 23 Aug 2016 07:24:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 4.1.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-27336-4-mb4w8WNLtd@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-27336-4@http.gcc.gnu.org/bugzilla/>
References: <bug-27336-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02962.txt.bz2
Content-length: 705

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=27336

--- Comment #12 from Richard Biener <rguenth at gcc dot gnu.org> ---
Author: rguenth
Date: Tue Aug 23 07:23:19 2016
New Revision: 239684

URL: https://gcc.gnu.org/viewcvs?rev=239684&root=gcc&view=rev
Log:
2016-08-23  Richard Biener  <rguenther@suse.de>

        PR tree-optimization/27336
        * tree-vrp.c (infer_value_range): Handle stmts that can throw
        by looking for a non-EH edge.
        (process_assert_insertions_for): Likewise.

        * c-c++-common/pr27336.c: New testcase.

Added:
    trunk/gcc/testsuite/c-c++-common/pr27336.c
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/tree-vrp.c
>From gcc-bugs-return-535627-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 07:30:07 2016
Return-Path: <gcc-bugs-return-535627-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 107318 invoked by alias); 23 Aug 2016 07:30:06 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 106984 invoked by uid 48); 23 Aug 2016 07:29:52 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug lto/77305] [7 Regression] -fdump-tree-all and -flto causes ICE
Date: Tue, 23 Aug 2016 07:30:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: lto
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-77305-4-HCar2lqG2A@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77305-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77305-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02963.txt.bz2
Content-length: 429

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77305

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
Fixed.
>From gcc-bugs-return-535628-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 07:30:28 2016
Return-Path: <gcc-bugs-return-535628-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 108254 invoked by alias); 23 Aug 2016 07:30:28 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 107455 invoked by uid 48); 23 Aug 2016 07:30:07 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/27336] delete null checks in callers to nonnull functions
Date: Tue, 23 Aug 2016 07:30:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 4.1.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution target_milestone
Message-ID: <bug-27336-4-r4BQY74lZC@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-27336-4@http.gcc.gnu.org/bugzilla/>
References: <bug-27336-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02964.txt.bz2
Content-length: 483

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=27336

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED
   Target Milestone|---                         |7.0

--- Comment #13 from Richard Biener <rguenth at gcc dot gnu.org> ---
Fixed.
>From gcc-bugs-return-535629-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 07:43:13 2016
Return-Path: <gcc-bugs-return-535629-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 42905 invoked by alias); 23 Aug 2016 07:43:13 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 42776 invoked by uid 48); 23 Aug 2016 07:43:00 -0000
From: "steven.shi at intel dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/50818] va_list is filled incorrectly in functions with ms_abi attribute on amd64
Date: Tue, 23 Aug 2016 07:43:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 4.4.5
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: steven.shi at intel dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-50818-4-6Agsmpy1Cq@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-50818-4@http.gcc.gnu.org/bugzilla/>
References: <bug-50818-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02965.txt.bz2
Content-length: 1075

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=50818

--- Comment #9 from Steven Shi <steven.shi at intel dot com> ---
GCC6.10 lto fails to support below MS ABI buildin of va list, but GCC5 works.
This is a regression bug for GCC6. I suspect current GCC trunk also has this
regression bug.
  __builtin_ms_va_list ap;
  __builtin_ms_va_start (ap, n);
  __builtin_ms_va_end (ap);

Below is my testcase:
$cat test2.c

#include <stdio.h>

int
__attribute__((ms_abi))
foo (int n, ...)
{
  __builtin_ms_va_list ap;
  int sum = 0;

  __builtin_ms_va_start (ap, n);

  while (n--) {
    sum += __builtin_va_arg (ap, int);
    printf("sum = %d\n", sum);
  }
  __builtin_ms_va_end (ap);

  return sum;
}

int main ()
{
  int res = foo (10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10);

  if (res != 55)
    __builtin_abort ();

  return 0;
}
$ gcc --version
gcc (GCC) 6.1.0

$ gcc -flto -Os test2.c
$ ./a.out
Segmentation fault (core dumped)

$ gcc-5 -flto -Os test2.c
$ ./a.out
sum = 1
sum = 3
sum = 6
sum = 10
sum = 15
sum = 21
sum = 28
sum = 36
sum = 45
sum = 55
>From gcc-bugs-return-535630-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 07:46:52 2016
Return-Path: <gcc-bugs-return-535630-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 47888 invoked by alias); 23 Aug 2016 07:46:52 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 47726 invoked by uid 48); 23 Aug 2016 07:46:39 -0000
From: "ian at geometrian dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77340] New: Invalid (Stack Smashing) Code Generated In Simple Cases With Debug-Mode Vectors
Date: Tue, 23 Aug 2016 07:46:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: major
X-Bugzilla-Who: ian at geometrian dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status keywords bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77340-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02966.txt.bz2
Content-length: 1027

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77340

            Bug ID: 77340
           Summary: Invalid (Stack Smashing) Code Generated In Simple
                    Cases With Debug-Mode Vectors
           Product: gcc
           Version: 6.1.1
            Status: UNCONFIRMED
          Keywords: wrong-code
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: ian at geometrian dot com
  Target Milestone: ---

Simple test case:

    //func.hpp
    #define _GLIBCXX_DEBUG
    #include <vector>
    std::vector<int> func();

    //func.cpp
    #include "func.hpp"
    std::vector<int> func() { return std::vector<int>(); }

    //main.cpp
    #include <cstdio> //Necessary to cause error
    #include "func.hpp"
    int main(int /*argc*/, char* /*argv*/[]) {
        func(); return 0;
    }

Compile with "g++ *.cpp" and run ("./a.out").  Produces:

    *** stack smashing detected ***: ./a.out terminated
    Aborted (core dumped)
>From gcc-bugs-return-535631-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 07:59:34 2016
Return-Path: <gcc-bugs-return-535631-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 37923 invoked by alias); 23 Aug 2016 07:59:34 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 37877 invoked by uid 48); 23 Aug 2016 07:59:28 -0000
From: "steven.shi at intel dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/77341] New: GCC6 va_list MS ABI buildin regression bug
Date: Tue, 23 Aug 2016 07:59:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: critical
X-Bugzilla-Who: steven.shi at intel dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77341-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02967.txt.bz2
Content-length: 1483

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77341

            Bug ID: 77341
           Summary: GCC6 va_list MS ABI buildin regression bug
           Product: gcc
           Version: 6.1.0
            Status: UNCONFIRMED
          Severity: critical
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: steven.shi at intel dot com
  Target Milestone: ---

GCC6.10 lto fails to support below MS ABI buildin of va list, but GCC5 works.
This is a regression bug for GCC6. I suspect current GCC trunk also has this
regression bug.
  __builtin_ms_va_list ap;
  __builtin_ms_va_start (ap, n);
  __builtin_ms_va_end (ap);

Below is my testcase:
$cat test2.c

#include <stdio.h>

int
__attribute__((ms_abi))
foo (int n, ...)
{
  __builtin_ms_va_list ap;
  int sum = 0;

  __builtin_ms_va_start (ap, n);

  while (n--) {
    sum += __builtin_va_arg (ap, int);
    printf("sum = %d\n", sum);
  }
  __builtin_ms_va_end (ap);

  return sum;
}

int main ()
{
  int res = foo (10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10);

  if (res != 55)
    __builtin_abort ();

  return 0;
}
$ gcc --version
gcc (GCC) 6.1.0

$ gcc -flto -Os test2.c
$ ./a.out
Segmentation fault (core dumped)

$ gcc-5 -flto -Os test2.c
$ ./a.out
sum = 1
sum = 3
sum = 6
sum = 10
sum = 15
sum = 21
sum = 28
sum = 36
sum = 45
sum = 55

BTW, I've raised this issue in below bug comments:
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=50818
>From gcc-bugs-return-535632-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 08:22:34 2016
Return-Path: <gcc-bugs-return-535632-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 57132 invoked by alias); 23 Aug 2016 08:22:34 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 57050 invoked by uid 48); 23 Aug 2016 08:22:21 -0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77340] Invalid (Stack Smashing) Code Generated In Simple Cases With Debug-Mode Vectors
Date: Tue, 23 Aug 2016 08:22:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: major
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-77340-4-yo0LAzWAJn@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77340-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77340-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02968.txt.bz2
Content-length: 647

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77340

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |INVALID

--- Comment #1 from Jonathan Wakely <redi at gcc dot gnu.org> ---
Not a bug. Debug mode changes the ABI of types, so you need to recompile
anything that passes those types between translation units. This is documented
at https://gcc.gnu.org/onlinedocs/libstdc++/manual/debug_mode_using.html
>From gcc-bugs-return-535633-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 08:26:34 2016
Return-Path: <gcc-bugs-return-535633-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 67417 invoked by alias); 23 Aug 2016 08:26:34 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 67296 invoked by uid 48); 23 Aug 2016 08:26:21 -0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77340] Invalid (Stack Smashing) Code Generated In Simple Cases With Debug-Mode Vectors
Date: Tue, 23 Aug 2016 08:26:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: major
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-77340-4-81wR1ANre0@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77340-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77340-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02969.txt.bz2
Content-length: 523

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77340

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |UNCONFIRMED
         Resolution|INVALID                     |---

--- Comment #2 from Jonathan Wakely <redi at gcc dot gnu.org> ---
Oh sorry, I misread the code. Both cpp files do use _GLIBCXX_DEBUG, let me
check what's happening here.
>From gcc-bugs-return-535634-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 08:30:56 2016
Return-Path: <gcc-bugs-return-535634-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 77011 invoked by alias); 23 Aug 2016 08:30:55 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 76801 invoked by uid 48); 23 Aug 2016 08:30:37 -0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77340] Invalid (Stack Smashing) Code Generated In Simple Cases With Debug-Mode Vectors
Date: Tue, 23 Aug 2016 08:30:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: major
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-77340-4-7dXxLyAa1p@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77340-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77340-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02970.txt.bz2
Content-length: 659

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77340

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |INVALID

--- Comment #3 from Jonathan Wakely <redi at gcc dot gnu.org> ---
Ah no, as I thought ... main.cpp includes a standard library header before
_GLIBCXX_DEBUG is defined, and defining it after that is too late.

You need to define _GLIBCXX_DEBUG on the command line, or before including any
other headers.
>From gcc-bugs-return-535635-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 08:42:12 2016
Return-Path: <gcc-bugs-return-535635-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 80342 invoked by alias); 23 Aug 2016 08:42:12 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 80197 invoked by uid 48); 23 Aug 2016 08:41:57 -0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/77342] New: Use abi_tag on Debug Mode namespace
Date: Tue, 23 Aug 2016 08:42:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77342-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02971.txt.bz2
Content-length: 1242

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77342

            Bug ID: 77342
           Summary: Use abi_tag on Debug Mode namespace
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: enhancement
          Priority: P3
         Component: libstdc++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: redi at gcc dot gnu.org
  Target Milestone: ---

The libstdc++ Debug Mode changes the ABI of various types, requiring all
affected code to be recompiled. If some function is not recompiled, and the
debug mode type doesn't appear in its mangled name, then you get undefined
behaviour, typically resulting in runtime crashes, e.g. PR 77340.

If we used the abi_tag attribute on the inline namespace used for Debug Mode
components then it would turn run-time crashes into linker errors, or at least
warnings when a data member of a class changes size.

e.g. with:

  // Inline namespace for debug mode.
# ifdef _GLIBCXX_DEBUG
  inline namespace __debug __attribute__((__abi_tag__("__debug"))) { }
# endif

the code in PR 77340 fails to link:

/tmp/cccmvLXH.o: In function `main':
/tmp/main.cpp:4: undefined reference to `func()'
collect2: error: ld returned 1 exit status
>From gcc-bugs-return-535636-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 09:18:54 2016
Return-Path: <gcc-bugs-return-535636-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 39584 invoked by alias); 23 Aug 2016 09:18:53 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 39335 invoked by uid 48); 23 Aug 2016 09:18:40 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug debug/77343] New: ICE in dwarf2out_frame_debug_expr, at dwarf2cfi.c:1596
Date: Tue, 23 Aug 2016 09:18:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: debug
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status keywords bug_severity priority component assigned_to reporter target_milestone cf_gcchost
Message-ID: <bug-77343-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02972.txt.bz2
Content-length: 3269

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77343

            Bug ID: 77343
           Summary: ICE in dwarf2out_frame_debug_expr, at dwarf2cfi.c:1596
           Product: gcc
           Version: 6.2.0
            Status: UNCONFIRMED
          Keywords: ice-on-valid-code
          Severity: normal
          Priority: P3
         Component: debug
          Assignee: unassigned at gcc dot gnu.org
          Reporter: rguenth at gcc dot gnu.org
  Target Milestone: ---
              Host: x86_64-*-*

Reduced from some kernel crypto code.

static int 
crypto_cbc_decrypt_inplace(int bsize)
{
  unsigned char last_iv[bsize];
}

when compiled with -mno-sse -mpreferred-stack-boundary=3 -ffixed-rbp:

> gcc-6 -ffixed-rbp cbc.3.i -S   -mno-sse  -mpreferred-stack-boundary=3
cbc.3.i: In function 'crypto_cbc_decrypt_inplace':
cbc.3.i:5:1: internal compiler error: in dwarf2out_frame_debug_expr, at
dwarf2cfi.c:1596
 }
 ^
0x9ccaff dwarf2out_frame_debug_expr
        /space/rguenther/src/svn/trunk/gcc/dwarf2cfi.c:1594
0x9cdc39 dwarf2out_frame_debug
        /space/rguenther/src/svn/trunk/gcc/dwarf2cfi.c:2089
0x9ce79f scan_insn_after
        /space/rguenther/src/svn/trunk/gcc/dwarf2cfi.c:2415
0x9ced75 scan_trace
        /space/rguenther/src/svn/trunk/gcc/dwarf2cfi.c:2572
0x9cee8c create_cfi_notes
        /space/rguenther/src/svn/trunk/gcc/dwarf2cfi.c:2611
0x9cf9ad execute_dwarf2_frame
        /space/rguenther/src/svn/trunk/gcc/dwarf2cfi.c:2974

The assert is

              /* Saving a register in a register.  */
              gcc_assert (!fixed_regs [REGNO (dest)]
                          /* For the SPARC and its register window.  */
                          || (dwf_regno (src) == DWARF_FRAME_RETURN_COLUMN));

not sure why it is present.  When removing it we generate the following code
which makes this wrong-code(?) because we use %rbp even though the user
specified it as fixed.  OTOH docs for -ffixed- say "except perhaps as a stack
pointer, frame pointer or in some other fixed role" which means the assert
above is over-zealous?

crypto_cbc_decrypt_inplace:
.LFB0:
        .cfi_startproc
        leaq    8(%rsp), %r10
        .cfi_def_cfa 10, 0
        andq    $-16, %rsp
        pushq   -8(%r10)
        pushq   %rbp
        .cfi_escape 0x10,0x6,0x2,0x76,0
        movq    %rsp, %rbp
        pushq   %r10
        .cfi_escape 0xf,0x3,0x76,0x78,0x6
        subq    $40, %rsp
        movl    %edi, -36(%rbp)
        movq    %rsp, %rax
        movq    %rax, %rcx
        movl    -36(%rbp), %eax
        movslq  %eax, %rdx
        subq    $1, %rdx
        movq    %rdx, -24(%rbp)
        movslq  %eax, %rdx
        movq    %rdx, %r10
        movl    $0, %r11d
        movslq  %eax, %rdx
        movq    %rdx, %r8
        movl    $0, %r9d
        cltq
        movl    $8, %edx
        subq    $1, %rdx
        addq    %rdx, %rax
        movl    $8, %esi
        movl    $0, %edx
        divq    %rsi
        imulq   $8, %rax, %rax
        subq    %rax, %rsp
        movq    %rsp, %rax
        addq    $0, %rax
        movq    %rax, -32(%rbp)
        movq    %rcx, %rsp
        nop
        movq    -8(%rbp), %r10
        .cfi_def_cfa 10, 0
        leave
        leaq    -8(%r10), %rsp
        .cfi_def_cfa 7, 8
        ret
        .cfi_endproc
>From gcc-bugs-return-535637-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 09:19:58 2016
Return-Path: <gcc-bugs-return-535637-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 45860 invoked by alias); 23 Aug 2016 09:19:58 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 44666 invoked by uid 48); 23 Aug 2016 09:19:45 -0000
From: "dominiq at lps dot ens.fr" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/49636] [F03] ASSOCIATE construct confused with slightly complicated case
Date: Tue, 23 Aug 2016 09:19:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 4.6.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dominiq at lps dot ens.fr
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: pault at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-49636-4-SLicLyz5Ac@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-49636-4@http.gcc.gnu.org/bugzilla/>
References: <bug-49636-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02973.txt.bz2
Content-length: 465

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=49636

Dominique d'Humieres <dominiq at lps dot ens.fr> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |neil.n.carlson at gmail dot com

--- Comment #10 from Dominique d'Humieres <dominiq at lps dot ens.fr> ---
*** Bug 77310 has been marked as a duplicate of this bug. ***
>From gcc-bugs-return-535638-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 09:19:58 2016
Return-Path: <gcc-bugs-return-535638-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 45910 invoked by alias); 23 Aug 2016 09:19:58 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 44614 invoked by uid 48); 23 Aug 2016 09:19:44 -0000
From: "dominiq at lps dot ens.fr" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/77310] ICE on SELECT CASE with associate name
Date: Tue, 23 Aug 2016 09:19:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dominiq at lps dot ens.fr
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: DUPLICATE
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-77310-4-jLalXDZ8By@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77310-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77310-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02974.txt.bz2
Content-length: 599

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77310

Dominique d'Humieres <dominiq at lps dot ens.fr> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |RESOLVED
         Resolution|---                         |DUPLICATE

--- Comment #2 from Dominique d'Humieres <dominiq at lps dot ens.fr> ---
> I think it is a duplicate of pr70705 and pr49636.

Confirmed by Paul on IRC. Closing as DUPLICATE.

*** This bug has been marked as a duplicate of bug 49636 ***
>From gcc-bugs-return-535639-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 09:39:27 2016
Return-Path: <gcc-bugs-return-535639-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 11235 invoked by alias); 23 Aug 2016 09:39:27 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 11095 invoked by uid 48); 23 Aug 2016 09:39:14 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/77323] Bad "defaults to 'int'" warning for unsupported types
Date: Tue, 23 Aug 2016 09:39:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-77323-4-INpFVM6HVB@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77323-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77323-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02975.txt.bz2
Content-length: 484

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77323

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-23
     Ever confirmed|0                           |1

--- Comment #1 from Richard Biener <rguenth at gcc dot gnu.org> ---
Confirmed.
>From gcc-bugs-return-535641-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 09:53:10 2016
Return-Path: <gcc-bugs-return-535641-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 61162 invoked by alias); 23 Aug 2016 09:53:10 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 60951 invoked by uid 48); 23 Aug 2016 09:52:57 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77333] Incorrect stack adjust in epilogue when targeting i686-w64-mingw32
Date: Tue, 23 Aug 2016 09:53:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77333-4-kUPdexCM52@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77333-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77333-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02977.txt.bz2
Content-length: 184

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77333

--- Comment #1 from Richard Biener <rguenth at gcc dot gnu.org> ---
Try -fno-lifetime-dse and/or -fno-delete-null-pointer-checks.
>From gcc-bugs-return-535640-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 09:53:10 2016
Return-Path: <gcc-bugs-return-535640-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 61153 invoked by alias); 23 Aug 2016 09:53:09 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 61036 invoked by uid 48); 23 Aug 2016 09:53:02 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/77334] [5/6/7 Regression] Cannot move assign std::map with non-copyable and non-movable mapped_type
Date: Tue, 23 Aug 2016 09:53:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: redi at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-77334-4-wjqS8FnKsS@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77334-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77334-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02976.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77334

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |5.5
>From gcc-bugs-return-535642-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 09:53:55 2016
Return-Path: <gcc-bugs-return-535642-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 77235 invoked by alias); 23 Aug 2016 09:53:55 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 65832 invoked by uid 48); 23 Aug 2016 09:53:42 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77337] [7 regression][c++1z] use before deduction of 'auto'
Date: Tue, 23 Aug 2016 09:53:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-77337-4-p4nGmSsbzu@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77337-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77337-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02978.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77337

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |7.0
>From gcc-bugs-return-535643-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 09:54:27 2016
Return-Path: <gcc-bugs-return-535643-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 86462 invoked by alias); 23 Aug 2016 09:54:27 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 86366 invoked by uid 48); 23 Aug 2016 09:54:14 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77338] [7 Regression] ICE on invalid C++11 code on x86_64-linux-gnu: Segmentation fault
Date: Tue, 23 Aug 2016 09:54:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords target_milestone short_desc
Message-ID: <bug-77338-4-GyUvaZ6dTY@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77338-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77338-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02979.txt.bz2
Content-length: 639

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77338

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |ice-on-invalid-code
   Target Milestone|---                         |7.0
            Summary|ICE on invalid C++11 code   |[7 Regression] ICE on
                   |on x86_64-linux-gnu:        |invalid C++11 code on
                   |Segmentation fault          |x86_64-linux-gnu:
                   |                            |Segmentation fault
>From gcc-bugs-return-535644-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 09:54:57 2016
Return-Path: <gcc-bugs-return-535644-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 87278 invoked by alias); 23 Aug 2016 09:54:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 87174 invoked by uid 48); 23 Aug 2016 09:54:44 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77339] [5/6/7 Regression] ICE on invalid C++ code on x86_64-linux-gnu: in cp_parser_type_name, at cp/parser.c:16532
Date: Tue, 23 Aug 2016 09:54:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords cf_known_to_work target_milestone short_desc
Message-ID: <bug-77339-4-HS5A3gRqCs@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77339-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77339-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02980.txt.bz2
Content-length: 771

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77339

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |ice-on-invalid-code
      Known to work|                            |4.7.4
   Target Milestone|---                         |5.5
            Summary|ICE on invalid C++ code on  |[5/6/7 Regression] ICE on
                   |x86_64-linux-gnu: in        |invalid C++ code on
                   |cp_parser_type_name, at     |x86_64-linux-gnu: in
                   |cp/parser.c:16532           |cp_parser_type_name, at
                   |                            |cp/parser.c:16532
>From gcc-bugs-return-535645-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 09:56:09 2016
Return-Path: <gcc-bugs-return-535645-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 94648 invoked by alias); 23 Aug 2016 09:56:08 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 94000 invoked by uid 48); 23 Aug 2016 09:55:55 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77341] GCC6 va_list MS ABI buildin regression bug
Date: Tue, 23 Aug 2016 09:56:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: lto
X-Bugzilla-Severity: critical
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords cf_gcctarget component dependson
Message-ID: <bug-77341-4-9iSOJOHjUH@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77341-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77341-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02981.txt.bz2
Content-length: 744

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77341

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |lto
             Target|                            |x86_64-*-*, i?86-*-*
          Component|c                           |target
         Depends on|                            |50818

--- Comment #1 from Richard Biener <rguenth at gcc dot gnu.org> ---
I believe we have a duplicate for this.


Referenced Bugs:

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=50818
[Bug 50818] va_list is filled incorrectly in functions with ms_abi attribute on
amd64
>From gcc-bugs-return-535647-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 09:57:50 2016
Return-Path: <gcc-bugs-return-535647-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 105349 invoked by alias); 23 Aug 2016 09:57:50 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 105189 invoked by uid 48); 23 Aug 2016 09:57:38 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug lto/70955] [6/7 Regression] Wrong code generation for __builtin_ms_va_list with -flto
Date: Tue, 23 Aug 2016 09:57:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: lto
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords: lto, wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-70955-4-jNomx02zBZ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70955-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70955-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02983.txt.bz2
Content-length: 449

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70955

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |steven.shi at intel dot com

--- Comment #15 from Richard Biener <rguenth at gcc dot gnu.org> ---
*** Bug 77341 has been marked as a duplicate of this bug. ***
>From gcc-bugs-return-535646-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 09:57:50 2016
Return-Path: <gcc-bugs-return-535646-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 105340 invoked by alias); 23 Aug 2016 09:57:49 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 105149 invoked by uid 48); 23 Aug 2016 09:57:37 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77341] GCC6 va_list MS ABI buildin regression bug
Date: Tue, 23 Aug 2016 09:57:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: lto
X-Bugzilla-Severity: critical
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: DUPLICATE
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-77341-4-CIBeOX3hz2@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77341-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77341-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02982.txt.bz2
Content-length: 498

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77341

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |DUPLICATE

--- Comment #2 from Richard Biener <rguenth at gcc dot gnu.org> ---
Found it.

*** This bug has been marked as a duplicate of bug 70955 ***
>From gcc-bugs-return-535648-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 10:09:10 2016
Return-Path: <gcc-bugs-return-535648-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 76476 invoked by alias); 23 Aug 2016 10:09:10 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 76276 invoked by uid 48); 23 Aug 2016 10:08:56 -0000
From: "d.v.a at ngs dot ru" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/60936] [5/6/7 Regression] Binary code bloat with std::string
Date: Tue, 23 Aug 2016 10:09:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: d.v.a at ngs dot ru
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-60936-4-JQMM2MCXhM@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-60936-4@http.gcc.gnu.org/bugzilla/>
References: <bug-60936-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02984.txt.bz2
Content-length: 169

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60936

--- Comment #20 from __vic <d.v.a at ngs dot ru> ---
Patch attachment 38319 solves the problem for GCC 6.2 as well
>From gcc-bugs-return-535649-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 10:09:52 2016
Return-Path: <gcc-bugs-return-535649-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 84486 invoked by alias); 23 Aug 2016 10:09:52 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 81080 invoked by uid 48); 23 Aug 2016 10:09:39 -0000
From: "darko.veberic at ijs dot si" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/69470] [concepts] bogus constrained member class template redeclared with different access
Date: Tue, 23 Aug 2016 10:09:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: darko.veberic at ijs dot si
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-69470-4-jmM2hbCgre@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69470-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69470-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02985.txt.bz2
Content-length: 848

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69470

Darko Veberic <darko.veberic at ijs dot si> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |darko.veberic at ijs dot si

--- Comment #2 from Darko Veberic <darko.veberic at ijs dot si> ---
i get the same also with gcc 5.2.1:

In file included from ./utl/String.h:5:0,
                 from ./utl/TimeSeries.h:4,
                 from ./mu/EventIO.h:4,
                 from mu/EventIO.Dict.h:34,
                 from mu/EventIO.Dict.cc:17:
/usr/include/c++/5/sstream:300:7: error: ‘struct
std::__cxx11::basic_stringbuf<_CharT, _Traits, _Alloc>::__xfer_bufptrs’
redeclared with different access
       struct __xfer_bufptrs
       ^
>From gcc-bugs-return-535650-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 10:14:19 2016
Return-Path: <gcc-bugs-return-535650-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 93615 invoked by alias); 23 Aug 2016 10:14:18 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 93449 invoked by uid 55); 23 Aug 2016 10:14:00 -0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/71771] DR 685 applied incorrectly
Date: Tue, 23 Aug 2016 10:14:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71771-4-03Zl47D7pt@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71771-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71771-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02986.txt.bz2
Content-length: 2053

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71771

--- Comment #8 from Jonathan Wakely <redi at gcc dot gnu.org> ---
Author: redi
Date: Tue Aug 23 10:13:26 2016
New Revision: 239691

URL: https://gcc.gnu.org/viewcvs?rev=239691&root=gcc&view=rev
Log:
Implement resolution of LWG DR 685 precisely

        PR libstdc++/71771
        * include/bits/stl_iterator.h
        (operator-(reverse_iterator<Iter>, reverse_iterator<Iter>): Only
        define for C++98 mode.
        (operator-(move_iterator<Iter>, move_iterator<Iter>): Don't define.
        * testsuite/24_iterators/headers/iterator/synopsis.cc: Use
        -std=gnu++98.
        * testsuite/24_iterators/headers/iterator/synopsis_c++11.cc: New test.
        * testsuite/24_iterators/headers/iterator/synopsis_c++14.cc: New test.
        * testsuite/24_iterators/headers/iterator/synopsis_c++17.cc: New test.
        * testsuite/24_iterators/move_iterator/greedy_ops.cc: Don't test
        difference operator.
        * testsuite/24_iterators/reverse_iterator/greedy_ops.cc: Only test
        difference operator for C++98.
        * testsuite/24_iterators/reverse_iterator/71771.cc: New test.

Added:
   
trunk/libstdc++-v3/testsuite/24_iterators/headers/iterator/synopsis_c++11.cc
   
trunk/libstdc++-v3/testsuite/24_iterators/headers/iterator/synopsis_c++14.cc
      - copied, changed from r239690,
trunk/libstdc++-v3/testsuite/24_iterators/reverse_iterator/greedy_ops.cc
   
trunk/libstdc++-v3/testsuite/24_iterators/headers/iterator/synopsis_c++17.cc
    trunk/libstdc++-v3/testsuite/24_iterators/reverse_iterator/71771.cc
      - copied, changed from r239690,
trunk/libstdc++-v3/testsuite/24_iterators/reverse_iterator/greedy_ops.cc
Modified:
    trunk/libstdc++-v3/ChangeLog
    trunk/libstdc++-v3/include/bits/stl_iterator.h
    trunk/libstdc++-v3/testsuite/24_iterators/headers/iterator/synopsis.cc
    trunk/libstdc++-v3/testsuite/24_iterators/move_iterator/greedy_ops.cc
    trunk/libstdc++-v3/testsuite/24_iterators/reverse_iterator/greedy_ops.cc
>From gcc-bugs-return-535651-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 10:31:41 2016
Return-Path: <gcc-bugs-return-535651-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 16430 invoked by alias); 23 Aug 2016 10:31:41 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 16323 invoked by uid 48); 23 Aug 2016 10:31:28 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/77332] ICE when building gcc 6.2 (with gcc 6.1.0)
Date: Tue, 23 Aug 2016 10:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: build, ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-77332-4-UQ3tQP5UyC@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77332-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77332-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02987.txt.bz2
Content-length: 708

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77332

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |WAITING
   Last reconfirmed|                            |2016-08-23
     Ever confirmed|0                           |1

--- Comment #1 from Richard Biener <rguenth at gcc dot gnu.org> ---
I can't reproduce it.  It seems to happen in stage2 (-g -gtoggle) and I'm past
that trying to reproduce (also that's the only stage where checking code is
run).

Can you attach preprocessed source for the failing command source?
>From gcc-bugs-return-535652-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 10:32:25 2016
Return-Path: <gcc-bugs-return-535652-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 17521 invoked by alias); 23 Aug 2016 10:32:25 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 17353 invoked by uid 48); 23 Aug 2016 10:32:12 -0000
From: "mark at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug debug/63238] DWARF does not represent _Alignas
Date: Tue, 23 Aug 2016 10:32:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: debug
X-Bugzilla-Version: 5.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mark at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-63238-4-jrVpRcN8s8@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-63238-4@http.gcc.gnu.org/bugzilla/>
References: <bug-63238-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02988.txt.bz2
Content-length: 737

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63238

Mark Wielaard <mark at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mark at gcc dot gnu.org

--- Comment #1 from Mark Wielaard <mark at gcc dot gnu.org> ---
The formal standard request is:
http://www.dwarfstd.org/ShowIssue.php?issue=140528.1

Prototype patch for an earlier iteration (using DW_TAG_aligned_type instead of
DW_AT_alignment attribute) for GCC is here:
https://gcc.gnu.org/ml/gcc-patches/2014-07/msg00667.html
Corresponding GDB patch is here:
https://sourceware.org/ml/gdb-patches/2014-07/msg00199.html
>From gcc-bugs-return-535653-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 10:41:38 2016
Return-Path: <gcc-bugs-return-535653-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 41948 invoked by alias); 23 Aug 2016 10:41:38 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 39706 invoked by uid 48); 23 Aug 2016 10:41:25 -0000
From: "steven.shi at intel dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug lto/70955] [6/7 Regression] Wrong code generation for __builtin_ms_va_list with -flto
Date: Tue, 23 Aug 2016 10:41:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: lto
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords: lto, wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: steven.shi at intel dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-70955-4-TOyqGICoM9@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70955-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70955-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02989.txt.bz2
Content-length: 225

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70955

--- Comment #16 from Steven Shi <steven.shi at intel dot com> ---
How to checkout the 6.3 code from GCC trunk? I hope to verify this fix on Uefi
firmware GCC LTO build.
>From gcc-bugs-return-535654-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 10:46:11 2016
Return-Path: <gcc-bugs-return-535654-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 64048 invoked by alias); 23 Aug 2016 10:46:11 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 62731 invoked by uid 48); 23 Aug 2016 10:45:56 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug lto/70955] [6/7 Regression] Wrong code generation for __builtin_ms_va_list with -flto
Date: Tue, 23 Aug 2016 10:46:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: lto
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords: lto, wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-70955-4-KoO1Ss1sy5@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70955-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70955-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02990.txt.bz2
Content-length: 369

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70955

--- Comment #17 from Richard Biener <rguenth at gcc dot gnu.org> ---
(In reply to Steven Shi from comment #16)
> How to checkout the 6.3 code from GCC trunk? I hope to verify this fix on
> Uefi firmware GCC LTO build.

The patch is not checked in as I believe the fundamental issue is not solved
in a sensible way.
>From gcc-bugs-return-535655-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 11:13:45 2016
Return-Path: <gcc-bugs-return-535655-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 22440 invoked by alias); 23 Aug 2016 11:13:45 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 21741 invoked by uid 48); 23 Aug 2016 11:13:32 -0000
From: "vries at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug lto/70955] [6/7 Regression] Wrong code generation for __builtin_ms_va_list with -flto
Date: Tue, 23 Aug 2016 11:13:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: lto
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords: lto, wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: vries at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: attachments.created
Message-ID: <bug-70955-4-ejlIN4q4In@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70955-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70955-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02991.txt.bz2
Content-length: 325

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70955

--- Comment #18 from vries at gcc dot gnu.org ---
Created attachment 39484
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39484&action=edit
Tentative patch using attributes ms_abi/sysv_abi

not build or regression tested yet, but at least makes test-case pass.
>From gcc-bugs-return-535656-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 11:33:04 2016
Return-Path: <gcc-bugs-return-535656-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 90203 invoked by alias); 23 Aug 2016 11:33:04 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 88180 invoked by uid 48); 23 Aug 2016 11:32:51 -0000
From: "matthew.thompson at nasa dot gov" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/77344] New: Internal Compiler Error with arch knl
Date: Tue, 23 Aug 2016 11:33:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: matthew.thompson at nasa dot gov
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-77344-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02992.txt.bz2
Content-length: 5666

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77344

            Bug ID: 77344
           Summary: Internal Compiler Error with arch knl
           Product: gcc
           Version: 6.1.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: fortran
          Assignee: unassigned at gcc dot gnu.org
          Reporter: matthew.thompson at nasa dot gov
  Target Milestone: ---

Created attachment 39485
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39485&action=edit
Tarball with offending code and GNUmakefile

I have a code that when it is compiled with -march=knl -mtune=knl, causes an
ICE (see output below). It doesn't ICE out with, say -march=haswell
-mtune=intel.


This is with GCC 6.1.0, I haven't tried 6.2.0 yet, but I'll try and get that
built today.

I have to attach a tarball because the offending code depends on other codes to
compile. To test the fault, just run "make". This code does *not* make an
executable as I included just the files necessary to throw the ICE.

(444) $ gfortran -O3 -march=knl -mtune=knl -funroll-loops
-ffixed-line-length-132 -fno-range-check -fPIC -ffpe-trap=zero,overflow
-fbacktrace -falign-commons -save-temps -v -c sorad.F90
Using built-in specs.
COLLECT_GCC=gfortran
Target: x86_64-pc-linux-gnu
Configured with: ../gcc-6.1.0/configure
--prefix=/ford1/local/gcc/gcc-6.1.0-rhel6 --disable-multilib
Thread model: posix
gcc version 6.1.0 (GCC) 
COLLECT_GCC_OPTIONS='-O3' '-march=knl' '-mtune=knl' '-funroll-loops'
'-ffixed-line-length-132' '-fno-range-check' '-fPIC' '-ffpe-trap=zero,overflow'
'-fbacktrace' '-falign-commons' '-save-temps' '-v' '-c'
 /ford1/local/gcc/gcc-6.1.0-rhel6/libexec/gcc/x86_64-pc-linux-gnu/6.1.0/f951
sorad.F90 -cpp=sorad.f90 -quiet -v sorad.F90 -quiet -dumpbase sorad.F90
-march=knl -mtune=knl -auxbase sorad -O3 -version -funroll-loops
-ffixed-line-length-132 -fno-range-check -fPIC -ffpe-trap=zero,overflow
-fbacktrace -falign-commons -fintrinsic-modules-path
/ford1/local/gcc/gcc-6.1.0-rhel6/lib/gcc/x86_64-pc-linux-gnu/6.1.0/finclude -o
sorad.s
GNU Fortran (GCC) version 6.1.0 (x86_64-pc-linux-gnu)
        compiled by GNU C version 6.1.0, GMP version 4.3.2, MPFR version 2.4.2,
MPC version 0.8.1, isl version 0.15
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
ignoring nonexistent directory
"/ford1/local/gcc/gcc-6.1.0-rhel6/lib/gcc/x86_64-pc-linux-gnu/6.1.0/../../../../x86_64-pc-linux-gnu/include"
#include "..." search starts here:
#include <...> search starts here:
 /ford1/local/gcc/gcc-6.1.0-rhel6/lib/gcc/x86_64-pc-linux-gnu/6.1.0/finclude
 /ford1/local/gcc/gcc-6.1.0-rhel6/lib/gcc/x86_64-pc-linux-gnu/6.1.0/include
 /usr/local/include
 /ford1/local/gcc/gcc-6.1.0-rhel6/include

/ford1/local/gcc/gcc-6.1.0-rhel6/lib/gcc/x86_64-pc-linux-gnu/6.1.0/include-fixed
 /usr/include
End of search list.
GNU Fortran2008 (GCC) version 6.1.0 (x86_64-pc-linux-gnu)
        compiled by GNU C version 6.1.0, GMP version 4.3.2, MPFR version 2.4.2,
MPC version 0.8.1, isl version 0.15
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
sorad.F90:126:0:

    subroutine sorad (m,np,nb,cosz_dev,pl_dev,ta_dev,wa_dev,oa_dev,co2,&

internal compiler error: in ix86_fp_cmp_code_to_pcmp_immediate, at
config/i386/i386.c:23042
0xd06b6b ix86_fp_cmp_code_to_pcmp_immediate
        ../../gcc-6.1.0/gcc/config/i386/i386.c:23042
0xd06b6b ix86_cmp_code_to_pcmp_immediate
        ../../gcc-6.1.0/gcc/config/i386/i386.c:23053
0xd06b6b ix86_expand_mask_vec_cmp(rtx_def**)
        ../../gcc-6.1.0/gcc/config/i386/i386.c:23065
0xe999a5 gen_vec_cmpv16sfhi(rtx_def*, rtx_def*, rtx_def*, rtx_def*)
        ../../gcc-6.1.0/gcc/config/i386/sse.md:2851
0x9cfc88 maybe_expand_insn(insn_code, unsigned int, expand_operand*)
        ../../gcc-6.1.0/gcc/optabs.c:7032
0x9cfc88 expand_insn(insn_code, unsigned int, expand_operand*)
        ../../gcc-6.1.0/gcc/optabs.c:7063
0x9d0605 expand_vec_cmp_expr(tree_node*, tree_node*, rtx_def*)
        ../../gcc-6.1.0/gcc/optabs.c:5673
0x83e788 do_store_flag
        ../../gcc-6.1.0/gcc/expr.c:11146
0x83e788 expand_expr_real_2(separate_ops*, rtx_def*, machine_mode,
expand_modifier)
        ../../gcc-6.1.0/gcc/expr.c:9067
0x82ef8a expand_expr_real_1(tree_node*, rtx_def*, machine_mode,
expand_modifier, rtx_def**, bool)
        ../../gcc-6.1.0/gcc/expr.c:9577
0x836ca0 expand_expr
        ../../gcc-6.1.0/gcc/expr.h:256
0x836ca0 expand_operands(tree_node*, tree_node*, rtx_def*, rtx_def**,
rtx_def**, expand_modifier)
        ../../gcc-6.1.0/gcc/expr.c:7563
0x83b85e expand_expr_real_2(separate_ops*, rtx_def*, machine_mode,
expand_modifier)
        ../../gcc-6.1.0/gcc/expr.c:9368
0x82ef8a expand_expr_real_1(tree_node*, rtx_def*, machine_mode,
expand_modifier, rtx_def**, bool)
        ../../gcc-6.1.0/gcc/expr.c:9577
0x9d0124 expand_normal
        ../../gcc-6.1.0/gcc/expr.h:262
0x9d0124 expand_vec_cond_mask_expr(tree_node*, tree_node*, tree_node*,
tree_node*, rtx_def*)
        ../../gcc-6.1.0/gcc/optabs.c:5563
0x9d04a4 expand_vec_cond_expr(tree_node*, tree_node*, tree_node*, tree_node*,
rtx_def*)
        ../../gcc-6.1.0/gcc/optabs.c:5607
0x83c229 expand_expr_real_2(separate_ops*, rtx_def*, machine_mode,
expand_modifier)
        ../../gcc-6.1.0/gcc/expr.c:9358
0x75ab2e expand_gimple_stmt_1
        ../../gcc-6.1.0/gcc/cfgexpand.c:3653
0x75ab2e expand_gimple_stmt
        ../../gcc-6.1.0/gcc/cfgexpand.c:3714
Please submit a full bug report,
with preprocessed source if appropriate.
Please include the complete backtrace with any bug report.
See <http://gcc.gnu.org/bugs.html> for instructions.
>From gcc-bugs-return-535657-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 11:35:12 2016
Return-Path: <gcc-bugs-return-535657-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 97707 invoked by alias); 23 Aug 2016 11:35:12 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 97475 invoked by uid 48); 23 Aug 2016 11:34:59 -0000
From: "asolokha at gmx dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77345] New: [7 Regression] Segmentation fault w/ -misel -O1 (and above)
Date: Tue, 23 Aug 2016 11:35:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: asolokha at gmx dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status keywords bug_severity priority component assigned_to reporter target_milestone cf_gcctarget
Message-ID: <bug-77345-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02993.txt.bz2
Content-length: 1916

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77345

            Bug ID: 77345
           Summary: [7 Regression] Segmentation fault w/ -misel -O1 (and
                    above)
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Keywords: ice-on-valid-code
          Severity: normal
          Priority: P3
         Component: target
          Assignee: unassigned at gcc dot gnu.org
          Reporter: asolokha at gmx dot com
  Target Milestone: ---
            Target: powerpc-*-linux-gnu*

gcc-7.0.0-alpha20160821 and some earlier snapshots (at least back to
7.0.0-alpha20160731) ICE when compiling the following snippet for 32-bit BE
powerpc target w/ -misel -O1 (and above):

int
tk (long long int vu)
{
  int ar = (vu != 0);
  return (ar + ((ar != 0) ? vu : ar)) || ar;
}

% powerpc-e300c3-linux-gnu-gcc-7.0.0-alpha20160821 -misel -O1 -c j0w1vfcr.c     
powerpc-e300c3-linux-gnu-gcc-7.0.0-alpha20160821: internal compiler error:
Segmentation fault (program cc1)

gdb fails to produce a usable backtrace because of seemingly corrupted stack
(?).

This one is for powerpc-e300c3-linux-gnu:

(gdb) where
#0  0x000002aaab354241 in simplify_const_binary_operation (code=PLUS,
mode=SImode, op0=0x3ffee299c60, op1=0x3fff7097018)
    at
/var/tmp/portage/cross-powerpc-e300c3-linux-gnu/gcc-7.0.0_alpha20160821/work/gcc-7-20160821/gcc/simplify-rtx.c:3815
Backtrace stopped: Cannot access memory at address 0x3fffbffef30

And the next one is for powerpc-e500v2-linux-gnuspe:

(gdb) where
#0  0x000002aaabc67f0a in reg_nonzero_bits_for_combine (x=0x3fff703b5b8,
mode=CCmode, known_x=0x0, known_mode=VOIDmode, known_ret=0, 
    nonzero=0x3fffc000050)
    at
/var/tmp/portage/cross-powerpc-e500v2-linux-gnuspe/gcc-7.0.0_alpha20160731/work/gcc-7-20160731/gcc/combine.c:9857
Backtrace stopped: Cannot access memory at address 0x3fffbffefe8
>From gcc-bugs-return-535658-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 11:37:45 2016
Return-Path: <gcc-bugs-return-535658-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 104919 invoked by alias); 23 Aug 2016 11:37:44 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 104556 invoked by uid 48); 23 Aug 2016 11:37:32 -0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/60936] [5/6/7 Regression] Binary code bloat with std::string
Date: Tue, 23 Aug 2016 11:37:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-60936-4-OWgPtDfpqZ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-60936-4@http.gcc.gnu.org/bugzilla/>
References: <bug-60936-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02994.txt.bz2
Content-length: 202

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60936

--- Comment #21 from Jonathan Wakely <redi at gcc dot gnu.org> ---
Yes, but it removes functionality, and we don't want to do that
unconditionally.
>From gcc-bugs-return-535659-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 11:39:07 2016
Return-Path: <gcc-bugs-return-535659-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 106828 invoked by alias); 23 Aug 2016 11:39:06 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 106688 invoked by uid 48); 23 Aug 2016 11:38:54 -0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/71771] DR 685 applied incorrectly
Date: Tue, 23 Aug 2016 11:39:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: redi at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status assigned_to
Message-ID: <bug-71771-4-ihdVMAni5s@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71771-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71771-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02995.txt.bz2
Content-length: 500

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71771

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED
           Assignee|unassigned at gcc dot gnu.org      |redi at gcc dot gnu.org

--- Comment #9 from Jonathan Wakely <redi at gcc dot gnu.org> ---
Fixed on trunk by removing the non-standard overloads.
>From gcc-bugs-return-535660-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 11:40:27 2016
Return-Path: <gcc-bugs-return-535660-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 109512 invoked by alias); 23 Aug 2016 11:40:27 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 109278 invoked by uid 48); 23 Aug 2016 11:40:14 -0000
From: "d.v.a at ngs dot ru" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/60936] [5/6/7 Regression] Binary code bloat with std::string
Date: Tue, 23 Aug 2016 11:40:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: d.v.a at ngs dot ru
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-60936-4-vmxWFNrkbz@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-60936-4@http.gcc.gnu.org/bugzilla/>
References: <bug-60936-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02996.txt.bz2
Content-length: 204

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60936

--- Comment #22 from __vic <d.v.a at ngs dot ru> ---
Of course. It's comment for people like me who needs solution right now
(actually since 2014...)
>From gcc-bugs-return-535661-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 11:41:34 2016
Return-Path: <gcc-bugs-return-535661-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 111521 invoked by alias); 23 Aug 2016 11:41:34 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 111017 invoked by uid 48); 23 Aug 2016 11:41:20 -0000
From: "mpolacek at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77338] [7 Regression] ICE on invalid C++11 code on x86_64-linux-gnu: Segmentation fault
Date: Tue, 23 Aug 2016 11:41:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mpolacek at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-77338-4-WYzojC79jn@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77338-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77338-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02997.txt.bz2
Content-length: 667

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77338

Marek Polacek <mpolacek at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mpolacek at gcc dot gnu.org

--- Comment #1 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
I can't reproduce:

$ ./cc1plus -quiet q.C
q.C:3:51: error: no match for call to ‘(S) (S&)’
 template < typename > auto f (S s)->decltype (s (s));
                                                   ^
q.C:3:51: error: no match for call to ‘(S) (S&)’
>From gcc-bugs-return-535662-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 11:42:27 2016
Return-Path: <gcc-bugs-return-535662-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 113195 invoked by alias); 23 Aug 2016 11:42:27 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 112951 invoked by uid 48); 23 Aug 2016 11:42:14 -0000
From: "mpolacek at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77339] [5/6/7 Regression] ICE on invalid C++ code on x86_64-linux-gnu: in cp_parser_type_name, at cp/parser.c:16532
Date: Tue, 23 Aug 2016 11:42:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mpolacek at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc everconfirmed
Message-ID: <bug-77339-4-lDYH8M7zbW@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77339-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77339-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02998.txt.bz2
Content-length: 561

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77339

Marek Polacek <mpolacek at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-23
                 CC|                            |mpolacek at gcc dot gnu.org
     Ever confirmed|0                           |1

--- Comment #1 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
Confirmed.
>From gcc-bugs-return-535663-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 11:43:45 2016
Return-Path: <gcc-bugs-return-535663-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 118164 invoked by alias); 23 Aug 2016 11:43:45 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 118017 invoked by uid 48); 23 Aug 2016 11:43:34 -0000
From: "asolokha at gmx dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77346] New: [7 Regression] ICE in push_reload, at reload.c:1350
Date: Tue, 23 Aug 2016 11:43:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: asolokha at gmx dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone cf_gcctarget
Message-ID: <bug-77346-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg02999.txt.bz2
Content-length: 1147

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77346

            Bug ID: 77346
           Summary: [7 Regression] ICE in push_reload, at reload.c:1350
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: target
          Assignee: unassigned at gcc dot gnu.org
          Reporter: asolokha at gmx dot com
  Target Milestone: ---
            Target: powerpc-*-linux-gnu*

gcc-7.0.0-alpha20160821 snapshots fails to compile the following snippet w/
-mno-lra -Os:

int qd, mc, t0;
long long int o1, rr, iw, sv;

void
hx (int c9)
{
  int *dt = &qd;

  while (qd != 0)
    for (rr = 2; rr < 6; ++rr)
      {
        qd = t0;
        if (dt != 0)
          {
            mc = c9;
            iw = &qd;
            while (o1 < 0)
              {
                dt = &t0;
                ++o1;
              }
          }
        sv = 0;
      }
}

% powerpc-e300c3-linux-gnu-gcc-7.0.0-alpha20160821 -mno-lra -Os -c -w
buwdtjav.c 
buwdtjav.c: In function 'hx':
buwdtjav.c:25:1: internal compiler error: in push_reload, at reload.c:1350
>From gcc-bugs-return-535664-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 11:52:18 2016
Return-Path: <gcc-bugs-return-535664-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 8528 invoked by alias); 23 Aug 2016 11:52:17 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 8320 invoked by uid 48); 23 Aug 2016 11:52:05 -0000
From: "mpolacek at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77339] [5/6/7 Regression] ICE on invalid C++ code on x86_64-linux-gnu: in cp_parser_type_name, at cp/parser.c:16532
Date: Tue, 23 Aug 2016 11:52:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mpolacek at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77339-4-jpHPYIezJc@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77339-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77339-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03000.txt.bz2
Content-length: 363

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77339

--- Comment #2 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
I'm pretty sure this started with r181118:

commit 370478b178a3bdf01988c16782c90add8aea26aa
Author: dodji <dodji@138bc75d-0d04-0410-961f-82ee72b054a4>
Date:   Mon Nov 7 21:28:50 2011 +0000

    PR c++/45114 - Support C++11 alias-declaration
>From gcc-bugs-return-535665-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 11:55:51 2016
Return-Path: <gcc-bugs-return-535665-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 17411 invoked by alias); 23 Aug 2016 11:55:51 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 17049 invoked by uid 48); 23 Aug 2016 11:55:38 -0000
From: "mpolacek at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77339] [5/6/7 Regression] ICE on invalid C++ code on x86_64-linux-gnu: in cp_parser_type_name, at cp/parser.c:16532
Date: Tue, 23 Aug 2016 11:55:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mpolacek at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77339-4-1CLgyUwsaW@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77339-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77339-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03001.txt.bz2
Content-length: 431

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77339

--- Comment #3 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
clang++ says
w.C:4:25: error: type 'A<X>' (aka 'int') cannot be used prior to '::' because
it has no members
template < typename X > A < X >::a;
                        ^
w.C:1:23: note: type alias template 'A' declared here
template < typename > using A = int;
                      ^
1 error generated.
>From gcc-bugs-return-535667-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 12:23:27 2016
Return-Path: <gcc-bugs-return-535667-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 8405 invoked by alias); 23 Aug 2016 12:23:27 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 6809 invoked by uid 48); 23 Aug 2016 12:23:14 -0000
From: "dominiq at lps dot ens.fr" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/72798] Module (.mod) file changes even when interface does not
Date: Tue, 23 Aug 2016 12:23:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 5.3.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dominiq at lps dot ens.fr
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72798-4-Ua9RmZm0an@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72798-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72798-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03003.txt.bz2
Content-length: 193

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72798

--- Comment #4 from Dominique d'Humieres <dominiq at lps dot ens.fr> ---
Without a test showing the problem I'll close this PR as INVALID.
>From gcc-bugs-return-535666-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 12:23:15 2016
Return-Path: <gcc-bugs-return-535666-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 6864 invoked by alias); 23 Aug 2016 12:23:15 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 6351 invoked by uid 48); 23 Aug 2016 12:23:02 -0000
From: "gcc.hall at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/77332] ICE when building gcc 6.2 (with gcc 6.1.0)
Date: Tue, 23 Aug 2016 12:23:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: build, ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: gcc.hall at gmail dot com
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77332-4-ZifcztKg4Z@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77332-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77332-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03002.txt.bz2
Content-length: 758

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77332

--- Comment #2 from Jeremy <gcc.hall at gmail dot com> ---
(In reply to Richard Biener from comment #1)
> I can't reproduce it.  It seems to happen in stage2 (-g -gtoggle) and I'm
> past that trying to reproduce (also that's the only stage where checking
> code is run).
> 
> Can you attach preprocessed source for the failing command source?

No I cant, sorry.
I suspect this may be environmental.
I tried again and it failed somewhere else.  I tried a third time on a
different disk and the build completed fine.  I tried a fourth time on the
original disk and it worked fine too.  So I cant reproduce it any more.  I have
built gcc many times on many machines and don't normally have any trouble.
>From gcc-bugs-return-535668-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 12:24:59 2016
Return-Path: <gcc-bugs-return-535668-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 12261 invoked by alias); 23 Aug 2016 12:24:58 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 12066 invoked by uid 48); 23 Aug 2016 12:24:46 -0000
From: "dominiq at lps dot ens.fr" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/71014] associate statement inside omp parallel do appears to disable default private attribute for inner loop indices
Date: Tue, 23 Aug 2016 12:24:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: openmp
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dominiq at lps dot ens.fr
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71014-4-iCF6mcbgB1@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71014-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71014-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03004.txt.bz2
Content-length: 220

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71014

--- Comment #11 from Dominique d'Humieres <dominiq at lps dot ens.fr> ---
> Author: jakub
> Date: Fri Aug 19 15:30:33 2016
> New Revision: 239620
> ...

Is it fixed?
>From gcc-bugs-return-535669-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 12:26:15 2016
Return-Path: <gcc-bugs-return-535669-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 14225 invoked by alias); 23 Aug 2016 12:26:15 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 14020 invoked by uid 48); 23 Aug 2016 12:26:01 -0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/71771] DR 685 applied incorrectly
Date: Tue, 23 Aug 2016 12:26:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: redi at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution target_milestone cf_known_to_fail
Message-ID: <bug-71771-4-ZGljZjwb3p@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71771-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71771-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03005.txt.bz2
Content-length: 705

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71771

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED
   Target Milestone|---                         |5.5
      Known to fail|                            |5.4.0, 6.2.0

--- Comment #10 from Jonathan Wakely <redi at gcc dot gnu.org> ---
Fixed for 5.5 and 6.3 by constraining the non-standard overload.

I forgot to put the PR number in the changelog, the commits are r239696 for
gcc-5 and r239694 for gcc-6.
>From gcc-bugs-return-535670-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 12:43:20 2016
Return-Path: <gcc-bugs-return-535670-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 85579 invoked by alias); 23 Aug 2016 12:43:20 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 85314 invoked by uid 48); 23 Aug 2016 12:43:07 -0000
From: "webrown.cpp at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/62181] [C/C++] Expected new warning: "adding 'char' to a string does not append to the string" [-Wstring-plus-int]
Date: Tue, 23 Aug 2016 12:43:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.0
X-Bugzilla-Keywords: diagnostic, easyhack
X-Bugzilla-Severity: normal
X-Bugzilla-Who: webrown.cpp at gmail dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-62181-4-kTX3hyPSug@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-62181-4@http.gcc.gnu.org/bugzilla/>
References: <bug-62181-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03006.txt.bz2
Content-length: 882

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=62181

Eric Gallager <egall at gwmail dot gwu.edu> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |egall at gwmail dot gwu.edu

W E Brown <webrown.cpp at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |webrown.cpp at gmail dot com

--- Comment #3 from Eric Gallager <egall at gwmail dot gwu.edu> ---
I think a better fixit would be to suggest using strcat or strncat or strlcat
or something, since that actually appends to the string like the programmer
probably intended to do. Abusing array indexing like that just looks wrong.
>From gcc-bugs-return-535671-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 12:51:57 2016
Return-Path: <gcc-bugs-return-535671-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 75873 invoked by alias); 23 Aug 2016 12:51:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 75653 invoked by uid 48); 23 Aug 2016 12:51:43 -0000
From: "ktkachov at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77308] surprisingly large stack usage for sha512 on arm
Date: Tue, 23 Aug 2016 12:51:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization, ra
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ktkachov at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc everconfirmed
Message-ID: <bug-77308-4-pLcMH9XIUN@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77308-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77308-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03007.txt.bz2
Content-length: 1452

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77308

ktkachov at gcc dot gnu.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-23
                 CC|                            |ktkachov at gcc dot gnu.org
     Ever confirmed|0                           |1

--- Comment #9 from ktkachov at gcc dot gnu.org ---
Note that the fpu option plays a role here as well

When I compile with -O3 -S -mfloat-abi=hard -march=armv7-a -mthumb
-mtune=cortex-a8 -mfpu=neon

I get:
sha512_block_data_order:
        @ args = 0, pretend = 0, frame = 2384
        @ frame_needed = 0, uses_anonymous_args = 0
        push    {r4, r5, r6, r7, r8, r9, r10, fp, lr}
        subw    sp, sp, #2388
        subs    r4, r2, #1


whereas if you leave out the -mfpu you get the default which is probably 'vfp'
if you didn't configure gcc with an explicit --with-fpu. This is usually not a
good fit for recent targets.
With -mfpu=vfp I get the terrible:
sha512_block_data_order:
        @ args = 0, pretend = 0, frame = 3568
        @ frame_needed = 0, uses_anonymous_args = 0
        push    {r4, r5, r6, r7, r8, r9, r10, fp, lr}
        subw    sp, sp, #3572
        subs    r4, r2, #1

That said, I bet there's still room for improvement
>From gcc-bugs-return-535672-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 12:52:46 2016
Return-Path: <gcc-bugs-return-535672-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 77599 invoked by alias); 23 Aug 2016 12:52:46 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 77289 invoked by uid 48); 23 Aug 2016 12:52:33 -0000
From: "steven.shi at intel dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug lto/70955] [6/7 Regression] Wrong code generation for __builtin_ms_va_list with -flto
Date: Tue, 23 Aug 2016 12:52:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: lto
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords: lto, wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: steven.shi at intel dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-70955-4-U6kS03Feme@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70955-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70955-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03008.txt.bz2
Content-length: 1170

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70955

--- Comment #19 from Steven Shi <steven.shi at intel dot com> ---
(In reply to vries from comment #18)
> Created attachment 39484 [details]
> Tentative patch using attributes ms_abi/sysv_abi
> 
> not build or regression tested yet, but at least makes test-case pass.

Vries,
I tried apply your patch on latest gcc trunk, build and install the new gcc7,
it still cannot work. Below is my test case.

$ gcc --version
gcc (GCC) 7.0.0 20160823 (experimental)

$ cat test2.c
#include <stdio.h>

int
__attribute__((ms_abi))
foo (int n, ...)
{
  __builtin_ms_va_list ap;
  int sum = 0;

  __builtin_ms_va_start (ap, n);

  while (n--) {
    sum += __builtin_va_arg (ap, int);
    printf("sum = %d\n", sum);
  }
  __builtin_ms_va_end (ap);

  return sum;
}

int main ()
{
  int res = foo (10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10);

  if (res != 55)
    __builtin_abort ();

  return 0;
}

$ gcc -flto -Os test2.c
$ ./a.out
Segmentation fault (core dumped)

But GCC5 works.
$ gcc-5 -flto -Os test2.c
$ ./a.out
sum = 1
sum = 3
sum = 6
sum = 10
sum = 15
sum = 21
sum = 28
sum = 36
sum = 45
sum = 55
>From gcc-bugs-return-535673-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 12:58:06 2016
Return-Path: <gcc-bugs-return-535673-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 92683 invoked by alias); 23 Aug 2016 12:58:06 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 91857 invoked by uid 48); 23 Aug 2016 12:57:53 -0000
From: "lhyatt at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77347] New: [6 Regression] Incorrect auto deduction failure in template class member function
Date: Tue, 23 Aug 2016 12:58:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: lhyatt at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77347-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03009.txt.bz2
Content-length: 4676

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77347

            Bug ID: 77347
           Summary: [6 Regression] Incorrect auto deduction failure in
                    template class member function
           Product: gcc
           Version: 6.2.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: lhyatt at gmail dot com
  Target Milestone: ---

The following valid test case fails to compile starting with gcc 6:

t.cpp
===============================
template<typename = void> auto f() {return 0U;}
template<typename = void>
struct B {
    unsigned g() {
        auto i = 0U, j = f();
        return i+j;
    }
};
auto i = B<>{}.g();
===============================

$ g++ -std=c++14 -c t.cpp
t.cpp: In member function 'unsigned int B< <template-parameter-1-1> >::g()':
t.cpp:5:9: error: inconsistent deduction for 'auto': 'unsigned int' and then
'auto'
         auto i = 0U, j = f();
         ^~~~
===============================

here is output of g++ -v:
Using built-in specs.
COLLECT_GCC=g++
Target: x86_64-pc-linux-gnu
Configured with: ../gcc-6.2.0/configure --prefix=/usr/local/gcc-6.2.0
--with-tune=native
Thread model: posix
gcc version 6.2.0 (GCC)
COLLECT_GCC_OPTIONS='-v' '-c' '-shared-libgcc' '-mtune=native' '-march=x86-64'
 /usr/local/gcc-6.2.0/libexec/gcc/x86_64-pc-linux-gnu/6.2.0/cc1plus -quiet -v
-imultiarch x86_64-linux-gnu -D_GNU_SOURCE t.cpp --param l1-cache-size=32
--param l1-cache-line-size=64 --param l2-cache-size=20480 -mtune=sandybridge
-quiet -dumpbase t.cpp -march=x86-64 -auxbase t -version -o /tmp/ccXuYkVf.s
GNU C++14 (GCC) version 6.2.0 (x86_64-pc-linux-gnu)
        compiled by GNU C version 6.2.0, GMP version 5.1.3, MPFR version
3.1.2-p3, MPC version 1.0.1, isl version none
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"
ignoring nonexistent directory
"/usr/local/gcc-6.2.0/lib/gcc/x86_64-pc-linux-gnu/6.2.0/../../../../x86_64-pc-linux-gnu/include"
#include "..." search starts here:
#include <...> search starts here:

/usr/local/gcc-6.2.0/lib/gcc/x86_64-pc-linux-gnu/6.2.0/../../../../include/c++/6.2.0

/usr/local/gcc-6.2.0/lib/gcc/x86_64-pc-linux-gnu/6.2.0/../../../../include/c++/6.2.0/x86_64-pc-linux-gnu

/usr/local/gcc-6.2.0/lib/gcc/x86_64-pc-linux-gnu/6.2.0/../../../../include/c++/6.2.0/backward
 /usr/local/gcc-6.2.0/lib/gcc/x86_64-pc-linux-gnu/6.2.0/include
 /usr/local/include
 /usr/local/gcc-6.2.0/include
 /usr/local/gcc-6.2.0/lib/gcc/x86_64-pc-linux-gnu/6.2.0/include-fixed
 /usr/include/x86_64-linux-gnu
 /usr/include
End of search list.
GNU C++14 (GCC) version 6.2.0 (x86_64-pc-linux-gnu)
        compiled by GNU C version 6.2.0, GMP version 5.1.3, MPFR version
3.1.2-p3, MPC version 1.0.1, isl version none
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
Compiler executable checksum: 0e0cf061fe2036427948ceefe0c946f5
===============================

The issue seems to require that both the global function f and the class B in
which the member function g() lives should be templates.

The issue is still present on the current mainline, it started with r231349:

b34f7e66cb96f137d5283d6285ffa1d333756e52 is the first bad commit
commit b34f7e66cb96f137d5283d6285ffa1d333756e52
Author: jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4>
Date:   Mon Dec 7 04:34:43 2015 +0000

        PR c++/68597, fix auto9.C and auto-neg1.C with -std=c++1z.

        * decl.c (check_tag_decl): Use ds_type_spec in auto diagnostic.
        * typeck.c (check_return_expr): Check for inconsistent deduction.
        * parser.c (class type_id_in_expr_sentinel): New.
        (cp_parser_primary_expression) [RID_VA_ARG]: Use it.
        (cp_parser_new_expression): Use it.
        (cp_parser_trait_expr): Use it.
        (cp_parser_type_id_1): Complain about auto if in_type_id_in_expr_p.
        (cp_parser_default_type_template_argument): Check for auto.
        (cp_parser_type_id_list): Likewise.
        (cp_parser_simple_type_specifier): Allow auto parms if flag_concepts.
        * pt.c (do_auto_deduction): Handle erroneous type.

    git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@231349
138bc75d-0d04-0410-961f-82ee72b054a4

Thanks...

-lewis
>From gcc-bugs-return-535674-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 13:04:29 2016
Return-Path: <gcc-bugs-return-535674-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 130671 invoked by alias); 23 Aug 2016 13:04:28 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 129348 invoked by uid 48); 23 Aug 2016 13:04:16 -0000
From: "tiago.brusamarello at datacom dot ind.br" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug testsuite/69620] gcc.dg/tree-ssa/loop-19.c scan-tree-dump-times optimized fails for powerpc64-linux-gnu
Date: Tue, 23 Aug 2016 13:04:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: testsuite
X-Bugzilla-Version: 4.9.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: tiago.brusamarello at datacom dot ind.br
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-69620-4-EM7ECIXh9Z@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69620-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69620-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03010.txt.bz2
Content-length: 359

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69620

--- Comment #2 from Tiago Brusamarello <tiago.brusamarello at datacom dot ind.br> ---
(In reply to Andrew Pinski from comment #1)
> Does this fail on 5.4.0?  4.9.4 was the last release of 4.9

We've tested it so far on GCC version 5.3 for PPC64 platforms. In this case the
test result is UNSUPPORTED.
>From gcc-bugs-return-535675-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 13:09:57 2016
Return-Path: <gcc-bugs-return-535675-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 26137 invoked by alias); 23 Aug 2016 13:09:57 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 25936 invoked by uid 48); 23 Aug 2016 13:09:44 -0000
From: "vries at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug lto/70955] [6/7 Regression] Wrong code generation for __builtin_ms_va_list with -flto
Date: Tue, 23 Aug 2016 13:09:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: lto
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords: lto, wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: vries at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-70955-4-QPcOc05qh2@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70955-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70955-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03011.txt.bz2
Content-length: 716

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70955

--- Comment #20 from vries at gcc dot gnu.org ---
(In reply to Steven Shi from comment #19)
> (In reply to vries from comment #18)
> > Created attachment 39484 [details]
> > Tentative patch using attributes ms_abi/sysv_abi
> > 
> > not build or regression tested yet, but at least makes test-case pass.
> 
> Vries,
> I tried apply your patch on latest gcc trunk, build and install the new
> gcc7, it still cannot work. 

I can reproduce the failure with your testcase. The failure disappears when I
apply the patch and rebuild. So, I can't reproduce your observation.

> Below is my test case.

Please next time refer to the PR rather than copy/pasting.
>From gcc-bugs-return-535676-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 13:15:59 2016
Return-Path: <gcc-bugs-return-535676-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 34564 invoked by alias); 23 Aug 2016 13:15:59 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 34403 invoked by uid 55); 23 Aug 2016 13:15:44 -0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/77334] [5/6/7 Regression] Cannot move assign std::map with non-copyable and non-movable mapped_type
Date: Tue, 23 Aug 2016 13:15:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: redi at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77334-4-lHKeIIjmt1@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77334-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77334-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03012.txt.bz2
Content-length: 712

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77334

--- Comment #1 from Jonathan Wakely <redi at gcc dot gnu.org> ---
Author: redi
Date: Tue Aug 23 13:15:12 2016
New Revision: 239698

URL: https://gcc.gnu.org/viewcvs?rev=239698&root=gcc&view=rev
Log:
libstdc++/77334 move assign RB trees of non-copyable types

        PR libstdc++/77334
        * include/bits/stl_tree.h (_Rb_tree::_M_move_assign): New functions.
        (_Rb_tree::operator=(_Rb_tree&&)): Dispatch to _M_move_assign.
        * testsuite/23_containers/map/77334.cc: New test.

Added:
    trunk/libstdc++-v3/testsuite/23_containers/map/77334.cc
Modified:
    trunk/libstdc++-v3/ChangeLog
    trunk/libstdc++-v3/include/bits/stl_tree.h
>From gcc-bugs-return-535677-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 13:18:38 2016
Return-Path: <gcc-bugs-return-535677-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 51568 invoked by alias); 23 Aug 2016 13:18:38 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 47251 invoked by uid 48); 23 Aug 2016 13:18:25 -0000
From: "mikulas at artax dot karlin.mff.cuni.cz" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77330] __float128 segfaults on 32-bit x86 due to 8-byte malloc alignment
Date: Tue, 23 Aug 2016 13:18:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mikulas at artax dot karlin.mff.cuni.cz
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77330-4-fTadDlTLbw@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77330-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77330-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03013.txt.bz2
Content-length: 797

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77330

--- Comment #2 from mikulas at artax dot karlin.mff.cuni.cz ---
Glibc doesn't support types __float128 and decimal float. Only GCC does.

Glibc can't be responsible for decisions made by the GCC developers. Glibc has
been aliging allocated memory on 8 bytes on 32-bit architectures since ever. It
was GCC decision to introduce these new types and it was GCC decision that
these types have 16-byte alignment. GCC could have defined them as 16-byte
values with 8-byte alignment.

When copying general data structures, GCC understand that the memory may be
aligned only on 8 bytes and uses MOVLPS / MOVHPS instructions instead of
MOVAPS. But with __float128, _Decimal128 and SSE vectors, it mistakenly
believes that they are 16-byte aligned.
>From gcc-bugs-return-535678-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 13:20:52 2016
Return-Path: <gcc-bugs-return-535678-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 55744 invoked by alias); 23 Aug 2016 13:20:52 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 55000 invoked by uid 48); 23 Aug 2016 13:20:38 -0000
From: "steven.shi at intel dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug lto/70955] [6/7 Regression] Wrong code generation for __builtin_ms_va_list with -flto
Date: Tue, 23 Aug 2016 13:20:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: lto
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords: lto, wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: steven.shi at intel dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-70955-4-mql4WiN3tR@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70955-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70955-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03014.txt.bz2
Content-length: 469

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70955

--- Comment #21 from Steven Shi <steven.shi at intel dot com> ---
Vries,
Sorry, my bad. I didn't apply your patch completely. Yes, your patch works.
And with your patch, my UEFU firmware gcc lto build pass and boot successfully.
Hope we could check in a formal fix ASAP, because the lto build is Uefi
firmware GCC default build now. This regression bug block us to adopt new
version GCC on Uefi firmware. Thanks!
>From gcc-bugs-return-535679-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 13:24:39 2016
Return-Path: <gcc-bugs-return-535679-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 58987 invoked by alias); 23 Aug 2016 13:24:38 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 58821 invoked by uid 48); 23 Aug 2016 13:24:26 -0000
From: "mikulas at artax dot karlin.mff.cuni.cz" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77330] __float128 segfaults on 32-bit x86 due to 8-byte malloc alignment
Date: Tue, 23 Aug 2016 13:24:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mikulas at artax dot karlin.mff.cuni.cz
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77330-4-UBJMvlU8bw@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77330-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77330-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03015.txt.bz2
Content-length: 609

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77330

--- Comment #3 from mikulas at artax dot karlin.mff.cuni.cz ---
BTW. gcc thinks that with -m32, allocated memory is aligned to 4 bytes and with
-m64 and -mx32, allocated memory is aligned to 16 bytes. You can try to compile
this program into assembler and see if the malloc call is optimized away. On
-m32, it gets optimized away with the constant "3" and it won't get optimized
away with "7" or more.

#include <stdio.h>
#include <stdlib.h>

int main(void)
{
        void *p = malloc(123);
        printf("%d\n", (int)p & 3);
        return 0;
}
>From gcc-bugs-return-535680-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 13:30:32 2016
Return-Path: <gcc-bugs-return-535680-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 78535 invoked by alias); 23 Aug 2016 13:30:27 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 78264 invoked by uid 48); 23 Aug 2016 13:30:17 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug lto/70955] [6/7 Regression] Wrong code generation for __builtin_ms_va_list with -flto
Date: Tue, 23 Aug 2016 13:30:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: lto
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords: lto, wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-70955-4-K5guzPJ10v@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70955-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70955-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03016.txt.bz2
Content-length: 333

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70955

--- Comment #22 from Richard Biener <rguenth at gcc dot gnu.org> ---
(In reply to vries from comment #18)
> Created attachment 39484 [details]
> Tentative patch using attributes ms_abi/sysv_abi
> 
> not build or regression tested yet, but at least makes test-case pass.

LGTM.
>From gcc-bugs-return-535681-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 13:43:58 2016
Return-Path: <gcc-bugs-return-535681-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 28772 invoked by alias); 23 Aug 2016 13:43:58 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 28270 invoked by uid 48); 23 Aug 2016 13:43:45 -0000
From: "sbergman at redhat dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug other/61460] Demangler crash (GDB PR 17043)
Date: Tue, 23 Aug 2016 13:43:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: other
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: sbergman at redhat dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-61460-4-97kxYIoCt7@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-61460-4@http.gcc.gnu.org/bugzilla/>
References: <bug-61460-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03017.txt.bz2
Content-length: 850

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61460

Stephan Bergmann <sbergman at redhat dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |sbergman at redhat dot com

--- Comment #1 from Stephan Bergmann <sbergman at redhat dot com> ---
Experienced a similar c++filt SIGSEV (due to recursive stack overflow) now with
the symbol

_ZNK6clover6detail11basic_rangeINS_13adaptor_rangeIZNS_6kernel6launchERNS_13command_queueERKSt6vectorImSaImEESA_SA_EUlmE_JRS8_EEENS0_16iterator_adaptorISB_JN9__gnu_cxx17__normal_iteratorIPmS8_EEEEESJ_EcvT_IS6_IPjSaISN_EEvEEv

(also while debugging a process involving libMesaOpenCL; on Fedora 24).  Bug
70909 presumably discusses the root cause of these crashes.
>From gcc-bugs-return-535682-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 13:45:10 2016
Return-Path: <gcc-bugs-return-535682-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 32318 invoked by alias); 23 Aug 2016 13:45:10 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 31845 invoked by uid 48); 23 Aug 2016 13:44:56 -0000
From: "sbergman at redhat dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/70909] Libiberty Demangler segfaults (4)
Date: Tue, 23 Aug 2016 13:45:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: sbergman at redhat dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-70909-4-r98EHr61ch@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70909-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70909-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03018.txt.bz2
Content-length: 732

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70909

Stephan Bergmann <sbergman at redhat dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |sbergman at redhat dot com

--- Comment #1 from Stephan Bergmann <sbergman at redhat dot com> ---
(In reply to Marcel Böhme from comment #0)
> This specific stack overflow has not been reported but with a bit of
> searching it seems to be linked to the open bugs PR61460, PR68700, PR67738,
> PR68383, PR70517, PR61805, PR62279, and the meta bug PR67264. The prepared
> patch addresses all of these.

Is that patch available anywhere?
>From gcc-bugs-return-535684-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 13:49:47 2016
Return-Path: <gcc-bugs-return-535684-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 39672 invoked by alias); 23 Aug 2016 13:49:47 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 39443 invoked by uid 55); 23 Aug 2016 13:49:34 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72851] [6 Regression] memory hog with -O3 on s390x-linux-gnu
Date: Tue, 23 Aug 2016 13:49:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-72851-4-9lwDHZ6UAh@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72851-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72851-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03020.txt.bz2
Content-length: 1969

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72851

--- Comment #9 from Richard Biener <rguenth at gcc dot gnu.org> ---
Author: rguenth
Date: Tue Aug 23 13:49:00 2016
New Revision: 239699

URL: https://gcc.gnu.org/viewcvs?rev=239699&root=gcc&view=rev
Log:
2016-08-23  Richard Biener  <rguenther@suse.de>

        Backport from mainline
        2016-08-16  Richard Biener  <rguenther@suse.de>

        PR tree-optimization/76783
        * tree-ssa-propagate.c (ssa_prop_init): Use RPO order.  Clear
        BB visited flags at start.

        * gcc.dg/pr76783.c: New testcase.
        * gcc.dg/tree-ssa/pr69270-2.c: Adjust.

        2016-08-12  Richard Biener  <rguenther@suse.de>

        PR tree-optimization/72851
        * tree-ssa-propagate.c: Include cfganal.h.  Rewrite block and stmt
        worklists to use bitmaps indexed in execution order.
        (executable_blocks, cfg_blocks_num, cfg_blocks_tail, cfg_blocks_head,
        bb_in_list, interesting_ssa_edges, varying_ssa_edges): Remove.
        (cfg_blocks): Make a bitmap.
        (bb_to_cfg_order, cfg_order_to_bb, ssa_edge_worklist, uid_to_stmt):
        New globals.
        (cfg_blocks_empty_p): Adjust.
        (cfg_blocks_add): Likewise.
        (cfg_blocks_get): Likewise.
        (add_ssa_edge): Likewise.
        (add_control_edge): Likewise.
        (simulate_stmt): Likewise.
        (process_ssa_edge_worklist): Likewise.
        (simulate_block): Likewise.
        (ssa_prop_init): Compute PRE order and stmt UIDs.
        (ssa_prop_fini): Adjust.
        (ssa_propagate): Adjust.

        * gcc.dg/torture/pr72851.c: New testcase.

Added:
    branches/gcc-6-branch/gcc/testsuite/gcc.dg/pr76783.c
    branches/gcc-6-branch/gcc/testsuite/gcc.dg/torture/pr72851.c
Modified:
    branches/gcc-6-branch/gcc/ChangeLog
    branches/gcc-6-branch/gcc/testsuite/ChangeLog
    branches/gcc-6-branch/gcc/testsuite/gcc.dg/tree-ssa/pr69270-2.c
    branches/gcc-6-branch/gcc/tree-ssa-propagate.c
>From gcc-bugs-return-535683-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 13:49:47 2016
Return-Path: <gcc-bugs-return-535683-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 39661 invoked by alias); 23 Aug 2016 13:49:47 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 39421 invoked by uid 55); 23 Aug 2016 13:49:34 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/76783] [7 Regression] wrong code with conditional vector assignment @ -Og
Date: Tue, 23 Aug 2016 13:49:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-76783-4-8ZW6OYIxzU@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76783-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76783-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03019.txt.bz2
Content-length: 1969

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76783

--- Comment #7 from Richard Biener <rguenth at gcc dot gnu.org> ---
Author: rguenth
Date: Tue Aug 23 13:49:00 2016
New Revision: 239699

URL: https://gcc.gnu.org/viewcvs?rev=239699&root=gcc&view=rev
Log:
2016-08-23  Richard Biener  <rguenther@suse.de>

        Backport from mainline
        2016-08-16  Richard Biener  <rguenther@suse.de>

        PR tree-optimization/76783
        * tree-ssa-propagate.c (ssa_prop_init): Use RPO order.  Clear
        BB visited flags at start.

        * gcc.dg/pr76783.c: New testcase.
        * gcc.dg/tree-ssa/pr69270-2.c: Adjust.

        2016-08-12  Richard Biener  <rguenther@suse.de>

        PR tree-optimization/72851
        * tree-ssa-propagate.c: Include cfganal.h.  Rewrite block and stmt
        worklists to use bitmaps indexed in execution order.
        (executable_blocks, cfg_blocks_num, cfg_blocks_tail, cfg_blocks_head,
        bb_in_list, interesting_ssa_edges, varying_ssa_edges): Remove.
        (cfg_blocks): Make a bitmap.
        (bb_to_cfg_order, cfg_order_to_bb, ssa_edge_worklist, uid_to_stmt):
        New globals.
        (cfg_blocks_empty_p): Adjust.
        (cfg_blocks_add): Likewise.
        (cfg_blocks_get): Likewise.
        (add_ssa_edge): Likewise.
        (add_control_edge): Likewise.
        (simulate_stmt): Likewise.
        (process_ssa_edge_worklist): Likewise.
        (simulate_block): Likewise.
        (ssa_prop_init): Compute PRE order and stmt UIDs.
        (ssa_prop_fini): Adjust.
        (ssa_propagate): Adjust.

        * gcc.dg/torture/pr72851.c: New testcase.

Added:
    branches/gcc-6-branch/gcc/testsuite/gcc.dg/pr76783.c
    branches/gcc-6-branch/gcc/testsuite/gcc.dg/torture/pr72851.c
Modified:
    branches/gcc-6-branch/gcc/ChangeLog
    branches/gcc-6-branch/gcc/testsuite/ChangeLog
    branches/gcc-6-branch/gcc/testsuite/gcc.dg/tree-ssa/pr69270-2.c
    branches/gcc-6-branch/gcc/tree-ssa-propagate.c
>From gcc-bugs-return-535685-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 13:54:06 2016
Return-Path: <gcc-bugs-return-535685-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 100107 invoked by alias); 23 Aug 2016 13:54:06 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 99677 invoked by uid 48); 23 Aug 2016 13:53:53 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/72851] [6 Regression] memory hog with -O3 on s390x-linux-gnu
Date: Tue, 23 Aug 2016 13:54:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_known_to_work resolution
Message-ID: <bug-72851-4-KuTcdbAmmV@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72851-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72851-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03021.txt.bz2
Content-length: 485

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72851

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
      Known to work|                            |6.2.1
         Resolution|---                         |FIXED

--- Comment #10 from Richard Biener <rguenth at gcc dot gnu.org> ---
Fixed.
>From gcc-bugs-return-535686-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 13:54:23 2016
Return-Path: <gcc-bugs-return-535686-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 101311 invoked by alias); 23 Aug 2016 13:54:23 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 101263 invoked by uid 48); 23 Aug 2016 13:54:19 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77347] [6/7 Regression] Incorrect auto deduction failure in template class member function
Date: Tue, 23 Aug 2016 13:54:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone short_desc
Message-ID: <bug-77347-4-2tV3AHIz36@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77347-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77347-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03022.txt.bz2
Content-length: 573

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77347

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |6.3
            Summary|[6 Regression] Incorrect    |[6/7 Regression] Incorrect
                   |auto deduction failure in   |auto deduction failure in
                   |template class member       |template class member
                   |function                    |function
>From gcc-bugs-return-535688-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 13:54:50 2016
Return-Path: <gcc-bugs-return-535688-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 103056 invoked by alias); 23 Aug 2016 13:54:50 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 102181 invoked by uid 48); 23 Aug 2016 13:54:36 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77345] [7 Regression] Segmentation fault w/ -misel -O1 (and above)
Date: Tue, 23 Aug 2016 13:54:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-77345-4-Lxd2G2Yoo5@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77345-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77345-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03024.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77345

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |7.0
>From gcc-bugs-return-535687-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 13:54:37 2016
Return-Path: <gcc-bugs-return-535687-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 102194 invoked by alias); 23 Aug 2016 13:54:37 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 101825 invoked by uid 48); 23 Aug 2016 13:54:27 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77346] [7 Regression] ICE in push_reload, at reload.c:1350
Date: Tue, 23 Aug 2016 13:54:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-77346-4-NWGBYe1SJ0@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77346-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77346-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03023.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77346

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |7.0
>From gcc-bugs-return-535689-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 13:59:06 2016
Return-Path: <gcc-bugs-return-535689-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 119988 invoked by alias); 23 Aug 2016 13:59:06 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 119701 invoked by uid 55); 23 Aug 2016 13:58:52 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/77286] [7 Regression] ICE in fold_convert_loc, at fold-const.c:2248 building 435.gromacs
Date: Tue, 23 Aug 2016 13:59:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77286-4-q7z0d6OBYP@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77286-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77286-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03025.txt.bz2
Content-length: 626

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77286

--- Comment #8 from Richard Biener <rguenth at gcc dot gnu.org> ---
Author: rguenth
Date: Tue Aug 23 13:58:19 2016
New Revision: 239700

URL: https://gcc.gnu.org/viewcvs?rev=239700&root=gcc&view=rev
Log:
2016-08-23  Richard Biener  <rguenther@suse.de>

        PR tree-optimization/77286
        * tree-vect-loop.c (vect_analyze_loop_form_1): Do not modify
        the CFG here.
        (vect_transform_loop): Split exit edges of loop and scalar
        loop if required and at the appropriate time.

Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/tree-vect-loop.c
>From gcc-bugs-return-535690-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 14:07:22 2016
Return-Path: <gcc-bugs-return-535690-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 47977 invoked by alias); 23 Aug 2016 14:07:22 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 47787 invoked by uid 48); 23 Aug 2016 14:07:08 -0000
From: "dflater at nist dot gov" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77348] New: -march=skylake still not working because config.gcc
Date: Tue, 23 Aug 2016 14:07:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dflater at nist dot gov
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-77348-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03026.txt.bz2
Content-length: 723

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77348

            Bug ID: 77348
           Summary: -march=skylake still not working because config.gcc
           Product: gcc
           Version: 6.2.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: target
          Assignee: unassigned at gcc dot gnu.org
          Reporter: dflater at nist dot gov
  Target Milestone: ---

Created attachment 39486
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39486&action=edit
patch for config.gcc to add skylake

Problem existed in 6.1.0 release and persists in 6.2.0 release.
Cannot configure for -march=skylake because it's missing in config.gcc.
Patch attached.
>From gcc-bugs-return-535691-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 14:09:13 2016
Return-Path: <gcc-bugs-return-535691-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 123368 invoked by alias); 23 Aug 2016 14:09:13 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 123204 invoked by uid 48); 23 Aug 2016 14:09:00 -0000
From: "boehme.marcel at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/70909] Libiberty Demangler segfaults (4)
Date: Tue, 23 Aug 2016 14:09:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: boehme.marcel at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-70909-4-SywKfE7eeY@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70909-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70909-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03027.txt.bz2
Content-length: 208

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70909

--- Comment #2 from Marcel Böhme <boehme.marcel at gmail dot com> ---
Here: https://gcc.gnu.org/ml/gcc-patches/2016-05/msg00105.html
Pending review.
>From gcc-bugs-return-535692-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 14:12:32 2016
Return-Path: <gcc-bugs-return-535692-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 15076 invoked by alias); 23 Aug 2016 14:12:32 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 14829 invoked by uid 48); 23 Aug 2016 14:12:19 -0000
From: "dflater at nist dot gov" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77348] --with-arch=skylake still not working because config.gcc
Date: Tue, 23 Aug 2016 14:12:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dflater at nist dot gov
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-77348-4-zGnOPI4NDY@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77348-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77348-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03028.txt.bz2
Content-length: 423

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77348

David Flater <dflater at nist dot gov> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |dflater at nist dot gov

--- Comment #1 from David Flater <dflater at nist dot gov> ---
Correction, cannot configure --with-arch=skyake.
>From gcc-bugs-return-535693-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 14:21:36 2016
Return-Path: <gcc-bugs-return-535693-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 70500 invoked by alias); 23 Aug 2016 14:21:36 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 70039 invoked by uid 55); 23 Aug 2016 14:21:23 -0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/77334] [5/6/7 Regression] Cannot move assign std::map with non-copyable and non-movable mapped_type
Date: Tue, 23 Aug 2016 14:21:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: rejects-valid
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: redi at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77334-4-glPpuCZjTU@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77334-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77334-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03029.txt.bz2
Content-length: 798

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77334

--- Comment #2 from Jonathan Wakely <redi at gcc dot gnu.org> ---
Author: redi
Date: Tue Aug 23 14:20:50 2016
New Revision: 239701

URL: https://gcc.gnu.org/viewcvs?rev=239701&root=gcc&view=rev
Log:
libstdc++/77334 move assign RB trees of non-copyable types

        PR libstdc++/77334
        * include/bits/stl_tree.h (_Rb_tree::_M_move_assign): New functions.
        (_Rb_tree::operator=(_Rb_tree&&)): Dispatch to _M_move_assign.
        Include _Compare in noexcept.
        * testsuite/23_containers/map/77334.cc: New test.

Added:
    branches/gcc-5-branch/libstdc++-v3/testsuite/23_containers/map/77334.cc
Modified:
    branches/gcc-5-branch/libstdc++-v3/ChangeLog
    branches/gcc-5-branch/libstdc++-v3/include/bits/stl_tree.h
>From gcc-bugs-return-535694-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 14:21:55 2016
Return-Path: <gcc-bugs-return-535694-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 71746 invoked by alias); 23 Aug 2016 14:21:54 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 71331 invoked by uid 55); 23 Aug 2016 14:21:49 -0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/77334] [5/6/7 Regression] Cannot move assign std::map with non-copyable and non-movable mapped_type
Date: Tue, 23 Aug 2016 14:21:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: rejects-valid
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: redi at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77334-4-h2XPfjuUfH@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77334-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77334-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03030.txt.bz2
Content-length: 760

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77334

--- Comment #3 from Jonathan Wakely <redi at gcc dot gnu.org> ---
Author: redi
Date: Tue Aug 23 14:21:16 2016
New Revision: 239702

URL: https://gcc.gnu.org/viewcvs?rev=239702&root=gcc&view=rev
Log:
libstdc++/77334 move assign RB trees of non-copyable types

        PR libstdc++/77334
        * include/bits/stl_tree.h (_Rb_tree::_M_move_assign): New functions.
        (_Rb_tree::operator=(_Rb_tree&&)): Dispatch to _M_move_assign.
        * testsuite/23_containers/map/77334.cc: New test.

Added:
    branches/gcc-6-branch/libstdc++-v3/testsuite/23_containers/map/77334.cc
Modified:
    branches/gcc-6-branch/libstdc++-v3/ChangeLog
    branches/gcc-6-branch/libstdc++-v3/include/bits/stl_tree.h
>From gcc-bugs-return-535695-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 14:26:00 2016
Return-Path: <gcc-bugs-return-535695-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 118207 invoked by alias); 23 Aug 2016 14:25:59 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 113605 invoked by uid 48); 23 Aug 2016 14:25:46 -0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/77334] [5/6/7 Regression] Cannot move assign std::map with non-copyable and non-movable mapped_type
Date: Tue, 23 Aug 2016 14:25:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: rejects-valid
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: redi at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-77334-4-KnRmd7wNhp@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77334-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77334-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03031.txt.bz2
Content-length: 444

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77334

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #4 from Jonathan Wakely <redi at gcc dot gnu.org> ---
Fixed for 5.5, 6.3 and 7.
>From gcc-bugs-return-535696-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 15:01:50 2016
Return-Path: <gcc-bugs-return-535696-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 98482 invoked by alias); 23 Aug 2016 15:01:50 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 98219 invoked by uid 48); 23 Aug 2016 15:01:37 -0000
From: "dje at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77349] New: AIX DWARF debugging offset in 64 bit mode
Date: Tue, 23 Aug 2016 15:01:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dje at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone cf_gcctarget
Message-ID: <bug-77349-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03032.txt.bz2
Content-length: 744

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77349

            Bug ID: 77349
           Summary: AIX DWARF debugging offset in 64 bit mode
           Product: gcc
           Version: 6.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: target
          Assignee: unassigned at gcc dot gnu.org
          Reporter: dje at gcc dot gnu.org
  Target Milestone: ---
            Target: powerpc-ibm-aix*

The AIX assembler implicitly inserts the length information at the beginning of
DWARF debugging sections.  In 64 bit mode, it also implicitly inserts the 64
bit DWARF extension escape sequence. This requires that GCC emit 64 bit offsets
to match the directive emitted by the assembler.
>From gcc-bugs-return-535697-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 15:06:28 2016
Return-Path: <gcc-bugs-return-535697-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 107020 invoked by alias); 23 Aug 2016 15:06:27 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 106834 invoked by uid 48); 23 Aug 2016 15:06:15 -0000
From: "dje at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77349] AIX DWARF debugging offset in 64 bit mode
Date: Tue, 23 Aug 2016 15:06:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: wrong-debug
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dje at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: dje at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on assigned_to target_milestone everconfirmed
Message-ID: <bug-77349-4-r5x2uB4n0d@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77349-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77349-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03033.txt.bz2
Content-length: 676

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77349

David Edelsohn <dje at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |wrong-debug
             Status|UNCONFIRMED                 |ASSIGNED
   Last reconfirmed|                            |2016-08-23
           Assignee|unassigned at gcc dot gnu.org      |dje at gcc dot gnu.org
   Target Milestone|---                         |5.5
     Ever confirmed|0                           |1

--- Comment #1 from David Edelsohn <dje at gcc dot gnu.org> ---
Confirmed.
>From gcc-bugs-return-535698-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 15:08:16 2016
Return-Path: <gcc-bugs-return-535698-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 109519 invoked by alias); 23 Aug 2016 15:08:16 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 109324 invoked by uid 48); 23 Aug 2016 15:08:04 -0000
From: "wdijkstr at arm dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/69847] Spec 2006 403.gcc slows down with -mlra vs. reload on PowerPC
Date: Tue, 23 Aug 2016 15:08:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wdijkstr at arm dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-69847-4-AoaRIJLlcp@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69847-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69847-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03034.txt.bz2
Content-length: 696

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69847

Wilco <wdijkstr at arm dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |wdijkstr at arm dot com

--- Comment #27 from Wilco <wdijkstr at arm dot com> ---
On AArch64 this patch improves codesize slightly and perf results are within
noise. Typical changes are like:

1)
 mov x1, x2
 mov w2, 96
 ldr x1, [x1, 8]
  --->>
 ldr x1, [x2, 8]
 mov w2, 96

2)
 add    x0, x0, :lo12:board
 mov    x26, x0
--->>>
 add    x26, x0, :lo12:board

so basically avoiding redundant moves which is always good.
>From gcc-bugs-return-535699-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 15:12:27 2016
Return-Path: <gcc-bugs-return-535699-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 120450 invoked by alias); 23 Aug 2016 15:12:27 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 120239 invoked by uid 48); 23 Aug 2016 15:12:15 -0000
From: "aldyh at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/61409] [5/6/7 regression] -Wmaybe-uninitialized false-positive with -O2
Date: Tue, 23 Aug 2016 15:12:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: aldyh at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-61409-4-PpjNRDdDkL@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-61409-4@http.gcc.gnu.org/bugzilla/>
References: <bug-61409-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03035.txt.bz2
Content-length: 989

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61409

Aldy Hernandez <aldyh at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |aldyh at gcc dot gnu.org

--- Comment #18 from Aldy Hernandez <aldyh at gcc dot gnu.org> ---
(In reply to Jeffrey A. Law from comment #16)
> AFAICT tree-ssa-uninit won't look at the predicate associated with an
> undefined PHI argument and test it against the predicate for the actual use.
> 
> ie, given this PHI from the testcase:
> 
> ;;   basic block 6, loop depth 0
> ;;    pred:       9
> ;;                5
>   # ptr_1 = PHI <ptr_5(D)(9), ptr_9(5)>
> 
> We want to look at the control dependent path that leads to the edge (9,5). 
> For this test, that edge is control dependent on bb2:

Jeff, do you mean edge(9,6) throughout?  Because I don't see any flow of
control from 9->5.
>From gcc-bugs-return-535700-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 15:14:32 2016
Return-Path: <gcc-bugs-return-535700-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 124332 invoked by alias); 23 Aug 2016 15:14:31 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 124100 invoked by uid 48); 23 Aug 2016 15:14:17 -0000
From: "tmark at isc dot org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/69789] g++ -O2 is removing tests against a variable that can be changed
Date: Tue, 23 Aug 2016 15:14:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 5.3.1
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: tmark at isc dot org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-69789-4-lE30TdGIxi@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69789-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69789-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03036.txt.bz2
Content-length: 4837

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69789

--- Comment #8 from Thomas Markwalder <tmark at isc dot org> ---
(In reply to Jonathan Wakely from comment #7)
> (In reply to Thomas Markwalder from comment #5)
> > A bit more digging reveals that in the logic expression which fails:
> > 
> > {{{
> >     // Check if we need to run the operation again.
> >     if (ec == boost::asio::error::would_block
> >         || ec == boost::asio::error::try_again)
> >       return false;
> > }}}
> > 
> > The value for error_category:m_cat differs between the implicitly created
> > instances for would_block and try_again.
> 
> Do you mean that error_code(boost::asio::error::would_block) !=
> error_code(boost::asio::error::try_again) ?
> 
> I don't see how that's possible, since in the optimized GIMPLE dump they
> both use the same constructor, which isn't inlined. The two enums have the
> same value, and the constructor will call the same asio::make_error_code()
> overload that sets the category to boost::system_category().
> 
>              
> boost::system::error_code::error_code<boost::asio::error::basic_errors>
> (&D.94931, 11, 0B);
>               cleanup.88 = 1;
>               D.165192 = boost::system::operator== (ec, &D.94931);
>               if (D.165192 != 0) goto <D.165186>; else goto <D.165193>;
>               <D.165193>:
>              
> boost::system::error_code::error_code<boost::asio::error::basic_errors>
> (&D.94932, 11, 0B);
>               cleanup.89 = 1;
>               D.165197 = boost::system::operator== (ec, &D.94932);
>               if (D.165197 != 0) goto <D.165186>; else goto <D.165187>;
>               <D.165186>:
>               iftmp.87 = 1;
>               goto <D.165188>;
>               <D.165187>:
>               iftmp.87 = 0;
>               <D.165188>:
>               retval.86 = iftmp.87;
> 
> 
> So what exactly are you seeing? What digging have you done? Stepped through
> with the debugger?
> 
> The most likely explanation seems to be that ec.category() !=
> boost::system::system_category() and so the comparisons are always false.
> 
> 
> > If one splits the if into two separate if statements,  the values for m_cat
> > are the same.  This looks a like the behavior described under "Static
> > Variables in Inline Functions" described here:
> > 
> > http://processors.wiki.ti.com/index.php/C++_Inlining_Issues
> 
> This function has nothing to do with static variables.

Hello Jonathan:

It has been some months since I looked at this so let me try to recap. 
I did do a great deal of stepping through with the debugger as well as
instrumented the Boost code with couts in various places.  The basic issue
seems to be that when you build Boost such that BOOST_ERROR_CODE_HEADER_ONLY is 
defined, then the following function in <boost>/system/detail/error_code.ipp
is declared as inline:

  : 
# ifdef BOOST_ERROR_CODE_HEADER_ONLY
#   define BOOST_SYSTEM_LINKAGE inline
# else
#   define BOOST_SYSTEM_LINKAGE BOOST_SYSTEM_DECL
# endif

    BOOST_SYSTEM_LINKAGE const error_category & system_category()
BOOST_SYSTEM_NOEXCEPT
    {
      static const system_error_category  system_category_const;
      return system_category_const;
    }
  :

Apparently some combination of boost includes along with our own, and building
with optimization, we end up with more than once instance of this function
each with its own value for the static variable, system_error_category.  Thus
the value returned by invoking system_category() depends upon which instance
is invoked. The result is the aforementioned if-clause:

    // Check if we need to run the operation again.
    if (ec == boost::asio::error::would_block
        || ec == boost::asio::error::try_again)
      return false;

not evaluating to true even though it should. I confirmed with the debugger
that  ec.m_cat does not reliably equal would_block.m_cat or try_again.m_cat.
If you split the clause into two separate statements it works reliably:

    // Check if we need to run the operation again.
    if (ec == boost::asio::error::would_block)
      return false;

    // Check if we need to run the operation again.
    if (ec == boost::asio::error::try_again)
      return false;

Not necessarily meaningful, but noteworthy, and of course, I can't use that
as a solution as that's within the boost code.

If one compiles without optimization or one builds with Boost system library 
rather than with BOOST_ERROR_CODE_HEADER_ONLY defined, the issue disappears.
I did try to replicate it with only boost code and could not do so.  I think
there is some corner case we are hitting in permits there to be more than
one static instance of system_error_category.
>From gcc-bugs-return-535701-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 15:28:50 2016
Return-Path: <gcc-bugs-return-535701-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 90729 invoked by alias); 23 Aug 2016 15:28:50 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 90522 invoked by uid 48); 23 Aug 2016 15:28:37 -0000
From: "su at cs dot ucdavis.edu" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77338] [7 Regression] ICE on invalid C++11 code on x86_64-linux-gnu: Segmentation fault
Date: Tue, 23 Aug 2016 15:28:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: su at cs dot ucdavis.edu
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77338-4-2LS7HcwSr5@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77338-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77338-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03037.txt.bz2
Content-length: 3119

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77338

--- Comment #2 from Zhendong Su <su at cs dot ucdavis.edu> ---
(In reply to Marek Polacek from comment #1)
> I can't reproduce:
> 
> $ ./cc1plus -quiet q.C
> q.C:3:51: error: no match for call to ‘(S) (S&)’
>  template < typename > auto f (S s)->decltype (s (s));
>                                                    ^
> q.C:3:51: error: no match for call to ‘(S) (S&)’

Marek, I still see the ICE with r239693: 

$ g++-trunk -v
Using built-in specs.
COLLECT_GCC=g++-trunk
COLLECT_LTO_WRAPPER=/usr/local/gcc-trunk/libexec/gcc/x86_64-pc-linux-gnu/7.0.0/lto-wrapper
Target: x86_64-pc-linux-gnu
Configured with: ../gcc-source-trunk/configure --enable-languages=c,c++,lto
--prefix=/usr/local/gcc-trunk --disable-bootstrap
Thread model: posix
gcc version 7.0.0 20160823 (experimental) [trunk revision 239693] (GCC) 
$ 
$ g++-trunk -c small.cpp
small.cpp:3:51: internal compiler error: Segmentation fault
 template < typename > auto f (S s)->decltype (s (s));
                                                   ^
0xdd6b2f crash_signal
        ../../gcc-source-trunk/gcc/toplev.c:335
0x749d4b tree_check
        ../../gcc-source-trunk/gcc/tree.h:3025
0x749d4b is_really_empty_class(tree_node*)
        ../../gcc-source-trunk/gcc/cp/class.c:8447
0x8b7822 cxx_eval_constant_expression
        ../../gcc-source-trunk/gcc/cp/constexpr.c:3750
0x8bdb99 cxx_eval_outermost_constant_expr
        ../../gcc-source-trunk/gcc/cp/constexpr.c:4390
0x8c10ee fold_non_dependent_expr(tree_node*)
        ../../gcc-source-trunk/gcc/cp/constexpr.c:4669
0x6c98d4 build_non_dependent_expr(tree_node*)
        ../../gcc-source-trunk/gcc/cp/pt.c:23818
0x821b40 finish_call_expr(tree_node*, vec<tree_node*, va_gc, vl_embed>**, bool,
bool, int)
        ../../gcc-source-trunk/gcc/cp/semantics.c:2329
0x798770 cp_parser_postfix_expression
        ../../gcc-source-trunk/gcc/cp/parser.c:6937
0x79992d cp_parser_decltype_expr
        ../../gcc-source-trunk/gcc/cp/parser.c:13266
0x79992d cp_parser_decltype
        ../../gcc-source-trunk/gcc/cp/parser.c:13367
0x797be7 cp_parser_simple_type_specifier
        ../../gcc-source-trunk/gcc/cp/parser.c:16258
0x793e61 cp_parser_type_specifier
        ../../gcc-source-trunk/gcc/cp/parser.c:16049
0x7963d2 cp_parser_type_specifier_seq
        ../../gcc-source-trunk/gcc/cp/parser.c:20184
0x7a0ab2 cp_parser_type_id_1
        ../../gcc-source-trunk/gcc/cp/parser.c:20046
0x7a0276 cp_parser_trailing_type_id
        ../../gcc-source-trunk/gcc/cp/parser.c:20118
0x7a0276 cp_parser_late_return_type_opt
        ../../gcc-source-trunk/gcc/cp/parser.c:19958
0x7a0276 cp_parser_direct_declarator
        ../../gcc-source-trunk/gcc/cp/parser.c:19147
0x7a0276 cp_parser_declarator
        ../../gcc-source-trunk/gcc/cp/parser.c:18967
0x7b6025 cp_parser_init_declarator
        ../../gcc-source-trunk/gcc/cp/parser.c:18512
Please submit a full bug report,
with preprocessed source if appropriate.
Please include the complete backtrace with any bug report.
See <http://gcc.gnu.org/bugs.html> for instructions.
$
>From gcc-bugs-return-535702-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 15:29:30 2016
Return-Path: <gcc-bugs-return-535702-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 91947 invoked by alias); 23 Aug 2016 15:29:30 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 91798 invoked by uid 48); 23 Aug 2016 15:29:17 -0000
From: "aldyh at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/61409] [5/6/7 regression] -Wmaybe-uninitialized false-positive with -O2
Date: Tue, 23 Aug 2016 15:29:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: aldyh at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-61409-4-ANbaaR80l9@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-61409-4@http.gcc.gnu.org/bugzilla/>
References: <bug-61409-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03038.txt.bz2
Content-length: 1228

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61409

--- Comment #19 from Aldy Hernandez <aldyh at gcc dot gnu.org> ---
Also, unless I'm missing something, in Jeff's analysis, I see no reference to
j, which plays a pivotal role.

In the testcase in comment 14, we can see that the guard for ptr_14 is actually
[i && j==0]:

    if (i)
      {
        if (j)
          return; /* bar(); */
        ptr = init();
      }

...because on j != 0, we exit, which is what the .uninit dump is suggesting
with:

[AFTER NORMALIZATION -- [DEF]:
ptr_14 = PHI <ptr_18(D)(9), ptr_22(5)>
is guarded by :

 (.NOT.) j_20(D) != 0 (.AND.) i_17(D) != 0

Meanwhile, the use we are warning on is [i != 0]:

[AFTER NORMALIZATION -- [USE]:
rw = ptr_14;
is guarded by :

i_17(D) != 0

So the problem is that while the guard for the DEF is [i != 0 && j == 0], the
guard for the USE is only [i != 0].  Uninit should somehow be aware that if PTR
was set, then  j==0, because otherwise we would've exited the function.

You can see that .uninit is expecting the use to be guarded by [i != 0 && j ==
0], by adding "&& !j" to the guard and silencing the warning:

   if (i && !j)
    {
      rw=ptr;
    }
>From gcc-bugs-return-535703-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 15:31:30 2016
Return-Path: <gcc-bugs-return-535703-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 94292 invoked by alias); 23 Aug 2016 15:31:30 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 94161 invoked by uid 48); 23 Aug 2016 15:31:18 -0000
From: "seurer at linux dot vnet.ibm.com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/68972] g++.dg/cpp1y/vla-initlist1.C test case fails on powerpc64le
Date: Tue, 23 Aug 2016 15:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: seurer at linux dot vnet.ibm.com
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: msebor at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-68972-4-vL5LH3p7Ki@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68972-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68972-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03039.txt.bz2
Content-length: 206

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68972

--- Comment #6 from Bill Seurer <seurer at linux dot vnet.ibm.com> ---
This test started passing today.  I am not sure which update fixed it, though.
>From gcc-bugs-return-535704-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 15:32:59 2016
Return-Path: <gcc-bugs-return-535704-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 97774 invoked by alias); 23 Aug 2016 15:32:59 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 97428 invoked by uid 48); 23 Aug 2016 15:32:46 -0000
From: "aldyh at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/61409] [5/6/7 regression] -Wmaybe-uninitialized false-positive with -O2
Date: Tue, 23 Aug 2016 15:32:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: aldyh at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-61409-4-tGEUVep7DV@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-61409-4@http.gcc.gnu.org/bugzilla/>
References: <bug-61409-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03040.txt.bz2
Content-length: 513

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61409

--- Comment #20 from Aldy Hernandez <aldyh at gcc dot gnu.org> ---
If anyone is interested, here is an even smaller testcase:

int *rw;
int line_height;
int pixel_width;
int text_cols;
int width1, width2, width3;

void *pointer;

void f (int i, int j)
{
  void *ptr;
  if (i)
    {
      if (j)
        return;
      ptr = pointer;
    }
  pixel_width = 1234 + width1 + 2 * width2 + 2 * width3;
  *rw = text_cols + line_height;
  if (i)
    rw=ptr;
}
>From gcc-bugs-return-535705-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 15:34:22 2016
Return-Path: <gcc-bugs-return-535705-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 99436 invoked by alias); 23 Aug 2016 15:34:21 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 99294 invoked by uid 48); 23 Aug 2016 15:34:09 -0000
From: "aldyh at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/61409] [5/6/7 regression] -Wmaybe-uninitialized false-positive with -O2
Date: Tue, 23 Aug 2016 15:34:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: aldyh at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: attachments.created
Message-ID: <bug-61409-4-ElWJ59m9b9@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-61409-4@http.gcc.gnu.org/bugzilla/>
References: <bug-61409-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03041.txt.bz2
Content-length: 324

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61409

--- Comment #21 from Aldy Hernandez <aldyh at gcc dot gnu.org> ---
Created attachment 39487
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39487&action=edit
even more^2 reduced testcase

Smaller testcase without any structure nonsense and even less variables.
>From gcc-bugs-return-535706-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 16:01:02 2016
Return-Path: <gcc-bugs-return-535706-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 105104 invoked by alias); 23 Aug 2016 16:01:02 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 105001 invoked by uid 55); 23 Aug 2016 16:00:55 -0000
From: "joseph at codesourcery dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77330] __float128 segfaults on 32-bit x86 due to 8-byte malloc alignment
Date: Tue, 23 Aug 2016 16:01:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: joseph at codesourcery dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77330-4-fB1x5hUs31@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77330-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77330-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03042.txt.bz2
Content-length: 1548

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77330

--- Comment #4 from joseph at codesourcery dot com <joseph at codesourcery dot com> ---
When there isn't whole-implementation, including library, support for the 
types as "basic types" (see the resolution to DR#445), you need to 
consider them as some other kind of type, analogous to vector types, for 
which you need to use aligned_alloc (or posix_memalign etc.) just as with 
vector types (if you'd used __m512 in place of __float128, for example).  
But I say that unlike vector types, _Decimal128 and _Float128 *should* be 
considered basic types, and so glibc, supporting being used together with 
libdfp, *should* have the malloc alignment increased accordingly and this 
should be considered a glibc bug (which is no longer hard to fix thanks to 
the work done to fix malloc alignment on powerpc32).

It's always the case that however you construct a pointer to a type, it's 
your responsibility to ensure that it's appropriately aligned for that 
type, which means 16-byte-aligned for a structure containing __float128; 
it's not GCC's responsibility to second-guess whether your code really 
ensures that.  If there are 16-byte-aligned basic types, malloc is an 
appropriate means of ensuring that and it's a malloc bug not to provide 
such alignment.  When 16-byte-alignment is not a fundamental alignment 
requirement, malloc is not an appropriate means and using malloc there is 
a bug in the program using malloc for such an allocation.
>From gcc-bugs-return-535707-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 16:02:04 2016
Return-Path: <gcc-bugs-return-535707-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 110377 invoked by alias); 23 Aug 2016 16:02:03 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 110170 invoked by uid 48); 23 Aug 2016 16:01:55 -0000
From: "wdijkstr at arm dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77308] surprisingly large stack usage for sha512 on arm
Date: Tue, 23 Aug 2016 16:02:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization, ra
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wdijkstr at arm dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-77308-4-GDUEubw4W9@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77308-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77308-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03043.txt.bz2
Content-length: 758

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77308

Wilco <wdijkstr at arm dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |wdijkstr at arm dot com

--- Comment #10 from Wilco <wdijkstr at arm dot com> ---
The register allocator doesn't correctly track liferanges for SETs with a
subreg and this can cause terrible spilling indeed.

Also why aren't DI mode values split into native SI registers on 32-bit
targets? Using DI mode registers means the register allocator has a much harder
problem to solve as it can only use even/odd register pairs (and must allocate
both registers even if one is dead).
>From gcc-bugs-return-535708-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 16:08:43 2016
Return-Path: <gcc-bugs-return-535708-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 120660 invoked by alias); 23 Aug 2016 16:08:39 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 120413 invoked by uid 48); 23 Aug 2016 16:08:25 -0000
From: "mbertello at feralinteractive dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/72775] [6/7 Regression] internal compiler error: in finish_expr_stmt, at cp/semantics.c:677
Date: Tue, 23 Aug 2016 16:08:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mbertello at feralinteractive dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-72775-4-Y4HyVVyfhS@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72775-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72775-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03044.txt.bz2
Content-length: 1022

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72775

Matteo Bertello <mbertello at feralinteractive dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mbertello@feralinteractive.
                   |                            |com

--- Comment #10 from Matteo Bertello <mbertello at feralinteractive dot com> ---
Just had the same internal compiler error on a different piece of code, using
GCC 6.1.1 on Fedora 24.
Might be useful to investigate the cause.


#include <thread>

void func(int i);

int main(int argc, char* argv[])
{
        int val = 0;
        auto thread = std::thread([&, =val]() { func(val); });
}

$ gcc main.cpp
main.cpp: In lambda function:
main.cpp:8:51: internal compiler error: in finish_expr_stmt, at
cp/semantics.c:677
  auto thread = std::thread([&, =val]() { func(val); });
                                                   ^
>From gcc-bugs-return-535709-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 16:15:36 2016
Return-Path: <gcc-bugs-return-535709-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 20465 invoked by alias); 23 Aug 2016 16:15:35 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 20420 invoked by uid 48); 23 Aug 2016 16:15:31 -0000
From: "manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/55496] False positive -Werror=uninitialized
Date: Tue, 23 Aug 2016 16:15:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 4.8.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: manu at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-55496-4-qqXAjC9VML@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-55496-4@http.gcc.gnu.org/bugzilla/>
References: <bug-55496-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03045.txt.bz2
Content-length: 492

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=55496

Manuel López-Ibáñez <manu at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |manu at gcc dot gnu.org

--- Comment #2 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
Without a reduced testcase, it is impossible to know what the problem is.
>From gcc-bugs-return-535710-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 16:18:40 2016
Return-Path: <gcc-bugs-return-535710-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 27779 invoked by alias); 23 Aug 2016 16:18:40 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 27649 invoked by uid 48); 23 Aug 2016 16:18:27 -0000
From: "mpolacek at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/77323] Bad "defaults to 'int'" warning for unsupported types
Date: Tue, 23 Aug 2016 16:18:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mpolacek at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: mpolacek at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cc assigned_to
Message-ID: <bug-77323-4-HphQistcr1@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77323-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77323-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03046.txt.bz2
Content-length: 554

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77323

Marek Polacek <mpolacek at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED
                 CC|                            |mpolacek at gcc dot gnu.org
           Assignee|unassigned at gcc dot gnu.org      |mpolacek at gcc dot gnu.org

--- Comment #2 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
I think I've got a fix.
>From gcc-bugs-return-535711-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 16:26:50 2016
Return-Path: <gcc-bugs-return-535711-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 46883 invoked by alias); 23 Aug 2016 16:26:50 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 46658 invoked by uid 48); 23 Aug 2016 16:26:37 -0000
From: "manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/60488] missing uninitialized warning (address taken, VOP)
Date: Tue, 23 Aug 2016 16:26:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 4.8.2
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: manu at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on blocked short_desc everconfirmed
Message-ID: <bug-60488-4-3398AxLsUo@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-60488-4@http.gcc.gnu.org/bugzilla/>
References: <bug-60488-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03047.txt.bz2
Content-length: 1061

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60488

Manuel López-Ibáñez <manu at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-23
             Blocks|                            |24639
            Summary|missing                     |missing uninitialized
                   |-Wmaybe-uninitialized on a  |warning (address taken,
                   |conditional with goto       |VOP)
     Ever confirmed|0                           |1

--- Comment #3 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
I don't think the goto has anything to do with it, but there are several bugs
about taking the address of a variable breaking any obvious uninitialized
warnings.


Referenced Bugs:

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=24639
[Bug 24639] [meta-bug] bug to track all Wuninitialized issues
>From gcc-bugs-return-535712-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 16:29:46 2016
Return-Path: <gcc-bugs-return-535712-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 50198 invoked by alias); 23 Aug 2016 16:29:46 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 49977 invoked by uid 48); 23 Aug 2016 16:29:33 -0000
From: "manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/61112] Simple example triggers false-positive -Wmaybe-uninitialized warning
Date: Tue, 23 Aug 2016 16:29:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: manu at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc cf_known_to_work blocked
Message-ID: <bug-61112-4-eBVoj52uIA@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-61112-4@http.gcc.gnu.org/bugzilla/>
References: <bug-61112-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03048.txt.bz2
Content-length: 767

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61112

Manuel López-Ibáñez <manu at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |manu at gcc dot gnu.org
      Known to work|                            |6.1.0
             Blocks|                            |24639

--- Comment #3 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
This appears fixed in 6.1, but it would be good to add the testcase to the
testsuite before closing it.


Referenced Bugs:

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=24639
[Bug 24639] [meta-bug] bug to track all Wuninitialized issues
>From gcc-bugs-return-535713-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 16:41:09 2016
Return-Path: <gcc-bugs-return-535713-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 127751 invoked by alias); 23 Aug 2016 16:41:08 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 126043 invoked by uid 48); 23 Aug 2016 16:40:55 -0000
From: "inadgob at yahoo dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/77334] [5/6/7 Regression] Cannot move assign std::map with non-copyable and non-movable mapped_type
Date: Tue, 23 Aug 2016 16:41:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: rejects-valid
X-Bugzilla-Severity: normal
X-Bugzilla-Who: inadgob at yahoo dot com
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: redi at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77334-4-6Am8hD4B5U@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77334-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77334-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03049.txt.bz2
Content-length: 303

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77334

--- Comment #5 from bogdan <inadgob at yahoo dot com> ---
From now on, "fast" shall have a new degree of comparison beyond the
superlative, spelled "jw-fast" (alternative spelling when appearing in text on
gcc.gnu.org: "redi-fast"). 

Cheers!
>From gcc-bugs-return-535714-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 16:42:59 2016
Return-Path: <gcc-bugs-return-535714-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 5750 invoked by alias); 23 Aug 2016 16:42:59 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 5565 invoked by uid 48); 23 Aug 2016 16:42:46 -0000
From: "manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/65182] -Wuninitialized fails when pointer to variable later passed to function
Date: Tue, 23 Aug 2016 16:42:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 4.9.2
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: manu at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: blocked
Message-ID: <bug-65182-4-ffDwRq2PXL@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-65182-4@http.gcc.gnu.org/bugzilla/>
References: <bug-65182-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03050.txt.bz2
Content-length: 609

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65182

Manuel López-Ibáñez <manu at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Blocks|                            |24639

--- Comment #5 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
This is fixed, but it would be good to add the testcase to the testsuite.


Referenced Bugs:

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=24639
[Bug 24639] [meta-bug] bug to track all Wuninitialized issues
>From gcc-bugs-return-535715-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 16:46:31 2016
Return-Path: <gcc-bugs-return-535715-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 11600 invoked by alias); 23 Aug 2016 16:46:30 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 11455 invoked by uid 48); 23 Aug 2016 16:46:18 -0000
From: "manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/61428] wrong "maybe-uninitialized" (jump threading? predicate analysis?)
Date: Tue, 23 Aug 2016 16:46:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 5.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: manu at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc version blocked short_desc
Message-ID: <bug-61428-4-93RQJRYGh3@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-61428-4@http.gcc.gnu.org/bugzilla/>
References: <bug-61428-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03051.txt.bz2
Content-length: 940

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61428

Manuel López-Ibáñez <manu at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |manu at gcc dot gnu.org
            Version|unknown                     |5.0
             Blocks|                            |24639
            Summary|"maybe-uninitialized" is    |wrong "maybe-uninitialized"
                   |broken in all current       |(jump threading? predicate
                   |versions (4.7-5)            |analysis?)

--- Comment #2 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
Unreduced testcase. Possibly jump threading or predicate analysis


Referenced Bugs:

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=24639
[Bug 24639] [meta-bug] bug to track all Wuninitialized issues
>From gcc-bugs-return-535716-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 16:51:11 2016
Return-Path: <gcc-bugs-return-535716-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 18046 invoked by alias); 23 Aug 2016 16:51:11 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 17908 invoked by uid 48); 23 Aug 2016 16:50:58 -0000
From: "manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/52602] false compilation warning of uninitialized variable
Date: Tue, 23 Aug 2016 16:51:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 4.6.3
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: manu at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-52602-4-c3m2nsuFfi@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-52602-4@http.gcc.gnu.org/bugzilla/>
References: <bug-52602-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03052.txt.bz2
Content-length: 485

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=52602

Manuel López-Ibáñez <manu at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |RESOLVED
         Resolution|---                         |INVALID

--- Comment #3 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
No testcase forthcoming.
>From gcc-bugs-return-535717-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 16:51:51 2016
Return-Path: <gcc-bugs-return-535717-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 19115 invoked by alias); 23 Aug 2016 16:51:51 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 18980 invoked by uid 48); 23 Aug 2016 16:51:38 -0000
From: "manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/72781] -Wuninitialized false positives in OpenMP code
Date: Tue, 23 Aug 2016 16:51:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords: diagnostic, openmp
X-Bugzilla-Severity: minor
X-Bugzilla-Who: manu at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jakub at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-72781-4-BE8t2kqBfM@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72781-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72781-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03053.txt.bz2
Content-length: 425

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72781

Manuel López-Ibáñez <manu at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |manu at gcc dot gnu.org

--- Comment #3 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
Fixed?
>From gcc-bugs-return-535718-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 16:53:19 2016
Return-Path: <gcc-bugs-return-535718-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 22567 invoked by alias); 23 Aug 2016 16:53:19 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 22446 invoked by uid 48); 23 Aug 2016 16:53:07 -0000
From: "manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/70736] false positive uninitialized warning
Date: Tue, 23 Aug 2016 16:53:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 5.3.1
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: manu at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-70736-4-XPaRsC5oYF@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70736-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70736-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03054.txt.bz2
Content-length: 626

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70736

Manuel López-Ibáñez <manu at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |manu at gcc dot gnu.org

--- Comment #2 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
(In reply to Richard Biener from comment #1)
> No longer warns with GCC 6, confirmed for GCC 5.  Didn't warn with GCC 4.8.

So it is regression for 5?

We could also close it and add the testcase to trunk.
>From gcc-bugs-return-535719-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 16:57:01 2016
Return-Path: <gcc-bugs-return-535719-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 110563 invoked by alias); 23 Aug 2016 16:57:01 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 99771 invoked by uid 48); 23 Aug 2016 16:56:48 -0000
From: "vries at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug lto/70955] [6/7 Regression] Wrong code generation for __builtin_ms_va_list with -flto
Date: Tue, 23 Aug 2016 16:57:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: lto
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords: lto, wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: vries at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-70955-4-BMuQX1JZ2j@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70955-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70955-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03055.txt.bz2
Content-length: 918

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70955

--- Comment #23 from Tom de Vries <vries at gcc dot gnu.org> ---
(In reply to Richard Biener from comment #22)
> (In reply to vries from comment #18)
> > Created attachment 39484 [details]
> > Tentative patch using attributes ms_abi/sysv_abi
> > 
> > not build or regression tested yet, but at least makes test-case pass.
> 
> LGTM.

Just realized, there's a potential problem with the patch and
sysv_va_list_type_node. sysv_va_list_type_node is an array type (array with
length 1 and a struct as element type).

grokdeclarator (in c-decl.c, see comment 'A parameter declared as an array of T
is really a pointer to T') converts that type into a pointer to array element
type (as explained in more detail in build_va_arg) and drops the attributes.

Perhaps we should mark the underlying element type with the attribute (as
well/instead? I'm not sure yet).
>From gcc-bugs-return-535720-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 17:18:57 2016
Return-Path: <gcc-bugs-return-535720-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 113346 invoked by alias); 23 Aug 2016 17:18:57 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 113154 invoked by uid 48); 23 Aug 2016 17:18:52 -0000
From: "gerhard.steinmetz.fortran@t-online.de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/69860] ICE on missing end apostrophe with character(kind=4)
Date: Tue, 23 Aug 2016 17:18:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: gerhard.steinmetz.fortran@t-online.de
X-Bugzilla-Status: REOPENED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-69860-4-PKZYGdlHKb@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69860-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69860-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03056.txt.bz2
Content-length: 422

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69860

--- Comment #11 from Gerhard Steinmetz <gerhard.steinmetz.fortran@t-online.de> ---
And with "kind=4" instead of "kind=1", i.e. with testfile z1.f90 ?


for n in `seq 1 1000`
do
   gfortran-7-20160821 -O2 -mavx -c z1.f90
done > list 2>&1

grep 'internal compiler' list | wc
    946    5676   47300


I can also confirm that ICEs are gone for z2.f90 ("kind=1").
>From gcc-bugs-return-535721-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 17:21:36 2016
Return-Path: <gcc-bugs-return-535721-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 15163 invoked by alias); 23 Aug 2016 17:21:35 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 129535 invoked by uid 48); 23 Aug 2016 17:21:22 -0000
From: "gerhard.steinmetz.fortran@t-online.de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/70853] ICE on pointing to null, in gfc_add_block_to_block, at fortran/trans.c:1599
Date: Tue, 23 Aug 2016 17:21:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: gerhard.steinmetz.fortran@t-online.de
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-70853-4-PFj4wNTQE0@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70853-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70853-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03057.txt.bz2
Content-length: 1592

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70853

--- Comment #3 from Gerhard Steinmetz <gerhard.steinmetz.fortran@t-online.de> ---
Another testcase :


$ cat z7.f90
program p
   integer, parameter :: m = 2, n = 3
   real, target :: a(m*n)
   real, pointer :: z(:,:) => null()
   z(1:m,1:n) => null()
end


$ gfortran-7-20160821 z7.f90
z7.f90:5:0:

    z(1:m,1:n) => null()

internal compiler error: tree check: did not expect class 'type', have 'type'
(integer_type) in append_to_statement_list, at tree-iterator.c:92
0xead267 tree_not_class_check_failed(tree_node const*, tree_code_class, char
const*, int, char const*)
        ../../gcc/tree.c:9842
0xcab3ff non_type_check(tree_node*, char const*, int, char const*)
        ../../gcc/tree.h:3202
0xcab3ff append_to_statement_list(tree_node*, tree_node**)
        ../../gcc/tree-iterator.c:92
0x71f050 add_expr_to_chain
        ../../gcc/fortran/trans.c:1564
0x7213dd gfc_add_expr_to_block(stmtblock_t*, tree_node*)
        ../../gcc/fortran/trans.c:1577
0x7213dd gfc_add_block_to_block(stmtblock_t*, stmtblock_t*)
        ../../gcc/fortran/trans.c:1599
0x768486 gfc_trans_pointer_assignment(gfc_expr*, gfc_expr*)
        ../../gcc/fortran/trans-expr.c:8023
0x71fafa trans_code
        ../../gcc/fortran/trans.c:1695
0x74e708 gfc_generate_function_code(gfc_namespace*)
        ../../gcc/fortran/trans-decl.c:6204
0x6da360 translate_all_program_units
        ../../gcc/fortran/parse.c:5916
0x6da360 gfc_parse_file()
        ../../gcc/fortran/parse.c:6122
0x71c602 gfc_be_parse_file
        ../../gcc/fortran/f95-lang.c:198
>From gcc-bugs-return-535722-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 17:24:15 2016
Return-Path: <gcc-bugs-return-535722-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 20292 invoked by alias); 23 Aug 2016 17:24:14 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 20073 invoked by uid 48); 23 Aug 2016 17:23:58 -0000
From: "gerhard.steinmetz.fortran@t-online.de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/68567] ICE on using wrong defined arrays (different cases/messages)
Date: Tue, 23 Aug 2016 17:24:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 5.2.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: gerhard.steinmetz.fortran@t-online.de
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-68567-4-lHxCv31vyZ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68567-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68567-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03058.txt.bz2
Content-length: 318

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68567

--- Comment #5 from Gerhard Steinmetz <gerhard.steinmetz.fortran@t-online.de> ---
> We must be using drastically different compilers.
No, I've simply forgotten to include a subcatalog with testfiles zz*.
Sorry for my blotchiness. The patch looks good and works.
>From gcc-bugs-return-535723-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 17:26:10 2016
Return-Path: <gcc-bugs-return-535723-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 30886 invoked by alias); 23 Aug 2016 17:26:09 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 30621 invoked by uid 48); 23 Aug 2016 17:25:56 -0000
From: "gerhard.steinmetz.fortran@t-online.de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/77350] New: ICE in truthvalue_conversion, at fortran/convert.c:65
Date: Tue, 23 Aug 2016 17:26:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: gerhard.steinmetz.fortran@t-online.de
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77350-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03059.txt.bz2
Content-length: 1240

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77350

            Bug ID: 77350
           Summary: ICE in truthvalue_conversion, at fortran/convert.c:65
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: fortran
          Assignee: unassigned at gcc dot gnu.org
          Reporter: gerhard.steinmetz.fortran@t-online.de
  Target Milestone: ---

For versions down to at least 4.8, with invalid code :


$ cat z1.f90
function f() result(g)
contains
   logical function g()
   end
end


$ gfortran-7-20160821 z1.f90
z1.f90:4:0:

    end

internal compiler error: in truthvalue_conversion, at fortran/convert.c:65
0x711933 truthvalue_conversion
        ../../gcc/fortran/convert.c:65
0x711933 convert(tree_node*, tree_node*)
        ../../gcc/fortran/convert.c:98
0x742ac7 gfc_generate_return()
        ../../gcc/fortran/trans-decl.c:5893
0x74e7fb gfc_generate_function_code(gfc_namespace*)
        ../../gcc/fortran/trans-decl.c:6288
0x6da360 translate_all_program_units
        ../../gcc/fortran/parse.c:5916
0x6da360 gfc_parse_file()
        ../../gcc/fortran/parse.c:6122
0x71c602 gfc_be_parse_file
        ../../gcc/fortran/f95-lang.c:198
>From gcc-bugs-return-535724-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 17:28:50 2016
Return-Path: <gcc-bugs-return-535724-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 37908 invoked by alias); 23 Aug 2016 17:28:50 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 37720 invoked by uid 48); 23 Aug 2016 17:28:37 -0000
From: "gerhard.steinmetz.fortran@t-online.de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/77351] New: ICE in remove_trim, at frontend-passes.c:1145
Date: Tue, 23 Aug 2016 17:28:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: gerhard.steinmetz.fortran@t-online.de
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77351-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03060.txt.bz2
Content-length: 2338

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77351

            Bug ID: 77351
           Summary: ICE in remove_trim, at frontend-passes.c:1145
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: fortran
          Assignee: unassigned at gcc dot gnu.org
          Reporter: gerhard.steinmetz.fortran@t-online.de
  Target Milestone: ---

With invalid code, and configured with --enable-checking=yes :


$ cat z1.f90
program p
   integer :: z(4) = [1, 2, 3, 4]
   print *, any(shape(z) /= [4,1])
end


$ gfortran-7-20160821 -O2 z1.f90
z1.f90:3:16:

    print *, any(shape(z) /= [4,1])
                1
Error: Different shape for elemental binary operation at (1) on dimension 1 (1
and 2)
z1.f90:3:16:

    print *, any(shape(z) /= [4,1])
                1
Error: Array operands are incommensurate at (1)
f951: internal compiler error: Segmentation fault
0xc1b63f crash_signal
        ../../gcc/toplev.c:335
0x7b0491 remove_trim
        ../../gcc/fortran/frontend-passes.c:1145
0x7b0567 optimize_comparison
        ../../gcc/fortran/frontend-passes.c:1568
0x7b0d27 optimize_op
        ../../gcc/fortran/frontend-passes.c:1459
0x7b0d27 optimize_expr
        ../../gcc/fortran/frontend-passes.c:248
0x7b1df5 gfc_expr_walker(gfc_expr**, int (*)(gfc_expr**, int*, void*), void*)
        ../../gcc/fortran/frontend-passes.c:3284
0x7b20c5 gfc_expr_walker(gfc_expr**, int (*)(gfc_expr**, int*, void*), void*)
        ../../gcc/fortran/frontend-passes.c:3296
0x7b3514 gfc_code_walker(gfc_code**, int (*)(gfc_code**, int*, void*), int
(*)(gfc_expr**, int*, void*), void*)
        ../../gcc/fortran/frontend-passes.c:3677
0x7b358c gfc_code_walker(gfc_code**, int (*)(gfc_code**, int*, void*), int
(*)(gfc_expr**, int*, void*), void*)
        ../../gcc/fortran/frontend-passes.c:3685
0x7b4494 optimize_namespace
        ../../gcc/fortran/frontend-passes.c:1005
0x7b4650 gfc_run_passes(gfc_namespace*)
        ../../gcc/fortran/frontend-passes.c:132
0x6eee97 gfc_resolve(gfc_namespace*)
        ../../gcc/fortran/resolve.c:15601
0x6da18a resolve_all_program_units
        ../../gcc/fortran/parse.c:5855
0x6da18a gfc_parse_file()
        ../../gcc/fortran/parse.c:6107
0x71c602 gfc_be_parse_file
        ../../gcc/fortran/f95-lang.c:198
>From gcc-bugs-return-535725-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 17:32:04 2016
Return-Path: <gcc-bugs-return-535725-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 42258 invoked by alias); 23 Aug 2016 17:32:03 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 42169 invoked by uid 48); 23 Aug 2016 17:31:51 -0000
From: "gerhard.steinmetz.fortran@t-online.de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/77352] New: ICE: verify_ssa failed
Date: Tue, 23 Aug 2016 17:32:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: gerhard.steinmetz.fortran@t-online.de
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77352-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03061.txt.bz2
Content-length: 1333

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77352

            Bug ID: 77352
           Summary: ICE: verify_ssa failed
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: fortran
          Assignee: unassigned at gcc dot gnu.org
          Reporter: gerhard.steinmetz.fortran@t-online.de
  Target Milestone: ---

Needs options -fopenmp -fopenacc -Ofast (or -Os|1|2|3 -fstack-arrays) :


$ cat z1.f90
program p
   real, allocatable :: a(:,:), b(:)
   integer :: m=4, n=2
   allocate (a(m,n), b(m))
   a = 1.0
!$omp parallel workshare
   b(:) = [ sum(a, dim=1) ]
!$omp end parallel workshare
end


$ gfortran-7-20160821 -Ofast -fopenmp -fopenacc -c z1.f90
z1.f90:9:0:

 end

Error: type mismatch between an SSA_NAME and its symbol
z1.f90:9:0: Error: type mismatch between an SSA_NAME and its symbol
while verifying SSA_NAME A.32_27 in statement
# .MEM_26 = VDEF <.MEM_13>
    A.32_27 = __builtin_alloca_with_align (_25, 32);
z1.f90:9:0: internal compiler error: verify_ssa failed
0xe22af2 verify_ssa(bool, bool)
        ../../gcc/tree-ssa.c:1149
0xb4a38d execute_function_todo
        ../../gcc/passes.c:1971
0xb4abad do_per_function
        ../../gcc/passes.c:1655
0xb4ac75 execute_todo
        ../../gcc/passes.c:2014
>From gcc-bugs-return-535726-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 17:33:11 2016
Return-Path: <gcc-bugs-return-535726-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 43595 invoked by alias); 23 Aug 2016 17:33:11 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 43383 invoked by uid 48); 23 Aug 2016 17:32:59 -0000
From: "dominiq at lps dot ens.fr" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/77350] ICE in truthvalue_conversion, at fortran/convert.c:65
Date: Tue, 23 Aug 2016 17:33:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dominiq at lps dot ens.fr
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-77350-4-PBnhhdJE7r@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77350-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77350-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03062.txt.bz2
Content-length: 521

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77350

Dominique d'Humieres <dominiq at lps dot ens.fr> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-23
     Ever confirmed|0                           |1

--- Comment #1 from Dominique d'Humieres <dominiq at lps dot ens.fr> ---
Confirmed from 4.8 up to trunk (7.0).
>From gcc-bugs-return-535727-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 17:38:24 2016
Return-Path: <gcc-bugs-return-535727-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 19892 invoked by alias); 23 Aug 2016 17:38:24 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 19757 invoked by uid 48); 23 Aug 2016 17:38:11 -0000
From: "dominiq at lps dot ens.fr" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/77351] ICE in remove_trim, at frontend-passes.c:1145
Date: Tue, 23 Aug 2016 17:38:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dominiq at lps dot ens.fr
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc everconfirmed
Message-ID: <bug-77351-4-vSlkzH4uI3@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77351-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77351-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03063.txt.bz2
Content-length: 669

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77351

Dominique d'Humieres <dominiq at lps dot ens.fr> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-23
                 CC|                            |tkoenig at gcc dot gnu.org
     Ever confirmed|0                           |1

--- Comment #1 from Dominique d'Humieres <dominiq at lps dot ens.fr> ---
Confirmed from 4.8 up to trunk (7.0). The ICE disappears if the code is
compiled with -fno-frontend-optimize.
>From gcc-bugs-return-535728-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 17:48:40 2016
Return-Path: <gcc-bugs-return-535728-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 64743 invoked by alias); 23 Aug 2016 17:48:40 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 64625 invoked by uid 48); 23 Aug 2016 17:48:27 -0000
From: "dominiq at lps dot ens.fr" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/77352] ICE: verify_ssa failed
Date: Tue, 23 Aug 2016 17:48:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dominiq at lps dot ens.fr
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-77352-4-M8FfjTFqRb@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77352-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77352-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03064.txt.bz2
Content-length: 617

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77352

Dominique d'Humieres <dominiq at lps dot ens.fr> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-23
     Ever confirmed|0                           |1

--- Comment #1 from Dominique d'Humieres <dominiq at lps dot ens.fr> ---
Confirmed from 5 up to trunk (7.0) provided the compiler is configured with
--enable-checking=yes (4.9 does not support -fopenacc).
>From gcc-bugs-return-535730-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 18:00:55 2016
Return-Path: <gcc-bugs-return-535730-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 21170 invoked by alias); 23 Aug 2016 18:00:55 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 20976 invoked by uid 48); 23 Aug 2016 18:00:42 -0000
From: "bseifert at gmx dot at" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77353] New: [AVR] uint16_t instead uint8_t comparison
Date: Tue, 23 Aug 2016 18:00:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: bseifert at gmx dot at
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77353-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03066.txt.bz2
Content-length: 1641

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77353

            Bug ID: 77353
           Summary: [AVR] uint16_t instead uint8_t comparison
           Product: gcc
           Version: 6.2.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: target
          Assignee: unassigned at gcc dot gnu.org
          Reporter: bseifert at gmx dot at
  Target Milestone: ---

Consider the following code:

if (PINA < static_cast<uint8_t>(32))
{
   PORTB = 0;
}

It compiles to - as expected:

 6dc:   80 b1           in      r24, 0x00       ; 0
 6de:   80 32           cpi     r24, 0x20       ; 32
 6e0:   08 f4           brcc    .+2             ; 0x6e4 <main+0x8>
 6e2:   15 b8           out     0x05, r1        ; 5

In GCC 6.2.0 a uint16_t instead of sufficient uint8_t comparison is performed -
high byte set to 0:

 6d8:   80 b1           in      r24, 0x00       ; 0
 6da:   90 e0           ldi     r25, 0x00       ; 0
 6dc:   80 97           sbiw    r24, 0x20       ; 32
 6de:   0c f4           brge    .+2             ; 0x6e2 <main+0xa>
 6e0:   15 b8           out     0x05, r1        ; 5

Once I also got the following compilation in GCC 6.2.0 with similar code
snippet:

   0:   28 2f           mov     r18, r24
   2:   30 e0           ldi     r19, 0x00       ; 0
   4:   20 32           cpi     r18, 0x20       ; 32
   6:   31 05           cpc     r19, r1
   8:   04 f0           brlt    .+0             ; 0xa <ADC::measure(unsigned
char)+0xa>

Here also a uint16_t instead of uint8_t comparison is performed and the even
less performant cpi/cpc instructions are used instead of sbiw.
>From gcc-bugs-return-535729-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 18:00:37 2016
Return-Path: <gcc-bugs-return-535729-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 20290 invoked by alias); 23 Aug 2016 18:00:36 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 20084 invoked by uid 48); 23 Aug 2016 18:00:24 -0000
From: "mikpelinux at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug sanitizer/67899] build failure in the sanitizer libs on sparc-linux-gnu
Date: Tue, 23 Aug 2016 18:00:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: sanitizer
X-Bugzilla-Version: 5.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mikpelinux at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-67899-4-19KWJLzdxp@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67899-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67899-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03065.txt.bz2
Content-length: 809

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67899

Mikael Pettersson <mikpelinux at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mikpelinux at gmail dot com

--- Comment #6 from Mikael Pettersson <mikpelinux at gmail dot com> ---
I see this too now, after upgrading to a post-2.19 glibc.  Clearly related to
glibc BZ#18694.

I fixed this independently before seeing this PR, and my patch is equivalent to
the first hunk in your patch.  The second hunk however I believe is wrong:

- it's an ABI change on little-endian machines
- the build error originates from gcc r216224 (PR59758), which only changed the
code touched by the first hunk
>From gcc-bugs-return-535731-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 18:02:24 2016
Return-Path: <gcc-bugs-return-535731-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 63664 invoked by alias); 23 Aug 2016 18:02:24 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 63519 invoked by uid 48); 23 Aug 2016 18:02:11 -0000
From: "mikulas at artax dot karlin.mff.cuni.cz" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77330] __float128 segfaults on 32-bit x86 due to 8-byte malloc alignment
Date: Tue, 23 Aug 2016 18:02:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mikulas at artax dot karlin.mff.cuni.cz
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77330-4-Ox2oufFbZD@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77330-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77330-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03067.txt.bz2
Content-length: 751

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77330

--- Comment #5 from mikulas at artax dot karlin.mff.cuni.cz ---
And if you add a new type __float256 with 32-byte alignment - does it mean that
glibc suddenly starts being buggy, because it couldn't anticipate what types
with what alignment will be added in the future? In this situation, GCC broke
it by adding new types, glibc didn't.

GCC works on wide range of systems, not only on glibc - how are you going to
patch malloc alignment in all those libc's that GCC supports?

On i386 ABI, the types long long and double have 4-byte alignment and GCC has
to deal with it, it can't expect that they are aligned on 8-byte boundary.
Similarly, GCC should deal with __float128 and _Decimal128.
>From gcc-bugs-return-535732-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 18:04:17 2016
Return-Path: <gcc-bugs-return-535732-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 65805 invoked by alias); 23 Aug 2016 18:04:17 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 65698 invoked by uid 48); 23 Aug 2016 18:04:03 -0000
From: "dominiq at lps dot ens.fr" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/77344] Internal Compiler Error with arch knl
Date: Tue, 23 Aug 2016 18:04:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dominiq at lps dot ens.fr
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-77344-4-hVVeHBEUBj@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77344-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77344-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03068.txt.bz2
Content-length: 611

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77344

Dominique d'Humieres <dominiq at lps dot ens.fr> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |WAITING
   Last reconfirmed|                            |2016-08-23
     Ever confirmed|0                           |1

--- Comment #1 from Dominique d'Humieres <dominiq at lps dot ens.fr> ---
I get a lot of "*error: instruction requires: AVX-512 ISA" when compiling
gettau.F90 on x86_64-apple-darwin15, Xcode 7.3.1.
>From gcc-bugs-return-535733-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 18:12:47 2016
Return-Path: <gcc-bugs-return-535733-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 72811 invoked by alias); 23 Aug 2016 18:12:47 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 72544 invoked by uid 55); 23 Aug 2016 18:12:33 -0000
From: "joseph at codesourcery dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77330] __float128 segfaults on 32-bit x86 due to 8-byte malloc alignment
Date: Tue, 23 Aug 2016 18:12:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: joseph at codesourcery dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77330-4-M0zUxy2MYP@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77330-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77330-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03069.txt.bz2
Content-length: 1763

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77330

--- Comment #6 from joseph at codesourcery dot com <joseph at codesourcery dot com> ---
On Tue, 23 Aug 2016, mikulas at artax dot karlin.mff.cuni.cz wrote:

> And if you add a new type __float256 with 32-byte alignment - does it mean that
> glibc suddenly starts being buggy, because it couldn't anticipate what types
> with what alignment will be added in the future? In this situation, GCC broke
> it by adding new types, glibc didn't.

If you add a new basic type, that requires cooperation between the 
compiler and the library; "implementation" in standard terms includes 
both.

If you add a new type that is not a basic type, such as a vector type, 
users need to use aligned_alloc etc. when allocating memory for it.

If you consider __float128 a basic type, the change for this issue must be 
made in libc.  If you don't, the program in this report is buggy because 
it uses malloc for a type with an extended alignment requirement.  In 
neither case is there a GCC bug (except that max_align_t should be updated 
if __float128 is a basic type).

The ABI for __float128 and _Decimal128, including alignment, is now long 
established and would not be appropriate to change (changing max_align_t 
would be rather safer).

> GCC works on wide range of systems, not only on glibc - how are you going to
> patch malloc alignment in all those libc's that GCC supports?

GCC works best as part of the GNU system, with glibc.  If the library 
doesn't support the new types, that may limit the GCC support.

Note that glibc support for _Float128 on powerpc64le is planned, and once 
it's there it will be easy to add all the library functions on x86 and 
x86_64 as well.
>From gcc-bugs-return-535734-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 18:39:04 2016
Return-Path: <gcc-bugs-return-535734-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 9790 invoked by alias); 23 Aug 2016 18:39:04 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 4769 invoked by uid 48); 23 Aug 2016 18:38:50 -0000
From: "matthew.thompson at nasa dot gov" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/77344] Internal Compiler Error with arch knl
Date: Tue, 23 Aug 2016 18:39:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: matthew.thompson at nasa dot gov
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77344-4-rMhxHCpaR1@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77344-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77344-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03070.txt.bz2
Content-length: 692

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77344

--- Comment #2 from Matt Thompson <matthew.thompson at nasa dot gov> ---
(In reply to Dominique d'Humieres from comment #1)
> I get a lot of "*error: instruction requires: AVX-512 ISA" when compiling
> gettau.F90 on x86_64-apple-darwin15, Xcode 7.3.1.

I've never tried this on Darwin. It's possible the binutils, or its
Apple-y/BSD-y/Clang-y equivalent, does not have support for those instructions
yet? At least, errors like that scream "update binutils" in my head for some
reason.

I was running on RHEL 7.2. The KNL test box I have access to is...CentOS?
Something like that. But this error is identical on my Haswell workstation.
>From gcc-bugs-return-535735-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 18:44:40 2016
Return-Path: <gcc-bugs-return-535735-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 20347 invoked by alias); 23 Aug 2016 18:44:40 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 20190 invoked by uid 48); 23 Aug 2016 18:44:24 -0000
From: "kargl at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/77351] ICE in remove_trim, at frontend-passes.c:1145
Date: Tue, 23 Aug 2016 18:44:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: kargl at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77351-4-derAsRIS0s@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77351-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77351-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03071.txt.bz2
Content-length: 1053

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77351

--- Comment #2 from kargl at gcc dot gnu.org ---
Thou shalt not derefernce NULL pointers.

troutmask:sgk[238] svn diff frontend-passes.c 
Index: frontend-passes.c
===================================================================
--- frontend-passes.c   (revision 239661)
+++ frontend-passes.c   (working copy)
@@ -1137,6 +1137,8 @@ remove_trim (gfc_expr *rhs)
   bool ret;

   ret = false;
+  if (!rhs)
+    return ret;

   /* Check for a // b // trim(c).  Looping is probably not
      necessary because the parser usually generates
@@ -1274,6 +1276,9 @@ combine_array_constructor (gfc_expr *e)
   op1 = e->value.op.op1;
   op2 = e->value.op.op2;

+  if (!op1 || !op2)
+    return false;
+
   if (op1->expr_type == EXPR_ARRAY && op2->rank == 0)
     scalar_first = false;
   else if (op2->expr_type == EXPR_ARRAY && op1->rank == 0)
>From gcc-bugs-return-535736-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 18:51:21 2016
Return-Path: <gcc-bugs-return-535736-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 29947 invoked by alias); 23 Aug 2016 18:51:20 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 29798 invoked by uid 48); 23 Aug 2016 18:51:08 -0000
From: "bseifert at gmx dot at" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77353] [AVR] uint16_t instead uint8_t comparison
Date: Tue, 23 Aug 2016 18:51:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: bseifert at gmx dot at
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77353-4-WWsdciiDMM@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77353-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77353-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03072.txt.bz2
Content-length: 636

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77353

--- Comment #1 from Berni <bseifert at gmx dot at> ---
another example:

if (PINA < PINC)
{
   PORTB = 0;
}

compiles to:

 6c2:   20 b1           in      r18, 0x00       ; 0
 6c4:   86 b1           in      r24, 0x06       ; 6
 6c6:   30 e0           ldi     r19, 0x00       ; 0
 6c8:   90 e0           ldi     r25, 0x00       ; 0
 6ca:   28 17           cp      r18, r24
 6cc:   39 07           cpc     r19, r25
 6ce:   0c f4           brge    .+2             ; 0x6d2 <main+0x10>
 6d0:   15 b8           out     0x05, r1        ; 5

two 8 bit registers are compared as uint16_t!
>From gcc-bugs-return-535737-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 19:12:28 2016
Return-Path: <gcc-bugs-return-535737-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 57608 invoked by alias); 23 Aug 2016 19:12:27 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 57311 invoked by uid 48); 23 Aug 2016 19:12:13 -0000
From: "bernd.edlinger at hotmail dot de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77330] __float128 segfaults on 32-bit x86 due to 8-byte malloc alignment
Date: Tue, 23 Aug 2016 19:12:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: bernd.edlinger at hotmail dot de
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-77330-4-rMYdWLlTFB@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77330-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77330-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03073.txt.bz2
Content-length: 758

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77330

Bernd Edlinger <bernd.edlinger at hotmail dot de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |bernd.edlinger at hotmail dot de

--- Comment #7 from Bernd Edlinger <bernd.edlinger at hotmail dot de> ---
Joseph,

gcc assumes that malloc, calloc, realloc, strdup, strndup
and anything with the __attribute__((__malloc__))
returns a pointer that is aligned to MALLOC_ABI_ALIGNMENT bits.

If not defined by the target, default.h sets it to BITS_PER_WORD

config/i386 does not define MALLOC_ABI_ALIGNMENT.
And BITS_PER_WORD is still 64 on x86_64 or 32 on i386.
>From gcc-bugs-return-535738-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 19:13:31 2016
Return-Path: <gcc-bugs-return-535738-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 58786 invoked by alias); 23 Aug 2016 19:13:31 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 58648 invoked by uid 48); 23 Aug 2016 19:13:20 -0000
From: "sabrinadfs at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug testsuite/77354] New: Failure with -fno-ivopts
Date: Tue, 23 Aug 2016 19:13:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: testsuite
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: sabrinadfs at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77354-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03074.txt.bz2
Content-length: 4222

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77354

            Bug ID: 77354
           Summary: Failure with -fno-ivopts
           Product: gcc
           Version: 6.1.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: testsuite
          Assignee: unassigned at gcc dot gnu.org
          Reporter: sabrinadfs at gmail dot com
  Target Milestone: ---

GCC-6.1.0
x86_64-pc-linux-gnu and x86_64-apple-darwin15.4.0

When I run the following test with -fno-ivopts option:
make -s -C gcc check-gcc RUNTESTFLAGS="tree-ssa.exp=loop-16.c
--target_board=unix/-fno-ivopts"

GCC throw a failure:
------------------------------------------------------------------------
Native configuration is x86_64-apple-darwin15.4.0

                === gcc tests ===

Schedule of variations:
    unix/-fno-ivopts

Running target unix/-fno-ivopts
Using /usr/local/share/dejagnu/baseboards/unix.exp as board description file
for target.
Using /usr/local/share/dejagnu/config/unix.exp as generic interface file for
target.
Using
/Users/sabrinasouto/workspace/gcc-6.x/gcc-6.1.0/gcc/testsuite/config/default.exp
as tool-and-target-specific interface file.
Running
/Users/sabrinasouto/workspace/gcc-6.x/gcc-6.1.0/gcc/testsuite/gcc.dg/tree-ssa/tree-ssa.exp
...
LD_LIBRARY_PATH=:/Users/sabrinasouto/workspace/gcc-6.x/objdir/gcc
LD_RUN_PATH=:/Users/sabrinasouto/workspace/gcc-6.x/objdir/gcc
SHLIB_PATH=:/Users/sabrinasouto/workspace/gcc-6.x/objdir/gcc
LD_LIBRARY_PATH_32=:/Users/sabrinasouto/workspace/gcc-6.x/objdir/gcc
LD_LIBRARY_PATH_64=:/Users/sabrinasouto/workspace/gcc-6.x/objdir/gcc
DYLD_LIBRARY_PATH=:/Users/sabrinasouto/workspace/gcc-6.x/objdir/gcc
Executing on host: /Users/sabrinasouto/workspace/gcc-6.x/objdir/gcc/xgcc
-B/Users/sabrinasouto/workspace/gcc-6.x/objdir/gcc/ 
-fno-diagnostics-show-caret -fdiagnostics-color=never  -flto -c  -fno-ivopts 
-o lto10584.o lto10584.c    (timeout = 300)
spawn /Users/sabrinasouto/workspace/gcc-6.x/objdir/gcc/xgcc
-B/Users/sabrinasouto/workspace/gcc-6.x/objdir/gcc/ -fno-diagnostics-show-caret
-fdiagnostics-color=never -flto -c -fno-ivopts -o lto10584.o lto10584.c
cc1: error: LTO support has not been enabled in this configuration
compiler exited with status 1
output is:
cc1: error: LTO support has not been enabled in this configuration

Executing on host: /Users/sabrinasouto/workspace/gcc-6.x/objdir/gcc/xgcc
-B/Users/sabrinasouto/workspace/gcc-6.x/objdir/gcc/
/Users/sabrinasouto/workspace/gcc-6.x/gcc-6.1.0/gcc/testsuite/gcc.dg/tree-ssa/loop-16.c
 -fno-diagnostics-show-caret -fdiagnostics-color=never   -O2
-fdump-tree-optimized -S  -fno-ivopts  -o loop-16.s    (timeout = 300)
spawn /Users/sabrinasouto/workspace/gcc-6.x/objdir/gcc/xgcc
-B/Users/sabrinasouto/workspace/gcc-6.x/objdir/gcc/
/Users/sabrinasouto/workspace/gcc-6.x/gcc-6.1.0/gcc/testsuite/gcc.dg/tree-ssa/loop-16.c
-fno-diagnostics-show-caret -fdiagnostics-color=never -O2 -fdump-tree-optimized
-S -fno-ivopts -o loop-16.s
PASS: gcc.dg/tree-ssa/loop-16.c (test for excess errors)
FAIL: gcc.dg/tree-ssa/loop-16.c scan-tree-dump-times optimized "MEM" 1
PASS: gcc.dg/tree-ssa/loop-16.c scan-tree-dump-times optimized "[^\\n\\r]*= \\*
" 0
testcase
/Users/sabrinasouto/workspace/gcc-6.x/gcc-6.1.0/gcc/testsuite/gcc.dg/tree-ssa/tree-ssa.exp
completed in 2 seconds

                === gcc Summary ===

# of expected passes            2
# of unexpected failures        1
Executing on host: /Users/sabrinasouto/workspace/gcc-6.x/objdir/gcc/xgcc -v   
(timeout = 300)
spawn /Users/sabrinasouto/workspace/gcc-6.x/objdir/gcc/xgcc -v
Using built-in specs.
COLLECT_GCC=/Users/sabrinasouto/workspace/gcc-6.x/objdir/gcc/xgcc
Target: x86_64-apple-darwin15.4.0
Configured with: ./../gcc-6.1.0/configure
--prefix=/Users/sabrinasouto/workspace/gcc-6.x/gcc-6.1.0
--enable-languages=c,c++
Thread model: posix
gcc version 6.1.0 (GCC) 
------------------------------------------------------------------------
 I would like to know if this failure is caused by a bug or if there is
something wrong with my environment, or even there are restrictions associated
with the option -fno-ivopts.

Thanks.
>From gcc-bugs-return-535739-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 19:48:25 2016
Return-Path: <gcc-bugs-return-535739-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 36915 invoked by alias); 23 Aug 2016 19:48:23 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 36053 invoked by uid 48); 23 Aug 2016 19:47:53 -0000
From: "kfischer at college dot harvard.edu" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77333] Incorrect stack adjust in epilogue when targeting i686-w64-mingw32
Date: Tue, 23 Aug 2016 19:48:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: kfischer at college dot harvard.edu
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77333-4-VmyZCV5mkc@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77333-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77333-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03075.txt.bz2
Content-length: 178

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77333

--- Comment #2 from Keno Fischer <kfischer at college dot harvard.edu> ---
Still broken adding both options to the compile.
>From gcc-bugs-return-535740-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 20:12:35 2016
Return-Path: <gcc-bugs-return-535740-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 13270 invoked by alias); 23 Aug 2016 20:12:35 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 13081 invoked by uid 48); 23 Aug 2016 20:12:21 -0000
From: "dominiq at lps dot ens.fr" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/77327] AddressSanitizer: heap-use-after-free gcc-trunk-239276/gcc/fortran/interface.c:403 in compare_components
Date: Tue, 23 Aug 2016 20:12:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dominiq at lps dot ens.fr
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc everconfirmed
Message-ID: <bug-77327-4-6tljoIoE7T@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77327-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77327-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03076.txt.bz2
Content-length: 625

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77327

Dominique d'Humieres <dominiq at lps dot ens.fr> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-23
                 CC|                            |foreese at gcc dot gnu.org
     Ever confirmed|0                           |1

--- Comment #1 from Dominique d'Humieres <dominiq at lps dot ens.fr> ---
Confirmed. I think the piece of code is from Fritz Reese -> CCed.
>From gcc-bugs-return-535741-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 20:18:29 2016
Return-Path: <gcc-bugs-return-535741-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 19264 invoked by alias); 23 Aug 2016 20:18:29 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 19184 invoked by uid 48); 23 Aug 2016 20:18:15 -0000
From: "msebor at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/77336] -Wsuggest-attribute=format warning overly simplistic
Date: Tue, 23 Aug 2016 20:18:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: msebor at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: attachments.created
Message-ID: <bug-77336-4-R46mLDvV3h@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77336-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77336-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03077.txt.bz2
Content-length: 270

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77336

--- Comment #1 from Martin Sebor <msebor at gcc dot gnu.org> ---
Created attachment 39488
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39488&action=edit
Prototype patch.

Attached a lightly tested patch.
>From gcc-bugs-return-535742-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 20:21:35 2016
Return-Path: <gcc-bugs-return-535742-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 26417 invoked by alias); 23 Aug 2016 20:21:35 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 26274 invoked by uid 55); 23 Aug 2016 20:21:20 -0000
From: "joseph at codesourcery dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77330] __float128 segfaults on 32-bit x86 due to 8-byte malloc alignment
Date: Tue, 23 Aug 2016 20:21:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: joseph at codesourcery dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77330-4-qpOJMvVqVQ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77330-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77330-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03078.txt.bz2
Content-length: 1219

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77330

--- Comment #8 from joseph at codesourcery dot com <joseph at codesourcery dot com> ---
On Tue, 23 Aug 2016, bernd.edlinger at hotmail dot de wrote:

> gcc assumes that malloc, calloc, realloc, strdup, strndup
> and anything with the __attribute__((__malloc__))
> returns a pointer that is aligned to MALLOC_ABI_ALIGNMENT bits.

That it makes this more conservative assumption for some optimization 
purposes is separate from the assumption that if you dereference a pointer 
to a type, that pointer, however you got it, meets the alignment 
requirements for the type.  __float128 is 16-byte-aligned, so GCC assumes 
any dereferenced pointer to it is also 16-byte-aligned, and it's the 
user's job to meet that requirement (by not using malloc for that 
allocation if it doesn't return sufficiently aligned memory).  There is no 
difference between __float128 and __m512 in this regard: a malloc that 
doesn't return suitably aligned memory isn't suitable for allocating 
storage for such objects, and if you use malloc to do so then GCC will 
assume that, at least for that particular allocation, the return value is 
suitably aligned.
>From gcc-bugs-return-535743-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 20:29:30 2016
Return-Path: <gcc-bugs-return-535743-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 26150 invoked by alias); 23 Aug 2016 20:29:30 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 11886 invoked by uid 48); 23 Aug 2016 20:29:17 -0000
From: "msebor at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/77336] -Wsuggest-attribute=format warning overly simplistic
Date: Tue, 23 Aug 2016 20:29:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: msebor at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: msebor at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on assigned_to everconfirmed
Message-ID: <bug-77336-4-ZmZOc1FsIl@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77336-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77336-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03079.txt.bz2
Content-length: 698

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77336

Martin Sebor <msebor at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |diagnostic
             Status|UNCONFIRMED                 |ASSIGNED
   Last reconfirmed|                            |2016-08-23
           Assignee|unassigned at gcc dot gnu.org      |msebor at gcc dot gnu.org
     Ever confirmed|0                           |1

--- Comment #2 from Martin Sebor <msebor at gcc dot gnu.org> ---
Patch posted for review:
https://gcc.gnu.org/ml/gcc-patches/2016-08/msg01662.html
>From gcc-bugs-return-535744-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 20:39:10 2016
Return-Path: <gcc-bugs-return-535744-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 49197 invoked by alias); 23 Aug 2016 20:39:10 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 48968 invoked by uid 48); 23 Aug 2016 20:38:55 -0000
From: "fritzoreese at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/77327] AddressSanitizer: heap-use-after-free gcc-trunk-239276/gcc/fortran/interface.c:403 in compare_components
Date: Tue, 23 Aug 2016 20:39:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: fritzoreese at gmail dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-77327-4-ilEqDefA2e@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77327-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77327-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03080.txt.bz2
Content-length: 654

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77327

Fritz Reese <fritzoreese at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |fritzoreese at gmail dot com

--- Comment #2 from Fritz Reese <fritzoreese at gmail dot com> ---
Yes - thanks for the bug report and the CC.

I have identified the problem, but I am contemplating some changes to the
section of code in question that may supersede the fix. Give me a day or few to
flesh out some things and I'll have a patch one way or the other.
>From gcc-bugs-return-535745-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 20:41:18 2016
Return-Path: <gcc-bugs-return-535745-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 55122 invoked by alias); 23 Aug 2016 20:41:18 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 54981 invoked by uid 48); 23 Aug 2016 20:41:04 -0000
From: "kargl at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/69860] ICE on missing end apostrophe with character(kind=4)
Date: Tue, 23 Aug 2016 20:41:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: kargl at gcc dot gnu.org
X-Bugzilla-Status: REOPENED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-69860-4-jRuNo0kY6K@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69860-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69860-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03081.txt.bz2
Content-length: 1452

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69860

--- Comment #12 from kargl at gcc dot gnu.org ---
(In reply to Gerhard Steinmetz from comment #11)
> And with "kind=4" instead of "kind=1", i.e. with testfile z1.f90 ?
> 
> 
> for n in `seq 1 1000`
> do
>    gfortran-7-20160821 -O2 -mavx -c z1.f90
> done > list 2>&1
> 
> grep 'internal compiler' list | wc
>     946    5676   47300
> 
> 
> I can also confirm that ICEs are gone for z2.f90 ("kind=1").

Ugh.  I was testing apparently a kind=1 version.  The problem
is that gfortran is inserting __convert_s1_s4 to convert to
the same kind, which of course fails.  This un-regression-tested
patch covers up the ICE, but it is perhaps not the correct fix.
Fortunately, I don't use kind=4 character types, so I don't have
a dog in this fight.

Index: primary.c
===================================================================
--- primary.c   (revision 239661)
+++ primary.c   (working copy)
@@ -1105,8 +1105,8 @@ got_delim:
       if (ret == -2)
        {
          gfc_current_locus = start_locus;
-         gfc_error ("Unterminated character constant beginning at %C");
-         return MATCH_ERROR;
+         gfc_error_now ("Unterminated character constant beginning at %C");
+         return MATCH_NO;
        }

       length++;
>From gcc-bugs-return-535746-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 21:00:49 2016
Return-Path: <gcc-bugs-return-535746-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 88496 invoked by alias); 23 Aug 2016 21:00:49 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 82278 invoked by uid 48); 23 Aug 2016 21:00:36 -0000
From: "msebor at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug jit/77355] New: FAIL: jit.dg/test-threads.c: error: static declaration of 'dejagnu_pass' follows non-static declaration
Date: Tue, 23 Aug 2016 21:00:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: jit
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: msebor at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: dmalcolm at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77355-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03082.txt.bz2
Content-length: 4108

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77355

            Bug ID: 77355
           Summary: FAIL: jit.dg/test-threads.c: error: static declaration
                    of 'dejagnu_pass' follows non-static declaration
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: jit
          Assignee: dmalcolm at gcc dot gnu.org
          Reporter: msebor at gcc dot gnu.org
  Target Milestone: ---

I'm seeing the following compilation errors on recent trunk of GCC 7.0 while
compiling the jit.dg/test-threads.c file:

$ sed -n "/spawn .*test-threads\.c/,/FAIL: jit.dg\/test-threads.c/p"
/build/gcc-49905/gcc/testsuite/jit/jit.log
spawn -ignore SIGHUP /home/msebor/build/gcc-49905/gcc/xgcc
-B/home/msebor/build/gcc-49905/gcc/
/src/gcc/49905/gcc/testsuite/jit.dg/test-threads.c -fno-diagnostics-show-caret
-fdiagnostics-color=never -I/src/gcc/49905/gcc/testsuite/../jit -lgccjit -g
-Wall -Werror -Wl,--export-dynamic -lpthread -fgnu89-inline -lm -o
test-threads.c.exe
In file included from
/src/gcc/49905/gcc/testsuite/jit.dg/test-accessing-struct.c:6:0,
                 from
/src/gcc/49905/gcc/testsuite/jit.dg/all-non-failing-tests.h:14,
                 from /src/gcc/49905/gcc/testsuite/jit.dg/test-threads.c:82:
/src/gcc/49905/gcc/testsuite/jit.dg/harness.h:25:14: error: static declaration
of 'dejagnu_pass' follows non-static declaration
/src/gcc/49905/gcc/testsuite/jit.dg/test-threads.c:23:6: note: previous
declaration of 'dejagnu_pass' was here
In file included from
/src/gcc/49905/gcc/testsuite/jit.dg/test-accessing-struct.c:6:0,
                 from
/src/gcc/49905/gcc/testsuite/jit.dg/all-non-failing-tests.h:14,
                 from /src/gcc/49905/gcc/testsuite/jit.dg/test-threads.c:82:
/src/gcc/49905/gcc/testsuite/jit.dg/harness.h:26:14: error: static declaration
of 'dejagnu_fail' follows non-static declaration
/src/gcc/49905/gcc/testsuite/jit.dg/test-threads.c:24:6: note: previous
declaration of 'dejagnu_fail' was here
In file included from
/src/gcc/49905/gcc/testsuite/jit.dg/test-accessing-struct.c:6:0,
                 from
/src/gcc/49905/gcc/testsuite/jit.dg/all-non-failing-tests.h:14,
                 from /src/gcc/49905/gcc/testsuite/jit.dg/test-threads.c:82:
/src/gcc/49905/gcc/testsuite/jit.dg/harness.h:27:14: error: static declaration
of 'dejagnu_note' follows non-static declaration
/src/gcc/49905/gcc/testsuite/jit.dg/test-threads.c:25:6: note: previous
declaration of 'dejagnu_note' was here
compiler exited with status 1
output is:
In file included from
/src/gcc/49905/gcc/testsuite/jit.dg/test-accessing-struct.c:6:0,
                 from
/src/gcc/49905/gcc/testsuite/jit.dg/all-non-failing-tests.h:14,
                 from /src/gcc/49905/gcc/testsuite/jit.dg/test-threads.c:82:
/src/gcc/49905/gcc/testsuite/jit.dg/harness.h:25:14: error: static declaration
of 'dejagnu_pass' follows non-static declaration
/src/gcc/49905/gcc/testsuite/jit.dg/test-threads.c:23:6: note: previous
declaration of 'dejagnu_pass' was here
In file included from
/src/gcc/49905/gcc/testsuite/jit.dg/test-accessing-struct.c:6:0,
                 from
/src/gcc/49905/gcc/testsuite/jit.dg/all-non-failing-tests.h:14,
                 from /src/gcc/49905/gcc/testsuite/jit.dg/test-threads.c:82:
/src/gcc/49905/gcc/testsuite/jit.dg/harness.h:26:14: error: static declaration
of 'dejagnu_fail' follows non-static declaration
/src/gcc/49905/gcc/testsuite/jit.dg/test-threads.c:24:6: note: previous
declaration of 'dejagnu_fail' was here
In file included from
/src/gcc/49905/gcc/testsuite/jit.dg/test-accessing-struct.c:6:0,
                 from
/src/gcc/49905/gcc/testsuite/jit.dg/all-non-failing-tests.h:14,
                 from /src/gcc/49905/gcc/testsuite/jit.dg/test-threads.c:82:
/src/gcc/49905/gcc/testsuite/jit.dg/harness.h:27:14: error: static declaration
of 'dejagnu_note' follows non-static declaration
/src/gcc/49905/gcc/testsuite/jit.dg/test-threads.c:25:6: note: previous
declaration of 'dejagnu_note' was here

FAIL: jit.dg/test-threads.c, initial compilation
>From gcc-bugs-return-535747-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 21:05:59 2016
Return-Path: <gcc-bugs-return-535747-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 102684 invoked by alias); 23 Aug 2016 21:05:59 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 102555 invoked by uid 48); 23 Aug 2016 21:05:43 -0000
From: "ville.voutilainen at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/77288] Std::experimental::optional::operator= implementation is broken in gcc 6.1
Date: Tue, 23 Aug 2016 21:05:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ville.voutilainen at gmail dot com
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: ville.voutilainen at gmail dot com
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77288-4-pZyDMhrg5X@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77288-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77288-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03083.txt.bz2
Content-length: 254

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77288

--- Comment #7 from Ville Voutilainen <ville.voutilainen at gmail dot com> ---
See https://gcc.gnu.org/ml/gcc-patches/2016-08/msg01634.html for what the
aforementioned superior approach looks like.
>From gcc-bugs-return-535748-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 21:07:41 2016
Return-Path: <gcc-bugs-return-535748-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 104213 invoked by alias); 23 Aug 2016 21:07:41 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 104079 invoked by uid 48); 23 Aug 2016 21:07:28 -0000
From: "bernd.edlinger at hotmail dot de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77330] __float128 segfaults on 32-bit x86 due to 8-byte malloc alignment
Date: Tue, 23 Aug 2016 21:07:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: bernd.edlinger at hotmail dot de
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77330-4-jjIz3MjD0b@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77330-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77330-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03084.txt.bz2
Content-length: 1740

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77330

--- Comment #9 from Bernd Edlinger <bernd.edlinger at hotmail dot de> ---
(In reply to joseph@codesourcery.com from comment #8)
> On Tue, 23 Aug 2016, bernd.edlinger at hotmail dot de wrote:
> 
> > gcc assumes that malloc, calloc, realloc, strdup, strndup
> > and anything with the __attribute__((__malloc__))
> > returns a pointer that is aligned to MALLOC_ABI_ALIGNMENT bits.
> 
> That it makes this more conservative assumption for some optimization 
> purposes is separate from the assumption that if you dereference a pointer 
> to a type, that pointer, however you got it, meets the alignment 
> requirements for the type.  __float128 is 16-byte-aligned, so GCC assumes 
> any dereferenced pointer to it is also 16-byte-aligned, and it's the 

Yes, but isn't that an ABI decision?

What if the ABI says __float128 has to be 8-byte-aligned on this machine,
because the memory returned from malloc is per definition usable for
anything that contains __float128?

Like this:

Index: gcc/tree.c
===================================================================
--- gcc/tree.c  (revision 239659)
+++ gcc/tree.c  (working copy)
@@ -10349,6 +10349,7 @@ build_common_tree_nodes (bool signed_char)
       SET_TYPE_MODE (FLOATN_NX_TYPE_NODE (i), mode);
     }

+  SET_TYPE_ALIGN (float128_type_node, MALLOC_ABI_ALIGNMENT);
   float_ptr_type_node = build_pointer_type (float_type_node);
   double_ptr_type_node = build_pointer_type (double_type_node);
   long_double_ptr_type_node = build_pointer_type (long_double_type_node);
>From gcc-bugs-return-535749-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 21:42:49 2016
Return-Path: <gcc-bugs-return-535749-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 77179 invoked by alias); 23 Aug 2016 21:42:49 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 77129 invoked by uid 48); 23 Aug 2016 21:42:44 -0000
From: "wmi at google dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/77356] New: regex error for a ECMAScript syntax string
Date: Tue, 23 Aug 2016 21:42:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wmi at google dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77356-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03085.txt.bz2
Content-length: 1460

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77356

            Bug ID: 77356
           Summary: regex error for a ECMAScript syntax string
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: libstdc++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: wmi at google dot com
  Target Milestone: ---

For the testcase 1.cxx:
----------------------------------------
#include <regex>
int main() {
  static const char* kNumericAnchor ="(\\$|usd)(usd|\\$|to|and|up
to|[0-9,\\.\\-\\sk])+";
  const std::regex re(kNumericAnchor);
  return 0;
}
----------------------------------------

~/workarea/gcc-r239713/build/install/bin/g++ -std=c++11 -O0 1.cxx
-Wl,-rpath=/usr/local/google/home/wmi/workarea/gcc-r239713/build/install/lib64
./a.out

terminate called after throwing an instance of 'std::regex_error'
  what():  Unexpected end of bracket expression.
Aborted (core dumped)

I have no problem to compile and run the testcase using libc++.

For libstdc++, the exception is thrown because the second dash '-' is not in
any range and it is not the start or end of bracket expression. According to
the comment in _M_expression_term in
src/libstdc++-v3/include/bits/regex_compiler.tcc this is not allowed in POSIX
syntax but allowed in ECMAScript syntax. Since the input is ECMAScript syntax,
libstdc++ shoudn't throw exception for it?
>From gcc-bugs-return-535750-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 21:53:09 2016
Return-Path: <gcc-bugs-return-535750-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 22343 invoked by alias); 23 Aug 2016 21:53:09 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 21568 invoked by uid 48); 23 Aug 2016 21:52:56 -0000
From: "segher at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/18154] Inefficient max/min code for PowerPC
Date: Tue, 23 Aug 2016 21:53:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 4.0.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: segher at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-18154-4-SturR355OI@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-18154-4@http.gcc.gnu.org/bugzilla/>
References: <bug-18154-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03086.txt.bz2
Content-length: 1038

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=18154

--- Comment #11 from Segher Boessenkool <segher at gcc dot gnu.org> ---
The signed version can be done in four insns:

1:      subfc   r5,r3,r4
        subfe   r6,r6,r6
        and     r7,r6,r5
        addc    r8,r7,r3

(superopt finds 16 versions, all similar).

The unsigned version can be done in six:

33:     subfc   r5,r3,r4
        srwi    r6,r4,31
        srwi    r7,r3,31
        subfe   r8,r6,r7
        and     r9,r8,r5
        addc    r10,r9,r3

(superopt finds 240 versions, many with one or two xoris ,,0x8000
which doesn't work for 64 bit, and many with srawi as well, which
can be more expensive than srwi; all remaining are similar).

For 32-bit min/max on a 64-bit cpu, we can use only "cheap", non-carry
instructions:

  extsw r3,r3
  extsw r4,r4
  subf r5,r4,r3
  srdi r6,r5,32
  and r7,r6,r5
  add r8,r7,r4

(and unsigned exts for unsigned).  Those extends often disappear into
surrounding insns, or because the ABI requires the regs to be extended
already, etc.
>From gcc-bugs-return-535751-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 21:56:26 2016
Return-Path: <gcc-bugs-return-535751-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 25877 invoked by alias); 23 Aug 2016 21:56:26 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 25779 invoked by uid 48); 23 Aug 2016 21:56:14 -0000
From: "segher at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/18154] Inefficient max/min code for PowerPC
Date: Tue, 23 Aug 2016 21:56:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 4.0.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: segher at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-18154-4-ji0srx2aU9@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-18154-4@http.gcc.gnu.org/bugzilla/>
References: <bug-18154-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03087.txt.bz2
Content-length: 226

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=18154

--- Comment #12 from Segher Boessenkool <segher at gcc dot gnu.org> ---
(Never mind those last "addc" insn, they can just as well be plain
"add", I pasted the wrong ones).
>From gcc-bugs-return-535752-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 22:43:56 2016
Return-Path: <gcc-bugs-return-535752-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 17266 invoked by alias); 23 Aug 2016 22:43:55 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 17033 invoked by uid 55); 23 Aug 2016 22:43:42 -0000
From: "joseph at codesourcery dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77330] __float128 segfaults on 32-bit x86 due to 8-byte malloc alignment
Date: Tue, 23 Aug 2016 22:43:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: joseph at codesourcery dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77330-4-kbKEKn9Qez@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77330-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77330-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03088.txt.bz2
Content-length: 729

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77330

--- Comment #10 from joseph at codesourcery dot com <joseph at codesourcery dot com> ---
On Tue, 23 Aug 2016, bernd.edlinger at hotmail dot de wrote:

> Yes, but isn't that an ABI decision?

It's the sort of ABI decision that's fixed after it's appeared in a 
release (whereas max_align_t is not the sort of thing that gets embedded 
in external ABIs in a way that gets broken when increasing the alignment, 
but something you use when writing your own allocator).  HJ's i386 ABI 
document, version 1.1 is explicit about this ABI choice (and that for 
_Decimal128, etc.), so presumably it's intended to be followed the same by 
other implementations as well.
>From gcc-bugs-return-535753-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 22:48:06 2016
Return-Path: <gcc-bugs-return-535753-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 28885 invoked by alias); 23 Aug 2016 22:48:06 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 28641 invoked by uid 48); 23 Aug 2016 22:47:53 -0000
From: "msebor at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/77357] New: strlen of constant strings not folded
Date: Tue, 23 Aug 2016 22:48:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: msebor at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77357-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03089.txt.bz2
Content-length: 3377

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77357

            Bug ID: 77357
           Summary: strlen of constant strings not folded
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: middle-end
          Assignee: unassigned at gcc dot gnu.org
          Reporter: msebor at gcc dot gnu.org
  Target Milestone: ---

GCC successfully folds some simple calls to strlen with constant arguments but
not others, both with and without optimization.  The results with optimization
are somewhat better but still not as good as they could be.  Besides opening up
other optimization opportunities, improving folding (even without optimization)
will help detect more coding bugs (such as buffer overflows).

The following test case shows that GCC folds global constant character arrays
and constant pointers to string literals but it fails to do the same for static
local const arrays or pointers or global aggregates.

With optimization, it still fails to fold const aggregates and ends up calling
strlen.

$ cat xyz.c && /build/gcc-trunk-svn/gcc/xgcc -B /build/gcc-trunk-svn/gcc -O0 -S
-Wall -Wextra -Wpedantic -fdump-tree-optimized=/dev/stdout strlen.c
extern int vsprintf (char*, const char*, __builtin_va_list);

void g (char *d, __builtin_va_list va)
{
  const char f[] = "%i";
  vsprintf (d, f, va);
}

void h (char *d, const char *f, __builtin_va_list va)
{
  vsprintf (d, f, va);
}


;; Function global_array (global_array, funcdef_no=0, decl_uid=1756,
cgraph_uid=0, symbol_order=3)

global_array ()
{
  <bb 2>:

  <bb 3>:
  return;

}



;; Function global_pointer (global_pointer, funcdef_no=1, decl_uid=1759,
cgraph_uid=1, symbol_order=4)

global_pointer ()
{
  const char * s.0_1;
  long unsigned int _2;

  <bb 2>:
  s.0_1 = "abc";
  _2 = 3;
  if (_2 != 3)
    goto <bb 3>;
  else
    goto <bb 4>;

  <bb 3>:
  __builtin_abort ();

  <bb 4>:
  return;

}



;; Function local_array (local_array, funcdef_no=2, decl_uid=1762,
cgraph_uid=2, symbol_order=5)

local_array ()
{
  static const char a[4] = "abc";
  long unsigned int _1;

  <bb 2>:
  _1 = __builtin_strlen (&a);
  if (_1 != 3)
    goto <bb 3>;
  else
    goto <bb 4>;

  <bb 3>:
  __builtin_abort ();

  <bb 4>:
  return;

}



;; Function local_pointer (local_pointer, funcdef_no=3, decl_uid=1766,
cgraph_uid=3, symbol_order=6)

local_pointer ()
{
  const char * const s;
  long unsigned int _1;

  <bb 2>:
  s_2 = "abc";
  _1 = __builtin_strlen (s_2);
  if (_1 != 3)
    goto <bb 3>;
  else
    goto <bb 4>;

  <bb 3>:
  __builtin_abort ();

  <bb 4>:
  return;

}



;; Function global_struct (global_struct, funcdef_no=4, decl_uid=1770,
cgraph_uid=4, symbol_order=7)

global_struct ()
{
  long unsigned int _1;

  <bb 2>:
  _1 = __builtin_strlen (&x.a);
  if (_1 != 3)
    goto <bb 3>;
  else
    goto <bb 4>;

  <bb 3>:
  __builtin_abort ();

  <bb 4>:
  return;

}



;; Function local_struct (local_struct, funcdef_no=5, decl_uid=1773,
cgraph_uid=5, symbol_order=8)

local_struct ()
{
  static const struct X x = {.a="abc"};
  long unsigned int _1;

  <bb 2>:
  _1 = __builtin_strlen (&x.a);
  if (_1 != 3)
    goto <bb 3>;
  else
    goto <bb 4>;

  <bb 3>:
  __builtin_abort ();

  <bb 4>:
  return;

}
>From gcc-bugs-return-535754-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 23 22:48:29 2016
Return-Path: <gcc-bugs-return-535754-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 29712 invoked by alias); 23 Aug 2016 22:48:27 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 29652 invoked by uid 48); 23 Aug 2016 22:48:19 -0000
From: "msebor at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/77357] strlen of constant strings not folded
Date: Tue, 23 Aug 2016 22:48:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: msebor at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_severity
Message-ID: <bug-77357-4-W6hnEWt6s1@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77357-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77357-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03090.txt.bz2
Content-length: 367

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77357

Martin Sebor <msebor at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |missed-optimization
           Severity|normal                      |enhancement
>From gcc-bugs-return-535755-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 00:01:14 2016
Return-Path: <gcc-bugs-return-535755-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 61227 invoked by alias); 24 Aug 2016 00:01:14 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 60687 invoked by uid 48); 24 Aug 2016 00:01:00 -0000
From: "manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/38302] inefficient use of strlen in for loop
Date: Wed, 24 Aug 2016 00:01:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 4.4.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: trivial
X-Bugzilla-Who: manu at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cc resolution
Message-ID: <bug-38302-4-lwTF9gsF60@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-38302-4@http.gcc.gnu.org/bugzilla/>
References: <bug-38302-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03091.txt.bz2
Content-length: 748

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=38302

Manuel López-Ibáñez <manu at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |manu at gcc dot gnu.org
         Resolution|---                         |INVALID

--- Comment #3 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
(In reply to Richard Biener from comment #2)
> Also the compiler is able to do this optimization.

It would be a bug if it couldn't. And there are already bugs opened for most
cases where it cannot.

Thus, closing.
>From gcc-bugs-return-535756-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 01:00:34 2016
Return-Path: <gcc-bugs-return-535756-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 83508 invoked by alias); 24 Aug 2016 01:00:33 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 82954 invoked by uid 48); 24 Aug 2016 01:00:23 -0000
From: "damian at sourceryinstitute dot org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/77358] New: [F08] deferred-length character function returns zero-length string
Date: Wed, 24 Aug 2016 01:00:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: damian at sourceryinstitute dot org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77358-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03092.txt.bz2
Content-length: 1626

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77358

            Bug ID: 77358
           Summary: [F08] deferred-length character function returns
                    zero-length string
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: fortran
          Assignee: unassigned at gcc dot gnu.org
          Reporter: damian at sourceryinstitute dot org
  Target Milestone: ---

As shown below with gfotran 7.0, a deferred-length character function returns a
zero-length string when the function is implemented inside a submodule. Either
of the following eliminates the bug: 
(1) moving the function from the submodule to the module or 
(2) changing the deferred-length character declarations to fixed-length
declarations with or without the allocatable attribute.
It would be great if the fix could be back ported to the 6 branch.

$ cat alloc-char-func-in-submodule.f90 
module hello_interface
  character(len=13) :: string="Hello, world!"
  interface
    module function get() result(result_string)
      character(:), allocatable :: result_string
    end function
  end interface
end module

submodule(hello_interface) hello_implementation
contains
  module function get() result(result_string)
    character(:), allocatable :: result_string
    result_string = string
  end function
end submodule

  use hello_interface
  print *,len(get())
end
$ gfortran alloc-char-func-in-submodule.f90 
$ ./a.out
           0
$ gfortran --version
GNU Fortran (MacPorts gcc7 7-20160814_0) 7.0.0 20160814 (experimental)
>From gcc-bugs-return-535757-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 02:08:16 2016
Return-Path: <gcc-bugs-return-535757-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 95552 invoked by alias); 24 Aug 2016 02:08:14 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 95139 invoked by uid 48); 24 Aug 2016 02:08:00 -0000
From: "dje at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/77359] New: [7 Regression] AIX bootstrap failure due to alignment of stack pointer + STACK_DYNAMIC_OFFSET
Date: Wed, 24 Aug 2016 02:08:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dje at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77359-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03093.txt.bz2
Content-length: 609

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77359

            Bug ID: 77359
           Summary: [7 Regression] AIX bootstrap failure due to alignment
                    of stack pointer + STACK_DYNAMIC_OFFSET
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: dje at gcc dot gnu.org
  Target Milestone: ---

The patch causes bootstrap failure on AIX.  Stage 1 GCC is miscompiled and
gencfn-macros fails with numerous errors.
>From gcc-bugs-return-535758-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 02:09:34 2016
Return-Path: <gcc-bugs-return-535758-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 102287 invoked by alias); 24 Aug 2016 02:09:33 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 99736 invoked by uid 48); 24 Aug 2016 02:09:19 -0000
From: "dje at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/77359] [7 Regression] AIX bootstrap failure due to alignment of stack pointer + STACK_DYNAMIC_OFFSET
Date: Wed, 24 Aug 2016 02:09:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dje at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cf_gcctarget bug_status cf_reconfirmed_on cc target_milestone everconfirmed
Message-ID: <bug-77359-4-7KwBopdzBa@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77359-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77359-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03094.txt.bz2
Content-length: 827

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77359

David Edelsohn <dje at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Target|                            |powerpc-ibm-aix*
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-24
                 CC|                            |krebbel at gcc dot gnu.org,
                   |                            |law at gcc dot gnu.org,
                   |                            |vogt at linux dot vnet.ibm.com
   Target Milestone|---                         |7.0
     Ever confirmed|0                           |1

--- Comment #1 from David Edelsohn <dje at gcc dot gnu.org> ---
Confirmed.
>From gcc-bugs-return-535759-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 05:21:16 2016
Return-Path: <gcc-bugs-return-535759-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 112945 invoked by alias); 24 Aug 2016 05:21:15 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 112800 invoked by uid 48); 24 Aug 2016 05:21:01 -0000
From: "damian at sourceryinstitute dot org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/77360] New: Self-assignment of allocatable character array
Date: Wed, 24 Aug 2016 05:21:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: damian at sourceryinstitute dot org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77360-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03095.txt.bz2
Content-length: 1056

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77360

            Bug ID: 77360
           Summary: Self-assignment of allocatable character array
           Product: gcc
           Version: 6.1.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: fortran
          Assignee: unassigned at gcc dot gnu.org
          Reporter: damian at sourceryinstitute dot org
  Target Milestone: ---

As demonstrated below, the assignment of an allocatable character array element
to itself leads to erroneous results with gfortran 6.1.0. The same code yields
the correct output ('a') with gfortran 5.4.0 and 7.0.0.  Dead code plays a
role: the "if (.false.)" statement is required to demonstrate the problem:

$ cat self-assign-char-array.f90 
character(1), allocatable :: linelist(:)
linelist = ['a']
if (.false.) linelist(1) = linelist(1)
linelist(1) = linelist(1)
print *,linelist(1)
end
$ gfortran self-assign-char-array.f90 
$ ./a.out

$ gfortran --version
GNU Fortran (MacPorts gcc6 6.1.0_0) 6.1.0
>From gcc-bugs-return-535760-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 05:24:55 2016
Return-Path: <gcc-bugs-return-535760-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 117674 invoked by alias); 24 Aug 2016 05:24:55 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 117549 invoked by uid 48); 24 Aug 2016 05:24:42 -0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77344] Internal Compiler Error with arch knl
Date: Wed, 24 Aug 2016 05:24:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status component everconfirmed
Message-ID: <bug-77344-4-Hz3TKJuzpr@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77344-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77344-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03096.txt.bz2
Content-length: 407

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77344

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |UNCONFIRMED
          Component|fortran                     |target
     Ever confirmed|1                           |0
>From gcc-bugs-return-535761-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 05:33:39 2016
Return-Path: <gcc-bugs-return-535761-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 121167 invoked by alias); 24 Aug 2016 05:33:38 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 121017 invoked by uid 48); 24 Aug 2016 05:33:25 -0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug lto/66196] Wrong type incompatibility warning for -flto and C
Date: Wed, 24 Aug 2016 05:33:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: lto
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-66196-4-CPownQju9f@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-66196-4@http.gcc.gnu.org/bugzilla/>
References: <bug-66196-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03097.txt.bz2
Content-length: 535

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66196

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |diagnostic
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-24
     Ever confirmed|0                           |1

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
.
>From gcc-bugs-return-535762-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 05:51:14 2016
Return-Path: <gcc-bugs-return-535762-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 11427 invoked by alias); 24 Aug 2016 05:51:13 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 10226 invoked by uid 48); 24 Aug 2016 05:51:00 -0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/65068] Improve rewriting for address type induction variables in IVOPT
Date: Wed, 24 Aug 2016 05:51:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 5.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: amker at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cf_reconfirmed_on cf_known_to_fail
Message-ID: <bug-65068-4-KdBJPtdv2S@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-65068-4@http.gcc.gnu.org/bugzilla/>
References: <bug-65068-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03098.txt.bz2
Content-length: 644

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65068

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Last reconfirmed|2015-05-15 00:00:00         |2016-8-23
      Known to fail|                            |6.1.0

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Oh this is interesting.  Tunning for thunderx or cortex-a53, we get the
expected results.

.L4:
        ldr     w1, [x0]
        add     w1, w1, 1
        str     w1, [x0], 4
        cmp     x0, x2
        bne     .L4


:)
>From gcc-bugs-return-535763-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 05:53:05 2016
Return-Path: <gcc-bugs-return-535763-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 26925 invoked by alias); 24 Aug 2016 05:53:05 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 26745 invoked by uid 48); 24 Aug 2016 05:52:50 -0000
From: "bernd.edlinger at hotmail dot de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77330] __float128 segfaults on 32-bit x86 due to 8-byte malloc alignment
Date: Wed, 24 Aug 2016 05:53:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: bernd.edlinger at hotmail dot de
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77330-4-GYjSaRWs5w@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77330-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77330-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03099.txt.bz2
Content-length: 1203

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77330

--- Comment #11 from Bernd Edlinger <bernd.edlinger at hotmail dot de> ---
(In reply to joseph@codesourcery.com from comment #10)
> On Tue, 23 Aug 2016, bernd.edlinger at hotmail dot de wrote:
> 
> > Yes, but isn't that an ABI decision?
> 
> It's the sort of ABI decision that's fixed after it's appeared in a 
> release (whereas max_align_t is not the sort of thing that gets embedded 
> in external ABIs in a way that gets broken when increasing the alignment, 
> but something you use when writing your own allocator).  HJ's i386 ABI 
> document, version 1.1 is explicit about this ABI choice (and that for 
> _Decimal128, etc.), so presumably it's intended to be followed the same by 
> other implementations as well.

H.J's document did not mention any requirements on malloc.
It is only necessary if __float128 is declared a base type.
But __m512 is no base type, right?

Then MALLOC_ABI_ALIGNMENT should be changed to 128 at least for the i386.

For x864_64 this is already the case.

But note that it will be difficult to patch all glibc implementations
all over the world.  Maybe it should be a configure option then?
>From gcc-bugs-return-535764-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 06:13:05 2016
Return-Path: <gcc-bugs-return-535764-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 58871 invoked by alias); 24 Aug 2016 06:13:05 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 58759 invoked by uid 48); 24 Aug 2016 06:12:52 -0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/68561] An improvement for VRP
Date: Wed, 24 Aug 2016 06:13:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: mpolacek at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_severity
Message-ID: <bug-68561-4-ZYmBhmEuk1@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68561-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68561-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03100.txt.bz2
Content-length: 369

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68561

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |missed-optimization
           Severity|normal                      |enhancement
>From gcc-bugs-return-535765-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 06:13:47 2016
Return-Path: <gcc-bugs-return-535765-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 59798 invoked by alias); 24 Aug 2016 06:13:47 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 59666 invoked by uid 48); 24 Aug 2016 06:13:34 -0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/68557] Missed x86 peephole optimization for multiplying by a bool
Date: Wed, 24 Aug 2016 06:13:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 5.1.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc bug_severity
Message-ID: <bug-68557-4-hFQCPJZQsj@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68557-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68557-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03101.txt.bz2
Content-length: 376

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68557

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |pinskia at gcc dot gnu.org
           Severity|normal                      |enhancement
>From gcc-bugs-return-535766-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 06:15:41 2016
Return-Path: <gcc-bugs-return-535766-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 62877 invoked by alias); 24 Aug 2016 06:15:41 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 62374 invoked by uid 48); 24 Aug 2016 06:15:26 -0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/68282] Optimization fails to remove unnecessary sign extension instruction
Date: Wed, 24 Aug 2016 06:15:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_severity
Message-ID: <bug-68282-4-qSLPdCdNXJ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-68282-4@http.gcc.gnu.org/bugzilla/>
References: <bug-68282-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03102.txt.bz2
Content-length: 300

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68282

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|normal                      |enhancement
>From gcc-bugs-return-535767-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 06:18:26 2016
Return-Path: <gcc-bugs-return-535767-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 104880 invoked by alias); 24 Aug 2016 06:18:26 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 92735 invoked by uid 48); 24 Aug 2016 06:18:12 -0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/65964] [meta] Operand Shortening
Date: Wed, 24 Aug 2016 06:18:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_severity
Message-ID: <bug-65964-4-UOQTWrmqJG@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-65964-4@http.gcc.gnu.org/bugzilla/>
References: <bug-65964-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03103.txt.bz2
Content-length: 369

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65964

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |missed-optimization
           Severity|normal                      |enhancement
>From gcc-bugs-return-535768-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 06:24:50 2016
Return-Path: <gcc-bugs-return-535768-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 14942 invoked by alias); 24 Aug 2016 06:24:50 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 14827 invoked by uid 48); 24 Aug 2016 06:24:37 -0000
From: "vries at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/71602] [6/7 regression] ICE on __builtin_va_arg in build_va_arg, at c-family/c-common.c:5810
Date: Wed, 24 Aug 2016 06:24:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-invalid-code, patch
X-Bugzilla-Severity: normal
X-Bugzilla-Who: vries at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71602-4-vi2wRYxhZv@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71602-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71602-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03104.txt.bz2
Content-length: 200

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71602

--- Comment #15 from Tom de Vries <vries at gcc dot gnu.org> ---
Posted updated patch: https://gcc.gnu.org/ml/gcc-patches/2016-08/msg01691.html
>From gcc-bugs-return-535769-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 06:24:50 2016
Return-Path: <gcc-bugs-return-535769-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 14952 invoked by alias); 24 Aug 2016 06:24:50 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 14844 invoked by uid 48); 24 Aug 2016 06:24:38 -0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug testsuite/77354] Failure with -fno-ivopts
Date: Wed, 24 Aug 2016 06:24:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: testsuite
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-77354-4-KRbDu2R78Q@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77354-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77354-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03105.txt.bz2
Content-length: 482

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77354

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |INVALID

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
This test is testing IV-OPTs so yes it is supposed to fail.
>From gcc-bugs-return-535770-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 06:44:52 2016
Return-Path: <gcc-bugs-return-535770-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 72786 invoked by alias); 24 Aug 2016 06:44:52 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 72676 invoked by uid 48); 24 Aug 2016 06:44:40 -0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug testsuite/69620] gcc.dg/tree-ssa/loop-19.c scan-tree-dump-times optimized fails for powerpc64-linux-gnu
Date: Wed, 24 Aug 2016 06:44:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: testsuite
X-Bugzilla-Version: 4.9.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-69620-4-35Wv9y5p6k@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69620-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69620-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03106.txt.bz2
Content-length: 617

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69620

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |FIXED

--- Comment #3 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Testcase itself has been fixed (from running) so closing.

Fixed by:
2014-09-01  Maciej W. Rozycki  <macro@codesourcery.com>

       * gcc.dg/tree-ssa/loop-19.c: Exclude classic FPU Power targets.
>From gcc-bugs-return-535771-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 06:47:05 2016
Return-Path: <gcc-bugs-return-535771-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 74898 invoked by alias); 24 Aug 2016 06:47:05 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 74767 invoked by uid 48); 24 Aug 2016 06:46:51 -0000
From: "jb at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libfortran/77261] gfortran.dg/random_3.f90 FAILs
Date: Wed, 24 Aug 2016 06:47:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libfortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: jb at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jb at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_file_loc
Message-ID: <bug-77261-4-Nn0abwA6Pp@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77261-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77261-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03107.txt.bz2
Content-length: 703

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77261

Janne Blomqvist <jb at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                URL|                            |https://gcc.gnu.org/ml/gcc-
                   |                            |patches/2016-08/msg01630.ht
                   |                            |ml

--- Comment #4 from Janne Blomqvist <jb at gcc dot gnu.org> ---
Patch here: https://gcc.gnu.org/ml/gcc-patches/2016-08/msg01630.html

Could you Rainer verify that it works on Solaris/SPARC? It *should* do the
trick, but I have only tested on x86_64-linux-gnu.
>From gcc-bugs-return-535772-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 06:50:10 2016
Return-Path: <gcc-bugs-return-535772-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 78631 invoked by alias); 24 Aug 2016 06:50:10 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 78408 invoked by uid 48); 24 Aug 2016 06:49:56 -0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/66022] 4.8.4 build fails with stage 2 and 3 comparison error
Date: Wed, 24 Aug 2016 06:50:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 4.8.4
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-66022-4-Y4VhTNMJ4a@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-66022-4@http.gcc.gnu.org/bugzilla/>
References: <bug-66022-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03108.txt.bz2
Content-length: 527

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66022

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |WAITING
   Last reconfirmed|                            |2016-08-24
     Ever confirmed|0                           |1

--- Comment #3 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Does this work in 5.4.0 (the latest supported GCC)?
>From gcc-bugs-return-535773-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 06:55:12 2016
Return-Path: <gcc-bugs-return-535773-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 85781 invoked by alias); 24 Aug 2016 06:55:11 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 85228 invoked by uid 48); 24 Aug 2016 06:54:57 -0000
From: "bernd.edlinger at hotmail dot de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77330] __float128 segfaults on 32-bit x86 due to 8-byte malloc alignment
Date: Wed, 24 Aug 2016 06:55:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: bernd.edlinger at hotmail dot de
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77330-4-ycTGWvdpEm@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77330-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77330-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03109.txt.bz2
Content-length: 225

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77330

--- Comment #12 from Bernd Edlinger <bernd.edlinger at hotmail dot de> ---
glibc's malloc returns 128-bit aligned on x86-64-linux-gnu.
but what does it return on windows?
>From gcc-bugs-return-535774-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 07:04:16 2016
Return-Path: <gcc-bugs-return-535774-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 84549 invoked by alias); 24 Aug 2016 07:04:16 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 84432 invoked by uid 48); 24 Aug 2016 07:04:06 -0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/33244] Missed opportunities for vectorization
Date: Wed, 24 Aug 2016 07:04:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 4.3.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-33244-4-BWsUadKk1T@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-33244-4@http.gcc.gnu.org/bugzilla/>
References: <bug-33244-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03110.txt.bz2
Content-length: 207

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=33244

--- Comment #5 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
The only loop I see in this file now is one which contains a call to sqrt and
logf.
>From gcc-bugs-return-535775-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 07:17:39 2016
Return-Path: <gcc-bugs-return-535775-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 97235 invoked by alias); 24 Aug 2016 07:17:38 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 97102 invoked by uid 55); 24 Aug 2016 07:17:26 -0000
From: "rguenther at suse dot de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug lto/70955] [6/7 Regression] Wrong code generation for __builtin_ms_va_list with -flto
Date: Wed, 24 Aug 2016 07:17:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: lto
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords: lto, wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenther at suse dot de
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-70955-4-YqMBJEDFL0@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70955-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70955-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03111.txt.bz2
Content-length: 1260

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70955

--- Comment #24 from rguenther at suse dot de <rguenther at suse dot de> ---
On Tue, 23 Aug 2016, vries at gcc dot gnu.org wrote:

> https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70955
> 
> --- Comment #23 from Tom de Vries <vries at gcc dot gnu.org> ---
> (In reply to Richard Biener from comment #22)
> > (In reply to vries from comment #18)
> > > Created attachment 39484 [details]
> > > Tentative patch using attributes ms_abi/sysv_abi
> > > 
> > > not build or regression tested yet, but at least makes test-case pass.
> > 
> > LGTM.
> 
> Just realized, there's a potential problem with the patch and
> sysv_va_list_type_node. sysv_va_list_type_node is an array type (array with
> length 1 and a struct as element type).
> 
> grokdeclarator (in c-decl.c, see comment 'A parameter declared as an array of T
> is really a pointer to T') converts that type into a pointer to array element
> type (as explained in more detail in build_va_arg) and drops the attributes.
> 
> Perhaps we should mark the underlying element type with the attribute (as
> well/instead? I'm not sure yet).

Hmm, yeah.  You'd have to do some experiments in which process we might
get a few more testcases ;)
>From gcc-bugs-return-535776-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 07:40:28 2016
Return-Path: <gcc-bugs-return-535776-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 58393 invoked by alias); 24 Aug 2016 07:40:28 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 58280 invoked by uid 55); 24 Aug 2016 07:40:15 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/76490] [5 Regression] when use -O2 -fcheck-founds compiler appears to hang and consumes all memory
Date: Wed, 24 Aug 2016 07:40:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords: compile-time-hog, memory-hog
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-76490-4-lCAodrSQrM@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-76490-4@http.gcc.gnu.org/bugzilla/>
References: <bug-76490-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03112.txt.bz2
Content-length: 1420

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76490

--- Comment #8 from Richard Biener <rguenth at gcc dot gnu.org> ---
Author: rguenth
Date: Wed Aug 24 07:39:42 2016
New Revision: 239729

URL: https://gcc.gnu.org/viewcvs?rev=239729&root=gcc&view=rev
Log:
2016-08-24  Richard Biener  <rguenther@suse.de>

        Backport from mainline
        2016-08-17  Richard Biener  <rguenther@suse.de>

        PR tree-optimization/76490
        * tree-vrp.c (update_value_range): Preserve overflow infinities
        when intersecting with ranges from get_range_info.
        (operand_less_p): Handle overflow infinities correctly.
        (value_range_constant_singleton): Use vrp_operand_equal_p
        to handle overflow max/min correctly.
        (vrp_valueize): Likewise.
        (union_ranges): Likewise.
        (intersect_ranges): Likewise.
        (vrp_visit_phi_node): Improve iteration limitation to only
        apply when we'll possibly re-visit the PHI via a changed argument
        on the backedge.

        * gfortran.fortran-torture/compile/pr76490.f90: New testcase.
        * gcc.dg/pr52904.c: XFAIL.

Added:
   
branches/gcc-6-branch/gcc/testsuite/gfortran.fortran-torture/compile/pr76490.f90
Modified:
    branches/gcc-6-branch/gcc/ChangeLog
    branches/gcc-6-branch/gcc/testsuite/ChangeLog
    branches/gcc-6-branch/gcc/testsuite/gcc.dg/pr52904.c
    branches/gcc-6-branch/gcc/tree-vrp.c
>From gcc-bugs-return-535777-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 07:43:39 2016
Return-Path: <gcc-bugs-return-535777-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 60853 invoked by alias); 24 Aug 2016 07:43:39 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 60724 invoked by uid 48); 24 Aug 2016 07:43:25 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/77332] ICE when building gcc 6.2 (with gcc 6.1.0)
Date: Wed, 24 Aug 2016 07:43:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: build, ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-77332-4-Rl3DQRB36r@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77332-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77332-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03113.txt.bz2
Content-length: 492

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77332

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |RESOLVED
         Resolution|---                         |INVALID

--- Comment #3 from Richard Biener <rguenth at gcc dot gnu.org> ---
Ok, it sounds like it may be a fluke due to bad memory / disk then.
>From gcc-bugs-return-535778-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 07:49:28 2016
Return-Path: <gcc-bugs-return-535778-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 68625 invoked by alias); 24 Aug 2016 07:49:27 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 68504 invoked by uid 48); 24 Aug 2016 07:49:14 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/77357] strlen of constant strings not folded
Date: Wed, 24 Aug 2016 07:49:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc everconfirmed
Message-ID: <bug-77357-4-wLY9DCKXRL@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77357-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77357-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03114.txt.bz2
Content-length: 575

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77357

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |WAITING
   Last reconfirmed|                            |2016-08-24
                 CC|                            |rguenth at gcc dot gnu.org
     Ever confirmed|0                           |1

--- Comment #1 from Richard Biener <rguenth at gcc dot gnu.org> ---
Contents of strlen.c?
>From gcc-bugs-return-535780-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 07:50:42 2016
Return-Path: <gcc-bugs-return-535780-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 71213 invoked by alias); 24 Aug 2016 07:50:41 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 71043 invoked by uid 48); 24 Aug 2016 07:50:27 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77353] [AVR] uint16_t instead uint8_t comparison
Date: Wed, 24 Aug 2016 07:50:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77353-4-J0b2obo9yS@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77353-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77353-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03116.txt.bz2
Content-length: 185

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77353

--- Comment #2 from Richard Biener <rguenth at gcc dot gnu.org> ---
Please always provide complete testcases that can be compiled.
>From gcc-bugs-return-535779-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 07:50:41 2016
Return-Path: <gcc-bugs-return-535779-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 71204 invoked by alias); 24 Aug 2016 07:50:41 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 71040 invoked by uid 48); 24 Aug 2016 07:50:27 -0000
From: "amker at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/34114] Missed optimization: cannot determine loop termination
Date: Wed, 24 Aug 2016 07:50:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 4.3.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: amker at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cc resolution
Message-ID: <bug-34114-4-ALBUrVZS8f@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-34114-4@http.gcc.gnu.org/bugzilla/>
References: <bug-34114-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03115.txt.bz2
Content-length: 469

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=34114

amker at gcc dot gnu.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |amker at gcc dot gnu.org
         Resolution|---                         |FIXED

--- Comment #9 from amker at gcc dot gnu.org ---
Fixed now.
>From gcc-bugs-return-535782-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 07:52:53 2016
Return-Path: <gcc-bugs-return-535782-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 100123 invoked by alias); 24 Aug 2016 07:52:53 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 99993 invoked by uid 48); 24 Aug 2016 07:52:41 -0000
From: "amker at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/53947] [meta-bug] vectorizer missed-optimizations
Date: Wed, 24 Aug 2016 07:52:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: dep_changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 4.8.0
X-Bugzilla-Keywords: meta-bug, missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: amker at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-53947-4-vN7HZKl2Bj@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-53947-4@http.gcc.gnu.org/bugzilla/>
References: <bug-53947-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03118.txt.bz2
Content-length: 480

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53947
Bug 53947 depends on bug 69848, which changed state.

Bug 69848 Summary: poor vectorization of a loop from SPEC2006 464.h264ref
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69848

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED
>From gcc-bugs-return-535781-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 07:52:53 2016
Return-Path: <gcc-bugs-return-535781-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 100112 invoked by alias); 24 Aug 2016 07:52:53 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 99937 invoked by uid 48); 24 Aug 2016 07:52:40 -0000
From: "amker at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/69848] poor vectorization of a loop from SPEC2006 464.h264ref
Date: Wed, 24 Aug 2016 07:52:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: amker at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-69848-4-8Zhl4FUhPQ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69848-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69848-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03117.txt.bz2
Content-length: 401

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69848

amker at gcc dot gnu.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--- Comment #17 from amker at gcc dot gnu.org ---
Fixed, I think.
>From gcc-bugs-return-535784-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 07:53:53 2016
Return-Path: <gcc-bugs-return-535784-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 102872 invoked by alias); 24 Aug 2016 07:53:52 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 102117 invoked by uid 55); 24 Aug 2016 07:53:39 -0000
From: "rts at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug testsuite/77317] x86_64 --target_board=''unix/ unix/-m32'' parallel testrun gives inconsistent results in gcc.dg/vect
Date: Wed, 24 Aug 2016 07:53:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: testsuite
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rts at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77317-4-Tpya7QRWKK@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77317-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77317-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03120.txt.bz2
Content-length: 697

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77317

--- Comment #2 from rts at gcc dot gnu.org ---
Author: rts
Date: Wed Aug 24 07:53:07 2016
New Revision: 239730

URL: https://gcc.gnu.org/viewcvs?rev=239730&root=gcc&view=rev
Log:
Fix PR testsuite/77317

gcc/testsuite/
        * lib/target-supports.exp
        (check_effective_target_vect_aligned_arrays): Don't cache the result.
        (check_effective_target_vect_natural_alignment): Ditto.
        (check_effective_target_vector_alignment_reachable): Ditto.
        (check_effective_target_vector_alignment_reachable_for_64bit): Ditto.

Modified:
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/testsuite/lib/target-supports.exp
>From gcc-bugs-return-535783-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 07:53:40 2016
Return-Path: <gcc-bugs-return-535783-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 102160 invoked by alias); 24 Aug 2016 07:53:40 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 102002 invoked by uid 48); 24 Aug 2016 07:53:27 -0000
From: "amker at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/72817] [7 Regression] wrong code at -O3 on x86_64-linux-gnu (in both 32-bit and 64-bit modes)
Date: Wed, 24 Aug 2016 07:53:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: amker at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: amker at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-72817-4-PQx0VXkAOf@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-72817-4@http.gcc.gnu.org/bugzilla/>
References: <bug-72817-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03119.txt.bz2
Content-length: 392

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72817

amker at gcc dot gnu.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--- Comment #10 from amker at gcc dot gnu.org ---
Fixed.
>From gcc-bugs-return-535785-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 08:02:15 2016
Return-Path: <gcc-bugs-return-535785-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 118825 invoked by alias); 24 Aug 2016 08:02:15 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 118644 invoked by uid 48); 24 Aug 2016 08:02:02 -0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/77356] regex error for a ECMAScript syntax string
Date: Wed, 24 Aug 2016 08:02:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libstdc++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: timshen at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on assigned_to everconfirmed
Message-ID: <bug-77356-4-3uucsAxN7e@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77356-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77356-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03121.txt.bz2
Content-length: 583

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77356

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |ASSIGNED
   Last reconfirmed|                            |2016-08-24
           Assignee|unassigned at gcc dot gnu.org      |timshen at gcc dot gnu.org
     Ever confirmed|0                           |1

--- Comment #1 from Jonathan Wakely <redi at gcc dot gnu.org> ---
Tim has a fix for this.
>From gcc-bugs-return-535786-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 08:04:12 2016
Return-Path: <gcc-bugs-return-535786-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 126875 invoked by alias); 24 Aug 2016 08:04:11 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 126773 invoked by uid 48); 24 Aug 2016 08:03:58 -0000
From: "wigyori at uid0 dot hu" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libgcc/77361] New: sparc - unrecognizable insn in __fixsfdi
Date: Wed, 24 Aug 2016 08:04:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libgcc
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wigyori at uid0 dot hu
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77361-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03122.txt.bz2
Content-length: 5775

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77361

            Bug ID: 77361
           Summary: sparc - unrecognizable insn in __fixsfdi
           Product: gcc
           Version: 5.4.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: libgcc
          Assignee: unassigned at gcc dot gnu.org
          Reporter: wigyori at uid0 dot hu
  Target Milestone: ---

Hi,

I'm trying to build a cross-compiler for sparc, however libgcc build fails with
the following error:

-------------
/openwrt/build_dir/toolchain-sparc_sparc_gcc-5.4.0_musl-1.1.14/gcc-5.4.0-minimal/./gcc/xgcc
-B/openwrt/build_dir/toolchain-sparc_sparc_gcc-5.4.0_musl-1.1.14/gcc-5.4.0-minimal/./gcc/
-B/openwrt/staging_dir/toolchain-sparc_sparc_gcc-5.4.0_musl-1.1.14/sparc-openwrt-linux-musl/bin/
-B/openwrt/staging_dir/toolchain-sparc_sparc_gcc-5.4.0_musl-1.1.14/sparc-openwrt-linux-musl/lib/
-isystem
/openwrt/staging_dir/toolchain-sparc_sparc_gcc-5.4.0_musl-1.1.14/sparc-openwrt-linux-musl/include
-isystem
/openwrt/staging_dir/toolchain-sparc_sparc_gcc-5.4.0_musl-1.1.14/sparc-openwrt-linux-musl/sys-include
   -Os -pipe -mcpu=v8 -fno-caller-saves -fno-caller-saves -fno-plt
-fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -O2 
-Os -pipe -mcpu=v8 -fno-caller-saves -fno-caller-saves -fno-plt -fhonour-copts
-Wno-error=unused-but-set-variable -Wno-error=unused-result -DIN_GCC 
-DCROSS_DIRECTORY_STRUCTURE  -W -Wall -Wno-narrowing -Wwrite-strings
-Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition 
-isystem ./include   -fPIC -g -DIN_LIBGCC2 -fbuilding-libgcc
-fno-stack-protector -Dinhibit_libc  -fPIC -I. -I. -I../.././gcc
-I/openwrt/build_dir/toolchain-sparc_sparc_gcc-5.4.0_musl-1.1.14/gcc-5.4.0/libgcc
-I/openwrt/build_dir/toolchain-sparc_sparc_gcc-5.4.0_musl-1.1.14/gcc-5.4.0/libgcc/.
-I/openwrt/build_dir/toolchain-sparc_sparc_gcc-5.4.0_musl-1.1.14/gcc-5.4.0/libgcc/../gcc
-I/openwrt/build_dir/toolchain-sparc_sparc_gcc-5.4.0_musl-1.1.14/gcc-5.4.0/libgcc/../include
 -DHAVE_CC_TLS  -o _fixsfdi.o -MT _fixsfdi.o -MD -MP -MF _fixsfdi.dep
-DL_fixsfdi -c
/openwrt/build_dir/toolchain-sparc_sparc_gcc-5.4.0_musl-1.1.14/gcc-5.4.0/libgcc/libgcc2.c
-fvisibility=hidden -DHIDE_EXPORTS
cc1: note: someone does not honour COPTS correctly, passed 2 times
/openwrt/build_dir/toolchain-sparc_sparc_gcc-5.4.0_musl-1.1.14/gcc-5.4.0/libgcc/libgcc2.c:
In function '__fixsfdi':
/openwrt/build_dir/toolchain-sparc_sparc_gcc-5.4.0_musl-1.1.14/gcc-5.4.0/libgcc/libgcc2.c:1502:1:
error: unrecognizable insn:
 }
 ^
(call_insn/j 34 33 35 7 (parallel [
            (set (reg:DI 24 %i0)
                (call (mem:SI (reg/f:SI 123) [0 __fixunssfdi S4 A32])
                    (const_int 0 [0])))
            (return)
        ])
/openwrt/build_dir/toolchain-sparc_sparc_gcc-5.4.0_musl-1.1.14/gcc-5.4.0/libgcc/libgcc2.c:1501
-1
     (expr_list:REG_CALL_DECL (symbol_ref:SI ("__fixunssfdi") [flags 0x41]
<function_decl 0x2b713d9d2438 __fixunssfdi>)
        (nil))
    (expr_list:SF (use (reg:SF 24 %i0))
        (nil)))
/openwrt/build_dir/toolchain-sparc_sparc_gcc-5.4.0_musl-1.1.14/gcc-5.4.0/libgcc/libgcc2.c:1502:1:
internal compiler error: in extract_insn, at recog.c:2343
0x8999b5 _fatal_insn(char const*, rtx_def const*, char const*, int, char
const*)
       
/openwrt/build_dir/toolchain-sparc_sparc_gcc-5.4.0_musl-1.1.14/gcc-5.4.0/gcc/rtl-error.c:110
0x8999e9 _fatal_insn_not_found(rtx_def const*, char const*, int, char const*)
       
/openwrt/build_dir/toolchain-sparc_sparc_gcc-5.4.0_musl-1.1.14/gcc-5.4.0/gcc/rtl-error.c:118
0x86749e extract_insn(rtx_insn*)
       
/openwrt/build_dir/toolchain-sparc_sparc_gcc-5.4.0_musl-1.1.14/gcc-5.4.0/gcc/recog.c:2343
0x6d9126 instantiate_virtual_regs_in_insn
       
/openwrt/build_dir/toolchain-sparc_sparc_gcc-5.4.0_musl-1.1.14/gcc-5.4.0/gcc/function.c:1646
0x6d9126 instantiate_virtual_regs
       
/openwrt/build_dir/toolchain-sparc_sparc_gcc-5.4.0_musl-1.1.14/gcc-5.4.0/gcc/function.c:1966
0x6d9126 execute
       
/openwrt/build_dir/toolchain-sparc_sparc_gcc-5.4.0_musl-1.1.14/gcc-5.4.0/gcc/function.c:2015
Please submit a full bug report,
with preprocessed source if appropriate.
Please include the complete backtrace with any bug report.
See <https://dev.openwrt.org/> for instructions.
make[5]: *** [_fixsfdi.o] Error 1
make[5]: Leaving directory
`/openwrt/build_dir/toolchain-sparc_sparc_gcc-5.4.0_musl-1.1.14/gcc-5.4.0-minimal/sparc-openwrt-linux-musl/libgcc'
make[4]: *** [all-target-libgcc] Error 2
-------------

GCC is configured with:

/openwrt/sparc/openwrt/build_dir/toolchain-sparc_sparc_gcc-5.4.0_musl-1.1.14/gcc-5.4.0/configure
\
--with-bugurl=https://dev.openwrt.org/ \
--with-pkgversion="OpenWrt GCC 5.4.0 49903" \
--prefix=/openwrt/sparc/openwrt/staging_dir/toolchain-sparc_sparc_gcc-5.4.0_musl-1.1.14
\
--build=x86_64-linux-gnu \
--host=x86_64-linux-gnu--target=sparc-openwrt-linux-musl \
--with-gnu-ld \
--enable-target-optspace \
--disable-libgomp \
--disable-libmudflap \
--disable-multilib \
--disable-nls \
--without-isl \
--without-cloog \
--with-host-libstdcxx=-lstdc++     \
--with-gmp=/openwrt/sparc/openwrt/staging_dir/host \
--with-mpfr=/openwrt/sparc/openwrt/staging_dir/host \
--with-mpc=/openwrt/sparc/openwrt/staging_dir/host \
--disable-decimal-float \
--with-diagnostics-color=auto-if-env \
--disable-libssp \
--enable-targets=all \
--with-long-double-128 \
--enable-__cxa_atexit \
--with-newlib \
--without-headers \
--enable-languages=c \
--disable-libsanitizer \
--disable-libssp \
--disable-shared \
--disable-threads

Thanks,
Zoltan H
>From gcc-bugs-return-535787-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 08:05:38 2016
Return-Path: <gcc-bugs-return-535787-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 128212 invoked by alias); 24 Aug 2016 08:05:37 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 128131 invoked by uid 48); 24 Aug 2016 08:05:25 -0000
From: "wigyori at uid0 dot hu" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libgcc/77361] sparc - unrecognizable insn in __fixsfdi
Date: Wed, 24 Aug 2016 08:05:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libgcc
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: wigyori at uid0 dot hu
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77361-4-ONycq6wmsj@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77361-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77361-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03123.txt.bz2
Content-length: 5955

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77361

--- Comment #1 from Zoltan HERPAI <wigyori at uid0 dot hu> ---
(In reply to Zoltan HERPAI from comment #0)
> Hi,
> 
> I'm trying to build a cross-compiler for sparc, however libgcc build fails
> with the following error:
> 
> -------------
> /openwrt/build_dir/toolchain-sparc_sparc_gcc-5.4.0_musl-1.1.14/gcc-5.4.0-
> minimal/./gcc/xgcc
> -B/openwrt/build_dir/toolchain-sparc_sparc_gcc-5.4.0_musl-1.1.14/gcc-5.4.0-
> minimal/./gcc/
> -B/openwrt/staging_dir/toolchain-sparc_sparc_gcc-5.4.0_musl-1.1.14/sparc-
> openwrt-linux-musl/bin/
> -B/openwrt/staging_dir/toolchain-sparc_sparc_gcc-5.4.0_musl-1.1.14/sparc-
> openwrt-linux-musl/lib/ -isystem
> /openwrt/staging_dir/toolchain-sparc_sparc_gcc-5.4.0_musl-1.1.14/sparc-
> openwrt-linux-musl/include -isystem
> /openwrt/staging_dir/toolchain-sparc_sparc_gcc-5.4.0_musl-1.1.14/sparc-
> openwrt-linux-musl/sys-include    -Os -pipe -mcpu=v8 -fno-caller-saves
> -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable
> -Wno-error=unused-result -O2  -Os -pipe -mcpu=v8 -fno-caller-saves
> -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable
> -Wno-error=unused-result -DIN_GCC  -DCROSS_DIRECTORY_STRUCTURE  -W -Wall
> -Wno-narrowing -Wwrite-strings -Wcast-qual -Wstrict-prototypes
> -Wmissing-prototypes -Wold-style-definition  -isystem ./include   -fPIC -g
> -DIN_LIBGCC2 -fbuilding-libgcc -fno-stack-protector -Dinhibit_libc  -fPIC
> -I. -I. -I../.././gcc
> -I/openwrt/build_dir/toolchain-sparc_sparc_gcc-5.4.0_musl-1.1.14/gcc-5.4.0/
> libgcc
> -I/openwrt/build_dir/toolchain-sparc_sparc_gcc-5.4.0_musl-1.1.14/gcc-5.4.0/
> libgcc/.
> -I/openwrt/build_dir/toolchain-sparc_sparc_gcc-5.4.0_musl-1.1.14/gcc-5.4.0/
> libgcc/../gcc
> -I/openwrt/build_dir/toolchain-sparc_sparc_gcc-5.4.0_musl-1.1.14/gcc-5.4.0/
> libgcc/../include  -DHAVE_CC_TLS  -o _fixsfdi.o -MT _fixsfdi.o -MD -MP -MF
> _fixsfdi.dep -DL_fixsfdi -c
> /openwrt/build_dir/toolchain-sparc_sparc_gcc-5.4.0_musl-1.1.14/gcc-5.4.0/
> libgcc/libgcc2.c -fvisibility=hidden -DHIDE_EXPORTS
> cc1: note: someone does not honour COPTS correctly, passed 2 times
> /openwrt/build_dir/toolchain-sparc_sparc_gcc-5.4.0_musl-1.1.14/gcc-5.4.0/
> libgcc/libgcc2.c: In function '__fixsfdi':
> /openwrt/build_dir/toolchain-sparc_sparc_gcc-5.4.0_musl-1.1.14/gcc-5.4.0/
> libgcc/libgcc2.c:1502:1: error: unrecognizable insn:
>  }
>  ^
> (call_insn/j 34 33 35 7 (parallel [
>             (set (reg:DI 24 %i0)
>                 (call (mem:SI (reg/f:SI 123) [0 __fixunssfdi S4 A32])
>                     (const_int 0 [0])))
>             (return)
>         ])
> /openwrt/build_dir/toolchain-sparc_sparc_gcc-5.4.0_musl-1.1.14/gcc-5.4.0/
> libgcc/libgcc2.c:1501 -1
>      (expr_list:REG_CALL_DECL (symbol_ref:SI ("__fixunssfdi") [flags 0x41]
> <function_decl 0x2b713d9d2438 __fixunssfdi>)
>         (nil))
>     (expr_list:SF (use (reg:SF 24 %i0))
>         (nil)))
> /openwrt/build_dir/toolchain-sparc_sparc_gcc-5.4.0_musl-1.1.14/gcc-5.4.0/
> libgcc/libgcc2.c:1502:1: internal compiler error: in extract_insn, at
> recog.c:2343
> 0x8999b5 _fatal_insn(char const*, rtx_def const*, char const*, int, char
> const*)
>        
> /openwrt/build_dir/toolchain-sparc_sparc_gcc-5.4.0_musl-1.1.14/gcc-5.4.0/gcc/
> rtl-error.c:110
> 0x8999e9 _fatal_insn_not_found(rtx_def const*, char const*, int, char const*)
>        
> /openwrt/build_dir/toolchain-sparc_sparc_gcc-5.4.0_musl-1.1.14/gcc-5.4.0/gcc/
> rtl-error.c:118
> 0x86749e extract_insn(rtx_insn*)
>        
> /openwrt/build_dir/toolchain-sparc_sparc_gcc-5.4.0_musl-1.1.14/gcc-5.4.0/gcc/
> recog.c:2343
> 0x6d9126 instantiate_virtual_regs_in_insn
>        
> /openwrt/build_dir/toolchain-sparc_sparc_gcc-5.4.0_musl-1.1.14/gcc-5.4.0/gcc/
> function.c:1646
> 0x6d9126 instantiate_virtual_regs
>        
> /openwrt/build_dir/toolchain-sparc_sparc_gcc-5.4.0_musl-1.1.14/gcc-5.4.0/gcc/
> function.c:1966
> 0x6d9126 execute
>        
> /openwrt/build_dir/toolchain-sparc_sparc_gcc-5.4.0_musl-1.1.14/gcc-5.4.0/gcc/
> function.c:2015
> Please submit a full bug report,
> with preprocessed source if appropriate.
> Please include the complete backtrace with any bug report.
> See <https://dev.openwrt.org/> for instructions.
> make[5]: *** [_fixsfdi.o] Error 1
> make[5]: Leaving directory
> `/openwrt/build_dir/toolchain-sparc_sparc_gcc-5.4.0_musl-1.1.14/gcc-5.4.0-
> minimal/sparc-openwrt-linux-musl/libgcc'
> make[4]: *** [all-target-libgcc] Error 2
> -------------
> 
> GCC is configured with:
> 
> /openwrt/sparc/openwrt/build_dir/toolchain-sparc_sparc_gcc-5.4.0_musl-1.1.14/
> gcc-5.4.0/configure \
> --with-bugurl=https://dev.openwrt.org/ \
> --with-pkgversion="OpenWrt GCC 5.4.0 49903" \
> --prefix=/openwrt/sparc/openwrt/staging_dir/toolchain-sparc_sparc_gcc-5.4.
> 0_musl-1.1.14 \
> --build=x86_64-linux-gnu \
> --host=x86_64-linux-gnu--target=sparc-openwrt-linux-musl \
> --with-gnu-ld \
> --enable-target-optspace \
> --disable-libgomp \
> --disable-libmudflap \
> --disable-multilib \
> --disable-nls \
> --without-isl \
> --without-cloog \
> --with-host-libstdcxx=-lstdc++     \
> --with-gmp=/openwrt/sparc/openwrt/staging_dir/host \
> --with-mpfr=/openwrt/sparc/openwrt/staging_dir/host \
> --with-mpc=/openwrt/sparc/openwrt/staging_dir/host \
> --disable-decimal-float \
> --with-diagnostics-color=auto-if-env \
> --disable-libssp \
> --enable-targets=all \
> --with-long-double-128 \
> --enable-__cxa_atexit \
> --with-newlib \
> --without-headers \
> --enable-languages=c \
> --disable-libsanitizer \
> --disable-libssp \
> --disable-shared \
> --disable-threads
> 
> Thanks,
> Zoltan H

Copy-paste error:

< --host=x86_64-linux-gnu--target=sparc-openwrt-linux-musl \
> --host=x86_64-linux-gnu \
> --target=sparc-openwrt-linux-musl \
>From gcc-bugs-return-535788-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 08:06:48 2016
Return-Path: <gcc-bugs-return-535788-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 129408 invoked by alias); 24 Aug 2016 08:06:48 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 129299 invoked by uid 48); 24 Aug 2016 08:06:35 -0000
From: "asolokha at gmx dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/77362] New: [7 Regression] [graphite] ICE in sese_build_liveouts_use w/ -O2 -floop-nest-optimize
Date: Wed, 24 Aug 2016 08:06:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: asolokha at gmx dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status keywords bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77362-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03124.txt.bz2
Content-length: 2349

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77362

            Bug ID: 77362
           Summary: [7 Regression] [graphite] ICE in
                    sese_build_liveouts_use w/ -O2 -floop-nest-optimize
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Keywords: ice-on-valid-code
          Severity: normal
          Priority: P3
         Component: tree-optimization
          Assignee: unassigned at gcc dot gnu.org
          Reporter: asolokha at gmx dot com
  Target Milestone: ---

gcc-7.0.0-alpha20160821 and some earlier snapshots (at least back to
7.0.0-alpha20160731) ICE when compiling the following snippet w/ -O2 (-O3,
-Ofast) -floop-nest-optimize:

int mc[2];
int f2, sk;
short int hm;

void
zm (void)
{
  int k1;

  for (k1 = 0; k1 < 2; ++k1)
    {
      for (sk = 0; sk < 2; ++sk)
        mc[sk] = hm = ++f2;
      if (hm >= 0)
        ++hm;
    }
}

% gcc-7.0.0-alpha20160821 -O2 -floop-nest-optimize -c rzmadogh.c   
rzmadogh.c: In function 'zm':
rzmadogh.c:6:1: internal compiler error: Segmentation fault

Backtrace is seemingly different for different targets, nevertheless
sese_build_liveouts_use is always on top. For x86_64 I have:

#0  0x00000000012ff0b1 in sese_build_liveouts_use(sese_info_t*, bitmap_head*,
basic_block_def*, tree_node*) ()
#1  0x00000000012ff87c in sese_insert_phis_for_liveouts(sese_info_t*,
basic_block_def*, edge_def*, edge_def*) ()
#2  0x000000000126859a in graphite_regenerate_ast_isl(scop*) ()
#3  0x000000000125edac in graphite_transform_loops() ()
#4  0x000000000125f2c1 in (anonymous
namespace)::pass_graphite_transforms::execute(function*) ()
#5  0x0000000000a8e236 in execute_one_pass(opt_pass*) ()
#6  0x0000000000a8e848 in execute_pass_list_1(opt_pass*) ()
#7  0x0000000000a8e85a in execute_pass_list_1(opt_pass*) ()
#8  0x0000000000a8e85a in execute_pass_list_1(opt_pass*) ()
#9  0x0000000000a8e85a in execute_pass_list_1(opt_pass*) ()
#10 0x0000000000a8e8a5 in execute_pass_list(function*, opt_pass*) ()
#11 0x000000000076e004 in cgraph_node::expand() ()
#12 0x000000000076f9a7 in symbol_table::compile() [clone .part.47] ()
#13 0x0000000000771c78 in symbol_table::finalize_compilation_unit() ()
#14 0x0000000000b5fd9d in compile_file() ()
#15 0x00000000005ced77 in toplev::main(int, char**) ()
#16 0x00000000005d10a7 in main ()
>From gcc-bugs-return-535789-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 08:29:28 2016
Return-Path: <gcc-bugs-return-535789-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 102054 invoked by alias); 24 Aug 2016 08:29:27 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 101594 invoked by uid 55); 24 Aug 2016 08:29:14 -0000
From: "ro at CeBiTec dot Uni-Bielefeld.DE" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libfortran/77261] gfortran.dg/random_3.f90 FAILs
Date: Wed, 24 Aug 2016 08:29:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libfortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ro at CeBiTec dot Uni-Bielefeld.DE
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: jb at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77261-4-p3LWK8CugG@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77261-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77261-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03125.txt.bz2
Content-length: 532

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77261

--- Comment #5 from ro at CeBiTec dot Uni-Bielefeld.DE <ro at CeBiTec dot Uni-Bielefeld.DE> ---
> --- Comment #4 from Janne Blomqvist <jb at gcc dot gnu.org> ---
> Patch here: https://gcc.gnu.org/ml/gcc-patches/2016-08/msg01630.html
>
> Could you Rainer verify that it works on Solaris/SPARC? It *should* do the
> trick, but I have only tested on x86_64-linux-gnu.

Hi Janne,

just did on sparc-sun-solaris2.12 (both 32 and 64-bit) and it worked
fine.

Thanks.
        Rainer
>From gcc-bugs-return-535790-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 08:38:42 2016
Return-Path: <gcc-bugs-return-535790-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 2622 invoked by alias); 24 Aug 2016 08:38:41 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 1366 invoked by uid 48); 24 Aug 2016 08:38:29 -0000
From: "EngyCZ at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77363] New: Missing debug information in DWARF
Date: Wed, 24 Aug 2016 08:38:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: EngyCZ at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-77363-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03126.txt.bz2
Content-length: 1332

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77363

            Bug ID: 77363
           Summary: Missing debug information in DWARF
           Product: gcc
           Version: 5.4.0
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: EngyCZ at gmail dot com
  Target Milestone: ---

Created attachment 39489
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39489&action=edit
example.c

I have found a missing debug information in dwarf for file compiled with g++.
Same file compiled with gcc has correct debug information.

I have compiled the file as g++ -c -g example.c
Export debug information as readelf -wi example.o >deb

There is a missing information for type tHash1
 <1><2b>: Abbrev Number: 3 (DW_TAG_typedef)
    <2c>   DW_AT_name        : (indirect string, offset: 0x23): tHash1
    <30>   DW_AT_decl_file   : 1
    <31>   DW_AT_decl_line   : 4

but for the type tHash2 the information is correct
 <1><39>: Abbrev Number: 4 (DW_TAG_typedef)
    <3a>   DW_AT_name        : (indirect string, offset: 0x2a): tHash2
    <3e>   DW_AT_decl_file   : 1
    <3f>   DW_AT_decl_line   : 5
    <40>   DW_AT_type        : <0x44>    <------- OK

I ask someone to confirm the bug.
example.c attached
>From gcc-bugs-return-535791-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 08:43:29 2016
Return-Path: <gcc-bugs-return-535791-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 29987 invoked by alias); 24 Aug 2016 08:43:28 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 29894 invoked by uid 48); 24 Aug 2016 08:43:15 -0000
From: "ramana at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/65068] Improve rewriting for address type induction variables in IVOPT
Date: Wed, 24 Aug 2016 08:43:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 5.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: ramana at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: amker at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-65068-4-6mreboXrAl@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-65068-4@http.gcc.gnu.org/bugzilla/>
References: <bug-65068-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03127.txt.bz2
Content-length: 366

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65068

--- Comment #2 from Ramana Radhakrishnan <ramana at gcc dot gnu.org> ---
And by default we see this

.L4:
        add     x3, x5, x1
        add     x1, x1, 1
        ldr     w2, [x4, x3, lsl 2]
        cmp     w0, w1
        add     w2, w2, 1
        str     w2, [x4, x3, lsl 2]
        bgt     .L4


- Costs ?
>From gcc-bugs-return-535792-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 08:50:13 2016
Return-Path: <gcc-bugs-return-535792-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 37437 invoked by alias); 24 Aug 2016 08:50:13 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 36817 invoked by uid 48); 24 Aug 2016 08:49:54 -0000
From: "ramana at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/64971] [5 Regression] gcc.c-torture/compile/pr37433.c ICEs with -mabi=ilp32
Date: Wed, 24 Aug 2016 08:50:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: ice-on-valid-code, patch
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ramana at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: pinskia at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-64971-4-WeUFhOjQvY@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-64971-4@http.gcc.gnu.org/bugzilla/>
References: <bug-64971-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03128.txt.bz2
Content-length: 458

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64971

--- Comment #18 from Ramana Radhakrishnan <ramana at gcc dot gnu.org> ---
(In reply to Richard Biener from comment #16)
> GCC 5.4 is being released, adjusting target milestone.

This is still open on GCC-5 - Do we want to take Renlin's fix into GCC-5 or do
we want to push the band-aid back into GCC-5 ? I would suggest the band-aid but
leave it to Kyrill / Renlin and the Release managers.


Ramana
>From gcc-bugs-return-535793-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 09:20:39 2016
Return-Path: <gcc-bugs-return-535793-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 37830 invoked by alias); 24 Aug 2016 09:20:39 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 37677 invoked by uid 48); 24 Aug 2016 09:20:26 -0000
From: "vogt at linux dot vnet.ibm.com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/77359] [7 Regression] AIX bootstrap failure due to alignment of stack pointer + STACK_DYNAMIC_OFFSET
Date: Wed, 24 Aug 2016 09:20:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: bootstrap
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: vogt at linux dot vnet.ibm.com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77359-4-SLqvqFp5na@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77359-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77359-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03129.txt.bz2
Content-length: 258

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77359

--- Comment #2 from Dominik Vogt <vogt at linux dot vnet.ibm.com> ---
It's a bit awkward because I don't have access to an AIX machine right now. 
What's the "configure" line fron config.log, please?
>From gcc-bugs-return-535795-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 09:22:25 2016
Return-Path: <gcc-bugs-return-535795-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 39888 invoked by alias); 24 Aug 2016 09:22:25 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 39843 invoked by uid 48); 24 Aug 2016 09:22:19 -0000
From: "bseifert at gmx dot at" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77353] [AVR] uint16_t instead uint8_t comparison
Date: Wed, 24 Aug 2016 09:22:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: bseifert at gmx dot at
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: attachments.created
Message-ID: <bug-77353-4-ic4LLL9J0k@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77353-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77353-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03131.txt.bz2
Content-length: 232

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77353

--- Comment #4 from Berni <bseifert at gmx dot at> ---
Created attachment 39491
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39491&action=edit
GCC 5.4.0 build output
>From gcc-bugs-return-535796-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 09:22:56 2016
Return-Path: <gcc-bugs-return-535796-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 58863 invoked by alias); 24 Aug 2016 09:22:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 51286 invoked by uid 48); 24 Aug 2016 09:22:43 -0000
From: "bseifert at gmx dot at" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77353] [AVR] uint16_t instead uint8_t comparison
Date: Wed, 24 Aug 2016 09:22:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: bseifert at gmx dot at
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: attachments.created
Message-ID: <bug-77353-4-bYqrC7dnZU@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77353-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77353-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03132.txt.bz2
Content-length: 227

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77353

--- Comment #5 from Berni <bseifert at gmx dot at> ---
Created attachment 39492
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39492&action=edit
GCC 5.4.0 listing
>From gcc-bugs-return-535794-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 09:22:01 2016
Return-Path: <gcc-bugs-return-535794-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 39085 invoked by alias); 24 Aug 2016 09:22:01 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 38987 invoked by uid 48); 24 Aug 2016 09:21:48 -0000
From: "bseifert at gmx dot at" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77353] [AVR] uint16_t instead uint8_t comparison
Date: Wed, 24 Aug 2016 09:22:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: bseifert at gmx dot at
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: attachments.created
Message-ID: <bug-77353-4-K4f04cRgXU@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77353-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77353-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03130.txt.bz2
Content-length: 218

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77353

--- Comment #3 from Berni <bseifert at gmx dot at> ---
Created attachment 39490
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39490&action=edit
main.cpp
>From gcc-bugs-return-535798-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 09:40:22 2016
Return-Path: <gcc-bugs-return-535798-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 119244 invoked by alias); 24 Aug 2016 09:40:21 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 118776 invoked by uid 48); 24 Aug 2016 09:40:08 -0000
From: "bseifert at gmx dot at" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77353] [AVR] uint16_t instead uint8_t comparison
Date: Wed, 24 Aug 2016 09:40:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: bseifert at gmx dot at
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: attachments.created
Message-ID: <bug-77353-4-LB3CSgl20l@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77353-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77353-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03134.txt.bz2
Content-length: 227

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77353

--- Comment #7 from Berni <bseifert at gmx dot at> ---
Created attachment 39494
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39494&action=edit
GCC 6.2.0 listing
>From gcc-bugs-return-535797-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 09:40:05 2016
Return-Path: <gcc-bugs-return-535797-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 118415 invoked by alias); 24 Aug 2016 09:40:05 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 118245 invoked by uid 48); 24 Aug 2016 09:39:52 -0000
From: "bseifert at gmx dot at" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77353] [AVR] uint16_t instead uint8_t comparison
Date: Wed, 24 Aug 2016 09:40:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: bseifert at gmx dot at
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: attachments.created
Message-ID: <bug-77353-4-oOZjwljxoG@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77353-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77353-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03133.txt.bz2
Content-length: 232

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77353

--- Comment #6 from Berni <bseifert at gmx dot at> ---
Created attachment 39493
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39493&action=edit
GCC 6.2.0 build output
>From gcc-bugs-return-535799-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 09:42:50 2016
Return-Path: <gcc-bugs-return-535799-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 121536 invoked by alias); 24 Aug 2016 09:42:50 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 121395 invoked by uid 48); 24 Aug 2016 09:42:37 -0000
From: "bseifert at gmx dot at" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77353] [AVR] uint16_t instead uint8_t comparison
Date: Wed, 24 Aug 2016 09:42:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: bseifert at gmx dot at
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77353-4-Js0YeC6NMY@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77353-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77353-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03135.txt.bz2
Content-length: 356

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77353

--- Comment #8 from Berni <bseifert at gmx dot at> ---

With GCC 5.4.0 comparison is done between two 8-bit registers r24 and r25, as
expected.

With GCC 6.2.0 additionally registers r19 and r25 are loaded with 0 and 16-bit
comparison between register pairs (r18, r19) and (r24, r25) is performed!
>From gcc-bugs-return-535800-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 10:39:32 2016
Return-Path: <gcc-bugs-return-535800-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 87239 invoked by alias); 24 Aug 2016 10:39:32 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 87114 invoked by uid 48); 24 Aug 2016 10:39:19 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77363] [5/6/7 Regression] Missing debug information in DWARF
Date: Wed, 24 Aug 2016 10:39:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords: wrong-debug
X-Bugzilla-Severity: major
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_known_to_work keywords cf_reconfirmed_on everconfirmed short_desc target_milestone cf_known_to_fail
Message-ID: <bug-77363-4-asnsX1LIet@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77363-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77363-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03136.txt.bz2
Content-length: 1799

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77363

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
      Known to work|                            |4.9.4
           Keywords|                            |wrong-debug
   Last reconfirmed|                            |2016-08-24
     Ever confirmed|0                           |1
            Summary|Missing debug information   |[5/6/7 Regression] Missing
                   |in DWARF                    |debug information in DWARF
   Target Milestone|---                         |5.5
      Known to fail|                            |5.4.0, 6.2.0, 7.0

--- Comment #1 from Richard Biener <rguenth at gcc dot gnu.org> ---
Confirmed with GCC 6.  The root cause seems to be that we lack a DIE for the
uint8 typedef as well (the uint16 one is IMHO correctly pruned as unused by
both FEs).  It works fine with GCC 4.8 and 4.9 where we also lack the uint8
typedef DIE but at least get

 <1><24>: Abbrev Number: 2 (DW_TAG_base_type)
    <25>   DW_AT_byte_size   : 1
    <26>   DW_AT_encoding    : 8        (unsigned char)
    <27>   DW_AT_name        : (indirect string, offset: 0x72): unsigned char
 <1><2b>: Abbrev Number: 3 (DW_TAG_typedef)
    <2c>   DW_AT_name        : (indirect string, offset: 0x23): tHash1
    <30>   DW_AT_decl_file   : 1
    <31>   DW_AT_decl_line   : 4
    <32>   DW_AT_type        : <0x36>
 <1><36>: Abbrev Number: 4 (DW_TAG_array_type)
    <37>   DW_AT_type        : <0x24>
    <3b>   DW_AT_sibling     : <0x46>
 <2><3f>: Abbrev Number: 5 (DW_TAG_subrange_type)
    <40>   DW_AT_type        : <0x46>
    <44>   DW_AT_upper_bound : 15
>From gcc-bugs-return-535801-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 10:41:58 2016
Return-Path: <gcc-bugs-return-535801-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 89512 invoked by alias); 24 Aug 2016 10:41:57 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 89379 invoked by uid 48); 24 Aug 2016 10:41:44 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/77362] [6/7 Regression] [graphite] ICE in sese_build_liveouts_use w/ -O2 -floop-nest-optimize
Date: Wed, 24 Aug 2016 10:41:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cf_known_to_work target_milestone short_desc everconfirmed cf_known_to_fail
Message-ID: <bug-77362-4-bvEQ0tOVEB@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77362-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77362-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03137.txt.bz2
Content-length: 992

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77362

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-24
      Known to work|                            |5.4.1
   Target Milestone|---                         |6.3
            Summary|[7 Regression] [graphite]   |[6/7 Regression] [graphite]
                   |ICE in                      |ICE in
                   |sese_build_liveouts_use w/  |sese_build_liveouts_use w/
                   |-O2 -floop-nest-optimize    |-O2 -floop-nest-optimize
     Ever confirmed|0                           |1
      Known to fail|                            |6.1.0

--- Comment #1 from Richard Biener <rguenth at gcc dot gnu.org> ---
Confirmed.  Also crashes on the GCC 6 branch, works with GCC 5 it seems.
>From gcc-bugs-return-535802-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 11:48:40 2016
Return-Path: <gcc-bugs-return-535802-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 20760 invoked by alias); 24 Aug 2016 11:48:36 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 20517 invoked by uid 48); 24 Aug 2016 11:48:22 -0000
From: "pault at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/77358] [F08] deferred-length character function returns zero-length string
Date: Wed, 24 Aug 2016 11:48:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pault at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: pault at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc assigned_to everconfirmed attachments.created
Message-ID: <bug-77358-4-dW8XGvLnSC@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77358-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77358-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03138.txt.bz2
Content-length: 794

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77358

Paul Thomas <pault at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-24
                 CC|                            |pault at gcc dot gnu.org
           Assignee|unassigned at gcc dot gnu.org      |pault at gcc dot gnu.org
     Ever confirmed|0                           |1

--- Comment #1 from Paul Thomas <pault at gcc dot gnu.org> ---
Created attachment 39495
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39495&action=edit
Patch for the problem

This does the job and regtests fine.

Cheers

Paul
>From gcc-bugs-return-535803-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 12:00:59 2016
Return-Path: <gcc-bugs-return-535803-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 83973 invoked by alias); 24 Aug 2016 12:00:59 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 83245 invoked by uid 48); 24 Aug 2016 12:00:46 -0000
From: "theubik at mail dot ru" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77364] New: -fnon-call-exceptions does not work
Date: Wed, 24 Aug 2016 12:00:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 4.9.2
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: theubik at mail dot ru
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created
Message-ID: <bug-77364-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03139.txt.bz2
Content-length: 1208

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77364

            Bug ID: 77364
           Summary: -fnon-call-exceptions does not work
           Product: gcc
           Version: 4.9.2
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: theubik at mail dot ru
  Target Milestone: ---

Created attachment 39496
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39496&action=edit
example1.cpp and example2.cpp

> g++ -std=c++11 -fnon-call-exceptions example1.cpp && ./a.out
> terminate called after throwing an instance of 'std::runtime_error'
    what():  Segmentation fault
  Aborted (core dumped)

> g++ -std=c++11 example1.cpp && ./a.out
> Exception: Segmentation fault

> g++ -std=c++11 -fnon-call-exceptions example2.cpp && ./a.out
> Exception: Segmentation fault

> g++ -std=c++11 example2.cpp && ./a.out
> terminate called after throwing an instance of 'std::runtime_error'
    what():  Segmentation fault
  Aborted (core dumped)

g++ (4.7.3, 4.8.1, 4.9.2)
Linux ubik 3.2.0-101-generic #141-Ubuntu SMP Thu Mar 10 21:43:24 UTC 2016
x86_64 x86_64 x86_64 GNU/Linux
>From gcc-bugs-return-535804-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 12:32:01 2016
Return-Path: <gcc-bugs-return-535804-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 109118 invoked by alias); 24 Aug 2016 12:32:00 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 108980 invoked by uid 48); 24 Aug 2016 12:31:47 -0000
From: "olebole at debian dot org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/77365] New: Wrong result with -fcaller-saves on i386
Date: Wed, 24 Aug 2016 12:32:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: olebole at debian dot org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77365-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03140.txt.bz2
Content-length: 1123

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77365

            Bug ID: 77365
           Summary: Wrong result with -fcaller-saves on i386
           Product: gcc
           Version: 6.2.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: olebole at debian dot org
  Target Milestone: ---

With gcc-6.2.0 on Debian, I get a wrong result with the following code:

#include <stdio.h>
#include <stdlib.h>
#include <math.h>

double f(double x) {
  return sqrt(1.0 - x) - 1.0;
}

double g(double x) {
  double res = f(x);
  printf("res=%.20g\n", res);
  return res;
}

int main(void) {
  double x = 3.1740879016271733482e-09;
  double r1 = f(x);
  double r2 = g(x);
  printf("r1=%.20g r2=%.20g diff=%20g\n", r1, r2, r2-r1);
  exit(0);
}  

Compile this with `gcc -O -o m m.c -lm` gives

r =-1.5870439520936432953e-09
r1=-1.5870439407095204842e-09 r2=-1.5870439520936432953e-09 diff=       
-1.13841e-17

Adding `-fno-caller-saves` gives the expected result.
>From gcc-bugs-return-535805-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 12:43:57 2016
Return-Path: <gcc-bugs-return-535805-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 46916 invoked by alias); 24 Aug 2016 12:43:57 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 46754 invoked by uid 48); 24 Aug 2016 12:43:42 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/77365] Wrong result with -fcaller-saves on i386
Date: Wed, 24 Aug 2016 12:43:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cf_gcctarget bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-77365-4-5u8z7T4nJS@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77365-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77365-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03141.txt.bz2
Content-length: 708

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77365

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Target|                            |i?86-*-*
             Status|UNCONFIRMED                 |WAITING
   Last reconfirmed|                            |2016-08-24
     Ever confirmed|0                           |1

--- Comment #1 from Richard Biener <rguenth at gcc dot gnu.org> ---
Please specify what is printed if you add -v to the compiler command.  Also
please attach preprocessed source.

Can't reproduce this on x86_64-linux with -m32 -march=i586
>From gcc-bugs-return-535806-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 12:47:26 2016
Return-Path: <gcc-bugs-return-535806-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 57166 invoked by alias); 24 Aug 2016 12:47:26 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 56937 invoked by uid 48); 24 Aug 2016 12:47:13 -0000
From: "olebole at debian dot org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/77365] Wrong result with -fcaller-saves on i386
Date: Wed, 24 Aug 2016 12:47:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: olebole at debian dot org
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: attachments.created
Message-ID: <bug-77365-4-eB0tJ8o4rx@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77365-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77365-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03142.txt.bz2
Content-length: 245

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77365

--- Comment #2 from Ole Streicher <olebole at debian dot org> ---
Created attachment 39497
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39497&action=edit
Preprocessed source file
>From gcc-bugs-return-535807-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 12:47:53 2016
Return-Path: <gcc-bugs-return-535807-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 58151 invoked by alias); 24 Aug 2016 12:47:53 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 58024 invoked by uid 48); 24 Aug 2016 12:47:42 -0000
From: "olebole at debian dot org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/77365] Wrong result with -fcaller-saves on i386
Date: Wed, 24 Aug 2016 12:47:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: olebole at debian dot org
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77365-4-F9xrB6ptVP@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77365-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77365-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03143.txt.bz2
Content-length: 1544

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77365

--- Comment #3 from Ole Streicher <olebole at debian dot org> ---
# gcc -v
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/i686-linux-gnu/6/lto-wrapper
Target: i686-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Debian 6.2.0-1'
--with-bugurl=file:///usr/share/doc/gcc-6/README.Bugs
--enable-languages=c,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr
--program-suffix=-6 --enable-shared --enable-linker-build-id
--libexecdir=/usr/lib --without-included-gettext --enable-threads=posix
--libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu
--enable-libstdcxx-debug --enable-libstdcxx-time=yes
--with-default-libstdcxx-abi=new --enable-gnu-unique-object
--disable-vtable-verify --enable-libmpx --enable-plugin --with-system-zlib
--disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo
--with-java-home=/usr/lib/jvm/java-1.5.0-gcj-6-i386/jre --enable-java-home
--with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-6-i386
--with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-6-i386
--with-arch-directory=i386 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar
--enable-objc-gc --enable-targets=all --enable-multiarch --with-arch-32=i686
--with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic
--enable-checking=release --build=i686-linux-gnu --host=i686-linux-gnu
--target=i686-linux-gnu
Thread model: posix
gcc version 6.2.0 20160822 (Debian 6.2.0-1)
>From gcc-bugs-return-535808-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 12:50:03 2016
Return-Path: <gcc-bugs-return-535808-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 61735 invoked by alias); 24 Aug 2016 12:50:03 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 61570 invoked by uid 48); 24 Aug 2016 12:49:50 -0000
From: "olebole at debian dot org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/77365] Wrong result with -fcaller-saves on i386
Date: Wed, 24 Aug 2016 12:50:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: olebole at debian dot org
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77365-4-Ouuk20eQ39@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77365-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77365-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03144.txt.bz2
Content-length: 4754

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77365

--- Comment #4 from Ole Streicher <olebole at debian dot org> ---
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/i686-linux-gnu/6/lto-wrapper
Target: i686-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Debian 6.2.0-1'
--with-bugurl=file:///usr/share/doc/gcc-6/README.Bugs
--enable-languages=c,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr
--program-suffix=-6 --enable-shared --enable-linker-build-id
--libexecdir=/usr/lib --without-included-gettext --enable-threads=posix
--libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu
--enable-libstdcxx-debug --enable-libstdcxx-time=yes
--with-default-libstdcxx-abi=new --enable-gnu-unique-object
--disable-vtable-verify --enable-libmpx --enable-plugin --with-system-zlib
--disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo
--with-java-home=/usr/lib/jvm/java-1.5.0-gcj-6-i386/jre --enable-java-home
--with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-6-i386
--with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-6-i386
--with-arch-directory=i386 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar
--enable-objc-gc --enable-targets=all --enable-multiarch --with-arch-32=i686
--with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic
--enable-checking=release --build=i686-linux-gnu --host=i686-linux-gnu
--target=i686-linux-gnu
Thread model: posix
gcc version 6.2.0 20160822 (Debian 6.2.0-1) 
COLLECT_GCC_OPTIONS='-v' '-O2' '-o' 'm' '-mtune=generic' '-march=i686'
 /usr/lib/gcc/i686-linux-gnu/6/cc1 -quiet -v -imultiarch i386-linux-gnu m.c
-quiet -dumpbase m.c -mtune=generic -march=i686 -auxbase m -O2 -version -o
/tmp/ccUvhfOb.s
GNU C11 (Debian 6.2.0-1) version 6.2.0 20160822 (i686-linux-gnu)
        compiled by GNU C version 6.2.0 20160822, GMP version 6.1.1, MPFR
version 3.1.4-p2, MPC version 1.0.3, isl version 0.15
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
ignoring nonexistent directory "/usr/local/include/i386-linux-gnu"
ignoring nonexistent directory
"/usr/lib/gcc/i686-linux-gnu/6/../../../../i686-linux-gnu/include"
#include "..." search starts here:
#include <...> search starts here:
 /usr/lib/gcc/i686-linux-gnu/6/include
 /usr/local/include
 /usr/lib/gcc/i686-linux-gnu/6/include-fixed
 /usr/include/i386-linux-gnu
 /usr/include
End of search list.
GNU C11 (Debian 6.2.0-1) version 6.2.0 20160822 (i686-linux-gnu)
        compiled by GNU C version 6.2.0 20160822, GMP version 6.1.1, MPFR
version 3.1.4-p2, MPC version 1.0.3, isl version 0.15
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
Compiler executable checksum: 1e4bebb54de70f35ce8dd91f33b3d708
COLLECT_GCC_OPTIONS='-v' '-O2' '-o' 'm' '-mtune=generic' '-march=i686'
 as -v --32 -o /tmp/ccZBW7WX.o /tmp/ccUvhfOb.s
GNU assembler version 2.27 (i686-linux-gnu) using BFD version (GNU Binutils for
Debian) 2.27
COMPILER_PATH=/usr/lib/gcc/i686-linux-gnu/6/:/usr/lib/gcc/i686-linux-gnu/6/:/usr/lib/gcc/i686-linux-gnu/:/usr/lib/gcc/i686-linux-gnu/6/:/usr/lib/gcc/i686-linux-gnu/
LIBRARY_PATH=/usr/lib/gcc/i686-linux-gnu/6/:/usr/lib/gcc/i686-linux-gnu/6/../../../i386-linux-gnu/:/usr/lib/gcc/i686-linux-gnu/6/../../../../lib/:/lib/i386-linux-gnu/:/lib/../lib/:/usr/lib/i386-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/i686-linux-gnu/6/../../../:/lib/:/usr/lib/
COLLECT_GCC_OPTIONS='-v' '-O2' '-o' 'm' '-mtune=generic' '-march=i686'
 /usr/lib/gcc/i686-linux-gnu/6/collect2 -plugin
/usr/lib/gcc/i686-linux-gnu/6/liblto_plugin.so
-plugin-opt=/usr/lib/gcc/i686-linux-gnu/6/lto-wrapper
-plugin-opt=-fresolution=/tmp/ccIH7x7J.res -plugin-opt=-pass-through=-lgcc
-plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc
-plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --sysroot=/
--build-id --eh-frame-hdr -m elf_i386 --hash-style=gnu -dynamic-linker
/lib/ld-linux.so.2 -o m
/usr/lib/gcc/i686-linux-gnu/6/../../../i386-linux-gnu/crt1.o
/usr/lib/gcc/i686-linux-gnu/6/../../../i386-linux-gnu/crti.o
/usr/lib/gcc/i686-linux-gnu/6/crtbegin.o -L/usr/lib/gcc/i686-linux-gnu/6
-L/usr/lib/gcc/i686-linux-gnu/6/../../../i386-linux-gnu
-L/usr/lib/gcc/i686-linux-gnu/6/../../../../lib -L/lib/i386-linux-gnu
-L/lib/../lib -L/usr/lib/i386-linux-gnu -L/usr/lib/../lib
-L/usr/lib/gcc/i686-linux-gnu/6/../../.. /tmp/ccZBW7WX.o -lm -lgcc --as-needed
-lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed
/usr/lib/gcc/i686-linux-gnu/6/crtend.o
/usr/lib/gcc/i686-linux-gnu/6/../../../i386-linux-gnu/crtn.o
COLLECT_GCC_OPTIONS='-v' '-O2' '-o' 'm' '-mtune=generic' '-march=i686'
>From gcc-bugs-return-535809-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 13:19:16 2016
Return-Path: <gcc-bugs-return-535809-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 20955 invoked by alias); 24 Aug 2016 13:19:16 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 20678 invoked by uid 48); 24 Aug 2016 13:19:03 -0000
From: "rdapp at linux dot vnet.ibm.com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/77366] New: Rev. 2ac4967 prevents loop unrolling for s390
Date: Wed, 24 Aug 2016 13:19:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rdapp at linux dot vnet.ibm.com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter cc target_milestone cf_gcchost cf_gcctarget
Message-ID: <bug-77366-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03145.txt.bz2
Content-length: 1237

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77366

            Bug ID: 77366
           Summary: Rev. 2ac4967 prevents loop unrolling for s390
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: middle-end
          Assignee: unassigned at gcc dot gnu.org
          Reporter: rdapp at linux dot vnet.ibm.com
                CC: krebbel at gcc dot gnu.org
  Target Milestone: ---
              Host: s390
            Target: s390

Since 2ac4967f49a70e1bd0bb28a142324f527dac3743 the following loop is not being
unrolled anymore (-O3 -funroll-loops):

void
foo(unsigned int size, unsigned int *state)
{
   unsigned int i;

   for(i = 0; i < size; i++)
    {
       if(*state & 1)
         {
           *state ^= 1;
         }
    }
}

The revision adds an additional check that allows the split-paths pass to
duplicate a basic block (returned NULL before the patch) which in turn causes
check_simple_exit() in loop-iv.c to not find a proper niter_desc. This seems
due to

if (!dominated_by_p (CDI_DOMINATORS, loop->latch, exit_bb))

failing, i.e. check_simple_exit() doesn't see that the exit condition is
checked every iteration.
>From gcc-bugs-return-535810-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 13:36:00 2016
Return-Path: <gcc-bugs-return-535810-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 60687 invoked by alias); 24 Aug 2016 13:36:00 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 60587 invoked by uid 48); 24 Aug 2016 13:35:50 -0000
From: "yuhang_tang at brown dot edu" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77367] New: Duck-typing error not detected when using CRTP
Date: Wed, 24 Aug 2016 13:36:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: yuhang_tang at brown dot edu
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77367-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03146.txt.bz2
Content-length: 1069

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77367

            Bug ID: 77367
           Summary: Duck-typing error not detected when using CRTP
           Product: gcc
           Version: 6.1.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: yuhang_tang at brown dot edu
  Target Milestone: ---

The following code was able to pass compilation & linking, yet the Derived::B()
function is not defined. Since the cast is static I would expect that the
compiler could find that there is not a definition of
static_cast<Derived&>(*this).B() and raise an error.

template<class Derived>
struct Base {
    void A() { static_cast<Derived&>(*this).A(); }
    void B() { static_cast<Derived&>(*this).B(); }
};

struct Derived : Base<Derived> {
    void A() {}
    //void B() {}
};

int main() {
    Derived d;
    Base<Derived> &b = d;
    b.A();
    b.B();
}

This resulted in the compiled binary hanging forever in Fedora 24 Kernel 4.6.5.
>From gcc-bugs-return-535811-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 14:05:56 2016
Return-Path: <gcc-bugs-return-535811-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 86388 invoked by alias); 24 Aug 2016 14:05:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 81622 invoked by uid 48); 24 Aug 2016 14:05:42 -0000
From: "ktkachov at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71026] Missing division optimizations
Date: Wed, 24 Aug 2016 14:05:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: ktkachov at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-71026-4-v0ya8NhPPx@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71026-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71026-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03147.txt.bz2
Content-length: 552

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71026

ktkachov at gcc dot gnu.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ktkachov at gcc dot gnu.org

--- Comment #2 from ktkachov at gcc dot gnu.org ---
The transforms

int f4(float x) { return (1.0f / x) < 0.0f; }         // -> x < 0.0f
int f5(float x) { return (x / 2.0f) <= 0.0f; }        // -> x <= 0.0f

can be done as match.pd patterns, no?
>From gcc-bugs-return-535812-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 14:06:43 2016
Return-Path: <gcc-bugs-return-535812-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 92665 invoked by alias); 24 Aug 2016 14:06:42 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 91748 invoked by uid 48); 24 Aug 2016 14:06:31 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/77283] [7 Regression] Revision 238005 disables loop unrolling
Date: Wed, 24 Aug 2016 14:06:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-77283-4-F05w9xxbQ4@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77283-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77283-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03148.txt.bz2
Content-length: 454

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77283

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |rdapp at linux dot vnet.ibm.com

--- Comment #9 from Richard Biener <rguenth at gcc dot gnu.org> ---
*** Bug 77366 has been marked as a duplicate of this bug. ***
>From gcc-bugs-return-535813-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 14:06:43 2016
Return-Path: <gcc-bugs-return-535813-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 92692 invoked by alias); 24 Aug 2016 14:06:43 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 91585 invoked by uid 48); 24 Aug 2016 14:06:29 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/77366] Rev. 2ac4967 prevents loop unrolling for s390
Date: Wed, 24 Aug 2016 14:06:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: DUPLICATE
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-77366-4-mH50RzuFO4@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77366-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77366-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03149.txt.bz2
Content-length: 562

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77366

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |DUPLICATE

--- Comment #1 from Richard Biener <rguenth at gcc dot gnu.org> ---
Is this the same as PR77283?  (please use svn revisions ...)

I guess so.

*** This bug has been marked as a duplicate of bug 77283 ***
>From gcc-bugs-return-535815-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 14:07:53 2016
Return-Path: <gcc-bugs-return-535815-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 105184 invoked by alias); 24 Aug 2016 14:07:53 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 104597 invoked by uid 48); 24 Aug 2016 14:07:40 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/77283] [7 Regression] Revision 238005 disables loop unrolling
Date: Wed, 24 Aug 2016 14:07:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cf_gcctarget
Message-ID: <bug-77283-4-cYz0H1Ti36@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77283-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77283-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03151.txt.bz2
Content-length: 605

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77283

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Target|                            |powerpc64*-*-*, s390x-*-*

--- Comment #10 from Richard Biener <rguenth at gcc dot gnu.org> ---
Testcase from PR77366 for s390x.

void
foo(unsigned int size, unsigned int *state)
{
   unsigned int i;

   for(i = 0; i < size; i++)
    {
       if(*state & 1)
         {
           *state ^= 1;
         }
    }
}
>From gcc-bugs-return-535814-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 14:07:37 2016
Return-Path: <gcc-bugs-return-535814-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 104161 invoked by alias); 24 Aug 2016 14:07:37 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 104034 invoked by uid 48); 24 Aug 2016 14:07:26 -0000
From: "yuhang_tang at brown dot edu" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77367] Duck-typing error not detected when using CRTP
Date: Wed, 24 Aug 2016 14:07:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: yuhang_tang at brown dot edu
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-77367-4-YqvO5KQL36@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77367-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77367-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03150.txt.bz2
Content-length: 608

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77367

Yu-Hang Tang <yuhang_tang at brown dot edu> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |FIXED

--- Comment #1 from Yu-Hang Tang <yuhang_tang at brown dot edu> ---
I just realized that this resulted in Base::B() calling itself indefinitely and
hence is not a compiler bug. However maybe it would nice for GCC to throw out a
warning in this case?
>From gcc-bugs-return-535816-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 14:22:49 2016
Return-Path: <gcc-bugs-return-535816-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 32121 invoked by alias); 24 Aug 2016 14:22:49 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 31803 invoked by uid 48); 24 Aug 2016 14:22:36 -0000
From: "msebor at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/77357] strlen of constant strings not folded
Date: Wed, 24 Aug 2016 14:22:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: msebor at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status
Message-ID: <bug-77357-4-V2e1rIF8tX@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77357-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77357-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03152.txt.bz2
Content-length: 1179

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77357

Martin Sebor <msebor at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |NEW

--- Comment #2 from Martin Sebor <msebor at gcc dot gnu.org> ---
Sorry, wrong test case.  Here's the right one:

const char a[] = "abc";
const char* const s = "abc";

void global_array (void)
{
  if (__builtin_strlen (a) != 3)
    __builtin_abort ();
}

void local_array (void)
{
  static const char a[] = "abc";
  if (__builtin_strlen (a) != 3)
    __builtin_abort ();
}

void global_pointer (void)
{
  if (__builtin_strlen (s) != 3)
    __builtin_abort ();
}

void local_pointer (void)
{
  static const char* const s = "abc";
  if (__builtin_strlen (s) != 3)
    __builtin_abort ();
}


struct X { char a [4]; };
const struct X x = { "abc" };

void global_struct (void)
{
  if (__builtin_strlen (x.a) != 3)
    __builtin_abort ();
}

void local_struct (void)
{
  static const struct X x =  { "abc" };
  if (__builtin_strlen (x.a) != 3)
    __builtin_abort ();
}
>From gcc-bugs-return-535817-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 14:26:27 2016
Return-Path: <gcc-bugs-return-535817-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 41594 invoked by alias); 24 Aug 2016 14:26:27 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 41443 invoked by uid 48); 24 Aug 2016 14:26:14 -0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77364] -fnon-call-exceptions does not work
Date: Wed, 24 Aug 2016 14:26:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 4.9.2
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-77364-4-SwuNA8Fb6H@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77364-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77364-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03153.txt.bz2
Content-length: 515

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77364

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |INVALID

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Invalid, as raise is nothrow.
It just works by accident for the non non-call-exceptions case
>From gcc-bugs-return-535818-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 14:27:12 2016
Return-Path: <gcc-bugs-return-535818-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 42602 invoked by alias); 24 Aug 2016 14:27:11 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 42491 invoked by uid 48); 24 Aug 2016 14:26:59 -0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77367] Duck-typing error not detected when using CRTP
Date: Wed, 24 Aug 2016 14:27:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: resolution
Message-ID: <bug-77367-4-BHKBqmZzAd@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77367-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77367-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03154.txt.bz2
Content-length: 368

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77367

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|FIXED                       |INVALID

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
.
>From gcc-bugs-return-535819-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 14:47:34 2016
Return-Path: <gcc-bugs-return-535819-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 83653 invoked by alias); 24 Aug 2016 14:47:33 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 83516 invoked by uid 48); 24 Aug 2016 14:47:21 -0000
From: "wdijkstr at arm dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71026] Missing division optimizations
Date: Wed, 24 Aug 2016 14:47:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: wdijkstr at arm dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71026-4-IcaUDnjLmG@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71026-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71026-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03155.txt.bz2
Content-length: 508

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71026

--- Comment #3 from Wilco <wdijkstr at arm dot com> ---
(In reply to ktkachov from comment #2)
> The transforms
> 
> int f4(float x) { return (1.0f / x) < 0.0f; }         // -> x < 0.0f
> int f5(float x) { return (x / 2.0f) <= 0.0f; }        // -> x <= 0.0f
> 
> can be done as match.pd patterns, no?

Note f5 is already transformed to (x * 0.5f) <= 0.0f even with -O2. The more
general form for that one is (X * C0) <= C1 -> X <= C1/C0.
>From gcc-bugs-return-535820-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 15:00:38 2016
Return-Path: <gcc-bugs-return-535820-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 124505 invoked by alias); 24 Aug 2016 15:00:36 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 124257 invoked by uid 55); 24 Aug 2016 15:00:21 -0000
From: "uros at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77270] Flag -mprftchw is shared with 3dnow for -march=k8
Date: Wed, 24 Aug 2016 15:00:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: uros at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: ubizjak at gmail dot com
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77270-4-6vYOjItGGe@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77270-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77270-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03156.txt.bz2
Content-length: 1404

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77270

--- Comment #10 from uros at gcc dot gnu.org ---
Author: uros
Date: Wed Aug 24 14:59:43 2016
New Revision: 239737

URL: https://gcc.gnu.org/viewcvs?rev=239737&root=gcc&view=rev
Log:
        PR target/77270
        * gcc.dg/tree-ssa/loop-28.c: Also compile on 32bit x86 targets.
        (dg-options): Use -march=amdfam10 instead of -march=athlon.
        * gcc.dg/tree-ssa/update-unroll-1.c: Ditto.
        * gcc.dg/tree-ssa/prefetch-3.c: Ditto.
        * gcc.dg/tree-ssa/prefetch-4.c: Ditto.
        * gcc.dg/tree-ssa/prefetch-5.c: Ditto.
        * gcc.dg/tree-ssa/prefetch-6.c: Ditto.  Do not require sse2
        effective target.  Remove scan-assembler-times directives.
        * gcc.dg/tree-ssa/prefetch-7.c: Ditto.
        * gcc.dg/tree-ssa/prefetch-8.c: Ditto.
        * gcc.dg/tree-ssa/prefetch-9.c: Ditto.


Modified:
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/testsuite/gcc.dg/tree-ssa/loop-28.c
    trunk/gcc/testsuite/gcc.dg/tree-ssa/prefetch-3.c
    trunk/gcc/testsuite/gcc.dg/tree-ssa/prefetch-4.c
    trunk/gcc/testsuite/gcc.dg/tree-ssa/prefetch-5.c
    trunk/gcc/testsuite/gcc.dg/tree-ssa/prefetch-6.c
    trunk/gcc/testsuite/gcc.dg/tree-ssa/prefetch-7.c
    trunk/gcc/testsuite/gcc.dg/tree-ssa/prefetch-8.c
    trunk/gcc/testsuite/gcc.dg/tree-ssa/prefetch-9.c
    trunk/gcc/testsuite/gcc.dg/tree-ssa/update-unroll-1.c
>From gcc-bugs-return-535821-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 15:06:36 2016
Return-Path: <gcc-bugs-return-535821-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 20295 invoked by alias); 24 Aug 2016 15:06:36 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 15514 invoked by uid 48); 24 Aug 2016 15:06:23 -0000
From: "albin.olsson at volvocars dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77368] New: Private static member visible to templated subclass
Date: Wed, 24 Aug 2016 15:06:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: albin.olsson at volvocars dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77368-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03157.txt.bz2
Content-length: 996

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77368

            Bug ID: 77368
           Summary: Private static member visible to templated subclass
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: albin.olsson at volvocars dot com
  Target Milestone: ---

The following code is accepted by g++, but only if B is a templated class:

struct A
{
private:
    static const int private_of_A = 5;
};

template <typename T>
struct B : public A
{
    int get()
    {
        return private_of_A;
    }
};

int main()
{
    B<int> b;
    return b.get();
}


This problem exists for all version of gcc I tested, which are:
x86-64 gcc 4.8.4
x86-64 gcc 6.2 (g++ ('Compiler) 6.2.0)
ARM64 gcc 4.8 (aarch64-linux-gnu-g++ (Ubuntu/Linaro 5.4.0-6ubuntu1~16.04.1)
5.4.0 20160609)
The two latter ones via https://gcc.godbolt.org/#
>From gcc-bugs-return-535822-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 15:09:57 2016
Return-Path: <gcc-bugs-return-535822-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 27229 invoked by alias); 24 Aug 2016 15:09:57 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 26839 invoked by uid 48); 24 Aug 2016 15:09:44 -0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/70134] combine misses jump optimization on powerpc64le
Date: Wed, 24 Aug 2016 15:09:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-70134-4-0DS7unm0gZ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70134-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70134-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03158.txt.bz2
Content-length: 324

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70134

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
The reason why it is missed on the tree level is due to the code being
undefined.  In that it uses uninitialized variables like:
  if (iter_5(D) >= itmx_6(D))
    goto <bb 10>;
  else
    goto <bb 7>;
>From gcc-bugs-return-535823-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 15:40:14 2016
Return-Path: <gcc-bugs-return-535823-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 81451 invoked by alias); 24 Aug 2016 15:40:13 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 80862 invoked by uid 48); 24 Aug 2016 15:40:00 -0000
From: "aaron.ballman+gcc at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77369] New: incorrect noexcept specification deduction
Date: Wed, 24 Aug 2016 15:40:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: aaron.ballman+gcc at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77369-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03159.txt.bz2
Content-length: 1341

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77369

            Bug ID: 77369
           Summary: incorrect noexcept specification deduction
           Product: gcc
           Version: 6.1.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: aaron.ballman+gcc at gmail dot com
  Target Milestone: ---

The following code produces "false, false" with Clang 3.8.0 and MSVC 2015, but
"true, true" with GCC 6.1.0 (and EDG).

#include <iostream>

template <typename Func>
int some_function(int param, Func fn) noexcept(noexcept(fn(param))) {
  return fn(param);
}

int noexcept_fn(int) noexcept(true) { return 0; }
int not_noexcept_fn(int) noexcept(false) { return 0; }

int main() {
  std::cout << std::boolalpha <<
    noexcept(some_function(0, noexcept_fn)) << ", " <<
    noexcept(some_function(0, not_noexcept_fn)) << std::endl;
}

This is dangerous because it means that if not_noexcept_fn() throws (as it is
allowed to do per its exception specification) when called from
some_function(), it results in std::terminate() being called due to
some_function() having the wrong exception specification.

This happens with -std=c++14, where exception specifications are not considered
part of the type system.
>From gcc-bugs-return-535824-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 15:41:56 2016
Return-Path: <gcc-bugs-return-535824-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 94120 invoked by alias); 24 Aug 2016 15:41:54 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 92044 invoked by uid 48); 24 Aug 2016 15:41:36 -0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77369] incorrect noexcept specification deduction
Date: Wed, 24 Aug 2016 15:41:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-77369-4-tg6Iw6ucDm@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77369-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77369-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03160.txt.bz2
Content-length: 402

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77369

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-24
     Ever confirmed|0                           |1
>From gcc-bugs-return-535825-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 15:47:51 2016
Return-Path: <gcc-bugs-return-535825-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 106352 invoked by alias); 24 Aug 2016 15:47:51 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 106156 invoked by uid 48); 24 Aug 2016 15:47:38 -0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77368] Private static member visible to templated subclass
Date: Wed, 24 Aug 2016 15:47:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords: accepts-invalid
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77368-4-qpJWpHWb8U@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77368-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77368-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03161.txt.bz2
Content-length: 216

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77368

--- Comment #1 from Jonathan Wakely <redi at gcc dot gnu.org> ---
There are several bugs related to access checking in templates, this is a dup
of one of them.
>From gcc-bugs-return-535826-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 15:49:51 2016
Return-Path: <gcc-bugs-return-535826-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 109123 invoked by alias); 24 Aug 2016 15:49:50 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 108870 invoked by uid 48); 24 Aug 2016 15:49:38 -0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77368] Private static member visible to templated subclass
Date: Wed, 24 Aug 2016 15:49:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords: accepts-invalid
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: DUPLICATE
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-77368-4-vhQSluPZRa@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77368-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77368-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03162.txt.bz2
Content-length: 527

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77368

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |DUPLICATE

--- Comment #2 from Jonathan Wakely <redi at gcc dot gnu.org> ---
It's PR 58993

PR 59002 tracks the others.

*** This bug has been marked as a duplicate of bug 58993 ***
>From gcc-bugs-return-535827-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 15:49:51 2016
Return-Path: <gcc-bugs-return-535827-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 109131 invoked by alias); 24 Aug 2016 15:49:51 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 108889 invoked by uid 48); 24 Aug 2016 15:49:38 -0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/58993] incorrectly accept access of protected member method from derived class template
Date: Wed, 24 Aug 2016 15:49:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 4.7.3
X-Bugzilla-Keywords: accepts-invalid
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-58993-4-L7wRyAw2AP@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-58993-4@http.gcc.gnu.org/bugzilla/>
References: <bug-58993-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03163.txt.bz2
Content-length: 452

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58993

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |albin.olsson at volvocars dot com

--- Comment #4 from Jonathan Wakely <redi at gcc dot gnu.org> ---
*** Bug 77368 has been marked as a duplicate of this bug. ***
>From gcc-bugs-return-535828-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 16:35:19 2016
Return-Path: <gcc-bugs-return-535828-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 58758 invoked by alias); 24 Aug 2016 16:35:18 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 58327 invoked by uid 48); 24 Aug 2016 16:35:03 -0000
From: "vries at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug testsuite/77317] x86_64 --target_board=''unix/ unix/-m32'' parallel testrun gives inconsistent results in gcc.dg/vect
Date: Wed, 24 Aug 2016 16:35:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: testsuite
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: vries at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: robert.suchanek at imgtec dot com
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution assigned_to
Message-ID: <bug-77317-4-PtXjheyqzN@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77317-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77317-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03164.txt.bz2
Content-length: 529

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77317

Tom de Vries <vries at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |FIXED
           Assignee|unassigned at gcc dot gnu.org      |robert.suchanek at imgtec dot com

--- Comment #3 from Tom de Vries <vries at gcc dot gnu.org> ---
Marking resolved-fixed
>From gcc-bugs-return-535829-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 16:46:27 2016
Return-Path: <gcc-bugs-return-535829-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 117807 invoked by alias); 24 Aug 2016 16:46:27 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 117536 invoked by uid 48); 24 Aug 2016 16:46:14 -0000
From: "segher at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77289] [7 Regression] ICE in extract_constrain_insn, at recog.c:2212 on powerpc64
Date: Wed, 24 Aug 2016 16:46:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code, ra
X-Bugzilla-Severity: normal
X-Bugzilla-Who: segher at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-77289-4-xvl86eq8QT@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77289-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77289-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03165.txt.bz2
Content-length: 1315

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77289

Segher Boessenkool <segher at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |segher at gcc dot gnu.org

--- Comment #2 from Segher Boessenkool <segher at gcc dot gnu.org> ---
It already goes wrong at IRA:

(insn 77 79 71 3 (parallel [
            (set (reg:SF 33 1)
                (mem:SF (plus:SI (reg/f:SI 113 sfp)
                        (const_int 8 [0x8])) [1 MEM[base: _17, offset: 0B]+0 S4
A32]))
            (set (reg:SI 208 [ ivtmp.6 ])
                (plus:SI (reg/f:SI 113 sfp)
                    (const_int 8 [0x8])))
        ]) 77289.c:9 617 {*movsf_update1}
     (nil))

where 208 is assigned r31:

   19:r206 l0    29    1:r208 l0    31    2:r209 l0    30   18:r247 l0    75

but the pattern is

(define_insn "*movsf_update1"
  [(set (match_operand:SF 3 "gpc_reg_operand" "=f,f")
        (mem:SF (plus:SI (match_operand:SI 1 "gpc_reg_operand" "0,0")
                         (match_operand:SI 2 "reg_or_short_operand" "r,I"))))
   (set (match_operand:SI 0 "gpc_reg_operand" "=b,b")
        (plus:SI (match_dup 1) (match_dup 2)))]

so operand 1 is not the same as operand 0.
>From gcc-bugs-return-535830-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 16:51:09 2016
Return-Path: <gcc-bugs-return-535830-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 36995 invoked by alias); 24 Aug 2016 16:51:09 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 36420 invoked by uid 48); 24 Aug 2016 16:50:55 -0000
From: "segher at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77289] [7 Regression] ICE in extract_constrain_insn, at recog.c:2212 on powerpc64
Date: Wed, 24 Aug 2016 16:51:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code, ra
X-Bugzilla-Severity: normal
X-Bugzilla-Who: segher at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77289-4-CUVUJwuyvH@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77289-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77289-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03166.txt.bz2
Content-length: 519

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77289

--- Comment #3 from Segher Boessenkool <segher at gcc dot gnu.org> ---
And this 208 vs. sfp is created by combine:

Trying 76 -> 77:
Successfully matched this instruction:
(parallel [
        (set (reg:SF 33 1)
            (mem:SF (plus:SI (reg/f:SI 113 sfp)
                    (const_int 8 [0x8])) [1 MEM[base: _17, offset: 0B]+0 S4
A32]))
        (set (reg:SI 208 [ ivtmp.6 ])
            (plus:SI (reg/f:SI 113 sfp)
                (const_int 8 [0x8])))
    ])
>From gcc-bugs-return-535831-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 16:52:07 2016
Return-Path: <gcc-bugs-return-535831-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 39168 invoked by alias); 24 Aug 2016 16:52:07 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 38628 invoked by uid 48); 24 Aug 2016 16:51:54 -0000
From: "dominiq at lps dot ens.fr" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/77360] Self-assignment of allocatable character array yields erroneous result
Date: Wed, 24 Aug 2016 16:52:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dominiq at lps dot ens.fr
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-77360-4-OfFiuNj5xu@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77360-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77360-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03167.txt.bz2
Content-length: 596

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77360

Dominique d'Humieres <dominiq at lps dot ens.fr> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |FIXED

--- Comment #1 from Dominique d'Humieres <dominiq at lps dot ens.fr> ---
This has been caused by revision r233797 and fixed on trunk and the gcc-6
branch by revisions r236525 and r236526 respectively. It is fixed on the 6.2.0
release.
>From gcc-bugs-return-535832-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 17:12:21 2016
Return-Path: <gcc-bugs-return-535832-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 83525 invoked by alias); 24 Aug 2016 17:12:21 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 83369 invoked by uid 48); 24 Aug 2016 17:12:08 -0000
From: "msebor at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77370] New: missing -Wignored-qualiifiers on a bogus const reference
Date: Wed, 24 Aug 2016 17:12:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: msebor at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77370-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03168.txt.bz2
Content-length: 1612

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77370

            Bug ID: 77370
           Summary: missing -Wignored-qualiifiers on a bogus const
                    reference
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: msebor at gcc dot gnu.org
  Target Milestone: ---

GCC rejects the program below because it tries to initialize the non-const
reference object cr with a temporary, but it doesn't diagnose the declaration
of the reference type CR where it disregards the const qualifier.  In contrast,
Clang diagnoses both.  GCC could be improved by doing the same.

$ (set -x && cat z.C && /build/gcc-trunk-svn/gcc/xgcc -B
/build/gcc-trunk-svn/gcc -Wall -Wextra -Wpedantic z.C;
/build/llvm-trunk/bin/clang -S -Wall z.C)
+ cat z.C
typedef char& R;
typedef const R CR;

char c;
R r = c;
CR cr = 'b';
+ /build/gcc-trunk-svn/gcc/xgcc -B /build/gcc-trunk-svn/gcc -Wall -Wextra
-Wpedantic z.C
z.C:6:9: error: cannot bind non-const lvalue reference of type ‘CR {aka char&}’
to an rvalue of type ‘char’
 CR cr = 'b';
         ^~~
+ /build/llvm-trunk/bin/clang -S -Wall z.C
z.C:2:9: warning: 'const' qualifier on reference type 'R' (aka 'char &') has no
      effect [-Wignored-qualifiers]
typedef const R CR;
        ^~~~~~
z.C:6:4: error: non-const lvalue reference to type 'char' cannot bind to a
      temporary of type 'char'
CR cr = 'b';
   ^    ~~~
1 warning and 1 error generated.
>From gcc-bugs-return-535834-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 18:45:59 2016
Return-Path: <gcc-bugs-return-535834-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 88006 invoked by alias); 24 Aug 2016 18:45:59 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 87635 invoked by uid 48); 24 Aug 2016 18:45:48 -0000
From: "gerhard.steinmetz.fortran@t-online.de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/77371] ICE in force_constant_size, at gimplify.c:671 (... and others)
Date: Wed, 24 Aug 2016 18:45:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: gerhard.steinmetz.fortran@t-online.de
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77371-4-VXcQyctR3n@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77371-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77371-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03170.txt.bz2
Content-length: 692

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77371

--- Comment #1 from Gerhard Steinmetz <gerhard.steinmetz.fortran@t-online.de> ---

$ cat z2.f90
program p
   integer, allocatable :: z
   !$acc parallel
   z = 1
   !$acc end parallel
   print *, z
end


$ gfortran-7-20160821 -fopenacc z2.f90
z2.f90:2:0:

    integer, allocatable :: z

Error: non-trivial conversion at assignment
integer(kind=4)
integer(kind=4) *
z.3 = *D.3442;
z2.f90:2:0: internal compiler error: verify_gimple failed
0xc54e6d verify_gimple_in_seq(gimple*)
        ../../gcc/tree-cfg.c:4879
0xb4a3d0 execute_function_todo
        ../../gcc/passes.c:1966
0xb4ac95 execute_todo
        ../../gcc/passes.c:2014
>From gcc-bugs-return-535833-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 18:45:28 2016
Return-Path: <gcc-bugs-return-535833-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 86175 invoked by alias); 24 Aug 2016 18:45:21 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 85947 invoked by uid 48); 24 Aug 2016 18:45:07 -0000
From: "gerhard.steinmetz.fortran@t-online.de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/77371] New: ICE in force_constant_size, at gimplify.c:671 (... and others)
Date: Wed, 24 Aug 2016 18:45:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: gerhard.steinmetz.fortran@t-online.de
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77371-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03169.txt.bz2
Content-length: 1592

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77371

            Bug ID: 77371
           Summary: ICE in force_constant_size, at gimplify.c:671 (... and
                    others)
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: fortran
          Assignee: unassigned at gcc dot gnu.org
          Reporter: gerhard.steinmetz.fortran@t-online.de
  Target Milestone: ---

Some snippets with allocatable scalars (valid code) combined with
OpenACC. Similar issue for "pointer" instead of "allocatable".


$ cat z1.f90
program p
   character(:), allocatable :: z
   !$acc parallel
   z = 'abc'
   !$acc end parallel
   print *, z
end


$ gfortran-7-20160821 -fopenacc z1.f90
z1.f90:3:0:

    !$acc parallel

internal compiler error: in force_constant_size, at gimplify.c:671
0x9a4ad6 force_constant_size
        ../../gcc/gimplify.c:671
0x9ab547 gimple_add_tmp_var(tree_node*)
        ../../gcc/gimplify.c:709
0x9860ea create_tmp_var(tree_node*, char const*)
        ../../gcc/gimple-expr.c:476
0xb1ac2d lower_omp_target
        ../../gcc/omp-low.c:15920
0xb1ac2d lower_omp_1
        ../../gcc/omp-low.c:17084
0xb1ac2d lower_omp
        ../../gcc/omp-low.c:17177
0xb1564c lower_omp_1
        ../../gcc/omp-low.c:17016
0xb1564c lower_omp
        ../../gcc/omp-low.c:17177
0xb15fec lower_omp_1
        ../../gcc/omp-low.c:17025
0xb15fec lower_omp
        ../../gcc/omp-low.c:17177
0xb1d1cf execute_lower_omp
        ../../gcc/omp-low.c:17912
0xb1d1cf execute
        ../../gcc/omp-low.c:17949
>From gcc-bugs-return-535835-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 18:47:14 2016
Return-Path: <gcc-bugs-return-535835-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 89366 invoked by alias); 24 Aug 2016 18:47:11 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 89135 invoked by uid 48); 24 Aug 2016 18:46:56 -0000
From: "gerhard.steinmetz.fortran@t-online.de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/77371] ICE in force_constant_size, at gimplify.c:671 (... and others)
Date: Wed, 24 Aug 2016 18:47:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: gerhard.steinmetz.fortran@t-online.de
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77371-4-Lp7E5oFULM@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77371-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77371-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03171.txt.bz2
Content-length: 2044

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77371

--- Comment #2 from Gerhard Steinmetz <gerhard.steinmetz.fortran@t-online.de> ---

Related :

$ cat z6.f90
program p
   integer, allocatable :: n
!$acc parallel reduction (+:n) private(n)
!$acc end parallel
end


$ gfortran-7-20160821 -fopenacc z6.f90
z6.f90:3:0:

 !$acc parallel reduction (+:n) private(n)

Error: invalid private reduction on 'n'
z6.f90:3:0: internal compiler error: in scan_sharing_clauses, at omp-low.c:2374
0xb05762 scan_sharing_clauses
        ../../gcc/omp-low.c:2373
0xb127d8 scan_omp_target
        ../../gcc/omp-low.c:3191
0xb127d8 scan_omp_1_stmt
        ../../gcc/omp-low.c:3982
0x9a308a walk_gimple_stmt(gimple_stmt_iterator*, tree_node*
(*)(gimple_stmt_iterator*, bool*, walk_stmt_info*), tree_node* (*)(tree_node**,
int*, void*), walk_stmt_info*)
        ../../gcc/gimple-walk.c:568
0x9a32a8 walk_gimple_seq_mod(gimple**, tree_node* (*)(gimple_stmt_iterator*,
bool*, walk_stmt_info*), tree_node* (*)(tree_node**, int*, void*),
walk_stmt_info*)
        ../../gcc/gimple-walk.c:51
0x9a31e2 walk_gimple_stmt(gimple_stmt_iterator*, tree_node*
(*)(gimple_stmt_iterator*, bool*, walk_stmt_info*), tree_node* (*)(tree_node**,
int*, void*), walk_stmt_info*)
        ../../gcc/gimple-walk.c:632
0x9a32a8 walk_gimple_seq_mod(gimple**, tree_node* (*)(gimple_stmt_iterator*,
bool*, walk_stmt_info*), tree_node* (*)(tree_node**, int*, void*),
walk_stmt_info*)
        ../../gcc/gimple-walk.c:51
0x9a3162 walk_gimple_stmt(gimple_stmt_iterator*, tree_node*
(*)(gimple_stmt_iterator*, bool*, walk_stmt_info*), tree_node* (*)(tree_node**,
int*, void*), walk_stmt_info*)
        ../../gcc/gimple-walk.c:596
0x9a32a8 walk_gimple_seq_mod(gimple**, tree_node* (*)(gimple_stmt_iterator*,
bool*, walk_stmt_info*), tree_node* (*)(tree_node**, int*, void*),
walk_stmt_info*)
        ../../gcc/gimple-walk.c:51
0xae78e9 scan_omp
        ../../gcc/omp-low.c:4025
0xb1c88a execute_lower_omp
        ../../gcc/omp-low.c:17902
0xb1c88a execute
        ../../gcc/omp-low.c:17949
>From gcc-bugs-return-535836-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 18:50:44 2016
Return-Path: <gcc-bugs-return-535836-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 23841 invoked by alias); 24 Aug 2016 18:50:44 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 123420 invoked by uid 48); 24 Aug 2016 18:50:31 -0000
From: "gerhard.steinmetz.fortran@t-online.de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/77372] New: ICE in simplify_ieee_selected_real_kind, at fortran/simplify.c:7049
Date: Wed, 24 Aug 2016 18:50:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: gerhard.steinmetz.fortran@t-online.de
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77372-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03172.txt.bz2
Content-length: 2072

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77372

            Bug ID: 77372
           Summary: ICE in simplify_ieee_selected_real_kind, at
                    fortran/simplify.c:7049
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: fortran
          Assignee: unassigned at gcc dot gnu.org
          Reporter: gerhard.steinmetz.fortran@t-online.de
  Target Milestone: ---

Affects gfortran 7, 6, 5 (not implemented before 5).


$ cat z1.f90
program p
   use ieee_arithmetic
   real(kind=ieee_selected_real_kind(10_1)) :: z1
   real(kind=ieee_selected_real_kind(10_2)) :: z2
   real(kind=ieee_selected_real_kind(10_8)) :: z8
   real(kind=ieee_selected_real_kind(10_16)) :: z16
end


$ gfortran-7-20160821 z1.f90
f951: internal compiler error: Segmentation fault
0xc1b65f crash_signal
        ../../gcc/toplev.c:335
0x70767f simplify_ieee_selected_real_kind(gfc_expr*)
        ../../gcc/fortran/simplify.c:7049
0x68a607 gfc_check_init_expr(gfc_expr*)
        ../../gcc/fortran/expr.c:2485
0x68acd7 gfc_reduce_init_expr(gfc_expr*)
        ../../gcc/fortran/expr.c:2670
0x68bc69 gfc_match_init_expr(gfc_expr**)
        ../../gcc/fortran/expr.c:2709
0x675c18 gfc_match_kind_spec(gfc_typespec*, bool)
        ../../gcc/fortran/decl.c:2539
0x67af2e gfc_match_decl_type_spec(gfc_typespec*, int)
        ../../gcc/fortran/decl.c:3330
0x67c3a6 gfc_match_data_decl()
        ../../gcc/fortran/decl.c:4744
0x6d0269 match_word_omp_simd
        ../../gcc/fortran/parse.c:93
0x6d3a7e match_word
        ../../gcc/fortran/parse.c:373
0x6d3a7e decode_statement
        ../../gcc/fortran/parse.c:373
0x6d5784 next_free
        ../../gcc/fortran/parse.c:1148
0x6d5784 next_statement
        ../../gcc/fortran/parse.c:1382
0x6d66dc parse_spec
        ../../gcc/fortran/parse.c:3708
0x6d8bb3 parse_progunit
        ../../gcc/fortran/parse.c:5493
0x6da154 gfc_parse_file()
        ../../gcc/fortran/parse.c:6002
0x71c622 gfc_be_parse_file
        ../../gcc/fortran/f95-lang.c:198
>From gcc-bugs-return-535837-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 18:52:18 2016
Return-Path: <gcc-bugs-return-535837-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 100078 invoked by alias); 24 Aug 2016 18:52:17 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 98370 invoked by uid 48); 24 Aug 2016 18:52:05 -0000
From: "dje at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77373] New: __attribute__((vector_size(N))) fails on AIX
Date: Wed, 24 Aug 2016 18:52:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dje at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter dependson target_milestone cf_gcctarget
Message-ID: <bug-77373-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03173.txt.bz2
Content-length: 712

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77373

            Bug ID: 77373
           Summary: __attribute__((vector_size(N))) fails on AIX
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: dje at gcc dot gnu.org
        Depends on: 68703
  Target Milestone: ---
            Target: powerpc-ibm-aix*

vector32.C and vector32a.C fail on AIX

internal compiler error: in get, at cgraph.h:395


Referenced Bugs:

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68703
[Bug 68703] __attribute__((vector_size(N))) template member confusion
>From gcc-bugs-return-535838-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 18:53:02 2016
Return-Path: <gcc-bugs-return-535838-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 102672 invoked by alias); 24 Aug 2016 18:53:01 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 102546 invoked by uid 48); 24 Aug 2016 18:52:49 -0000
From: "dje at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77373] __attribute__((vector_size(N))) fails on AIX
Date: Wed, 24 Aug 2016 18:53:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dje at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc everconfirmed
Message-ID: <bug-77373-4-rlPpVMnJYL@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77373-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77373-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03174.txt.bz2
Content-length: 550

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77373

David Edelsohn <dje at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-24
                 CC|                            |jason at gcc dot gnu.org
     Ever confirmed|0                           |1

--- Comment #1 from David Edelsohn <dje at gcc dot gnu.org> ---
Confirmed.
>From gcc-bugs-return-535839-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 18:55:06 2016
Return-Path: <gcc-bugs-return-535839-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 125941 invoked by alias); 24 Aug 2016 18:55:06 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 125389 invoked by uid 48); 24 Aug 2016 18:54:53 -0000
From: "gerhard.steinmetz.fortran@t-online.de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/77374] New: ICE in resolve_omp_atomic, at fortran/openmp.c:3949
Date: Wed, 24 Aug 2016 18:55:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: gerhard.steinmetz.fortran@t-online.de
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77374-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03175.txt.bz2
Content-length: 1859

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77374

            Bug ID: 77374
           Summary: ICE in resolve_omp_atomic, at fortran/openmp.c:3949
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: fortran
          Assignee: unassigned at gcc dot gnu.org
          Reporter: gerhard.steinmetz.fortran@t-online.de
  Target Milestone: ---

Invalid code with a displaced OpenMP directive.
Configured with --enable-checking=yes.


$ cat z1.f90
subroutine s1 (a, b)
   integer :: a, b
!$omp atomic
   b = b + a
!$omp atomic
end subroutine

subroutine s2 (x, z)
   integer :: x(2), z(2)
   z(1) = z(1) + x(1)
end subroutine


$ cat z2.f90
program p
   !integer :: x(1)
   !$omp atomic
   x(1) = x(1) + 1
end


$ gfortran-7-20160821 -fopenmp -c z1.f90
z1.f90:6:3:

 end subroutine
   1
Error: Unexpected END statement at (1)
z1.f90:8:0:

 subroutine s2 (x, z)

Error: Unclassifiable statement at (1)
z1.f90:9:24:

    integer :: x(2), z(2)
                        1
Error: Unexpected data declaration statement at (1)
z1.f90:10:3:

    z(1) = z(1) + x(1)
   1
Error: The function result on the lhs of the assignment at (1) must have the
pointer attribute.
f951: internal compiler error: in resolve_omp_atomic, at fortran/openmp.c:3949
0x6c69d8 resolve_omp_atomic
        ../../gcc/fortran/openmp.c:3949
0x6ec7dd gfc_resolve_code(gfc_code*, gfc_namespace*)
        ../../gcc/fortran/resolve.c:10844
0x6eed92 resolve_codes
        ../../gcc/fortran/resolve.c:15560
0x6eee8e gfc_resolve(gfc_namespace*)
        ../../gcc/fortran/resolve.c:15595
0x6da1aa resolve_all_program_units
        ../../gcc/fortran/parse.c:5855
0x6da1aa gfc_parse_file()
        ../../gcc/fortran/parse.c:6107
0x71c622 gfc_be_parse_file
        ../../gcc/fortran/f95-lang.c:198
>From gcc-bugs-return-535840-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 18:57:33 2016
Return-Path: <gcc-bugs-return-535840-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 40156 invoked by alias); 24 Aug 2016 18:57:32 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 26455 invoked by uid 48); 24 Aug 2016 18:57:20 -0000
From: "vries at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug lto/70955] [6/7 Regression] Wrong code generation for __builtin_ms_va_list with -flto
Date: Wed, 24 Aug 2016 18:57:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: lto
X-Bugzilla-Version: 6.1.1
X-Bugzilla-Keywords: lto, patch, wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: vries at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords
Message-ID: <bug-70955-4-uydHnm7Uma@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-70955-4@http.gcc.gnu.org/bugzilla/>
References: <bug-70955-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03176.txt.bz2
Content-length: 414

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70955

Tom de Vries <vries at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |patch

--- Comment #25 from Tom de Vries <vries at gcc dot gnu.org> ---
https://gcc.gnu.org/ml/gcc-patches/2016-08/msg01749.html
>From gcc-bugs-return-535841-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 19:27:02 2016
Return-Path: <gcc-bugs-return-535841-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 42365 invoked by alias); 24 Aug 2016 19:27:02 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 42170 invoked by uid 48); 24 Aug 2016 19:26:49 -0000
From: "dominiq at lps dot ens.fr" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/77374] [6/7 Regression] ICE in resolve_omp_atomic, at fortran/openmp.c:3949
Date: Wed, 24 Aug 2016 19:27:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: error-recovery, ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dominiq at lps dot ens.fr
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: priority bug_status cf_known_to_work keywords cf_reconfirmed_on everconfirmed short_desc cf_known_to_fail
Message-ID: <bug-77374-4-ZoOT4L23oP@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77374-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77374-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03177.txt.bz2
Content-length: 1237

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77374

Dominique d'Humieres <dominiq at lps dot ens.fr> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P3                          |P4
             Status|UNCONFIRMED                 |NEW
      Known to work|                            |5.4.0
           Keywords|                            |error-recovery,
                   |                            |ice-on-invalid-code
   Last reconfirmed|                            |2016-08-24
     Ever confirmed|0                           |1
            Summary|ICE in resolve_omp_atomic,  |[6/7 Regression] ICE in
                   |at fortran/openmp.c:3949    |resolve_omp_atomic, at
                   |                            |fortran/openmp.c:3949
      Known to fail|                            |6.2.0, 7.0

--- Comment #1 from Dominique d'Humieres <dominiq at lps dot ens.fr> ---
The ICE appeared between revisions r227754 (2015-09-14, no ICE) and r228407
(2015-10-02, ICE). When the compiler is configured with
--enable-checking=release, the ICE is replaced with

(null):0: confused by earlier errors, bailing out
>From gcc-bugs-return-535842-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 19:29:47 2016
Return-Path: <gcc-bugs-return-535842-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 46131 invoked by alias); 24 Aug 2016 19:29:46 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 46017 invoked by uid 48); 24 Aug 2016 19:29:34 -0000
From: "dominiq at lps dot ens.fr" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/77372] ICE in simplify_ieee_selected_real_kind, at fortran/simplify.c:7049
Date: Wed, 24 Aug 2016 19:29:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dominiq at lps dot ens.fr
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc everconfirmed
Message-ID: <bug-77372-4-VlIQ05xgWt@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77372-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77372-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03178.txt.bz2
Content-length: 574

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77372

Dominique d'Humieres <dominiq at lps dot ens.fr> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-24
                 CC|                            |fxcoudert at gcc dot gnu.org
     Ever confirmed|0                           |1

--- Comment #1 from Dominique d'Humieres <dominiq at lps dot ens.fr> ---
Confirmed.
>From gcc-bugs-return-535843-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 19:33:59 2016
Return-Path: <gcc-bugs-return-535843-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 51172 invoked by alias); 24 Aug 2016 19:33:59 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 51030 invoked by uid 55); 24 Aug 2016 19:33:46 -0000
From: "pault at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/77358] [F08] deferred-length character function returns zero-length string
Date: Wed, 24 Aug 2016 19:33:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pault at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: pault at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77358-4-xQFjxjbQat@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77358-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77358-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03179.txt.bz2
Content-length: 748

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77358

--- Comment #2 from Paul Thomas <pault at gcc dot gnu.org> ---
Author: pault
Date: Wed Aug 24 19:33:14 2016
New Revision: 239740

URL: https://gcc.gnu.org/viewcvs?rev=239740&root=gcc&view=rev
Log:
2016-08-24  Paul Thomas  <pault@gcc.gnu.org>

        PR fortran/77358
        * resolve.c (resolve_fl_procedure): Use the correct gfc_charlen
        for deferred character length module procedures.

2016-08-24  Paul Thomas  <pault@gcc.gnu.org>

        PR fortran/77358
        * gfortran.dg/submodule_17.f08: New test.

Added:
    trunk/gcc/testsuite/gfortran.dg/submodule_17.f08
Modified:
    trunk/gcc/fortran/ChangeLog
    trunk/gcc/fortran/resolve.c
    trunk/gcc/testsuite/ChangeLog
>From gcc-bugs-return-535844-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 19:36:59 2016
Return-Path: <gcc-bugs-return-535844-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 53986 invoked by alias); 24 Aug 2016 19:36:58 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 53760 invoked by uid 48); 24 Aug 2016 19:36:45 -0000
From: "kargl at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/77372] ICE in simplify_ieee_selected_real_kind, at fortran/simplify.c:7049
Date: Wed, 24 Aug 2016 19:36:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: kargl at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77372-4-lbmJyEuebp@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77372-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77372-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03180.txt.bz2
Content-length: 1211

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77372

--- Comment #2 from kargl at gcc dot gnu.org ---
Thous shalt dereference NULL pointers.

Index: simplify.c
===================================================================
--- simplify.c  (revision 239737)
+++ simplify.c  (working copy)
@@ -7044,9 +7044,19 @@ gfc_simplify_compiler_version (void)
 gfc_expr *
 simplify_ieee_selected_real_kind (gfc_expr *expr)
 {
-  gfc_actual_arglist *arg = expr->value.function.actual;
-  gfc_expr *p = arg->expr, *q = arg->next->expr,
-          *rdx = arg->next->next->expr;
+  gfc_actual_arglist *arg;
+  gfc_expr *p = NULL, *q = NULL, *rdx = NULL;
+
+  arg = expr->value.function.actual;
+  if (arg->expr)
+    p = arg->expr;
+  if (arg->next)
+    {
+      if (arg->next->expr)
+       q = arg->next->expr;
+      if (arg->next->next && arg->next->next->expr)
+       rdx = arg->next->next->expr;
+    }

   /* Currently, if IEEE is supported and this module is built, it means
      all our floating-point types conform to IEEE. Hence, we simply handle
>From gcc-bugs-return-535845-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 19:46:41 2016
Return-Path: <gcc-bugs-return-535845-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 78087 invoked by alias); 24 Aug 2016 19:46:41 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 77961 invoked by uid 55); 24 Aug 2016 19:46:28 -0000
From: "pault at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/77358] [F08] deferred-length character function returns zero-length string
Date: Wed, 24 Aug 2016 19:46:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pault at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: pault at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77358-4-p0w7uFAIUh@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77358-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77358-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03181.txt.bz2
Content-length: 812

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77358

--- Comment #3 from Paul Thomas <pault at gcc dot gnu.org> ---
Author: pault
Date: Wed Aug 24 19:45:56 2016
New Revision: 239741

URL: https://gcc.gnu.org/viewcvs?rev=239741&root=gcc&view=rev
Log:
2016-08-24  Paul Thomas  <pault@gcc.gnu.org>

        PR fortran/77358
        * resolve.c (resolve_fl_procedure): Use the correct gfc_charlen
        for deferred character length module procedures.

2016-08-24  Paul Thomas  <pault@gcc.gnu.org>

        PR fortran/77358
        * gfortran.dg/submodule_17.f08: New test.

Added:
    branches/gcc-6-branch/gcc/testsuite/gfortran.dg/submodule_17.f08
Modified:
    branches/gcc-6-branch/gcc/fortran/ChangeLog
    branches/gcc-6-branch/gcc/fortran/resolve.c
    branches/gcc-6-branch/gcc/testsuite/ChangeLog
>From gcc-bugs-return-535846-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 19:48:33 2016
Return-Path: <gcc-bugs-return-535846-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 87873 invoked by alias); 24 Aug 2016 19:48:33 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 86964 invoked by uid 48); 24 Aug 2016 19:48:16 -0000
From: "pault at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/77358] [F08] deferred-length character function returns zero-length string
Date: Wed, 24 Aug 2016 19:48:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pault at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: pault at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-77358-4-W6FJf2szGw@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77358-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77358-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03182.txt.bz2
Content-length: 471

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77358

Paul Thomas <pault at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--- Comment #4 from Paul Thomas <pault at gcc dot gnu.org> ---
Fixed on trunk and 6-branch.

Thanks for the report.

Paul
>From gcc-bugs-return-535847-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 20:17:17 2016
Return-Path: <gcc-bugs-return-535847-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 46091 invoked by alias); 24 Aug 2016 20:17:16 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 45589 invoked by uid 48); 24 Aug 2016 20:17:02 -0000
From: "dominiq at lps dot ens.fr" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/77371] [6/7 Regression] ICE in force_constant_size, at gimplify.c:671 (... and others)
Date: Wed, 24 Aug 2016 20:17:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dominiq at lps dot ens.fr
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: priority bug_status cf_reconfirmed_on cf_known_to_work short_desc everconfirmed cf_known_to_fail
Message-ID: <bug-77371-4-ZW4d3hhV8K@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77371-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77371-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03183.txt.bz2
Content-length: 1311

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77371

Dominique d'Humieres <dominiq at lps dot ens.fr> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P3                          |P4
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-24
      Known to work|                            |5.4.0
            Summary|ICE in force_constant_size, |[6/7 Regression] ICE in
                   |at gimplify.c:671 (... and  |force_constant_size, at
                   |others)                     |gimplify.c:671 (... and
                   |                            |others)
     Ever confirmed|0                           |1
      Known to fail|                            |6.2.0, 7.0

--- Comment #3 from Dominique d'Humieres <dominiq at lps dot ens.fr> ---
Compiling the test in comment 0 has started to give an ICE between revisions
r232023 (2016-01-01, compiles) and r232451 (2016-01-15, ICE), r232151?

The tests in comments 1 and 2 require a compiler configured with
--enable-checking=yes. Compiling the test in comment 1 gives an ICE with 6.0.0
r235027, but not with 5.0 r220825, while the test in comment 2 gives an ICE for
both.
>From gcc-bugs-return-535848-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 20:19:23 2016
Return-Path: <gcc-bugs-return-535848-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 63751 invoked by alias); 24 Aug 2016 20:19:23 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 63482 invoked by uid 48); 24 Aug 2016 20:19:10 -0000
From: "dominiq at lps dot ens.fr" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libfortran/74755] libgfortran: build breaks if localtime_r prototype is present, but definition is not
Date: Wed, 24 Aug 2016 20:19:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libfortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: dominiq at lps dot ens.fr
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-74755-4-4rU4RWFhbf@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-74755-4@http.gcc.gnu.org/bugzilla/>
References: <bug-74755-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03184.txt.bz2
Content-length: 495

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74755

Dominique d'Humieres <dominiq at lps dot ens.fr> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |WAITING
   Last reconfirmed|                            |2016-08-24
     Ever confirmed|0                           |1

--- Comment #1 from Dominique d'Humieres <dominiq at lps dot ens.fr> ---
Target?
>From gcc-bugs-return-535849-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 20:59:00 2016
Return-Path: <gcc-bugs-return-535849-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 61225 invoked by alias); 24 Aug 2016 20:59:00 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 61081 invoked by uid 48); 24 Aug 2016 20:58:47 -0000
From: "cesar at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libfortran/74755] libgfortran: build breaks if localtime_r prototype is present, but definition is not
Date: Wed, 24 Aug 2016 20:59:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libfortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: cesar at gcc dot gnu.org
X-Bugzilla-Status: WAITING
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-74755-4-mfLF6ErUSQ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-74755-4@http.gcc.gnu.org/bugzilla/>
References: <bug-74755-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03185.txt.bz2
Content-length: 260

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=74755

--- Comment #2 from cesar at gcc dot gnu.org ---
The target is nvptx-none, specifically when it is built as an offloaded target
for OpenACC. Thomas thinks the problem is in newlib rather than gcc though.
>From gcc-bugs-return-535850-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 21:23:43 2016
Return-Path: <gcc-bugs-return-535850-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 60124 invoked by alias); 24 Aug 2016 21:23:43 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 59911 invoked by uid 48); 24 Aug 2016 21:23:30 -0000
From: "fritzoreese at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/77327] AddressSanitizer: heap-use-after-free gcc-trunk-239276/gcc/fortran/interface.c:403 in compare_components
Date: Wed, 24 Aug 2016 21:23:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: fritzoreese at gmail dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77327-4-kpvug7Ox3g@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77327-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77327-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03186.txt.bz2
Content-length: 1108

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77327

--- Comment #3 from Fritz Reese <fritzoreese at gmail dot com> ---
> interface.c:403 is 
> if ( (d1 && (d1->attr.flavor == FL_STRUCT || d1->attr.flavor == FL_UNION)
> 
> and I believe d->attr.flavor is the item used after freed.

This is correct, and the reason is clear when you look up a few lines and
realize I did not check the type of cmp1 or cmp2 before jumping straight to
checking properties about their derived type declarations (in
cmp->ts.u.derived). Unless cmp->ts.type == BT_DERIVED or cmp->ts.type ==
BT_UNION, the cmp->ts.u.derived pointer is garbage.

I have a patch which implements that part of code in a different way - also
correctly and more reliably. It fixes this PR and I hope to commit it over the
weekend:
https://gcc.gnu.org/ml/fortran/2016-08/msg00144.html

However I am not sure how one would observe that no invalid memory references
occur for your code via a DejaGNU testcase. I would appreciate ideas for a
testcase I can commit with the aforementioned patch to ensure this PR isn't
regressed.
>From gcc-bugs-return-535851-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 21:24:37 2016
Return-Path: <gcc-bugs-return-535851-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 61599 invoked by alias); 24 Aug 2016 21:24:36 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 61456 invoked by uid 55); 24 Aug 2016 21:24:22 -0000
From: "joseph at codesourcery dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77330] __float128 segfaults on 32-bit x86 due to 8-byte malloc alignment
Date: Wed, 24 Aug 2016 21:24:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: joseph at codesourcery dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77330-4-w0491wnlyR@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77330-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77330-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03187.txt.bz2
Content-length: 1655

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77330

--- Comment #13 from joseph at codesourcery dot com <joseph at codesourcery dot com> ---
On Wed, 24 Aug 2016, bernd.edlinger at hotmail dot de wrote:

> It is only necessary if __float128 is declared a base type.
> But __m512 is no base type, right?

It's clear that __m512 should not be considered a basic type - such types 
are a large part of the point of having aligned_alloc and other such 
aligned allocation interfaces.

__float128 is now (GCC 7) an alias for _Float128, which is defined by TS 
18661-3 to be a basic type (and _Decimal128 met the relevant requirements 
long before that).

> Then MALLOC_ABI_ALIGNMENT should be changed to 128 at least for the i386.

I think that would risk breaking applications that do not use any 
16-byte-aligned types, without obvious benefits (only those programs that 
do use those types are affected by the present issue with malloc providing 
insufficient alignment).

MALLOC_ABI_ALIGNMENT is indeed unnecessarily conservative.  For glibc 
targets it could reflect the actual glibc logic, depending on the glibc 
version determined at GCC configure time - except that this might break 
things for applications that replace malloc with a version that yields 
lower alignment (possibly only for small allocations - if there is a 
16-byte-aligned basic type, ISO C requires malloc (1) to return a 
16-byte-aligned address, but some replacements may be for contexts where 
that is unnecessary), knowing the higher alignment is irrelevant to their 
application, so there would need to be some way to address that breakage.
>From gcc-bugs-return-535852-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 21:26:09 2016
Return-Path: <gcc-bugs-return-535852-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 63864 invoked by alias); 24 Aug 2016 21:26:09 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 63744 invoked by uid 55); 24 Aug 2016 21:25:57 -0000
From: "joseph at codesourcery dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77330] __float128 segfaults on 32-bit x86 due to 8-byte malloc alignment
Date: Wed, 24 Aug 2016 21:26:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 6.2.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: joseph at codesourcery dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77330-4-EuFfqLJRcM@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77330-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77330-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03188.txt.bz2
Content-length: 502

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77330

--- Comment #14 from joseph at codesourcery dot com <joseph at codesourcery dot com> ---
On Wed, 24 Aug 2016, bernd.edlinger at hotmail dot de wrote:

> glibc's malloc returns 128-bit aligned on x86-64-linux-gnu.
> but what does it return on windows?

glibc does not support Windows.  I've no idea what Windows malloc returns 
(and it could always depend on which C library version is used; there are 
several that MinGW can be made to use).
>From gcc-bugs-return-535853-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 21:34:49 2016
Return-Path: <gcc-bugs-return-535853-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 96859 invoked by alias); 24 Aug 2016 21:34:48 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 96651 invoked by uid 55); 24 Aug 2016 21:34:35 -0000
From: "joseph at codesourcery dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71026] Missing division optimizations
Date: Wed, 24 Aug 2016 21:34:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: joseph at codesourcery dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71026-4-U4b5PlF5AQ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71026-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71026-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03189.txt.bz2
Content-length: 785

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71026

--- Comment #4 from joseph at codesourcery dot com <joseph at codesourcery dot com> ---
On Wed, 24 Aug 2016, ktkachov at gcc dot gnu.org wrote:

> int f4(float x) { return (1.0f / x) < 0.0f; }         // -> x < 0.0f

Requires -fno-trapping-math, as this could lose an overflow or underflow 
from the division (but provided subnormals are supported, it can't 
underflow to zero for IEEE types).

> int f5(float x) { return (x / 2.0f) <= 0.0f; }        // -> x <= 0.0f

Requires -funsafe-math-optimizations or similar; this is not a correct 
transformation for the least positive subnormal.  (In principle, given 
-fno-rounding-math -fno-trapping-math, you could convert this to x <= 
FLT_TRUE_MIN and be correct.)
>From gcc-bugs-return-535854-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 22:05:08 2016
Return-Path: <gcc-bugs-return-535854-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 103353 invoked by alias); 24 Aug 2016 22:05:07 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 103200 invoked by uid 48); 24 Aug 2016 22:04:55 -0000
From: "manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/77292] Spurious warning: logical not is only applied to the left hand side of comparison
Date: Wed, 24 Aug 2016 22:05:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: manu at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77292-4-bc99OmuBp0@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77292-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77292-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03190.txt.bz2
Content-length: 502

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77292

--- Comment #14 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
(In reply to Manuel López-Ibáñez from comment #10)
> > t.c:4:13: warning: logical not is only applied to the left hand side of
> > comparison [-Wlogical-not-parentheses]
> >    return !a == (a < b);
> >              ^~
> 
> Why is this not a valid warning?

Ah, this is on purpose to avoid too many false positives. Sorry for the noise.
>From gcc-bugs-return-535855-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 22:24:54 2016
Return-Path: <gcc-bugs-return-535855-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 33624 invoked by alias); 24 Aug 2016 22:24:53 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 33510 invoked by uid 48); 24 Aug 2016 22:24:41 -0000
From: "payerle at umd dot edu" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug driver/50250] Driver documentation on -l does not mention shared libraries
Date: Wed, 24 Aug 2016 22:24:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: driver
X-Bugzilla-Version: 4.7.0
X-Bugzilla-Keywords: documentation
X-Bugzilla-Severity: minor
X-Bugzilla-Who: payerle at umd dot edu
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-50250-4-aguDpnXeml@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-50250-4@http.gcc.gnu.org/bugzilla/>
References: <bug-50250-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03191.txt.bz2
Content-length: 1677

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=50250

--- Comment #4 from Tom Payerle <payerle at umd dot edu> ---
In the interest of actually getting this fixed, may I suggest the following
revised wording:
----------------
Search the library named @var{library} when linking.  (The second
alternative with the library as a separate argument is only for
POSIX compliance and is not recommended.)

This is actually just passed directly to the linker, so the exact behavior is
dependent on your linker.  The description below is provided as a courtesy to
users; your linker documentation should be considered definitive and should be
referred to for more details.

Typically, the linker will search a list of directories for a library with a
name matching @var{library}.  On Unix-like systems, this is usually a file
named @file{lib@var{library}.@var{ext}} where @var{ext} is @samp{.a} for static
libraries or @samp{.so} for dynamic libraries.  The list of directories
searched
typically consists of several standard directories (system dependent) as well
as
directories added with the @option{-L} option.

Note that in general it makes a difference where in the command you write this
option: the linker typically processes libraries and object files in the order
they are specified.  Symbols in object files (or even other libraries specified
with the @samp{-l} option) that follow the @samp{-l@var{library}} option on the
command line might not get resolved.  
----------------

I think the above provides the same basic information as the original to the
casual reader while making it clear that one needs to read the linker
documentation for details.
>From gcc-bugs-return-535856-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 22:43:23 2016
Return-Path: <gcc-bugs-return-535856-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 72884 invoked by alias); 24 Aug 2016 22:43:23 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 72731 invoked by uid 48); 24 Aug 2016 22:43:10 -0000
From: "Casey at Carter dot net" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77375] New: constant object with mutable subobject allocated in read-only memory
Date: Wed, 24 Aug 2016 22:43:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: Casey at Carter dot net
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77375-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03192.txt.bz2
Content-length: 716

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77375

            Bug ID: 77375
           Summary: constant object with mutable subobject allocated in
                    read-only memory
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: Casey at Carter dot net
  Target Milestone: ---

When run, this program results in a segmentation fault:

struct Base {
    mutable int i;
};

struct Derived : Base {};

const Derived foo{};

int main() { foo.i = 42; }

Despite its mutable subobject, the compiler allocates foo in read-only memory.
>From gcc-bugs-return-535857-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Aug 24 23:40:03 2016
Return-Path: <gcc-bugs-return-535857-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 64743 invoked by alias); 24 Aug 2016 23:40:03 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 64558 invoked by uid 48); 24 Aug 2016 23:39:50 -0000
From: "bergner at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/77289] [7 Regression] ICE in extract_constrain_insn, at recog.c:2212 on powerpc64
Date: Wed, 24 Aug 2016 23:40:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: target
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code, ra
X-Bugzilla-Severity: normal
X-Bugzilla-Who: bergner at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-77289-4-yXzgJ9TKmd@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77289-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77289-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03193.txt.bz2
Content-length: 3885

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77289

Peter Bergner <bergner at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |vmakarov at gcc dot gnu.org

--- Comment #4 from Peter Bergner <bergner at gcc dot gnu.org> ---
Adding Vlad since there are IRA and LRA questions.


(In reply to Segher Boessenkool from comment #2)
> It already goes wrong at IRA:
> 
[snip]
> 
> (define_insn "*movsf_update1"
>   [(set (match_operand:SF 3 "gpc_reg_operand" "=f,f")
>         (mem:SF (plus:SI (match_operand:SI 1 "gpc_reg_operand" "0,0")
>                          (match_operand:SI 2 "reg_or_short_operand" "r,I"))))
>    (set (match_operand:SI 0 "gpc_reg_operand" "=b,b")
>         (plus:SI (match_dup 1) (match_dup 2)))]
> 
> so operand 1 is not the same as operand 0.

I'm not sure if IRA is supposed to always assign operand 1 the same register as
operand 0 here, or whether that is reload/LRA's job.  Vlad?

I will say that with -mno-lra, reload handles the above just fine, by noticing
that the two operands do not have the same register and forces a reload that
fixes things up.

The same does not happen in LRA, even though it does check.  What happens is
that lra-constraints.c:process_alt_operands() (line #1991) which does the
checking, uses operands_match_p()/get_hard_regno() to check if the two operands
are the same.  Before get_hard_regno() returns its hardreg #, it passes it to
get_final_hard_regno(), which in turn passes it to
lra_get_elimination_hard_regno().  In the case above, reg 208 has been assigned
r31, but lra_get_elimination_hard_regno(31) returns r1 since r31 can be
eliminated to r1 normally.  Since r1 was returned for operand 0 instead of r31,
it looks like our insn satisfies its constraints by having operand 0 and
operand 1 being assigned to the same register, so we don't modify it.  However,
later when LRA calls check_rtl/extract_constrain_insn, they doesn't recognize
r31 and r1 as being the same, so it throws an ICE.

In the case above, I'm not sure we can eliminate r31 in favor of r1, since this
is a load with update insn and I don't think we can use r1 as the address reg,
since the update would clobber the stack pointer.  If I add the following hack:

Index: lra-constraints.c
===================================================================
--- lra-constraints.c   (revision 239609)
+++ lra-constraints.c   (working copy)
@@ -2010,8 +2010,10 @@ process_alt_operands (int only_alternati
                       this alternative may be rejected when it is
                       actually desirable.)  */
                    match_p = false;
-                   if (operands_match_p (*curr_id->operand_loc[nop],
-                                         *curr_id->operand_loc[m], m_hregno))
+                   if (m_hregno != STACK_POINTER_REGNUM
+                       && operands_match_p (*curr_id->operand_loc[nop],
+                                            *curr_id->operand_loc[m],
+                                            m_hregno))
                      {
                        /* We should reject matching of an early
                           clobber operand if the matching operand is

...then it passes and generates the same code reload does.

Vlad, should we be disallowing matching of eliminable registers here or just
special ones like stack pointers and maybe others?  If so, I guess we could add
a strict param to get_hard_regno() and get_final_hard_regno() that doesn't
allow eliminable registers by not calling lra_get_elimination_hard_regno() when
strict.  Thoughts?
>From gcc-bugs-return-535858-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 25 01:29:50 2016
Return-Path: <gcc-bugs-return-535858-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 24927 invoked by alias); 25 Aug 2016 01:29:49 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 24779 invoked by uid 48); 25 Aug 2016 01:29:36 -0000
From: "manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug driver/50250] Driver documentation on -l does not mention shared libraries
Date: Thu, 25 Aug 2016 01:29:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: driver
X-Bugzilla-Version: 4.7.0
X-Bugzilla-Keywords: documentation
X-Bugzilla-Severity: minor
X-Bugzilla-Who: manu at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-50250-4-WERowv1pwX@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-50250-4@http.gcc.gnu.org/bugzilla/>
References: <bug-50250-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03194.txt.bz2
Content-length: 918

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=50250

Manuel López-Ibáñez <manu at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |manu at gcc dot gnu.org

--- Comment #5 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
(In reply to Tom Payerle from comment #4)
> In the interest of actually getting this fixed, may I suggest the following
> revised wording:

Create a diff patch against ^/trunk:

See point 8 here:
https://gcc.gnu.org/wiki/GettingStarted#Basics:_Contributing_to_GCC_in_10_easy_steps

Send to gcc-patches with "[doc]" somewhere in the subject (see examples of
subjects in the archives: https://gcc.gnu.org/ml/gcc-patches/

CC docs co-maintainers (you can find their emails in the MAINTAINERS file).
>From gcc-bugs-return-535859-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 25 01:50:45 2016
Return-Path: <gcc-bugs-return-535859-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 78576 invoked by alias); 25 Aug 2016 01:50:44 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 77319 invoked by uid 48); 25 Aug 2016 01:50:32 -0000
From: "tinab at hush dot ai" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77376] New: GCC segfaults/returns bogus error (depending on version) when calling a member function from a generic lambda with a captured this without using "this->" explicitly.
Date: Thu, 25 Aug 2016 01:50:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: tinab at hush dot ai
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77376-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03195.txt.bz2
Content-length: 2033

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77376

            Bug ID: 77376
           Summary: GCC segfaults/returns bogus error (depending on
                    version) when calling a member function from a generic
                    lambda with a captured this without using "this->"
                    explicitly.
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: tinab at hush dot ai
  Target Milestone: ---

GCC segfaults/returns bogus error (depending on version) when calling a member
function from a generic lambda with a captured this without using "this->"
explicitly.

Seems to affect all versions of GCC with different results.

On 5.4.0 a bogus error is returned: 
    error: cannot call member function ‘...’ without object

On other versions of GCC a segmentation fault occurs (up to and including GCC
7.0.0). This bug only occurs when a member function is called without "this->"
being specified from the generic lambda, using "this->" explicitly resolves the
problem.

Example (from http://coliru.stacked-crooked.com/a/2a41c21343437d9c)
===================================================================
    g++ -std=c++14 -O2 -Wall -pedantic -pthread main.cpp && ./a.out
    main.cpp: In lambda function:
    main.cpp:13:10: internal compiler error: Segmentation fault
             thing(asdf, foo);

Test case
=========

#include <iostream>
#include <string>
#include <vector>

struct Foo {
  void test();
  void thing(void* a1, std::string a2);
};

void Foo::test() {
    auto foo = "gfdgfd";
    auto l = [&](auto asdf) {
         thing(asdf, foo);
    };
    l(nullptr);
}

void Foo::thing(void* a1, std::string a2) {
}

int main()
{
}
>From gcc-bugs-return-535860-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 25 05:01:36 2016
Return-Path: <gcc-bugs-return-535860-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 13098 invoked by alias); 25 Aug 2016 05:01:34 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 12900 invoked by uid 55); 25 Aug 2016 05:01:18 -0000
From: "zeccav at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/77327] AddressSanitizer: heap-use-after-free gcc-trunk-239276/gcc/fortran/interface.c:403 in compare_components
Date: Thu, 25 Aug 2016 05:01:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: zeccav at gmail dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77327-4-ffUYBnHVmM@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77327-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77327-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03196.txt.bz2
Content-length: 189

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77327

--- Comment #4 from Vittorio Zecca <zeccav at gmail dot com> ---
The reproducer I proposed comes from testcase gfortran.dg/import4.f90
>From gcc-bugs-return-535861-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 25 05:15:50 2016
Return-Path: <gcc-bugs-return-535861-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 76207 invoked by alias); 25 Aug 2016 05:15:50 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 62849 invoked by uid 48); 25 Aug 2016 05:15:34 -0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/66096] Unexpected __gnu_cxx::__concurrence_lock_error with _GLIBCXX_DEBUG
Date: Thu, 25 Aug 2016 05:15:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 4.9.2
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: INVALID
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-66096-4-0sSSmpeXSS@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-66096-4@http.gcc.gnu.org/bugzilla/>
References: <bug-66096-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03197.txt.bz2
Content-length: 461

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66096

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |RESOLVED
         Resolution|---                         |INVALID

--- Comment #4 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
No feedback in over a year so closing.
>From gcc-bugs-return-535862-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 25 05:23:04 2016
Return-Path: <gcc-bugs-return-535862-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 6369 invoked by alias); 25 Aug 2016 05:23:04 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 4990 invoked by uid 55); 25 Aug 2016 05:22:51 -0000
From: "zeccav at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/77327] AddressSanitizer: heap-use-after-free gcc-trunk-239276/gcc/fortran/interface.c:403 in compare_components
Date: Thu, 25 Aug 2016 05:23:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: zeccav at gmail dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77327-4-jLrNu42pIe@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77327-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77327-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03198.txt.bz2
Content-length: 410

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77327

--- Comment #5 from Vittorio Zecca <zeccav at gmail dot com> ---
The test case you propose, dec_structure_13.f90, does not trigger the asan
memory checker.

As I wrote before, the test case gfortran.dg/import4.f90 does trigger
the asan memory checker.

In your test case I do not understand the final statement "call
sub2(u2)" because
sub2 is not defined.
>From gcc-bugs-return-535863-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 25 05:34:13 2016
Return-Path: <gcc-bugs-return-535863-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 999 invoked by alias); 25 Aug 2016 05:34:13 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 859 invoked by uid 48); 25 Aug 2016 05:33:59 -0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/69047] memcpy is not as optimized as union is
Date: Thu, 25 Aug 2016 05:34:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 5.3.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cf_gcctarget component short_desc bug_severity
Message-ID: <bug-69047-4-iHsEdkjaWf@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69047-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69047-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03199.txt.bz2
Content-length: 1140

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69047

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Target|arm, aarch64                |
          Component|rtl-optimization            |tree-optimization
            Summary|memcpy of 64-bit integer to |memcpy is not as optimized
                   |32-bit integer causes       |as union is
                   |pointless stack operations  |
                   |on ARM                      |
           Severity|normal                      |enhancement

--- Comment #3 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Take:
union li
{
  int a[2];
  long long b;
};
int f(long long b) {
    int a;
    __builtin_memcpy(&a, &b, sizeof a);
    return a;
}
int f1(long long b) {
    union li a;
    a.b = b;
    return a.a[0];
}

These two functions should produce the same code but f produces worse.

Also f1 is optimized at the tree level while f is optimized at the RTL level
leaving behind the stack location that is used to store b.
>From gcc-bugs-return-535864-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 25 05:34:38 2016
Return-Path: <gcc-bugs-return-535864-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 1884 invoked by alias); 25 Aug 2016 05:34:38 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 1787 invoked by uid 48); 25 Aug 2016 05:34:32 -0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ipa/69033] [6 regression] many internal compiler errors starting with r231928
Date: Thu, 25 Aug 2016 05:34:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ipa
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: major
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords component target_milestone
Message-ID: <bug-69033-4-eS9evXHoT0@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69033-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69033-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03200.txt.bz2
Content-length: 412

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69033

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |ice-on-valid-code
          Component|c                           |ipa
   Target Milestone|---                         |6.0
>From gcc-bugs-return-535865-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 25 05:34:58 2016
Return-Path: <gcc-bugs-return-535865-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 2735 invoked by alias); 25 Aug 2016 05:34:57 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 2592 invoked by uid 48); 25 Aug 2016 05:34:45 -0000
From: "trippels at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77376] GCC segfaults/returns bogus error (depending on version) when calling a member function from a generic lambda with a captured this without using "this->" explicitly.
Date: Thu, 25 Aug 2016 05:34:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: trippels at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc everconfirmed bug_severity
Message-ID: <bug-77376-4-cxdvOShotU@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77376-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77376-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03201.txt.bz2
Content-length: 654

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77376

Markus Trippelsdorf <trippels at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-25
                 CC|                            |trippels at gcc dot gnu.org
     Ever confirmed|0                           |1
           Severity|major                       |normal

--- Comment #1 from Markus Trippelsdorf <trippels at gcc dot gnu.org> ---
Confirmed. May be a dup of PR61636.
>From gcc-bugs-return-535866-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 25 05:41:56 2016
Return-Path: <gcc-bugs-return-535866-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 6598 invoked by alias); 25 Aug 2016 05:41:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 6400 invoked by uid 48); 25 Aug 2016 05:41:43 -0000
From: "trippels at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77376] GCC segfaults/returns bogus error (depending on version) when calling a member function from a generic lambda with a captured this without using "this->" explicitly.
Date: Thu, 25 Aug 2016 05:41:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: unknown
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: trippels at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: DUPLICATE
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-77376-4-k6Jl0NJCje@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77376-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77376-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03202.txt.bz2
Content-length: 504

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77376

Markus Trippelsdorf <trippels at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |DUPLICATE

--- Comment #2 from Markus Trippelsdorf <trippels at gcc dot gnu.org> ---
dup

*** This bug has been marked as a duplicate of bug 61636 ***
>From gcc-bugs-return-535867-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 25 05:41:57 2016
Return-Path: <gcc-bugs-return-535867-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 6613 invoked by alias); 25 Aug 2016 05:41:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 6505 invoked by uid 48); 25 Aug 2016 05:41:46 -0000
From: "trippels at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/61636] generic lambda  "cannot call member function without object"
Date: Thu, 25 Aug 2016 05:41:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords: rejects-valid
X-Bugzilla-Severity: normal
X-Bugzilla-Who: trippels at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: abutcher at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-61636-4-tJ2qso0x1K@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-61636-4@http.gcc.gnu.org/bugzilla/>
References: <bug-61636-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03203.txt.bz2
Content-length: 454

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61636

Markus Trippelsdorf <trippels at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |tinab at hush dot ai

--- Comment #19 from Markus Trippelsdorf <trippels at gcc dot gnu.org> ---
*** Bug 77376 has been marked as a duplicate of this bug. ***
>From gcc-bugs-return-535868-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 25 05:43:21 2016
Return-Path: <gcc-bugs-return-535868-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 10152 invoked by alias); 25 Aug 2016 05:43:20 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 8420 invoked by uid 48); 25 Aug 2016 05:43:08 -0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/67886] Incomplete optimization for virtual function call into freshly constructed object
Date: Thu, 25 Aug 2016 05:43:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 4.9.2
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_severity
Message-ID: <bug-67886-4-i3Dt87mN3H@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67886-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67886-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03204.txt.bz2
Content-length: 369

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67886

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |missed-optimization
           Severity|minor                       |enhancement
>From gcc-bugs-return-535869-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 25 05:50:23 2016
Return-Path: <gcc-bugs-return-535869-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 20470 invoked by alias); 25 Aug 2016 05:50:23 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 20285 invoked by uid 48); 25 Aug 2016 05:50:08 -0000
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/67886] Incomplete optimization for virtual function call into freshly constructed object
Date: Thu, 25 Aug 2016 05:50:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 4.9.2
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: pinskia at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-67886-4-24qsqGj2Gh@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-67886-4@http.gcc.gnu.org/bugzilla/>
References: <bug-67886-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03205.txt.bz2
Content-length: 1224

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67886

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-25
     Ever confirmed|0                           |1

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---

Dropping polymorphic call info; it can not be used by ipa-prop
t99.cc:15:25: note: speculatively devirtualizing call in void test()/7 to
virtual void Derived::func()/0
Indirect call -> speculative call void test()/7 => virtual void
Derived::func()/0
1 polymorphic calls, 0 devirtualized, 1 speculatively devirtualized, 0 cold
0 have multiple targets, 0 overwritable, 0 already speculated (0 agree, 0
disagree), 0 external, 0 not defined, 0 artificial, 1 infos dropped


Confirmed.  GCC is also to speculatively devirtualizing.  The first time
through the loop it is Derived::func but then that is a pure/const function
which means it is does not change memory so rest through the loop, it should
detect that it can  devirtualizing the function call.
>From gcc-bugs-return-535870-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 25 05:58:11 2016
Return-Path: <gcc-bugs-return-535870-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 63448 invoked by alias); 25 Aug 2016 05:58:11 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 62618 invoked by uid 55); 25 Aug 2016 05:57:58 -0000
From: "zeccav at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/77327] AddressSanitizer: heap-use-after-free gcc-trunk-239276/gcc/fortran/interface.c:403 in compare_components
Date: Thu, 25 Aug 2016 05:58:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: zeccav at gmail dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77327-4-TWBUWXVlbX@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77327-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77327-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03206.txt.bz2
Content-length: 350

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77327

--- Comment #6 from Vittorio Zecca <zeccav at gmail dot com> ---
After applying the proposed patch the asan memory checker did not report
any memory fault, in particular the heap-use-after-free in interface.c

Fritz, do you have a -fsanitize=address version of gfortran, in
particular of f951?
>From gcc-bugs-return-535871-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 25 06:31:57 2016
Return-Path: <gcc-bugs-return-535871-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 24390 invoked by alias); 25 Aug 2016 06:31:56 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 24045 invoked by uid 48); 25 Aug 2016 06:31:43 -0000
From: "trippels at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/61636] generic lambda: segfault / "cannot call member function without object"
Date: Thu, 25 Aug 2016 06:31:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords: rejects-valid
X-Bugzilla-Severity: normal
X-Bugzilla-Who: trippels at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: abutcher at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc short_desc
Message-ID: <bug-61636-4-wbeRtK4uxx@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-61636-4@http.gcc.gnu.org/bugzilla/>
References: <bug-61636-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03207.txt.bz2
Content-length: 849

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61636

Markus Trippelsdorf <trippels at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jason at gcc dot gnu.org,
                   |                            |trippels at gcc dot gnu.org
            Summary|generic lambda  "cannot     |generic lambda: segfault /
                   |call member function        |"cannot call member
                   |without object"             |function without object"

--- Comment #20 from Markus Trippelsdorf <trippels at gcc dot gnu.org> ---
Reduced testcase from PR77376:

struct a {
  void b();
  void c(void *, int);
};
void a::b() {
  auto d = [&](auto asdf) { c(asdf, 0); };
  d(nullptr);
}
>From gcc-bugs-return-535872-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 25 08:23:42 2016
Return-Path: <gcc-bugs-return-535872-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 119457 invoked by alias); 25 Aug 2016 08:23:42 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 119312 invoked by uid 55); 25 Aug 2016 08:23:29 -0000
From: "mpolacek at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/77323] Bad "defaults to 'int'" warning for unsupported types
Date: Thu, 25 Aug 2016 08:23:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mpolacek at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: mpolacek at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77323-4-uMNTCDg9Ld@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77323-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77323-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03208.txt.bz2
Content-length: 701

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77323

--- Comment #3 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
Author: mpolacek
Date: Thu Aug 25 08:22:56 2016
New Revision: 239752

URL: https://gcc.gnu.org/viewcvs?rev=239752&root=gcc&view=rev
Log:
        PR c/77323
        * c-decl.c (declspecs_add_type): Set typespec_word even when __intN
        or _FloatN or _FloatNx is not supported.
        (finish_declspecs): Set type to integer_type_node when _FloatN or
        _FloatNx is not supported.

        * gcc.dg/pr77323.c: New test.

Added:
    trunk/gcc/testsuite/gcc.dg/pr77323.c
Modified:
    trunk/gcc/c/ChangeLog
    trunk/gcc/c/c-decl.c
    trunk/gcc/testsuite/ChangeLog
>From gcc-bugs-return-535873-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 25 08:24:55 2016
Return-Path: <gcc-bugs-return-535873-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 128132 invoked by alias); 25 Aug 2016 08:24:54 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 127805 invoked by uid 48); 25 Aug 2016 08:24:41 -0000
From: "mpolacek at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/77323] Bad "defaults to 'int'" warning for unsupported types
Date: Thu, 25 Aug 2016 08:24:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: diagnostic
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mpolacek at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: mpolacek at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-77323-4-AAAggQ8JzP@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77323-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77323-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03209.txt.bz2
Content-length: 429

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77323

Marek Polacek <mpolacek at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #4 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
Fixed.
>From gcc-bugs-return-535874-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 25 08:37:38 2016
Return-Path: <gcc-bugs-return-535874-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 103669 invoked by alias); 25 Aug 2016 08:37:38 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 103536 invoked by uid 48); 25 Aug 2016 08:37:25 -0000
From: "tkoenig at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/77351] ICE in remove_trim, at frontend-passes.c:1145
Date: Thu, 25 Aug 2016 08:37:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: tkoenig at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77351-4-kd7j1Z7K4Y@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77351-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77351-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03210.txt.bz2
Content-length: 298

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77351

--- Comment #3 from Thomas Koenig <tkoenig at gcc dot gnu.org> ---
Hi steve,

> Thou shalt not derefernce NULL pointers.

Correct.

The patch is pre-approved (alternatively, it could be
considered obvious and simple).

Thanks!

Regards

Thomas
>From gcc-bugs-return-535875-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 25 08:38:13 2016
Return-Path: <gcc-bugs-return-535875-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 105526 invoked by alias); 25 Aug 2016 08:38:13 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 105351 invoked by uid 48); 25 Aug 2016 08:38:00 -0000
From: "vries at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71506] ICE with libvpx with -floop-interchange: isl_constraint.c:627: expecting integer value
Date: Thu, 25 Aug 2016 08:38:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 5.3.1
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: vries at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-71506-4-oyokWg5b7W@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71506-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71506-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03211.txt.bz2
Content-length: 732

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71506

Tom de Vries <vries at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |vries at gcc dot gnu.org

--- Comment #3 from Tom de Vries <vries at gcc dot gnu.org> ---
Further reduced example (at -O2 -floop-interchange):

enum enums { PLANE_TYPES };

struct RD_COUNTS
{
  enum enums coef_counts[2][2];
};

struct A
{
  struct RD_COUNTS rd_counts;
};

int j;

struct A *fn1_td;

void
fn1 (void)
{
  int i;

  for (i = 0; i < 2; i++)
    for (j = 0; j < 2; j++)
      fn1_td->rd_counts.coef_counts[i][j] = PLANE_TYPES;
}
>From gcc-bugs-return-535876-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 25 08:47:16 2016
Return-Path: <gcc-bugs-return-535876-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 37733 invoked by alias); 25 Aug 2016 08:47:16 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 37595 invoked by uid 48); 25 Aug 2016 08:47:03 -0000
From: "zeccav at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/69604] ICE in gfc_add_modify_loc, at fortran/trans.c:159
Date: Thu, 25 Aug 2016 08:47:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 6.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: zeccav at gmail dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-69604-4-jd6QK4Ad7l@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69604-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69604-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03212.txt.bz2
Content-length: 883

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69604

Vittorio Zecca <zeccav at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |zeccav at gmail dot com

--- Comment #10 from Vittorio Zecca <zeccav at gmail dot com> ---
(In reply to Gerhard Steinmetz from comment #1)
> While playing around, one example from ./gcc/testsuite/gfortran.dg/
> shows the same error with v6.0.0, but not with v5.3.1 :
> 
> 
> $ gfortran-6 -c complex_intrinsic_6.f90
> internal compiler error: in gfc_add_modify_loc, at fortran/trans.c:159
> 
> 
> $ gfortran-5 -c complex_intrinsic_6.f90
> # no ICE
> 
> 
> ---
> 
> Please correct : last line was cut away for example z4.f90 -- add "end"

Here it still fails with gcc trunk version 7.
>From gcc-bugs-return-535877-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 25 08:50:20 2016
Return-Path: <gcc-bugs-return-535877-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 57606 invoked by alias); 25 Aug 2016 08:50:19 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 57452 invoked by uid 48); 25 Aug 2016 08:50:05 -0000
From: "EngyCZ at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77363] [5/6/7 Regression] Missing debug information in DWARF
Date: Thu, 25 Aug 2016 08:50:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords: wrong-debug
X-Bugzilla-Severity: major
X-Bugzilla-Who: EngyCZ at gmail dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cf_known_to_work
Message-ID: <bug-77363-4-wVXladwHBc@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77363-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77363-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03213.txt.bz2
Content-length: 629

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77363

Jiří Engelthaler <EngyCZ at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
      Known to work|                            |5.3.0

--- Comment #2 from Jiří Engelthaler <EngyCZ at gmail dot com> ---
Investigating the bug I found that GCC 5.3.0 is partially correct, same way as
4.8 and 4.9.

The bug was introduced by this revision
https://gcc.gnu.org/viewcvs/gcc?view=revision&revision=231673

GIT 0c4341e59b724e51deb033a64e057159f27de7dd
>From gcc-bugs-return-535878-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 25 08:52:27 2016
Return-Path: <gcc-bugs-return-535878-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 59646 invoked by alias); 25 Aug 2016 08:52:27 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 59568 invoked by uid 48); 25 Aug 2016 08:52:14 -0000
From: "EngyCZ at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77363] [5/6/7 Regression] Missing debug information in DWARF
Date: Thu, 25 Aug 2016 08:52:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 5.4.0
X-Bugzilla-Keywords: wrong-debug
X-Bugzilla-Severity: major
X-Bugzilla-Who: EngyCZ at gmail dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77363-4-1tlynFhQ41@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77363-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77363-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03214.txt.bz2
Content-length: 164

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77363

--- Comment #3 from Jiří Engelthaler <EngyCZ at gmail dot com> ---
This pr68162 breaks the function
>From gcc-bugs-return-535879-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 25 09:19:47 2016
Return-Path: <gcc-bugs-return-535879-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 96620 invoked by alias); 25 Aug 2016 09:19:47 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 93374 invoked by uid 48); 25 Aug 2016 09:19:34 -0000
From: "vries at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71506] [5 Regression] ICE with libvpx with -floop-interchange: isl_constraint.c:627: expecting integer value
Date: Thu, 25 Aug 2016 09:19:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 5.3.1
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: vries at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71506-4-RHY9whS6qS@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71506-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71506-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03215.txt.bz2
Content-length: 1477

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71506

--- Comment #4 from Tom de Vries <vries at gcc dot gnu.org> ---
At the first call to build_linearized_memory_access, at the 3rd loop iteration
we have:
...
(gdb) 
133           subsize = isl_set_max_val (pdr->extent, aff);
(gdb) call (char *)
isl_printer_get_str(isl_printer_print_set(isl_printer_to_str(ctx),
pdr->extent))
$5 = 0x30f6b90 "{ [1, i1, i2, i3, i4] : i4 >= 0 and i1 >= 0 and i2 >= 0 and i3
>= 0 and i4 <= 1 and i3 <= 1 }"
(gdb) call (char *)
isl_printer_get_str(isl_printer_print_aff(isl_printer_to_str(ctx), aff))
$6 = 0x30f5e30 "{ [i0, i1, i2, i3, i4] -> [(i2)] }"
(gdb) n
134           isl_aff_free (aff);
(gdb) call (char *)
isl_printer_get_str(isl_printer_print_val(isl_printer_to_str(ctx), subsize))
$7 = 0x30f8f00 "infty"
...

The infinity in subsize is propagated to size, and then 'res =
isl_constraint_set_coefficient_val (res, isl_dim_out, offset + i, size)' ICEs
because isl_constraint_set_coefficient_val expects the last argument to be an
int.


In 5.0, subsize is an isl_val:
...
  isl_val *subsize;
  ...
  subsize = isl_set_max_val (pdr->extent, aff);
...

But in 4.9, subsize is an isl_int:
...
  isl_int subsize;
  ...
  isl_set_max (pdr->extent, aff, &subsize);
...
And at the same point in execution, subsize is 1 instead of infty (which seems
to be caused by subsize being 1 before the call, and isl_set_max not having an
effect, which sound fishy).
>From gcc-bugs-return-535880-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 25 09:22:40 2016
Return-Path: <gcc-bugs-return-535880-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 110489 invoked by alias); 25 Aug 2016 09:22:39 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 104273 invoked by uid 48); 25 Aug 2016 09:22:27 -0000
From: "vries at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71506] [5 Regression] ICE with libvpx with -floop-interchange: isl_constraint.c:627: expecting integer value
Date: Thu, 25 Aug 2016 09:22:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 5.3.1
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: vries at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71506-4-c2VyEq2MyW@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71506-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71506-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03216.txt.bz2
Content-length: 353

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71506

--- Comment #5 from Tom de Vries <vries at gcc dot gnu.org> ---
(In reply to Martin Liška from comment #2)
> Current trunk, as well as GCC 6.1.1 works fine.

This is a problem in loop-interchange.c, which was removed in the 6 release
(https://gcc.gnu.org/ml/gcc-patches/2015-08/msg01651.html).
>From gcc-bugs-return-535881-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 25 09:27:01 2016
Return-Path: <gcc-bugs-return-535881-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 53579 invoked by alias); 25 Aug 2016 09:27:01 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 53338 invoked by uid 55); 25 Aug 2016 09:26:48 -0000
From: "ktkachov at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/71700] [5 Regression] wrong code with struct assignment with sub-word signed bitfields
Date: Thu, 25 Aug 2016 09:27:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ktkachov at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: ktkachov at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71700-4-wbP44b3Nuq@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71700-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71700-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03217.txt.bz2
Content-length: 871

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71700

--- Comment #6 from ktkachov at gcc dot gnu.org ---
Author: ktkachov
Date: Thu Aug 25 09:26:15 2016
New Revision: 239754

URL: https://gcc.gnu.org/viewcvs?rev=239754&root=gcc&view=rev
Log:
[expr.c] PR middle-end/71700: zero-extend sub-word value when widening
constructor element

        Backport from mainline
        2016-07-12  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>

        PR middle-end/71700
        * expr.c (store_constructor): Mask sign-extended bits when widening
        sub-word constructor element at the start of a word.

        * gcc.c-torture/execute/pr71700.c: New test.


Added:
    branches/gcc-5-branch/gcc/testsuite/gcc.c-torture/execute/pr71700.c
Modified:
    branches/gcc-5-branch/gcc/ChangeLog
    branches/gcc-5-branch/gcc/expr.c
    branches/gcc-5-branch/gcc/testsuite/ChangeLog
>From gcc-bugs-return-535882-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 25 09:28:09 2016
Return-Path: <gcc-bugs-return-535882-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 66250 invoked by alias); 25 Aug 2016 09:28:08 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 65428 invoked by uid 48); 25 Aug 2016 09:27:56 -0000
From: "ktkachov at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/71700] [5 Regression] wrong code with struct assignment with sub-word signed bitfields
Date: Thu, 25 Aug 2016 09:28:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ktkachov at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Resolution: FIXED
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: ktkachov at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status resolution
Message-ID: <bug-71700-4-XlRWpfBFVN@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71700-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71700-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03218.txt.bz2
Content-length: 414

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71700

ktkachov at gcc dot gnu.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED

--- Comment #7 from ktkachov at gcc dot gnu.org ---
Fixed for 5.5, 6.3, 7.0
>From gcc-bugs-return-535883-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 25 09:28:28 2016
Return-Path: <gcc-bugs-return-535883-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 67174 invoked by alias); 25 Aug 2016 09:28:28 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 66850 invoked by uid 48); 25 Aug 2016 09:28:15 -0000
From: "vries at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71506] [5 Regression] ICE with libvpx with -floop-interchange: isl_constraint.c:627: expecting integer value
Date: Thu, 25 Aug 2016 09:28:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 5.3.1
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: vries at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-71506-4-TxqIBJ4F9f@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71506-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71506-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03219.txt.bz2
Content-length: 289

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71506

Tom de Vries <vries at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |5.5
>From gcc-bugs-return-535884-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 25 09:35:36 2016
Return-Path: <gcc-bugs-return-535884-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 65513 invoked by alias); 25 Aug 2016 09:35:35 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 65269 invoked by uid 48); 25 Aug 2016 09:35:22 -0000
From: "ubizjak at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/77377] New: [7 Regression] c-c++-common/pr59037.c ICEs with -fpic -msse on i686
Date: Thu, 25 Aug 2016 09:35:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ubizjak at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone
Message-ID: <bug-77377-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03220.txt.bz2
Content-length: 3861

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77377

            Bug ID: 77377
           Summary: [7 Regression] c-c++-common/pr59037.c ICEs with -fpic
                    -msse on i686
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: rtl-optimization
          Assignee: unassigned at gcc dot gnu.org
          Reporter: ubizjak at gmail dot com
  Target Milestone: ---

Recent 7.0 regression:

~/gcc-build/gcc/cc1 -O3 -fpic -m32 -msse -quiet pr59037.c 

pr59037.c: In function ‘main’:
pr59037.c:12:1: internal compiler error: Segmentation fault
 }
 ^
0xb1f25f crash_signal
        ../../git/gcc/gcc/toplev.c:335
0x7f2c38 tree_class_check(tree_node*, tree_code_class, char const*, int, char
const*)
        ../../git/gcc/gcc/tree.h:3148
0x7f2c38 make_tree(tree_node*, rtx_def*)
        ../../git/gcc/gcc/expmed.c:5085
0x7f2d26 make_tree(tree_node*, rtx_def*)
        ../../git/gcc/gcc/expmed.c:5111
0xe1ef70 force_const_mem(machine_mode, rtx_def*)
        ../../git/gcc/gcc/varasm.c:3722
0x96cb86 setup_reg_equiv
        ../../git/gcc/gcc/ira.c:3933
0x96cb86 ira
        ../../git/gcc/gcc/ira.c:5196
0x96cb86 execute
        ../../git/gcc/gcc/ira.c:5526
Please submit a full bug report,


gdb session:

Program received signal SIGSEGV, Segmentation fault.
make_tree (type=type@entry=0x0, x=0x2aaaae7b0480) at
../../git/gcc/gcc/expmed.c:5085
5085          t = wide_int_to_tree (type, std::make_pair (x, TYPE_MODE
(type)));
(gdb) bt
#0  make_tree (type=type@entry=0x0, x=0x2aaaae7b0480) at
../../git/gcc/gcc/expmed.c:5085
#1  0x00000000007f2d27 in make_tree (type=0x2aaaae7ac7e0, x=0x2aaaae8b0890) at
../../git/gcc/gcc/expmed.c:5111
#2  0x0000000000e1ef71 in force_const_mem (mode=SImode, x=0x2aaaae8b0890) at
../../git/gcc/gcc/varasm.c:3722
#3  0x000000000096cb87 in setup_reg_equiv () at ../../git/gcc/gcc/ira.c:3933
#4  ira (f=<optimized out>) at ../../git/gcc/gcc/ira.c:5196
#5  (anonymous namespace)::pass_ira::execute (this=<optimized out>) at
../../git/gcc/gcc/ira.c:5526
#6  0x0000000000a509fe in execute_one_pass (pass=pass@entry=0x20d9db0) at
../../git/gcc/gcc/passes.c:2340
#7  0x0000000000a50ff8 in execute_pass_list_1 (pass=0x20d9db0) at
../../git/gcc/gcc/passes.c:2429
#8  0x0000000000a5100a in execute_pass_list_1 (pass=0x20d8d90) at
../../git/gcc/gcc/passes.c:2430
#9  0x0000000000a51055 in execute_pass_list (fn=<optimized out>,
pass=<optimized out>) at ../../git/gcc/gcc/passes.c:2440
#10 0x0000000000736e54 in cgraph_node::expand (this=0x2aaaae8c9000) at
../../git/gcc/gcc/cgraphunit.c:1985
#11 0x00000000007387f7 in expand_all_functions () at
../../git/gcc/gcc/cgraphunit.c:2121
#12 symbol_table::compile (this=0x2aaaae7ac0a8) at
../../git/gcc/gcc/cgraphunit.c:2478
#13 0x000000000073aaa8 in compile (this=0x2aaaae7ac0a8) at
../../git/gcc/gcc/cgraphunit.c:2571
#14 symbol_table::finalize_compilation_unit (this=0x2aaaae7ac0a8) at
../../git/gcc/gcc/cgraphunit.c:2568
#15 0x0000000000b1f4eb in compile_file () at ../../git/gcc/gcc/toplev.c:490
#16 0x0000000000b21155 in do_compile () at ../../git/gcc/gcc/toplev.c:2003
#17 toplev::main (this=0x7fffffffc1a0, argc=<optimized out>, argv=<optimized
out>) at ../../git/gcc/gcc/toplev.c:2137
#18 0x00000000012eae67 in main (argc=6, argv=0x7fffffffc2a8) at
../../git/gcc/gcc/main.c:39

(gdb) list
5080
5081      switch (GET_CODE (x))
5082        {
5083        case CONST_INT:
5084        case CONST_WIDE_INT:
5085          t = wide_int_to_tree (type, std::make_pair (x, TYPE_MODE
(type)));
5086          return t;
5087
5088        case CONST_DOUBLE:
5089          STATIC_ASSERT (HOST_BITS_PER_WIDE_INT * 2 <=
MAX_BITSIZE_MODE_ANY_INT);

(gdb) p type
$1 = (tree) 0x0

(gdb) p debug_rtx (x)
(const_int 0 [0])
>From gcc-bugs-return-535885-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 25 09:43:33 2016
Return-Path: <gcc-bugs-return-535885-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 95904 invoked by alias); 25 Aug 2016 09:43:33 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 95650 invoked by uid 48); 25 Aug 2016 09:43:20 -0000
From: "vries at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71506] [5 Regression] ICE with libvpx with -floop-interchange: isl_constraint.c:627: expecting integer value
Date: Thu, 25 Aug 2016 09:43:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 5.3.1
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: vries at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71506-4-Xnc5ga1LNP@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71506-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71506-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03221.txt.bz2
Content-length: 876

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71506

--- Comment #6 from Tom de Vries <vries at gcc dot gnu.org> ---
Hmm, at r225942 I read:
...
[graphite] fix pr61929

This fixes bootstrap of GCC with BOOT_CFLAGS="-g -O2 -fgraphite-identity
-floop-nest-optimize -floop-block -floop-interchange -floop-strip-mine".  It
passes regstrap on amd64-linux.  A previous change
(https://gcc.gnu.org/viewcvs/gcc?view=revision&revision=213816), replaced
isl_int with isl_val because isl_int would be deprecated. Since isl_val has
stricter checks, it exposed the bug.  In the test case (isl_set_max_val) would
return infinity which would remain unchecked.  We now check if the value
returned is an integer or not, and bail out if it isn't.
...

This seems to be a duplicate of PR61929.[ If we mark this as a duplicate, we
should re-open PR61929 and mark it as 5 regression. ]
>From gcc-bugs-return-535886-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 25 09:46:29 2016
Return-Path: <gcc-bugs-return-535886-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 101186 invoked by alias); 25 Aug 2016 09:46:28 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 99155 invoked by uid 48); 25 Aug 2016 09:46:15 -0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77369] incorrect noexcept specification deduction
Date: Thu, 25 Aug 2016 09:46:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 6.1.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77369-4-xoW4bTvTCa@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77369-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77369-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03222.txt.bz2
Content-length: 289

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77369

--- Comment #1 from Jonathan Wakely <redi at gcc dot gnu.org> ---
Richard Smith realized that it uses the noexceptness of the first type it's
instantiated with, because if you reverse the order of the calls, it produces
false, false
>From gcc-bugs-return-535887-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 25 09:47:10 2016
Return-Path: <gcc-bugs-return-535887-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 105366 invoked by alias); 25 Aug 2016 09:47:10 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 105219 invoked by uid 48); 25 Aug 2016 09:46:57 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/77377] [7 Regression] c-c++-common/pr59037.c ICEs with -fpic -msse on i686
Date: Thu, 25 Aug 2016 09:47:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: rtl-optimization
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-77377-4-foCLE3bsYg@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77377-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77377-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03223.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77377

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |7.0
>From gcc-bugs-return-535888-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 25 09:48:18 2016
Return-Path: <gcc-bugs-return-535888-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 33306 invoked by alias); 25 Aug 2016 09:48:18 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 3449 invoked by uid 48); 25 Aug 2016 09:47:55 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/77374] [6/7 Regression] ICE in resolve_omp_atomic, at fortran/openmp.c:3949
Date: Thu, 25 Aug 2016 09:48:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: fortran
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: error-recovery, ice-on-invalid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P4
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 6.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: target_milestone
Message-ID: <bug-77374-4-4RMoApzXdl@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77374-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77374-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03224.txt.bz2
Content-length: 293

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77374

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |6.3
>From gcc-bugs-return-535889-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 25 09:49:46 2016
Return-Path: <gcc-bugs-return-535889-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 74440 invoked by alias); 25 Aug 2016 09:49:46 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 74255 invoked by uid 48); 25 Aug 2016 09:49:35 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77373] __attribute__((vector_size(N))) fails on AIX
Date: Thu, 25 Aug 2016 09:49:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords
Message-ID: <bug-77373-4-h35GfCsYdc@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77373-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77373-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03225.txt.bz2
Content-length: 542

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77373

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |ice-on-valid-code

--- Comment #2 from Richard Biener <rguenth at gcc dot gnu.org> ---
g++.dg/ext/vector32.C for anyone searching, not sure what it has to do with the
cgraph though.  A backtrace would have been nice to be able to classify this
... ;)
>From gcc-bugs-return-535890-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 25 09:50:23 2016
Return-Path: <gcc-bugs-return-535890-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 75684 invoked by alias); 25 Aug 2016 09:50:23 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 75502 invoked by uid 48); 25 Aug 2016 09:50:10 -0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77375] constant object with mutable subobject allocated in read-only memory
Date: Thu, 25 Aug 2016 09:50:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: keywords bug_status cf_reconfirmed_on everconfirmed
Message-ID: <bug-77375-4-0Tcfihr1W8@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77375-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77375-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03226.txt.bz2
Content-length: 462

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77375

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |wrong-code
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-25
     Ever confirmed|0                           |1
>From gcc-bugs-return-535891-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 25 09:52:28 2016
Return-Path: <gcc-bugs-return-535891-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 77667 invoked by alias); 25 Aug 2016 09:52:27 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 77539 invoked by uid 48); 25 Aug 2016 09:52:14 -0000
From: "redi at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/77375] [5/6/7 Regression] constant object with mutable subobject allocated in read-only memory
Date: Thu, 25 Aug 2016 09:52:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords: wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: redi at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cf_known_to_work short_desc
Message-ID: <bug-77375-4-PdXEihishG@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77375-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77375-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03227.txt.bz2
Content-length: 668

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77375

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
      Known to work|                            |4.6.4
            Summary|constant object with        |[5/6/7 Regression] constant
                   |mutable subobject allocated |object with mutable
                   |in read-only memory         |subobject allocated in
                   |                            |read-only memory

--- Comment #1 from Jonathan Wakely <redi at gcc dot gnu.org> ---
This started with 4.7.0
>From gcc-bugs-return-535892-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 25 09:53:16 2016
Return-Path: <gcc-bugs-return-535892-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 80615 invoked by alias); 25 Aug 2016 09:53:16 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 80269 invoked by uid 48); 25 Aug 2016 09:53:03 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/69047] memcpy is not as optimized as union is
Date: Thu, 25 Aug 2016 09:53:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 5.3.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status assigned_to
Message-ID: <bug-69047-4-cYK2y6E37T@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69047-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69047-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03228.txt.bz2
Content-length: 484

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69047

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED
           Assignee|unassigned at gcc dot gnu.org      |rguenth at gcc dot gnu.org

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
Let's see what is missing here.
>From gcc-bugs-return-535893-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 25 10:01:10 2016
Return-Path: <gcc-bugs-return-535893-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 93260 invoked by alias); 25 Aug 2016 10:01:10 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 93055 invoked by uid 48); 25 Aug 2016 10:00:57 -0000
From: "vries at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/71506] [5 Regression] ICE with libvpx with -floop-interchange: isl_constraint.c:627: expecting integer value
Date: Thu, 25 Aug 2016 10:01:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 5.3.1
X-Bugzilla-Keywords: ice-on-valid-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: vries at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 5.5
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-71506-4-G2mnQ2MzbY@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-71506-4@http.gcc.gnu.org/bugzilla/>
References: <bug-71506-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03229.txt.bz2
Content-length: 274

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71506

--- Comment #7 from Tom de Vries <vries at gcc dot gnu.org> ---
(In reply to Tom de Vries from comment #6)
> Hmm, at r225942 I read:

Patch applies cleanly to 5 branch and fixes ICEs for original and minimal
test-cases.
>From gcc-bugs-return-535894-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 25 11:05:31 2016
Return-Path: <gcc-bugs-return-535894-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 46308 invoked by alias); 25 Aug 2016 11:05:30 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 46066 invoked by uid 48); 25 Aug 2016 11:05:18 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/69047] memcpy is not as optimized as union is
Date: Thu, 25 Aug 2016 11:05:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 5.3.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: attachments.created
Message-ID: <bug-69047-4-mrDw9t53vn@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-69047-4@http.gcc.gnu.org/bugzilla/>
References: <bug-69047-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03230.txt.bz2
Content-length: 254

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69047

--- Comment #5 from Richard Biener <rguenth at gcc dot gnu.org> ---
Created attachment 39498
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=39498&action=edit
patch

Patch queued for testing
>From gcc-bugs-return-535895-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 25 11:28:33 2016
Return-Path: <gcc-bugs-return-535895-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 105447 invoked by alias); 25 Aug 2016 11:28:33 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 105362 invoked by uid 48); 25 Aug 2016 11:28:20 -0000
From: "ubizjak at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/77377] [7 Regression] c-c++-common/pr59037.c ICEs with -fpic -msse on i686
Date: Thu, 25 Aug 2016 11:28:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ubizjak at gmail dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on component everconfirmed
Message-ID: <bug-77377-4-g945FuzqTn@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77377-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77377-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03231.txt.bz2
Content-length: 464

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77377

Uroš Bizjak <ubizjak at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-08-25
          Component|rtl-optimization            |middle-end
     Ever confirmed|0                           |1
>From gcc-bugs-return-535896-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 25 12:13:24 2016
Return-Path: <gcc-bugs-return-535896-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 127620 invoked by alias); 25 Aug 2016 12:13:24 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 127513 invoked by uid 48); 25 Aug 2016 12:13:11 -0000
From: "ubizjak at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/77377] [7 Regression] c-c++-common/pr59037.c ICEs with -fpic -msse on i686
Date: Thu, 25 Aug 2016 12:13:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 7.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ubizjak at gmail dot com
X-Bugzilla-Status: NEW
X-Bugzilla-Resolution:
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 7.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-77377-4-cp3ZRB3TET@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-77377-4@http.gcc.gnu.org/bugzilla/>
References: <bug-77377-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2016-08/txt/msg03232.txt.bz2
Content-length: 1123

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77377

--- Comment #1 from Uroš Bizjak <ubizjak at gmail dot com> ---
It looks that cse2 pass attaches wrong REG_EQUAL note:

(insn 8 4 13 2 (set (reg:SI 93)
        (mem/u/j:SI (plus:SI (reg:SI 87)
                (const:SI (plus:SI (unspec:SI [
                                (symbol_ref/u:SI ("*.LC0") [flags 0x2])
                            ] UNSPEC_GOTOFF)
                        (const_int 16 [0x10])))) [1  S4 A128])) 82
{*movsi_internal}
     (expr_list:REG_EQUAL (const_vector:V4SI [
                (const_int 3 [0x3])
                (const_int 2 [0x2])
                (const_int 1 [0x1])
                (const_int 0 [0])
            ])
        (expr_list:REG_DEAD (reg:SI 87)
            (nil))))
(insn 13 8 14 2 (set (reg/i:SI 0 ax)
        (reg:SI 93)) pr59037.c:12 82 {*movsi_internal}
     (expr_list:REG_EQUAL (const_vector:V4SI [
                (const_int 3 [0x3])
                (const_int 2 [0x2])
                (const_int 1 [0x1])
                (const_int 0 [0])
            ])
        (expr_list:REG_DEAD (reg:SI 93)
            (nil))))
>From gcc-bugs-return-535897-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Aug 25 12:30:38 2016
Return-Path: <gcc-bugs-return-535897-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 34053 invoked by alias); 25 Aug 2016 12:30:35 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 34012 invoked by uid 89); 25 Aug 2016 12:30:32 -0000
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=-2.1 required=5.0 testsºYES_00,RP_MATCHES_RCVD,SPF_HELO_PASS autolearn=ham version=3.3.2 spammyX-HELO: mx1.redhat.com
Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 25 Aug 2016 12:30:26 +0000
Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24])	(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))	(No client certificate requested)	by mx1.redhat.com (Postfix) with ESMTPS id B3CE68F227;	Thu, 25 Aug 2016 12:30:24 +0000 (UTC)
Received: from littlehelper.redhat.com (vpn1-7-117.ams2.redhat.com [10.36.7.117])	by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id u7PCULdu016055	(version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits%6 verify=NO);	Thu, 25 Aug 2016 08:30:22 -0400
From: Nick Clifton <nickc@redhat.com>
To: joseph@codesourcery.com, wilson@tuliptree.org, sellcey@imgtec.com,        hubicka@ucw.cz, ubizjak@gmail.com
Cc: gcc-bugs@gcc.gnu.org
Subject: ia64-elf and i386-elf fail to build
Date: Thu, 25 Aug 2016 12:30:00 -0000
Message-ID: <87oa4huj3o.fsf@redhat.com>
MIME-Version: 1.0
Content-Type: text/plain
X-SW-Source: 2016-08/txt/msg03233.txt.bz2
Content-length: 609

Hi Guys,

  The ia64-elf and i386-elf targets currently fail to build for me using
  the mainline sources.  The symptom is a seg-fault when running the
  self tests:

    ./xgcc <...> -xc -S -c /dev/null -fself-test
    <built-in>: internal compiler error: Segmentation fault

  The cause appears to be an attempt to register a builtin type using
  the float128_type_node, which is NULL for these particular targets:

    gcc/config/ia64/ia64.c:10373
    gcc/config/i386/i386.c:33347

  Presumably float128_type_node should not be NULL, but I am not sure
  how to fix this.  Any suggestions ?

Cheers
  Nick


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2016-08-07  6:21 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-02-15 11:23 [Bug libgomp/65070] New: libgomp calls syscall instruction directly nyh at math dot technion.ac.il
2015-02-15 16:01 ` [Bug libgomp/65070] " jakub at gcc dot gnu.org
2015-02-15 17:10 ` nyh at math dot technion.ac.il
2016-08-07  6:21 ` nyh at math dot technion.ac.il

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).